From b2ff7d18f66880d3b1cc7c34ff1ff22e4d8cfe47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Tue, 26 May 2026 16:26:27 +0200 Subject: [PATCH 01/49] init restic repo --- environments/custom/configuration.yml | 5 +- .../custom/playbook-setup-restic-backup.yml | 98 +++++++++++++++++++ environments/custom/secrets.yml | 26 ++--- 3 files changed, 115 insertions(+), 14 deletions(-) create mode 100644 environments/custom/playbook-setup-restic-backup.yml 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/playbook-setup-restic-backup.yml b/environments/custom/playbook-setup-restic-backup.yml new file mode 100644 index 000000000..5e7e5c2c6 --- /dev/null +++ b/environments/custom/playbook-setup-restic-backup.yml @@ -0,0 +1,98 @@ +--- +- name: Setup restic backups + hosts: manager + gather_facts: false + vars: + # ── Docker image ─────────────────────────────────────────────────────────────── + restic_backup_docker_registry: "ghcr.io" + restic_backup_docker_image: "restic/restic" + restic_backup_docker_tag: "0.18.1" + restic_backup_docker_full_image: "{{ restic_backup_docker_registry }}/{{ restic_backup_docker_image }}:{{ restic_backup_docker_tag }}" + + # ── S3 / Ceph RGW ────────────────────────────────────────────────────────────── + restic_backup_s3_hostname: "api.ffm3.teutostack.de" + restic_backup_s3_port: "6780" + restic_backup_s3_endpoint: "https://{{ restic_backup_s3_hostname}}:{{restic_backup_s3_port}}" + restic_backup_s3_bucket: "restic-backups" + restic_backup_s3_path: "" # Optional sub-path inside bucket + restic_backup_full_path: "s3:{{ restic_backup_s3_endpoint }}/{{ restic_backup_s3_bucket }}{% if restic_backup_s3_path %}/{{ restic_backup_s3_path }}{% endif %}" + + # ── Credentials (override via vault or extra_vars) ───────────────────────────── + restic_backup_s3_access_key: "CHANGE_ME" + restic_backup_s3_secret_key: "CHANGE_ME" + restic_backup_password: "CHANGE_ME" + tasks: + - name: Check whether the restic repository is already initialized + community.docker.docker_container: + name: restic-check-repository + image: "{{restic_backup_docker_full_image}}" + pull: "{{ pull_image | default('missing') }}" + restart_policy: "no" + auto_remove: false + command: "snapshots --no-cache" + detach: false + env: + AWS_ACCESS_KEY_ID: "{{ restic_backup_s3_access_key }}" + AWS_SECRET_ACCESS_KEY: "{{ restic_backup_s3_secret_key }}" + RESTIC_PASSWORD: "{{ restic_backup_password }}" + RESTIC_REPOSITORY: "{{ restic_backup_full_path }}" + register: restic_snapshots_check + failed_when: false # non-zero exit = not yet initialized → handled below + no_log: true + + - name: Remove restic container + community.docker.docker_container: + name: restic-check-repository + state: absent + + - name: Initialize the restic repository if not yet initialized + community.docker.docker_container: + name: restic-init-repository + image: "{{restic_backup_docker_full_image}}" + pull: "{{ pull_image | default('missing') }}" + restart_policy: "no" + auto_remove: false + command: "init" + detach: false + env: + AWS_ACCESS_KEY_ID: "{{ restic_backup_s3_access_key }}" + AWS_SECRET_ACCESS_KEY: "{{ restic_backup_s3_secret_key }}" + RESTIC_PASSWORD: "{{ restic_backup_password }}" + RESTIC_REPOSITORY: "{{ restic_backup_full_path }}" + when: "restic_snapshots_check.status != 0 or 'Is there a repository at the following location' in restic_snapshots_check.container.Output" + register: restic_init_result + no_log: true + + - name: Remove restic container + community.docker.docker_container: + name: restic-init-repository + state: absent + + - name: Show repository initialization result + ansible.builtin.debug: + msg: "{{ restic_init_result.container.Output | default(['Repository already initialized']) }}" + + # - name: Deploy systemd service unit + # ansible.builtin.template: + # src: restic-backup.service.j2 + # dest: /etc/systemd/system/restic-backup.service + # owner: root + # group: root + # mode: "0644" + # notify: Reload systemd + + # - name: Deploy systemd timer unit + # ansible.builtin.template: + # src: restic-backup.timer.j2 + # dest: /etc/systemd/system/restic-backup.timer + # owner: root + # group: root + # mode: "0644" + # notify: Reload systemd + + # - name: Enable and start the restic backup timer + # ansible.builtin.systemd: + # name: restic-backup.timer + # enabled: true + # state: started + # daemon_reload: true diff --git a/environments/custom/secrets.yml b/environments/custom/secrets.yml index 2fed4d945..b3a8a44c3 100644 --- a/environments/custom/secrets.yml +++ b/environments/custom/secrets.yml @@ -1,14 +1,14 @@ $ANSIBLE_VAULT;1.1;AES256 -34653334613432613331383063306531376339613139313231363330396664343063303036666330 -3361336266313038663133396135373430306662396261340a623634343533383930663963636466 -65313662656461393031323230626135376533656130353765373035333230323037373630636233 -3139356434663061350a333865333232623238316262366562383361653065666266323035666162 -61353032636637373961653265356132303264633136373433323832366337366135343566626435 -30643962343965656435323736373538623663646363343739613735626634653336626336313937 -33656539623730646264376339333237366630376335333764376538363331363635623664333561 -39386364326332633135343037353663636135346334323234313366303532303738613039363437 -37363963353230643763643433633036643565393437323139346134396164643561373230643138 -64303632363461393463613365633434646433633562303336666363386666316264376431316331 -31616431633166363134373333396536343933383436626566326264663633623462336438313836 -38623535353561386531386464313631303362366534626361663438373561653836333933383237 -37646134613163383863373430366137646332666639336639643062373831316263 +63616466663562653332373636326166663266336632333136663861623037353466613039343333 +3233373332646161613139653362396437383461353536360a633335353563653435636633373562 +34656131396533633030626466343039383937363931623132383762383330326163646133623136 +3730326536366562300a666266613861653661366338623266363061303738663665646134393334 +39366431353062656338393866663963643530666666316137306365373535633765393339326336 +30643138343631633933656332663132653364353330633733643761633265633034663339656531 +66396366343738333333303461373932386338656636643561303665663739616466353838333231 +37636663616430326436303632356364373766353165333463326339323439363739616639303039 +30626566396637323465373033323565346136303566656661336136343330346232386261393234 +64646636656133643561306164306637303036353463363266333461323235343736323234366132 +34653263353032633238323262356136616535346437646361316662646639366230616563363432 +30353034343337356462616266646166333033343633303738343965363464643331653639373066 +66653230653339643039343663623466383462626536343061313038633166323032 From 377abcdb1a7d5841425f883ee596c46604cf19c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Wed, 27 May 2026 13:01:39 +0200 Subject: [PATCH 02/49] add systemd trigger for backup --- .../custom/playbook-setup-restic-backup.yml | 55 +++++++++++-------- .../custom/templates/restic-backup.service.j2 | 27 +++++++++ .../custom/templates/restic-backup.sh.j2 | 26 +++++++++ .../custom/templates/restic-backup.timer.j2 | 15 +++++ 4 files changed, 101 insertions(+), 22 deletions(-) create mode 100644 environments/custom/templates/restic-backup.service.j2 create mode 100644 environments/custom/templates/restic-backup.sh.j2 create mode 100644 environments/custom/templates/restic-backup.timer.j2 diff --git a/environments/custom/playbook-setup-restic-backup.yml b/environments/custom/playbook-setup-restic-backup.yml index 5e7e5c2c6..b7e42dd9a 100644 --- a/environments/custom/playbook-setup-restic-backup.yml +++ b/environments/custom/playbook-setup-restic-backup.yml @@ -17,6 +17,9 @@ restic_backup_s3_path: "" # Optional sub-path inside bucket restic_backup_full_path: "s3:{{ restic_backup_s3_endpoint }}/{{ restic_backup_s3_bucket }}{% if restic_backup_s3_path %}/{{ restic_backup_s3_path }}{% endif %}" + restic_backup_oncalendar: "hourly" # systemd calendar expression + restic_backup_full_interval_hours: 6 # full backup every N hours; else incremental + # ── Credentials (override via vault or extra_vars) ───────────────────────────── restic_backup_s3_access_key: "CHANGE_ME" restic_backup_s3_secret_key: "CHANGE_ME" @@ -72,27 +75,35 @@ ansible.builtin.debug: msg: "{{ restic_init_result.container.Output | default(['Repository already initialized']) }}" - # - name: Deploy systemd service unit - # ansible.builtin.template: - # src: restic-backup.service.j2 - # dest: /etc/systemd/system/restic-backup.service - # owner: root - # group: root - # mode: "0644" - # notify: Reload systemd + - name: Deploy trigger script + ansible.builtin.template: + src: restic-backup.sh.j2 + dest: /usr/local/bin/restic-backup.sh + owner: root + group: root + mode: "0644" + + - name: Deploy systemd service unit + ansible.builtin.template: + src: restic-backup.service.j2 + dest: /etc/systemd/system/restic-backup.service + owner: root + group: root + mode: "0644" + notify: Reload systemd - # - name: Deploy systemd timer unit - # ansible.builtin.template: - # src: restic-backup.timer.j2 - # dest: /etc/systemd/system/restic-backup.timer - # owner: root - # group: root - # mode: "0644" - # notify: Reload systemd + - name: Deploy systemd timer unit + ansible.builtin.template: + src: restic-backup.timer.j2 + dest: /etc/systemd/system/restic-backup.timer + owner: root + group: root + mode: "0644" + notify: Reload systemd - # - name: Enable and start the restic backup timer - # ansible.builtin.systemd: - # name: restic-backup.timer - # enabled: true - # state: started - # daemon_reload: true + - name: Enable and start the restic backup timer + ansible.builtin.systemd: + name: restic-backup.timer + enabled: true + state: started + daemon_reload: true 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..bac4cd40b --- /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_full_backup_interval_hours }} hours +# - "incremental" all other hourly runs +HOUR=$(date +%-H) +if (( HOUR % {{ restic_full_backup_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..2eef06dd0 --- /dev/null +++ b/environments/custom/templates/restic-backup.timer.j2 @@ -0,0 +1,15 @@ +# 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 +Persistent=true # catch up on a missed run after reboot/downtime + +[Install] +WantedBy=timers.target From cb1b4103780abb9945a4ad25d8a850b4b87c557a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Wed, 27 May 2026 13:25:22 +0200 Subject: [PATCH 03/49] fix errors --- environments/custom/playbook-setup-restic-backup.yml | 9 +++++++-- environments/custom/templates/restic-backup.sh.j2 | 4 ++-- environments/custom/templates/restic-backup.timer.j2 | 3 ++- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/environments/custom/playbook-setup-restic-backup.yml b/environments/custom/playbook-setup-restic-backup.yml index b7e42dd9a..5d5bd86bf 100644 --- a/environments/custom/playbook-setup-restic-backup.yml +++ b/environments/custom/playbook-setup-restic-backup.yml @@ -51,7 +51,7 @@ - name: Initialize the restic repository if not yet initialized community.docker.docker_container: name: restic-init-repository - image: "{{restic_backup_docker_full_image}}" + image: "{{ restic_backup_docker_full_image }}" pull: "{{ pull_image | default('missing') }}" restart_policy: "no" auto_remove: false @@ -89,7 +89,7 @@ dest: /etc/systemd/system/restic-backup.service owner: root group: root - mode: "0644" + mode: "0755" notify: Reload systemd - name: Deploy systemd timer unit @@ -106,4 +106,9 @@ name: restic-backup.timer enabled: true state: started + notify: Reload systemd + + handlers: + - name: Reload systemd + ansible.builtin.systemd: daemon_reload: true diff --git a/environments/custom/templates/restic-backup.sh.j2 b/environments/custom/templates/restic-backup.sh.j2 index bac4cd40b..da979fa79 100644 --- a/environments/custom/templates/restic-backup.sh.j2 +++ b/environments/custom/templates/restic-backup.sh.j2 @@ -7,10 +7,10 @@ set -euo pipefail # ── Determine backup type ───────────────────────────────────────────────────── # When called by the systemd timer, BACKUP_TYPE is evaluated automatically: -# - "full" every {{ restic_full_backup_interval_hours }} hours +# - "full" every {{ restic_backup_full_interval_hours }} hours # - "incremental" all other hourly runs HOUR=$(date +%-H) -if (( HOUR % {{ restic_full_backup_interval_hours }} == 0 )); then +if (( HOUR % {{ restic_backup_full_interval_hours }} == 0 )); then BACKUP_TYPE=full else BACKUP_TYPE=incremental diff --git a/environments/custom/templates/restic-backup.timer.j2 b/environments/custom/templates/restic-backup.timer.j2 index 2eef06dd0..8fb01a56c 100644 --- a/environments/custom/templates/restic-backup.timer.j2 +++ b/environments/custom/templates/restic-backup.timer.j2 @@ -9,7 +9,8 @@ Requires=restic-backup.service # to avoid thundering-herd problems on multiple hosts. OnCalendar={{ restic_backup_oncalendar }} RandomizedDelaySec=300 -Persistent=true # catch up on a missed run after reboot/downtime +# catch up on a missed run after reboot/downtime +Persistent=true [Install] WantedBy=timers.target From 66c6140fe35afef57634ff8745c94ad37716f8b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Wed, 27 May 2026 13:28:34 +0200 Subject: [PATCH 04/49] fix errors --- environments/custom/playbook-setup-restic-backup.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/environments/custom/playbook-setup-restic-backup.yml b/environments/custom/playbook-setup-restic-backup.yml index 5d5bd86bf..b30e09076 100644 --- a/environments/custom/playbook-setup-restic-backup.yml +++ b/environments/custom/playbook-setup-restic-backup.yml @@ -1,6 +1,7 @@ --- - name: Setup restic backups hosts: manager + become: true gather_facts: false vars: # ── Docker image ─────────────────────────────────────────────────────────────── @@ -81,7 +82,7 @@ dest: /usr/local/bin/restic-backup.sh owner: root group: root - mode: "0644" + mode: "0755" - name: Deploy systemd service unit ansible.builtin.template: @@ -89,7 +90,7 @@ dest: /etc/systemd/system/restic-backup.service owner: root group: root - mode: "0755" + mode: "0644" notify: Reload systemd - name: Deploy systemd timer unit From 7f4399dd3f7d57da285ec527931d37d606157a6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Mon, 15 Jun 2026 14:19:51 +0200 Subject: [PATCH 05/49] create regular backups --- environments/custom/secrets.yml | 18 +- environments/kolla/configuration.yml | 6 + .../files/latest-full-mariadb-backup.service | 25 + .../files/latest-full-mariadb-backup.timer | 9 + .../latest-incremental-mariadb-backup.service | 25 + .../latest-incremental-mariadb-backup.timer | 10 + .../kolla/files/testbed-backup-public-key.asc | 13 + .../playbook-setup-mariadb-s3-backup.yml | 93 + environments/kolla/secrets.yml | 3079 +++++++++-------- environments/kolla/templates/rclone.conf.j2 | 13 + environments/kolla/templates/upload.sh.j2 | 17 + 11 files changed, 1759 insertions(+), 1549 deletions(-) create mode 100644 environments/kolla/files/latest-full-mariadb-backup.service create mode 100644 environments/kolla/files/latest-full-mariadb-backup.timer create mode 100644 environments/kolla/files/latest-incremental-mariadb-backup.service create mode 100644 environments/kolla/files/latest-incremental-mariadb-backup.timer create mode 100644 environments/kolla/files/testbed-backup-public-key.asc create mode 100644 environments/kolla/playbook-setup-mariadb-s3-backup.yml create mode 100644 environments/kolla/templates/rclone.conf.j2 create mode 100644 environments/kolla/templates/upload.sh.j2 diff --git a/environments/custom/secrets.yml b/environments/custom/secrets.yml index b3a8a44c3..f920b93f1 100644 --- a/environments/custom/secrets.yml +++ b/environments/custom/secrets.yml @@ -1,14 +1,6 @@ $ANSIBLE_VAULT;1.1;AES256 -63616466663562653332373636326166663266336632333136663861623037353466613039343333 -3233373332646161613139653362396437383461353536360a633335353563653435636633373562 -34656131396533633030626466343039383937363931623132383762383330326163646133623136 -3730326536366562300a666266613861653661366338623266363061303738663665646134393334 -39366431353062656338393866663963643530666666316137306365373535633765393339326336 -30643138343631633933656332663132653364353330633733643761633265633034663339656531 -66396366343738333333303461373932386338656636643561303665663739616466353838333231 -37636663616430326436303632356364373766353165333463326339323439363739616639303039 -30626566396637323465373033323565346136303566656661336136343330346232386261393234 -64646636656133643561306164306637303036353463363266333461323235343736323234366132 -34653263353032633238323262356136616535346437646361316662646639366230616563363432 -30353034343337356462616266646166333033343633303738343965363464643331653639373066 -66653230653339643039343663623466383462626536343061313038633166323032 +65636135663137643465613334633666306139386363306562626133383330343566646434346164 +6237353632626231323464336435623263376237393638640a386461613230363637303864386335 +62313765623437393535383239643632366363633038386661623734613031633439346662623861 +6238343739343337620a326162383563363332393062666238366336633764336361616566663839 +3339 diff --git a/environments/kolla/configuration.yml b/environments/kolla/configuration.yml index da996a8e2..44da833e7 100644 --- a/environments/kolla/configuration.yml +++ b/environments/kolla/configuration.yml @@ -118,3 +118,9 @@ enable_prometheus_openstack_exporter: "yes" om_enable_rabbitmq_high_availability: false om_enable_rabbitmq_quorum_queues: false + +########################################################## +# mariadb backup + +mariadb_s3_backup_s3_bucket: backup-testbed +mariadb_s3_backup_rclone_identifier: teuto diff --git a/environments/kolla/files/latest-full-mariadb-backup.service b/environments/kolla/files/latest-full-mariadb-backup.service new file mode 100644 index 000000000..31c5f25a5 --- /dev/null +++ b/environments/kolla/files/latest-full-mariadb-backup.service @@ -0,0 +1,25 @@ +[Unit] +Description=Trigger backup of MariaDB +After=docker.service network-online.target +Requires=docker.service + +[Service] +Type=oneshot + +User=dragon +Group=dragon + +ExecStart=bash -lc "osism apply mariadb_backup" +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/kolla/files/latest-full-mariadb-backup.timer b/environments/kolla/files/latest-full-mariadb-backup.timer new file mode 100644 index 000000000..b7afae6d1 --- /dev/null +++ b/environments/kolla/files/latest-full-mariadb-backup.timer @@ -0,0 +1,9 @@ +[Unit] +Description=Create full mariadb backup every 6 hours + +[Timer] +OnCalendar=*-*-* 05/6:00:00 +Persistent=true + +[Install] +WantedBy=timers.target diff --git a/environments/kolla/files/latest-incremental-mariadb-backup.service b/environments/kolla/files/latest-incremental-mariadb-backup.service new file mode 100644 index 000000000..8eca2feb9 --- /dev/null +++ b/environments/kolla/files/latest-incremental-mariadb-backup.service @@ -0,0 +1,25 @@ +[Unit] +Description=Trigger backup of MariaDB +After=docker.service network-online.target +Requires=docker.service + +[Service] +Type=oneshot + +User=dragon +Group=dragon + +ExecStart=bash -lc "osism apply mariadb_backup -e mariadb_backup_type=incremental" +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/kolla/files/latest-incremental-mariadb-backup.timer b/environments/kolla/files/latest-incremental-mariadb-backup.timer new file mode 100644 index 000000000..acf973601 --- /dev/null +++ b/environments/kolla/files/latest-incremental-mariadb-backup.timer @@ -0,0 +1,10 @@ +[Unit] +Description=Create incremental mariadb backup every hour + +[Timer] +# Fires every hour exept 5AM/PM and 11AM/PM, where there is a full backup +OnCalendar=*-*-* 00,01,02,03,04,06,07,08,09,10,12,13,14,15,16,18,19,20,21,22:00:00 +Persistent=false + +[Install] +WantedBy=timers.target diff --git a/environments/kolla/files/testbed-backup-public-key.asc b/environments/kolla/files/testbed-backup-public-key.asc new file mode 100644 index 000000000..9b1462056 --- /dev/null +++ b/environments/kolla/files/testbed-backup-public-key.asc @@ -0,0 +1,13 @@ +-----BEGIN PGP PUBLIC KEY BLOCK----- + +mDMEaiv4ERYJKwYBBAHaRw8BAQdAluo6yANRwGv5CNm22+a1OF+OKI1dXkhlK04W +VxUwoFC0KUJhY2t1cCB0ZXN0YmVkIDxiYWNrdXBAdGVzdGJlZC5vc2lzbS54eXo+ +iJAEExYKADgWIQRNxQan/LGxSY/WKsZk83rQZUHCqAUCaiv4EQIbAwULCQgHAgYV +CgkICwIEFgIDAQIeAQIXgAAKCRBk83rQZUHCqE2jAP9DLK9+uH5WtLSGplmC+FY/ +e9xwiwlxBdYX24uLO2qIBgD/V1wM2QIjxaPE+FcHoJP9clRPphUXL0YaCw8SbYHa +5gG4OARqK/gREgorBgEEAZdVAQUBAQdAI2PpOarlbeaYUQdd7pRVceUSHRyjh0X+ +USzLH9UBzlQDAQgHiHgEGBYKACAWIQRNxQan/LGxSY/WKsZk83rQZUHCqAUCaiv4 +EQIbDAAKCRBk83rQZUHCqIdqAP9KNOLb8ih7aGS84pFQ0qQTxI9iN2ItxY0YmRYe +deeeAQD/RW3YiA1It4zhwWXE+X8UNRZuG4AxtSnxb4Ptr3DuoQE= +=jJs5 +-----END PGP PUBLIC KEY BLOCK----- diff --git a/environments/kolla/playbook-setup-mariadb-s3-backup.yml b/environments/kolla/playbook-setup-mariadb-s3-backup.yml new file mode 100644 index 000000000..c5d8721a8 --- /dev/null +++ b/environments/kolla/playbook-setup-mariadb-s3-backup.yml @@ -0,0 +1,93 @@ +--- +- name: Setup restic backups + hosts: mariadb + become: true + gather_facts: false + vars_files: + - configuration.yml + - secrets.yml + vars: + mariadb_s3_backup_rclone_docker_registry: "ghcr.io" + mariadb_s3_backup_rclone_docker_image: "rclone/rclone" + mariadb_s3_backup_rclone_docker_tag: "1.74.3" + mariadb_s3_backup_rclone_image_full: "{{ mariadb_s3_backup_rclone_docker_registry }}/{{ mariadb_s3_backup_rclone_docker_image }}:{{ mariadb_s3_backup_rclone_docker_tag }}" + + mariadb_s3_backup_rclone_config_volume: "rclone-config" + mariadb_s3_backup_rclone_s3_provider: "Ceph" + mariadb_s3_backup_rclone_identifier: "backup" + + mariadb_s3_backup_s3_hostname: "api.bfe2.teutostack.de" + mariadb_s3_backup_s3_port: "6780" + mariadb_s3_backup_s3_endpoint: "https://{{ mariadb_s3_backup_s3_hostname}}:{{mariadb_s3_backup_s3_port}}" + mariadb_s3_backup_s3_provider: "ceph" + mariadb_s3_backup_s3_bucket: "mariadb-backups" + mariadb_s3_backup_s3_virtual_hosted_style_bucket: false + mariadb_s3_backup_s3_path: "" + mariadb_s3_backup_s3_region: "" + mariadb_s3_backup_s3_access_key_id: "" + mariadb_s3_backup_s3_secret_access_key: "" + tasks: + - name: Pull images + community.docker.docker_image_pull: + name: "{{ item }}" + loop: + - "{{ mariadb_s3_backup_rclone_image_full }}" + + - name: Ensure directory exists + ansible.builtin.file: + state: "directory" + path: "/etc/kolla/mariadb-s3-backup" + mode: "770" + owner: "root" + group: "root" + + - name: Copy rclone.conf + ansible.builtin.template: + src: templates/rclone.conf.j2 + dest: "/etc/kolla/mariadb-s3-backup/rclone.conf" + owner: "root" + group: "root" + mode: "660" + + - name: Copy public gpg key + ansible.builtin.template: + src: files/testbed-backup-public-key.asc + dest: "/etc/kolla/mariadb-s3-backup/testbed-backup-public-key.asc" + owner: "root" + group: "root" + mode: "660" + + - name: Import GPG public key from file + ansible.builtin.command: + cmd: gpg --import /etc/kolla/mariadb-s3-backup/testbed-backup-public-key.asc + register: gpg_import_result + changed_when: "'imported' in gpg_import_result.stderr" + + - name: Deploy systemd timers + ansible.builtin.template: + src: "{{ item }}.timer" + dest: /etc/systemd/system/{{ item }}.timer + owner: root + group: root + mode: "0644" + loop: + - latest-full-mariadb-backup + - latest-incremental-mariadb-backup + notify: Reload systemd + + - name: Deploy systemd units + ansible.builtin.template: + src: "{{ item }}.service" + dest: "/etc/systemd/system/{{ item }}.service" + owner: root + group: root + mode: "0644" + loop: + - latest-full-mariadb-backup + - latest-incremental-mariadb-backup + notify: Reload systemd + + handlers: + - name: Reload systemd + ansible.builtin.systemd: + daemon_reload: true diff --git a/environments/kolla/secrets.yml b/environments/kolla/secrets.yml index 7afc2cf9c..59942de7b 100644 --- a/environments/kolla/secrets.yml +++ b/environments/kolla/secrets.yml @@ -1,1537 +1,1544 @@ $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 +33663739633466323464633661356538356465353936306333373337336432393333313866373630 +3961633963326331666666343564366133633230336163610a663039363839323035643435383737 +35643838366338326130333832303562356538656665613439333464636339616463386461313233 +3837393234386333660a343661313836333436623533366137396338303966653565303736616536 +32636335653964326432383134383230663035303764646330633536363638653034643335376333 +38616463313061363262623565363937613562393632663838346338646634383564306134366134 +62656264656335316531326337623736653561306562363764313338626334646531386263653835 +64343865396564623630323739313531663434326535643235396639323766376662303261633739 +30643061343236646639393038636364616335666133643863383432333836343938396438626233 +62383561326265383931623536613735333135623634343539306563366665666434323165353162 +37343261626135623161316334623037656361656265643337626363353836333538383039383734 +33353165663834323531383731336539386662623139643537306332383666623039306432353464 +38333836343433373962373939333262393062616635363763353234313838613264653731623835 +38376639393964353138666466356666623161356161656462336336653435316536663039356463 +36373361303337343733383066306265356432666632343462393232356466346635383065623231 +34616462373133623633373661316663326136303335623036393836666465643066616161303364 +63633634386134636236383131356237663739373661343233326366626561396634613438656362 +31343339626430326666663962326162323130386165303235336436666164353532353238653464 +65336463623562333137373034633062626131303237633234393239333736313563646263356562 +38333037373738653066616631323438316339306636616366353230616365626639333235653930 +30316464323334333235343465353663356237326136326338346335623030393633373961383433 +32663264376238333539363534373233396632656433656263653862356362653137616666623737 +32613437366562646234306563323430663162303662376461636462633334323430613935353433 +37393565323532333530653132323064643937643232373564353866396633613436373666306133 +62353437616436326365393162663335303933313039313966386364643236333962363731656232 +63386537396233663731636365373834306637353131393337366432616161343933356164353031 +35346435363738376635366232623837633833653632623834653039396434636530633236316336 +30626663393361306535666366643433333634633634666161653539666536626230313361343139 +32656636396536356133316535383065623437303563336661303163626233633538633531643839 +38383366343839353162666363346434336435373164376538653630323739373562303935633466 +64646136383062626133613761653438373862303137353162653966666633643566383232643930 +35656334313638383630333932373065656462326263636565643139616534653965356261336333 +32666161663033376338396538393532653761343734646266356330623537366238666161646630 +61636530393164303830616265333838383739356233323035393964366637633038363361313266 +30636264656266383336666462656266383063616437626630376466356465313637643039383436 +61303363386334643033653936363961666165383361623232346564633666326530666238623230 +63633730653832303630623333353331646135306361353234376437376565316135613035373066 +66313539373336646139393034663465373334356562646461616136663365333161663731383865 +64666165366336383565303363643938333265323166383930653731613466363633343239353034 +34393263393331656237653438366438343639326364613861643639353832623439663964313962 +35356634316131346133626434623037306261653936363238663862326666343734663030623836 +39653538326331613633363939353836333066643933616265623637313431653363313238636637 +39353830386662383563626633386437376361376232353764313831376333653932633662383936 +33656465613833346466643164343266343266393163643733353334623635353734646333613939 +61653266646237643961616464616437376434616335336436336665303736373738646435333238 +33666632646634626462346535376531363865353636663736343034356130393262316662613634 +31366639383637656638393533616336376633643637376261336139623637633239333461626665 +31633561373362306234316134663539616463393065393838616535303364313938646231633831 +39633435616332663462666332613864316237333337373166393765363533636362386332626432 +63383038363639333639393936323761353239363062656435363731373431646233313431383638 +62363033326630346336666634393136666138363366623935316666623464306434613631313062 +62393733613333313637353335303532626662666564633832366531633465663033366432363637 +66356461636663353630323865613038383366346665383536616361643037646132613838313064 +36353031386435393562623137623264313638633261373932363334363136306430613662346133 +35366431623665363331326334633630623765613734343639333465396132613239323331376664 +34643131623437376366353134376233663166363765303730666234313739666539386365393432 +30393966346537653162393736333333323132343833383732323463373133623435306334633839 +30636231633534666430626531643161623261313938383561366438626238656236353439373036 +37383663626132663431646139663166636464613636386130333638393463363830623366356465 +65343066373930386335623337393633663062313737366137336638663463306232316563323436 +63396233386433396133626331636232613332303236363037333331373533383437666437653631 +33383930363763623536343633353231663732366536373563613265396134363065623031353261 +33343435353131376534613465336331323064396233663239326366333835353131663336626132 +62326330393161363865356361333732366265643462363839376132643966383566343962616335 +36383864313633633731616337303166623532306465363766663466326632323062333135346665 +39313962643933306662343463353739653963616331346664643565643632316463316333343330 +66363039653538623638613333636131336635666431303063343765316336353666643435396561 +39383937306565376332663463376439326631633861316138663533333830333738323335376636 +30633661313231616639396435386131326565346235343766663665366436626637383037336239 +38306464373865396564646633396163623038623734656332626632376637653832633738353265 +65373737373963346438373238326337396434623733663964333535623664366362643732363237 +65623866343965343938373432653063653966306634633535316661643164303262633562623638 +33343134613030636630626330633864306239323866313065636330613537303562356663316535 +35646236613534653665383235326366663136363738663737663662383564613430323632636132 +65626364346633643036343737386261646433363962313766383234623362646532343435353332 +63666332656331363035343437303161646262626266323865363734663135396536396532616435 +32316135343835613662626263393663666138356434326631636330636139306534303536333839 +32613665646131396461386161633536323863613363343563636436393034306233653039303466 +61353534373035376264333338333762303734343731383762323838643139613338323436326130 +30393036353235316437343761333139333664346236303331376332613366663964633534313635 +37336631366530626333313130663335653638333530353532623561396162306565303932613739 +64633635396165633739303432316561623266613832393262356638626261663430643236356638 +62646238373434393864353832613265653433343230623637623766353262353231323933623334 +34613664356530663065653238383865333463366630316466383137313435333930363837643330 +31646530613032343633653664653862656235343339343262336162363439376463373937656634 +63643236656332386262376165636362343764636235303632323766313033613232646533353361 +30336230623263303362306665643531393639633534626331346665303938306666633633346563 +64366631623263346566303736613930333965636336333662643936386438353765623130396462 +33306131386261633638313232363339393861633562363136333533343563313630353136363131 +61363761383030646136656435653733656538393839613565303063313163623138303631343962 +30643362623234333265623439383661656135393134323663653263616230613832343030643430 +32616430613839373832303633316331323161306663633365386364343637343961326461616636 +37383463633466333866623634343464356532356266653833386433653963373031626562656532 +37396434656136313664333436663836633064326665336236613065623335323031353430653839 +39363137646337666436346635663963653138333966386162373530636562303763613433386236 +36656438363930346232363864653135353135383364663464353332343535383034393630323962 +38393238643839333931383834386166663338363561613735663764393137313463356537333264 +33616266626537303461656562313336323933353964386638306539326639326238623738663439 +65663534316532626164663731303338663561346437313335333336306537393134323962663734 +31393564343166633261386261656166396338656562633539303436366361383763306536316237 +33366333663566313536613436626332306337383830393831663266313134383362656330393336 +64613333333865383737313835613439316661323864663565303364393334326266356662656266 +37373337333736386139323136653565346364653837366661363266643938333230306434643532 +35636131333362323532633239353133306664396433346330633464376564356338393938633365 +65666561323633633730343162623636616364383261663539616564353462333530353962386436 +66396335383632646566316436613737653439393563626334383962333738386661643562623264 +34646339623863333761336633306331323037663165346235646138303937653863643734306165 +30313265626261346631643035386138633436393564383336633538353661306638326666616439 +39383933363339353364303733393862373266373562623261663166333936313930643131306266 +62366164303463353536393665383963306563646633633132633736326565653162646439613930 +64656530666464323539393166636563326532326366353337333132613733346136363663333837 +66633834636566363664653261626364383435663234323965653036633736303335343437386565 +34643330616461343230613230656537393132346330623632663064396438313333666134626338 +65353564613835643237626133336433343836323334636466363365306165343339623638633731 +65316530613938326232663961356531623031336566346532333237623064316335333033656534 +33623661313738313462623939373563633666306137663461643664396332626538656333666264 +65656335383465393262366662363337373363663634613535643232613734313965346139643238 +64313335633963303361343536366262336337363434623761663161313733356533653639323834 +37646337656435636462356435626133623733343063353635346465373561376464623161393234 +65313238326431366363366239366266633531666665383430633830363264306363313731376262 +35663431373233363965333562393037343538633635643639356462303032393561336135356239 +38396162303530396266643438646132333838313339353933323463623864326534636662643639 +36633461393339363937383430353464663535663830306530383330383632323264313036623765 +36366563343063306230353930306431653838643938383365366364633035353838613936316332 +31643335363664393663303433613765333666396335383866343561336232336137343634316238 +62613534303834633762656365356431343334316137656630613364306465323865366664386563 +35343366346263653434656563646135643439383139643536373962646464303130383936633762 +36333865383564373664656132376234383932633937646361343533393536326337356364356265 +62386235386163356336376334313936373633663661383839323664653037383530346532633761 +34626137343730383337346236343737623465353661336230393231383065623161386238653230 +37346534643632663738343039366565363731303732646336613733623233323237373831353363 +66323239376533303232653539656433333962646238333137646336393063383939356636303337 +62313061333763326163373037326237393836313734613533633636636665313435623566643533 +32333864653632613439616361396231303664333162636338633661383038353331343039616632 +63353835353839373465656637386630306132636630353835356430303732373639663331376666 +31646330666633313936623363636366356263303161383933313536376334356138326166666430 +62383334633932666636653761653064396466323063663231633039373161656130323735376365 +63646563663037346635346631313430636561333761643561313636326438643035626138626662 +32323630616165643732363737393137393330663539323535353564353430333062346664386265 +63623137386163313063613936393237623132633239343536313939623832616237326631613737 +61303438333161383835346262666139343433353633373030366132323761326431616337323838 +32353839386136383930316165643439663761306235383638343835323561613362376431353939 +38633430393864346566383536663538653631363531323534363436306263613063613730623464 +36383437383232313762396464663764306664633234613736353736623833653063303935343364 +66393362333562343763343238626164353639653538316461613837616365383764343938303464 +66663064646365343962616635323836343238646634323538656635373337363534616232353136 +38663639643965353334653939343164656135663039383566396337656131306565306637303738 +36666664656563666363643138646230343538346137633335383738666430393830623031396330 +61393233383339366335333739613531356335646334336165303964616530623566396135373036 +33386562313066616364336161656561396336393438306637313337363334343766643932363931 +64336362653162663863376434346234383130343734323239393835386331306261643038656562 +35313131633838383066633839383637663564313433326637373739363137623436353663656232 +34613431393039346261626333653531663036663830303438313831393134393166363465626234 +63636231613566326631663239376535363338333231366237633462643732386439633430636130 +35306332326666646563383263346437646634336634316532346164373136643337336363623530 +64643335303334353833356661313362646266316663643133393063383963336461323061333163 +39356437363463393565613332323934316237616630393038333161346364373462653632366266 +31356265623835626332333734643232386136633930646233653231663537623362613934373963 +33666636656666303336623365666337386562656137626239306562373762626562386638633736 +31346364366663653536663538643134343735366262653962656134353061616534393765623166 +39313639333161343434613462366663333231376166396533323962356665303562363839346633 +64356366643032623530333935646631383137373866323332303633346231323137373533303131 +36643062633363626435663734643036643662636266393236383564336563346666613666306665 +38616630313632323137616135366339396633326164633534666436616135356130613739396630 +64323534646461353236393633646335656166383533616662363062326130373635376133346131 +39396262346535323334343363666533313538376635383036383931386232366264666364386632 +30376639326166626530316235313732653334336365663736623637363030393964336632653439 +31356264333533613532336638643066303430643834613734646533666639313239396461343166 +30366135353439393437336262613963666435646438646338393362336564396336626438366461 +35656532303863646431666335383637643531636166663038326562623133303832616630613439 +31613933353031346631373863373836333334366566303834333931323132373335663037633132 +65363934623336613430386336396139393862303161373362333433613961623761306363326165 +63613333653465633131316165386339306363363530386364653535643730623031376533643130 +63636533343333303334316361626561333037393535393064303966346361643563346137663561 +35633961333366313633633332306537643331306239396632646564363366656637333439353962 +30343033323063333436393762393832363037666665363961653733373365373230393538386338 +34316261663934366135316365656662336662646364666666316666393533613063303131303833 +33363139376365323239663662366333356631636332613035393232646334646236353135323030 +34343164316538616637646361343434376464373632616434376331333664623031366332363066 +37343761636631666439633035666364353364663637313036396230373938356332346264623365 +35313236356630366466303732376234646235363033353734623234656338643237376536363739 +30366364383964313061656138386134336336356632646539393639653237663130353530643536 +39306632623462313264386136323361383039303164656536313462363039373663613161393861 +33336264613862636261323637336539376131393934396533363765396131383933323439376432 +37386661663938663134363964363838623361386262346230356333333239353430663363653131 +36626163373366656538646463326134356132626533663661323962393732333338626236343133 +36366635346631343064656131626432363832653234366434656466363233323536643363323435 +37353166653661336630653736323763353131386234376535663561623435616361393764633939 +66633665306534373065663263343335336230636163363633336433373436376366623466616333 +38646139386531646264313037653538343332633939376435393831363261643534343130356432 +64633965316361626437393735303237633633646464353365386432636164313633306238373661 +34653765323237336662623766626432376430656635386366663262353366363132376166396630 +64396262383438613561373566306663643439303936656332383065343432336665363166303937 +33323032303933643562326438326363646333323161343662353230626235323561333935333662 +65396435623832393037643239366266613730313032626463623632396533666665396537356162 +32316136656336346361373132353463376130616438346339346635653764393762653365666663 +37636532393434323264623036306533663362663966633533623032323739383037636461623334 +37346362306661653231643933353566643835303439323165633964373033653961303863396539 +34386432613234633265393235323336346462313936653930666566613633653163346436323237 +36653962623035393036633032333839626636323531323632323262386632363063396336313733 +30343834666163303936303432313537356531396665386661626164393063363537326266393966 +65336462663863303739363739646230316233656634373935346439376538626639376336376264 +33656465313661373033363562306337353638396334653336333339366138373866326332306339 +33663436666132616461613365626130323361343731376362383565353066363136383037626666 +33613864663232303538626336613230333463336466623430353961666162616236363664333834 +34333936373532636235303564373065666631613633623466633533346437613933613439633161 +65663632393563376636643835616134613837636634623136666261373666396561326236393031 +38393431636139333136333734356437373036383336383261373466626336356532396162633361 +34613236396436323439393833376636386266346238343564613031366331393165633831333134 +31616439333636623063393331373763376639636365326435356332623261336333386562653165 +37313533356561366566376636633633373665356635323631326135623032623361616336613332 +65613239333939656639643364303363373863633263313130396132346533653130323533663338 +32373334303663613233383235643232643663336361643537613430353066613538656461313433 +63303034376365323836663035653765363435666266373965303461396661343537333131643530 +33666265313939653765636263663166653637303465623064633461636563316363313030646339 +33356537313834636338333630313239353932396361326365653062353033363766353638366139 +39613931386266336564636334393065393861353137336133653533326635303065333966653966 +38626465323532343230393963613237636663313965626238633035333364653036396533663536 +63313666393538343965333830653363356364336330636165623764333635353265333833656430 +32303739396462323133626332336232356261336432613862653431363330633439326139663830 +38343866373262643039386538303733353266613566383837353932636335333064373435386332 +63373534393665373563383261333439333965663462636539393036333761343735306464616635 +61333737356464306366633434363938333864343362383736663161343238653833623232623536 +31313961646230653661306565656630656163323436363635353538326436383964306631626464 +33353965636364313630333837376135336565356561613633333232386230346265343631383430 +66306636646161626132643565323037303863373666623865656533373337306130363132333164 +31653366343831316239323537326563646131613437653433313832383961376332356466356130 +34333338303666306535306666323961306462383138386238343432356131343533646630663538 +37626434636639376236636465306239373635626463386330343936376532313939393634656534 +30663037333434393536396566623037363339333631613330313530373462313633323733343834 +62393861356135303966663739306465396639386334653237373566636666326635306435383261 +62633665646638653364643437303633643365383464356265613966616132326533343435663666 +34383030373230343362366166343339353238383935646361323732373638393535393164356530 +39353665356664336364393162626131646630666530323462613062356364393633636261386430 +31303036396565363062316163666436656362616230373034646235326234616535333531343865 +32646436366665356161376339343431316532653239646436633230393264643633653263393136 +38643430376662623731633439653638303763336665313662633962366134383630363132616365 +39376463663334626438306535333032633634363431656237396564383332366139633933346462 +33366630306533653333656363383165393239613365396662623262353138373130663536653630 +33386365303265303837356138313764393135646239313337613035623730313033303263343162 +61333161373838663333616331396366633439373538366530366564613530613264326137313230 +65646631393061396261326465626363393461613231393039383862333761393662643034643465 +66633963386638376636656238363764623336336465663731653834303130393533373038343233 +65633135333832363365306436633837613262613130353536323035313339376232393132393634 +30613732353433396634646361646266363735343961663431326230643563356634623037396662 +62363664393734373631346130656461623337303465373334313264613438393663353864636563 +34353539373538316363366665313736303337323363346238353030333736363761353133353661 +66643837316130656635616139346562616233306239633231383535636435333232643265373065 +39326631303837663534616433393531366233656439313361386634613633353833303637356165 +37613564363833646264303332306531616633363738633264386636346230303666353861646335 +36343264616536363564396337626132306366393836346433373139636661383837353037393062 +62653434643266383764306130303766363233363063313663346638616238306463396263623366 +61613234303033616338633730353532643932663233333663303332616539323431633465326532 +65396137373738353539336537316166383262363839333431313033623731363436383834326237 +63633638613039663239323232643061346234663136366539323130363361396536363332643966 +62656535373637303739373532653337383330623734393663636465353030353335383138353864 +31363461623161393461373661306239643237663565613336346130646631373465383064653939 +32376431386266393738373465333566316361356533306666356463326161363836633235363961 +38636430333137633833376633666333633038616565646131363539336464336533313466353939 +38303664373736346463663431343030623064386135303761373630633363646434396337653931 +62356332643232333530373732653834303135666635306531616332343132383463393638333362 +37396561646263396339643839653032376238653037313930303033343735636530386564323561 +66653932353661663962383163656430343634366433316239333733633061333934366337313830 +63613666326166326138303732396332646538636363646263326531306565613739386237373436 +65626266373263396463623232346165333764323365653232623537353861316165333038313535 +33323931363338353066366363363333363362653231343136626137316436393439356566306464 +36646137663031303939386364306436326562663033633461343937656237336163333536666636 +31353035343262643032396362646636383538656161333232333137663030343766623731613236 +32616638653162313264623136393732356435663065613333326534303337613337633536343634 +30646339663134616261626230636366383963316431616538643865333963613235386339333562 +31373561653461656166386566333834623061376330613431333937386533316165663733643134 +35663038376333396266366365623539353933323232383236353665343937383532333237636162 +65363930346565396434383430623062373634303931336262616663303165396465646639633236 +34386238386561303334323731626434653731633637383133313037386139333362353833663438 +66613538323435373637303032353937626230363330353065663536313663363637323832653839 +35646434396436646333346466383962616433313338373863613430636431653638313961323831 +64333530613061656338623631356163333363376463313934656565353730393235393430376139 +61363631336232396363336134346165616265663731396533346639393632663862343733303732 +30633239663863313763323761313164633735396232636132663334373831363838336466333836 +64313830336163356331353930363263393935363331653165393430613131623631366561313064 +35383261326430393230373535666264313939313734646135306338663839326134633035626532 +39343033336539643131633536623963336135613466626462366162643838383434303264626465 +39363261393765353566333338626466333337643064623130643565373632656131333334303466 +32346634623837346131663365633236366239313133643337663465616537383732326165373561 +33396664633637636463663334353438666233336363316161323930353865623339366533306537 +65313334663064336261336139303161326330393733343766623037356539306437333934666166 +66353362393566353465313132376166323061346262343532323363633661613364623939373336 +32343737303039653533386138383839623264396566363530323036353531396330313265323430 +62643734653134336333373430336265356638633661616162343535616163313166333230386630 +38613339653431386633346663356166626639643234316130313566353437643637326635666333 +30323633316565346130353433353539383337613732633437313865333738343562343034313863 +61663731666561633234656536303835323666633836373765346533323564623436653364653330 +35353139386166373363373966636230373130633935386535383734316238656536303261353535 +31353434303366356332396562343234636530313962303631633436376464656661663461373362 +35653439383237323462353837303331353461333664386238623237363235623863353630353666 +36353961616234643763366363663035623761643734666436643830613162313730623362393032 +38656565616163316336663835373531646461643663313331383063636366383235313465316466 +33386237643531313737656531633634343139653538326337643665373838653638626334633235 +31303237376230313565646164363737366464333136663239313938613362663339333661613630 +38306430396335656231313463366532393932633162323339336130336336616339356630323231 +31613966316530626639343034643132306161346434336162643038386533623631653032653161 +63633639316632373230383861363634353866636233316234366335633631386665623732373966 +39643132363065393237626262333935343635666533643231666262356666613133616161376138 +34663766646337626130393836366164633839356135623964613531333661623335376630356335 +39623633633131663663383565323861366331303136616235366132656139336361303836313833 +37656365393731373838373034313131363263306434653831613866663930373130353639646338 +64616564363935636534643134663837633263666538643864366164636162343963353937366339 +63313532663966393930633930366162323538636465313865383666316162656538656565663632 +31626366376430396231656637366136396536313165333739333766646366653338376531333839 +38316164326232316265346532393733373363366537386663333534663333663562613661623136 +61616562336235393264613234326133316330643064636132383731383762316536643862323333 +65343738303236316532643063376533313031323031633933363665346439323433383238333861 +33346339646538326566343436363438343930376662623237656436616163616333356533653662 +35363466616536393635376162396133363234363534396539663432656265366234376334306165 +36346662336632653161653136343239346536666664306339303864613165363664653532616433 +38646466336139353133363933333237633262336334343935343263643438313839613530333038 +38353763383666326237623935353035626235636139626364333264326365316530353535633937 +63353930323537333731616563613033363034653165316166643935303333616231336139363137 +37326236383336373565626566616564343232373937623365396533386530343335373039643339 +39613664663364313235313739656538336262373564386563363932386363613239336337623638 +39336633386162663937633534363763663136643463613430643932326634646132616465353562 +64633335306435633735663039316663656138346664643031613332633433353731633438363138 +64623836353339393265396139333832663436653638323966623436396339653662306533653062 +62656664346461306166376130616236633331383539373566366162643831373531313634633661 +38323431303535316462363332386231363262366538373030623431346433386638363139383965 +65633139303537616164663262663435366535366466346331336638393037303964356330383562 +62616665386136373630653837646136373861663032306433666561633464343963613235353330 +61666530376365626361653538383763373264323766383630646135316662333834666561333866 +31306163306430373837393064656639393030356665346633346164383332653631343733353433 +62616330343365663836646135336339653764363764356364346566393830386435636166363736 +33626334643264313432353361393465343166356163616132336238353061666133373061333461 +32333738393334663436356632376433616436656133633331336564653738653765393463643666 +34373535373031326466373664636166633266393832326439373636646139346139386231386236 +32613236666363323735313164383031383236666436653065336562333138633232376637363438 +66396464656337663237663434343964393661383837643961343661653865363237666330353566 +37643835656661353531316334623931313837303234373239636663636236353933643235386534 +31346664633864353039363637653634316562386333613539656461303561323337386139303435 +61383539386337356666636130386364336364633062666665383034373136343763356632323563 +38326365653862633935376337393031376566666534646166303132626233666164373666306136 +32633237346535643132633565336666313164663931633636633464633661323766653861336431 +38313431656231313062386337653465366462636561373437623639313639313830363134323764 +63633238373231663363646337303463653237303236363739623334303965653736333033636136 +31313237313631393533623937386137313530316531623431343531383738616565653736333230 +39633031353135663865393631366365653239333265393137333066323132643165646263303232 +33386261303461646366356665626632373030336333326430376331316631333236613239326663 +36313633323735633436646163383030613237653634326435323931303530306533396237636530 +61623134306265323234316566623732363338333734376161613737393133656136666532373163 +65376239636637356339333238393032336431326237623061376665663034666135646132646237 +36386435393866316265356436323066383033383562663530643730326338663130613665613932 +38373133636637313662623336356637366364646338376436383363303636393034633834646132 +31333865376530656464323561613366313064333166393238336436343337356137636562383166 +64616435646162373563373231373862306137393561383561313131613966326337393364623233 +31643432363632653837353531343230363039316637376536323437313031333463396533336439 +33666534373731666166303238333635323939356634363466646565653535313265303964373134 +31663732306434326635306234636162323935643534393231646663376465366632306637653834 +31376361323565396434323266363731313731343863386230643864383363643166313332656266 +65373964356562656633303763306336383562616662323337393837653137386334353361363231 +62376265373333346237383031666137343735303662383762636536666239623662666536316235 +64373339626431643833313830613933643661363662323339373530616437666336383839366133 +66386661316630356338326539626137336261643632663166356535653664643530656131383936 +38323139396630386562376634363132643834656261663330613038633266666366343634653133 +35666664353136343565623461316162643135366236373336333839653264303463383931613737 +31343061383632663835623032383539303061623161636338363563633638646161633731636461 +38346563333166393066623432666630353661643962633766323665356530643565383135376336 +38393661626362393837616135316262356130386637633738343461376630346137393165353335 +37333030626433643663326363353436303139366461663763313161656334363938376239393039 +36393464333833393235623165653966633736376663653931396362353939613631323331376433 +39613239643435353732656437303030316239303461616262326534613733376132613637393035 +31613333626537623634643066393630613736623036306333353366653131623231646130616535 +36613239316566303138343032623834303231373261383535663064646537636664656266333861 +65333966633863333937366466303134336437343263643236386462383165626533356238643664 +66646536303761613166376264396662326265376330636437353764373464643164373061376434 +34396139323963333966646461663730383132356466616330663636623932353038633039626437 +62373736333933376239636433393038336461656231323465346239666238666637643065353237 +32303038616238643237373736356436376137313365396332653239326333303033373433336263 +35646235393435313032313732653530303863393737663437346264653162626639626639353234 +32616134613463343137326566636433643134653239666539643166396639396664316431666263 +38623537316261333433313861633230313536663936333335396464353537343835346162316365 +32376338303066323164313037643234373730306430303938356665343461333932643230646361 +37613931343834316563316635326336366337653361653265393831646366663238363632333832 +34393038326463336361653138393539366532323564386330343831646337653633366662663634 +63323463316339636561386266646336383261366163386462353362353163333234346238616238 +33353931623965323836396139613832353838356130663465356236613361656638346361656531 +35646332323239393565643037376661626436313031396262346532376637343535393737356235 +64373635616166613863623438356264393530313931313864633661313936633266343834303332 +64616336663735333434373433396462303964656363313231333064613335316233356661643032 +61633034656138323231373261336365356462663736633636663564316139656264653739666439 +37653736343263303265323562346664386532306563393639383665323966383863366435633938 +32336562316537623439623832363436643035623932653635626666653065653435393361333933 +66626435373264316563343562396134303064626234343732653462326435626635336163636135 +35396464343937653663326562366434626163386266623366356562303432316364326130623436 +39356430636535373436356265373633303262383433343133353061663530636136353761626133 +30626132313432353134623530376231383766646261386638636533626237613839303134343562 +32373939346337633633653533353731343361633936633037613039393933316133396465353361 +30313861363434626638386663306434333035363030343265366561623936373931376462653961 +35393730623537393237386566643730316337633762333439343131366263633965373336376236 +32643265623232653638353865626337396138653432303563393261336265653261393062376461 +65366361316132653430333165353930643335663231346136666166313666303235623231366430 +39343562333465333866373034626136313063626135356134626562336338653461633938396537 +37326132303031353934623633323638353264616136626633316432613738653434343638646161 +66343635356664343233353564636233386237633435613630333163643737346333356334653838 +39333262373336326465383532623466383865336562353062383535393763383863306332356535 +34626330353462333335313530353465633737386538333761613934626463366237303663363135 +61386666663939613632393033386136636435306131643336373937313230336430353464383061 +64363861663030643662326262363831373465303736373938613739306163373338303237313435 +64636232386564383230633364346461366433313331643034313865666530363463613066343064 +39303364326235326564316462613430306232653431313538663133303161396135343065363033 +66313038396436333130633735306639653666656632646261373836393662366132623062653765 +62336237613964656330636638666430316166373733343964353766336336333439393761353331 +38303963306234363561376161376236393737626263353337636631316634643438653662316663 +31396534653631333064323466343330313763373461303762386466653461313261376464366431 +35326166373732653366353564363132366130663437316262373235326634313662366333393331 +61353564663063333965333039333065646464316631396166393135326165646266336130323335 +63343834646265653931646532623265303639303864393961663963363032386134303063646538 +32626439653434393030636165366631343433666537666336393863326561643261336335343663 +39623631316437653965626338363030336536326230353863333137333836653565626535363938 +63613865353739396565343261373638646530386535663763303061646463373930303830393062 +36663562306536383537363033626464383666366366363437333363306462633436303164663733 +36613563613231383135373138306537633764363362343866376633393833326235353431373632 +37346633373534373231326634636466343537633636643736386233386265383362653061633638 +65643530633162363235393166353837643164643034316466333661643231616532343761653238 +65613734313066393831373963303236633837393833663136363932313261363534316636366661 +34343161323661616434663633313762343633613836313764663634346335373632316433396134 +31633133306263666463313432636664366331633637313262363439653539613331356462383033 +62646237623035373964616232316361656537656336356362633936633561633532383836663530 +34616530613638326166346239643030623361356266663665373430643530616431306131363335 +62643563323761356433396332316564666435623262383635616264623563383038633132326163 +66396163383235373537366333663138363435656563646332626134393634333132626434666631 +30333034613666333262666632656234336561383530333537623935373565623366663436343766 +36393436326637666139636332393764616633653334376235653437383161623665623639613535 +62343163646633663462323163363734633863326239616262646339363861366130343436326165 +37646461386465663231666564303465613064613565383939306536356337633064313832623136 +33376234323864373137343461616461383763633834366238353636656465303438306438643437 +33613231643630316362373630393130373431626230376531336561346238383637643731363738 +61373837373137643361306564343131623063626337313738336466633565393933643964333834 +34346633313566616233363465323762363436346131393033626332646133303432396466313837 +62333933366233313065636334356330323266626530643465313330396333396433636664663062 +35343033366631303364316362626166396433623331343837613034646563623539613932353239 +37383663643865613663353731363337323439333032633936353033323333643433363662363837 +63356130666166373362363164356438363061383763316633306439333330326134623762306530 +37363738333462386232396531336165653930333137333663396630316537393638376566646332 +36646161306162363733353663353539623831333035613064326237356662643135383739386535 +36353536616266343361343634626439326363343238633732376263346661356231343839366137 +37336331313931653233663933343661326132306665386238653039353438666132363539326266 +31386234616463333435616337633132633233303461613163636330636533343438336163343261 +64356664343761353263333930383264633362623932663434323565663965663634663761386333 +63316562393161313264643334646163643034373262623566643938323866313365346361326665 +36623037653166393631396366613963653137653333363063643638373664653837653333666138 +36336433343532623766333438633631383765376365626364366666376464363463376136623339 +34643231336434653165666665363430393731613062313063373565313936653739303562363132 +37366264363463666332333634623262636235306438646135323934363932316637313435623866 +39313939353061346164313938666264343336306561323962303635656265386537373437343137 +34633731343531303166623632613964383861393434656662366239336130373064663234373461 +33346465303362623434653465363064633237323365643862373736653330393563316533343138 +65393933623732383964313436656266376165666338616537373136666563313831633734363762 +33393933383666313764336534333531343731656537383530616239373765313465656436396163 +61373033653834336537633531356434633563626333343465383739663530316631386334373938 +63376339646239613466343166336438306331623230373539656133313034333661373239333166 +30656430323531303230363932333333323831353233323666323836656439396434616238663931 +36633436666264333365643163636465393564353932373663393635616436393032643534663966 +32386136633931623330383132353366643230656565633336623863663432636631373334643239 +63333230323263663864383532333630313634643464353038626431623461303433316565323066 +37363635633631396533323633643130633962373161383037653861313630393862626134336237 +35306662623736666263313134323261613234323863343738313662633033333132353231656439 +39636334613737343639353630613732666466306434306531636631653334646136653966656430 +39643464373235366233393464626232376233343661323836613235393632386532356532326438 +36333734613038323463303033346137616234643361363630323065323165336166636335343638 +34366365656536316263623033343332303761643266356565313066333966373866393738343734 +38326366393137353737386466383365376338646535306330346431613630326537633239663935 +33343063333930373461333035366135666565313834356531326463643363353136396338643265 +38303966656438653532373936386234326137336239333134343561346232623837393138643336 +61626538353538393837363933666130346133386362303031393633623131326663656236333138 +66343064306333623234623736646335653134343963313961376632363430396662653737643538 +63393363313136303239346131393036313337313730303930343466333265643861386565306262 +61613939326235333031323363326339363938616439343462386664663337366232343730373730 +66663465333163623231303336313463376330633363653865656366616662616436376135663662 +34363230636339383263356166323631396466373361326164663534303264353966343236326534 +34333565303665356666323763633934636662323732646461613561343230633064636338313462 +32373536353836386237633338643863386666626136643131636633323762633235613235343038 +64613133626134616666313465393930393439303534336637306538666332666636366163326465 +31313433383131336565383137326130356134343038396339303231663261663035343733623734 +32613265356334643635313831656133303464373039663532663332333536663232393733376465 +34396235633566363336633836333261346237383162663164666264373564653038316333643939 +35393164383633323636646165333539376562646162363936383537306537313831383964663238 +39353964353933613939646536663230303436663437666436313332613832613930663664343264 +65356332616664343961383538626562633333656561343564363934356237323339643464393036 +39336635396538376261366433633336343634396234313235616261323934336638346434626139 +33613461363235356339363932633437633135623738316138353334363637643236323030393766 +64636165316431366565386432646236623037303434373432613938626538373861336539313238 +61356432653639396164633563613364633261616532383933363039616637363462396338323563 +30313735376136613531396563323435663731376531316333613962353539633761333131323134 +33666435373163316131653836373965666334386638366133653063386562666263633835653939 +31386535386462653837656236343566323632303161373963323035633439643039373536383431 +30626439643036323465373939663531643733383536623838383738656537663731306534326666 +61316336323963656531336234333839396138326232616132666134623066393835663963643563 +32313062623536636564323861663830336333313963363638353438336139366436313730663862 +61653031376263396132366531653930393761373035313761383166386134373235316662306333 +30366530326635336339303065363435323430303433356662333664666630363838396364666664 +39326537326366656137343265643939363738656534383866613238343736386238383836363832 +37386539323732303139663362393835663666646364663434323235336530623231326433626565 +33376665616463393231636237373334653333663664663533643536366233363734363339366161 +62646532313635366438393066376235646635336661353231386332393036656137343164323761 +65393761663966396530363536363535653734623461643834366465396630366336663364646463 +61373933373766653764393638626332333566353036333639663035623733316566633538346136 +33613134316464343539653039323733616439353362393366626336343466336638323738623839 +34373565356230383063626461376265633362623435393639663034316230396331343463303439 +31373363343461666237336361326135353230363465373030303237623630373936636430383762 +31343365646437323563313136363636383663623435653635316265643266366362656631363735 +32386561666566366437313639636131653564303163616134616632363037306237313863636338 +35623133363139343436316362616235333661303061373933656534366637383335636661353633 +33666366376131636534653531396338353237653762623261613730363466333462663735376264 +33653064323365623533643836336562623662613434346630326437356530313131366632636362 +62623935306561636434663464313530356533653235393035646463643536316235653139616664 +30666339353231303630356432353031383739373938643135353134353161646662323035616431 +34383964623161623862326132353232623862633866653361666131623565353034616136623131 +34636231313936313432363537326532313533613264626264623161373232316634626531643439 +63326339336633323437613063613932343932633836303836616530366639383064326632366436 +61616161306337336133643939356532616234333561656437633039623532323234373064626562 +36623431383063353166393761366136396461366236616433353363623965623534343635366531 +65376666393061613032663636646465326331643261613132373532336635653531306661616131 +36333730303139306633313633323033653434373936363462356538366233313431333230323635 +61336636653965656161623666636538633430643832626363386263636634356431353838333564 +39613439613230383036653037393138366634346166666132363761323931356438353466303939 +39666133616564353861383737636333326535346134346538636664636431393832633764366638 +61613535656163623662363764626639383464613938616431366238376336643232393737323062 +62353662333037623231623535633862343837363837323338373762333663386561646232383161 +37613330653036326535343533393335356131353263393636333432333936633966626164376463 +32363131316334346132353832613835663066363565653037303637613962393962656638373861 +31306633353430396236623135393732333364386537613164643335613137373031303835336563 +62393932333065303638393630613561363638663463343830613330353138643931656137373038 +66313936666465346637383939663661346562616461646136386663353435616135373934633533 +65303734346234376334313231613530396166663338353265663464653836633433613036653533 +38626165326636396466303466393039646534313938636130396130353834383035613035306564 +32396532646339346266623264643238376132353435663539336239373032616661653733343161 +63383064393934386137343035323965663031343037373963646134633961303230363636353963 +33616431656566646132373563343530653533663138643965376335643063303165373963633065 +38633464636537333939356637396338323533376661396238613165363635613234666639633339 +32343834643161366231373536326533376131353866626436643835323237323839383030306630 +39333737613733613537306332633134663933653965636564663933316335306661373161663033 +37613566633665383338663361613631656433316165653866626163373037346636633638353532 +32633065636535626334366662656634613536363635626331353632616133663164303633303164 +35616335666332646434383563386537623532623835323639383264613438666461646431343062 +30376334616633323031353466396133653337353833653431343334336439393034303138613531 +34393532333562623665643437336138663065646235326132373438346565353531666334353330 +30393538323732663463616534386262616531316230303530666331373763356336363736393464 +38653163303662643265323830653238313866656234383563366166363135386330316538323730 +64306434633636316634633432333064333337383834343835346562646163643130303933386563 +34373965663734373333636630613337613466343136383464383431343939633236653234383938 +62633935366562313032633536346232653338646235383063633066666265326562396236663965 +63313633383766626532646130396635393539373166336239333237613835643632616334336631 +37636166633836386539356334313237653332663562333833616438306233336537656231313837 +63646563383064333766323937333463636437333062373938383034373537343739663565373231 +32363236393138313765393239323530313461616532353630353437346234383538383365373230 +34363531326261366662346132393036343236386162613261386463336531353466396239666636 +32313531363137343062333662333366363137303463653539613535393638353036313065633633 +34653762656434653131383161643162396331623766316264363634663035396430356262356533 +65633064663436383530653737366265303339313632363339633564383937653164396266643730 +64663861623835623732646637313838393666666138356534373034376365316234643837643436 +38663066353338663534346438623730333830376633623362373630313634366566663063646239 +65356133653130633034663463643837393631343234626164616261313332646266633335366461 +31653738336664623032636338623130323830653766643134636232396337323264666430303634 +37363863313630386139363030653032643130643233333339663437316631353533333537666535 +33303066393033656430616265386434646537356539363633313061326361653965336431643031 +36333134613030383530336365646634393265383037626163663162366432356331303136663463 +30656464316138616261663436626330383565643666336566383363613635393561636461323531 +30383866636431613733616134636436363034393831616639303235343539386461646365643463 +34326633376663353162646635626231386461343861613432626162363466333266353334323061 +61663137343032303430643465356664353562316333326232643834306561303533626165376236 +36326437366337633862323436303063333238623634303031653262376431366462643362306432 +31643531356431613439653764353765656565336466653862666664316132323832323139613030 +66373438616539376639333136326662363663363164653666643435353465343365343161313537 +65316263386637653836356236343063633565646530646338303237323964306166323435646665 +35353033656232653465336637653462333832323565376266313866396532666337393763623933 +30306265666364373766343030303066316433616561653531323432643435663964396261616365 +32623864363438396666616366636233373335373762636535383666613863393665643161643066 +61373561353136623832613965333035346332613538663631663836396539373962383830333466 +33356366636665363637646463303234626630326661316565323865353038646636376134363431 +64646631663538646430653462316262366464386331646337393634663236323532353064346363 +64323063383762613039363462393064396661306237386536613839323438653262306434643539 +33383166303932633930396262333861393534316430613739656465366533393766333938383165 +34326438633037346535356235316133653930623766383861616436393164376661666231363234 +39383332383864613534656137333361643835383666303337656664343438616536663333643934 +35613733656636633834656465306637333838653039326638643364396661646633336133303662 +39373563366438343330666531333366383039623263383566346361626131333333613431346263 +65333065353064313663383537623236366663393766326636323032363330636436323936633866 +34633965353030643164666362666235396336653939663936663465336666623961366565393534 +63353132633565373763303366653034383162366362613733383730613439653339363764373963 +30386462643639303534653030663163336563643966353535633834323965636135393436303261 +38303836653030613366616630613066393063336635616563303363333163656338306538636236 +61666531316164393166306431356361653862323163623765656364376632386432626466353236 +37656535363632366665303464303038653134626266313338396532666331653032333562303739 +66623238616337373537366234356337333530613631633834363338316464396430323439616538 +36356335396131373730653639626436613537363366656266363333356365383362383737323761 +66613635623964333763646563666132393166353930306639366366356637636136623061333032 +35333363643531613633376563386534343561666662643231663462653135373366633139323235 +38353837373932333239386466303836623964393238636266333437393030626164623836643637 +65636361663566656530396532363764323931646263323032333138633362653437373430613635 +30363864626132326363343937363861343963343762336338646236643537346465633063396632 +62393733356561333363366131373037376330643864313935373835323631326230636135336265 +61333335663738396531393462346437663031346136343762643430643938653034303433623566 +36613366383837366131316636333463316561313430353931356538353437366362323139656333 +66303063613539623536316464323038643230663131356530353466656430626337356337623565 +37653637333432326163326265386339316636623837303034356332366439303530393631663565 +34323062663633336135636638333736386532343732313339373933623932366239656265646536 +38353839343164383830366531326131663566363638353266313630396539303139343734363039 +66346338636133336635366132313937343464666636323835663661666665323739303739343936 +63306166353561633038343830653032616662343035633938646631326639386265643635643736 +63393434626131656663663634363563376637653335376362646265363430356262373663323064 +61643737323932636163613164623462326230363034313639306239663963366633336164346337 +32393839323030383133306338633933373539613837646138363761396132633639333036386363 +38316563306565363135363762666135303831316438326139313438383163666361353733336338 +64396535303236316166663762646239356635393732636239376666373866613135306161333365 +63336133313964306436613637373432386235383166616539653736336333313139653261326435 +64623237613463306530653233326135386234333738663961313535356137303465333966336133 +38623537383537656566356261643237333961313138666566653439316531353436306130353935 +32393731343163306132333265653764376161366162386134303330636265643237623530636237 +36316639333335356337613134623535343133366330633831303638363231316336373934356538 +36616438343631333361663763393737663438383430383363626531666634353764656131613537 +38353537313034303364373761336162383233383562666639623564356636666237313237393535 +62653430343239663730616565363138663637343334616132303661343762613035363233316461 +39306664616361316533326430333138643633623336656136373464316637376337396537373234 +31353735616364313038653531303130636561396363623337363961393261316536366134356163 +62663963386664316465633532646139383335353739383461383030326134623864643335343432 +62623537366463336564366430623932373966396565656233323434363438343932636164346461 +32646132353662633266363738376464323365383366646563643533306564386262383861633265 +37623034383861643138303735633031336338623632326464346430633935343639303237623966 +33656535396662386338396438623931346436363733383862316633636663343633383538613539 +37306230616665316339343064353465663732373032326531313438303539303632353830386264 +64613138616534336465356131326163303463396437313061303334613433353232383664383139 +35666166343961643237336436643830313038656432343838303630633933353261643533663864 +34346137616163303363643562303238643564633066353838613565343666396132366366306364 +32626261303565633561316537643335636461363563386530366666366562613831613735313436 +33333739643165643061373038636132616635396136336332323361613131666465346166623264 +66643634333730646332373237306237306466656365343363653130313639343862636138326431 +33656462643633383661353037653461393232663435616563343139653137363237633566663663 +61363933653636353139626366366465373332663961666363613232393266316234353931653063 +33313230316564313466623635313765366235616363633437396565313630393665666464646163 +31626437616339353838366362393631396131626431663833616661313638353533653338356139 +39386266663233613136643639623037356363373965386666656161363136356561663665636233 +39306234333563353535626134636631653538333935643037633235333366646535656562623761 +30626633653634383131626630343339366366376462343033663865363966333139616130393639 +65343339633864373438386432363838663732383330306436396134616363373531616364643866 +31646165353830363239376365643735616134336462616438333237376434366266613863303937 +39383833613239616539373937396162326362323764636332383932306134353532383734653737 +32306631653564383135393739633437663262356131666466393136646335653331633138343837 +62313737643664353134386438303664633239356161376266323735646134333765666431616664 +39663965373036633838633230333437313663386266393034306335623066376432646532346330 +37353232316666376434643337373133336466626431623564343862633239363733623034656139 +66646363643039353866303130643663383738343638386462646665643737373133303063386531 +65616632373734333261326237353533656138373738646461306630313061326632353431646564 +31653135306439336465386464393664343431323032363836343830626362653966346235396466 +32333833666337623364626339303162323864333963663733663735313264396166636634666630 +65316134356161633638356333323263306562646137633264383837333437653363623564613163 +34363632313939326665333339663763346536653232663364323265343061656334323238633430 +35643362333135336262316363393964366134646533626635643732656637396332656533663366 +66393962393462333737343438313365663536386634363132306236313566303532336437343264 +66656166393035656462356365346162616261313033366631623465363833613630306263643666 +63326234633837333536636161663332376665366633356337383262393032656338626166303338 +65396139343962656135373166353233363137386539626130616430336362663163393365356532 +34613864626536393737626235373133613131616135333865303833313831356265623334396536 +36626431613863616539393530626331653736613132346264613433326565316164393436353161 +64646134323937616337626537353564623137653339613665373934363632636338386664626431 +66313339636563393632656263303362656635616333326532623132666439313239646363353930 +64663230646163643463656439383234393933356563313661343032346538346565373439653235 +37333565383566366663336236633464356237333565386539393033646631656265386438613135 +62633664343038633663363034633435653366653266396431323661646634343135303336346434 +64316139623337353134616166366563333439666231616566396639643936663837626334333639 +32656263376233386533396666643239623639376663643163613034616138656136343437626563 +30336236656537373237313766633463646165623237613638376537646165336462343136613461 +32633937363663326362306136363764396536373166343730346637643233643761633762363135 +35636365623365633063313166386362616361326131663231303962373638366662626163653862 +65333531663533343264306533636561646161653030353763666530393163373065346234333930 +66643464313733366536353061393365386461663034656138383233363034663937343264646636 +30306665653537343362636237393834326466343735663464363030346232616438306236633765 +38343065316362636666376564666464393262393665396465636431343463633762626138643634 +65363532373834303432353166613065353364663238386135373933363964393065353433306162 +36323330616631623237353636623038313962353162323534343665393339346166643631643135 +38666533373931376163656630306630393739616639653963333335386538386265363437343963 +61623032366263333832303262373262623964363866636238363431336363633632323435356165 +30376237313334383064313533653735313166666564383932646564636130623532626237656339 +37636136636365623039626639303632366636316564316431626635393663393764356239356336 +34633039656137343363323138353130313433316530353331663436303766323366366633373737 +31303530393265323737306536363933393432633030393861326162643437313833646361653432 +35656266613066316336666133323039643564393033366632366366666238633431383566356638 +65303131643364363639363465616462613131623031623438653633323263373935316562336334 +37336336626433623735623162643937346431613735383330393236323434656561333239653930 +38363430323231373937663762363932656333303533376266313632333437303639303933346566 +30666531306636343362333239383864336333636230653231663335323862623966303762333936 +33636536633638373232373839396436303965613234306435376363616633343963653136633561 +37353035643464363832626131633734613734623162343030303061306532633135626531383934 +30373563643135396366613163316162666265613465353833396366643837363937363030343836 +66323164633465643430303339656362383562646633653739353139663161333730333438383861 +36376639383262613333316239323565373765386432646162653239363666383836656564346364 +31313562623738623432366566306631623966646339386637393166373963613538633036343238 +37326336383832646535653034346433613430333661356165303965323437326261356335346336 +34373237636561303332313066363639633930666263326163636534336563646463663632336331 +63383039653865333531393465366561653965313965643661393139623463643935313634633338 +63663738613636346566303465373039663932626430383033323661366362383866656466396636 +30306432636365383330613961633435623063653735346135336161323332393034653164656464 +32303962383837633965393639643136623964346238356638303539323831393839313733313534 +39656236353961386330623566656234626335653262373135366461356665626361626636353031 +64626139393636633939316163643664393763666361346232633436333066613036646238633366 +32616530386437646430323935656261633334353562396162303732393462326530646565616465 +34313665626633346139613563613134316466633961383232386335336434323634356539616466 +64396534383637646264313230366366303263653064393964356264313037336563356561633737 +36376465386564333261396463653531376664653932363339373865326532303930623838393265 +64323334343838303666633137363037386632383236656239363331316266643165363963313637 +65323731323435373238326136643535636461643739646464613033626339386564633330643933 +34656566383565656665646337373463336134376463373730373561623436656634303163383838 +63383339376236363735346635303835373433353761336166633633393266623565363935353037 +35336336343637303137633263373931376137653537643135393263316239343661336263663562 +66303837613765656235356633633735396538303833306364376462326664613961383335356439 +37643932386564316364393864643831393931396534323531626639396265356339363439383466 +63313439323139386537663336373439316464653864633030613662626238366466313133646564 +37323537333831376531346266396433336437653330643463666563353237346536653132363832 +32393730323766333761653766613635626162393931363035626663663264313338303338613532 +36636133303137323639396230613762636638343665383865383334316635383263653235336134 +33333966313632613932326264323662376464303065653130386662306234636662346262623861 +30613730353238646135333630316632653036396336383761376238313034363936333735356235 +64623831343730323231623832366565386238323333616234393139656665353761376664336362 +63353831336336366263336335613439626233343664656430313130396636383632373935653235 +38313962396662623366383135326232666366653235343764643234626633356563386330306635 +38613862616163333039313835363534653564666634346661643939383130373364306637663236 +33613564356633333639656336386335636432643135396337373033346636656531656634333934 +66326237653737396231643361363266666633316333373934393164393435616139363934313966 +35626362663039616263626262326362323332303764623731363563356365343866646462326261 +64306663646462396237663335656362613834386537616263643732373839303266323962353462 +30353336643637656666653737373162646663616162646137333139643264643036323161326236 +65363865326366396538373730343733666430356233383931663132383862333333616662613164 +65323439376665393333643539343763313632303762613136323465663737373162646366353233 +65343335383165323632656563303461396637396137633033376235626238333765316131633239 +65383765323066383065623161353537313738666263396236626435633466303165393531343030 +38366465363363646162326363396265333233336463643362333365663161336330636535626261 +36386636396139613463393939343166386365336636633566643064633762666534356138613839 +35333664396365656132613166326236393833656231663961633636613431343161383030393134 +30356663653463363538383765633734656638633361313337633039383463666530386632366464 +65653736633461336432633833613835366631626263656139313534663437633566303038643666 +35386532313236356338373737363534323639363437343530666131396464646236386238353039 +38383662656234646239653762316230623432633039613566356265306166363664653766313233 +37636439653766616663333238333638343933656364343933366665373762613733346636323061 +38333539383061393732363731343636383332666461366231346564623230646433356463316135 +65306639666263666665643739366136303237303435346634623065353861376438356532373063 +65336331623063646237303665303637383566343937626336376433666364393136383238636262 +32663562343933313864373866666337343563326636636261613530316633623738383465333962 +37336332313937333162363966376462623130663532343330383030663234616364633138373833 +32626261613332383938323563366637313564653366373464363833663732656635643864346638 +33363631643137353237343631323836653338363539373866303665373565373930383931303037 +31316138393661643630643831373263383361623035623030613834363465623764303963326464 +65356235303138366563616666653061366566613832343332316364613337303564376239646335 +39303730663561613766383763323464366361643562663464316436303136343031323930366435 +37666265333230643430656332653830323132366432346335353734346665393038303236653031 +39313838633765313333363666303762313164396236393637316366353863326266626232343636 +39666532303936363663303539653832383863656565313263393036363338646334313336336266 +39633037393462356434313333626234313438303061383862376662663834343731383661363538 +37323830396236666661306530613736643939363932363761323635633439636639636165356638 +30613666313839663837643063303565356131623665653637373537626165393063363161396237 +38303635666663643437623833636630373430336264356331376634373333333061656465616635 +34353130636430373739323031633539383935663539346361373637633763636263643865353830 +31633139626364303965316262323861336337386634366666656666653838313364653962323636 +38323466663339326261346435363630343438386331646433373131316466643530636365613937 +66366134643530366333643633613635626331633762326535393139633136623537633736636663 +61656431663864366637396561336130633232643633626133623561386264303336323233386236 +32393864363434396161613161656661326466616632663963656432333264663536316136396133 +62623536346435663439373937623665323635333833356666613132386265333732306563643533 +65383033376363313435313231636464626330343834326533646463303064643633643534623964 +63393735396537393738306131653831626664346261313436336634343435663930653032383939 +37663434316130376333393937353235616565303266376632346263393265623264653136616366 +61306134343631353530646338633639386633643863336538373865386438323665333632316264 +61313364386464366533643431343865303631636638646636636238623737353233316634613833 +34326437663439303263613161636365383761313962366137366266303730323861333639316464 +34373230646361623061383566633931663437323935653561363864353936626237663634653064 +39356163393065623965663964333564326536303437653439646263643137306236346639633865 +31333661623938383437373462376261356338333830383036666535653937316133316265663531 +61646365313537626262336330316166393539343133636133316566653538653133303432333038 +36626133666335333564323464643436356161386132613235623333646634613631373933366466 +62373338636233616164323738336461656636353661313062313066326665343239343135663333 +38646161373061366136323634326533356338333962643163356333366337346463633865343733 +34343362656136656464626535303561353565353334653838613465613633356134636434393563 +62616237326432313565386438316639386237373730636436383937326466616531633139643262 +32383731326331663961393631373966353738306432376562666639306535353230663235343462 +31353436383962613865343265646236613066653338643335663166613663313734616161356666 +33316461323065343938373264336532646563666263666438373661383563313439626161303266 +33393532366563326434616131363264356561626430613133623335626434373333336465613662 +36633334393435306430356261383033616232613032633463333661633965643862353339666166 +35643538376132353934613037663633373866663439353561323531336334333536303831366137 +34353639653865663436616231623936376633666132316532636539613032353363643038316534 +65346334656633623631656664313236623331393239656265666363626135613331633964316461 +37396532346136663165373831343832396338633235636139643639373431373132333063306537 +62626431623266323636613564643266323866393230626139356563313165393563653637376663 +31396161363130373263393432303338646662316464633636316633663135373564303464623063 +35373133393561653161383231386232633736633538653665373630346563343137353435663934 +36363433383865333332383161366661656562643831636534363662323735653435326634353435 +31303639663038613732336332663263653736343534346132313931623837336565626566386162 +62636338663238616536666464643339323430376633646363646339623938633665363432366661 +31623038613235383430636664323035636636336462373033633563303430313365623931393564 +38306366373732366331623136333264376339393361666263323061303338396335626431636237 +30663461396537303434643033633135646561353837353135313137353064326536616164646161 +32636262663134623938353966393137323733333530633531663638336135346233663261646637 +37666531636331646231393333313664616166303538333133373963666537396330313831356136 +36633164653261326133613062623932353733356664376239373035383563656663616337343833 +34336264646635643339336239353464383932323233343238383033626335396330376365633438 +33396430393236303866623935613631313439363631373739653236663733633639633734313866 +37383538343636343332366334313939343433306338623265633633643864316432346537346331 +65633266653339366464333034306639643066643164616537376566343237346462323233356362 +66653230633835616130383737353235633230663762363738633331616336393464626363616139 +35376464373331386465636264316366393336336661623230353364363931633264383563383835 +32343335626630303033393566626535326439633631316531656165646631663031353738633665 +63303364316134356562353765646662623032633532376531346363623438363031323762363338 +38316637653863316266633836373937303863333037313934653230363039613562376237386363 +33363962363766396331636564643335363731396363306237663437613732393966636266343936 +63316165643935663232316432653965343263646666323862633630643462313031373838653635 +30373639616166663366396166353135353837626338613964643562663431626465343763643232 +62333231383566306564343165363436353230613832613636653933366465376538653432333731 +33373039646132653964303636656331633737353732633737626531373564623439333939356132 +33313630636562373432383463393634636638666666383838653662613265363830646130333162 +64353939343963393133353965376338373163616637653231323664346233373530663761633161 +34306531633936333030656234633236653066313534323934343637353931323866333834623262 +39346566346137333366313732633666393139646264616630656130653532393761623865613365 +37313332323061363235363137366662333663643335336233623563636633646438636238396334 +31366235313464363064366535366333353738306632303436613833356565353834316236366432 +33613734376661653230373732303430356132626230393632653934306336616462333162666266 +31313130623338626666663732363134346432313439346138613433346437343839366334626465 +37646336653464306334366663346362346364656239643033626464323337313961623266313737 +35366234643533323030353731333866313562346632626166636639653632343166336231623639 +64633334306437383637323232316265346337373862306430666433646639383134363865303431 +64613936313530366165626639613334393033643038623066386534663033326265636535333966 +37623462323531386162393235353061643261613432363230303237393132383539336261353038 +35616465303238646533623835623839343361663532636562393739613663643033323135626634 +61643030633739366235323966376337663537643365666333363764306335323563396663653831 +63646164616634356435643230623461656539616239346566316461646433643663346632336166 +65366632663834643262333236656332666662626339386566343263303666313235326366363732 +30613330666164623031626131386663386564393834313231326565616537626338633633393133 +62623566313764643165393564383565313864613632616438323466326362646433333763303130 +37313262613933633031353639616561386431323934303431316666376630326339653466656364 +62663136643866633835343966656532626331346539303930383134616434376166363933323563 +35633432613533656364643339666561306565393466366232326236356163366631376661626237 +39613234616233386236333934383265376533376663373839313338336631373964303762346261 +38613437376166653864396261383833643937343133396366346261353338633536386239373064 +34373939363333333461633035613532376131303161316330383831373530353663666362383839 +30356234623035353137663534623430313437626239303634626538646165376366373938626439 +36666334643032643732333961613836663763316331623334346635656435663163306336333732 +36343266636262643436316565643964643139613063333332643135383061656438323138653131 +66323436363934626664646539376333313764643237383235343265613462656530396165633438 +66646461333965623566613263393030343563353133373439316233613361336165376138336337 +31386165633263333235323363323232353733346337333563343861373030313766373437363436 +39623262643035313634623039333861316130313038363332633362306536613862393539666335 +37396438343261396632623633373766363833643535366464666563303631653866653236333733 +61343535663437393066346365356231663933663664363863653566313534323938636263613562 +61316266656430663931333030656132656463383534336338396566313139363430383465313962 +34376566346535363365633364373362616632383662626633666465333162653937326234386132 +31643038333132613964336430643537356135373936646235666132653238636139383539633233 +32616462303432393838313035316132363664626631386165373935616339376635313538333333 +37663932333831386162343438343437616561373538646163636361633234306133323738363631 +38396464613334636562616439616437303633346163663830386238303233393161393136613833 +33313766333264656634646665356338333139643130663639633466653665303034326365623230 +33386338636537353836303732303366623632333337343865376636336166326235343237316562 +38643533343763636562616633366436303039383436663638323733616566663361613836633663 +62643533363435633138306361363534636331643965646264306564623064393334353861333230 +31653366633138646633663532356561323537623035663365633738386662333764346162386630 +33613534393132643532386533383838373664333937613732356333633663643533373864323432 +66336661663637303465616234656433376330623435333039643064613564316631303838306365 +65333663353965356532346564623537663466663839626437393831343832363039303635656135 +63363762333636376234613165363039313838303665616139323461626664396164633733343930 +36316363653135366531323164626431356462366262613132333238353931636264326632313163 +33346264653566363164343462303664336634363130323839626538646264363931353266363862 +39316535363066313736343230343539396434653437636434643432383030363931346136386365 +36343836363039353761343939343966383164343363316630316166633532383035633833633833 +65663064633534366136343438306337383766643431313664656531623866653135333735313331 +63336233363831643261343337303561653665373363366636323166343763633966633066326137 +39336438396433366437643637316133373932333834623739386538663266363633346637353962 +64326535313634613935646330616564623338386263613237623136346137373164626434356632 +39376363393462653533616539306131333963363664663137366462353736376263383166326161 +37376639336435383535313133663630383738623163653065343066376537666137613262656464 +61663961646433373338303832376335346536306531316162663762313235353039363265363136 +36363564626339656539306264333965363532353936613164303431616266326563396432623034 +62366633343261376538363539373165356139396332633831336137653638346430363230353335 +36616462653362643635643830626431353334623561343635626434333566653630623339303563 +36363732373030366132613366656236376263396563383366633865326136613561346163373930 +38666436396638383335396466643663376637366161366237666334366332383162353830303362 +36306436346331383463316535303534643566316633366435623836656333623634353438663237 +61366535316366653831343561393064373534623639373164326636656337386437396636333633 +61313738376264343336613931363665373433633564333637323031393330613162623363646166 +34633336313236373531383732633537386662613536643232663134306435373132363163353531 +39343763633135333033396664666334636534326436383961303034313663396166626239623833 +39393164636534383838383963393336643365623666623966313037303865383364663764643233 +39373861316230316239313063343966663165323234616566663437636666636165313132373432 +61616636343531356636666435636434323239336536653564373664613932386566363430353333 +34333438636336623463633230623563666530313731313032386337376363386130393633313937 +37313233383066316234626366333537373330643133356236393539363362393738633536613239 +61313865373432316437386466316264623932653833333462306235613837346661393763333864 +39396130393335626363636136346663613838623036663836656433663437366535393464643336 +35643838663535633266653365656637333030663965316132363666323035353034356339303861 +39393162613737663936653265306633643364333935323061643136313063663033623637323334 +37326164633562363763363466343066333366663266346532353464303361323064623163346461 +38363336323261633732356263323439613665636363616461366535323563653234353466333434 +62623439653136343538363632383434353163616565663835666234393639646330616361616233 +66396236663730396666333030623733376361663164323333346636616364373639666661613561 +32343630363162373336316333643139326261613739316137353338623533363637393439613639 +62313737336234376633666466336531376532383037646136363437616561623537303563383339 +66383434396363663830323764323131323135373565373963633234363938656364383438306638 +36643037666632336332333164643766303239363732643339646666386239356166323938386165 +36616136376535356561626334343338376163646362353338333537363438633966653732373561 +39653335656662366261396162663036336631623238653632666666323732343136313232666238 +31656438336265356134643766313538363137333234383963613536383736313534383539343834 +37343865373164313139306566303663333138303734306630333434373061623966663932346139 +31323136626266663362306535626233316530326466366437623334363434303136656262363663 +30313665303862313832376532343330383864333963326436616434643465306164373734616634 +33623131353236356331626361336664396230303166303364616465306338376430626264353161 +36653133346566643934356639666135623464626236613564613435326234386264316138313030 +30626532313036383736613435613839333566616238363532323430633266393735643661653734 +35396338363539363064303833376538336337326665613439313561623635636337373134343563 +30633863616132623165613866363235303832636630356263653362333535636539623239313336 +61336336313532333335376664663831373565303366336630306133636366353462323862396633 +30356262633964393936346363343530666335333732656363396234363838653861666231643532 +64616333646532633031366539363961663739643431323266366536346433656365373234363163 +38383730386266386238326139656362656531346232623264353263323135323938346631383133 +30623966356265393137306336386162316436373338303530633861663039323230363566383939 +35306563373966373135663630373861613265363330313964663637333739323631393263363035 +30323637396266373332353861613533373765633137303337366339333665303463363465333931 +31663163306431613361393230336632383739666132393037366637653761313532343062353934 +34323037633965356538626638323534633964643463303733633036373932666434313563626530 +37663236323366393931663561303131386136363830353232623262343864313563643861346238 +63353731643531316536336165626136313638666365666230363935613462373466666430373335 +64303431353861393166303338343238343664396635653861343865616132353561376631356539 +62393264616331323062316564366132316362613339626661346636303933303763646239303032 +64366465626432333961346335633832306438353231643031366239666632646464393666373666 +61376163373238376461663437356531326464613733613036643766343762633136303935333361 +64326562393065663830323334356437313334363839613639376664373932356337643063383766 +65393866303137336361363761386539396461623133333561653964316565653537383637373730 +61653261633133343832363462323432373761386131373563356539306435363230343435313430 +63666165633031396536393239353166333333386565666336656235306462323935653466303932 +35366664316534396331656564326530373434383232366234646662393661633463313163366634 +66316265373365353938633463663130663534323334616139303563396235396232316339356338 +37653539623639316262383235313431303034643963303935393566653734326536646164393431 +63613934363766333639393863643462316439313638306239633361363436386635653437616632 +39633532656630353334363963633664663362643239393730613762643665616465663361623865 +33623539623732643936393337363239333230653564363264623466396565343737333236323963 +38666638316333303564626332313639623562643834653333306163626537633865663263613831 +39326636306337353661316132663131383638643333626136316231633631306134616661343434 +64643836353134666666343733373433343936383536643263316364366632393763303031396563 +30306433343965383964633231393132353239353536316536613039626661656537626230626538 +32646466613130386532656638383163633334323235303339316635333463616438353732303866 +37626633616263326164326138613538656237613332656564303561616330643466623266633163 +36326665353334663131636239646365383235346332313835303166363439316463366265396130 +30383430333464306665623138386638633832626233333536653830336132326438653432316538 +61633664303136383235373262333261653532306131366131343132353535613764643432383133 +34613562363334666133623263646339646234303363303361643239373139373161333365313065 +39386461396631636439643961386363343061323664643135633139626230353332646564343237 +35653734383134363030626664616137396533323765646266653539613134653863656331393666 +31383035666364386464386535366566303639353533623932306263626431386439306532666436 +31613363646131623437613736643433333566333234316535626366636439663932653031636466 +35663832653461653165633439313437346138376562646261653561643938313961356464616135 +63346633646165396263363361393639613837646530313762323734316264313530623561613931 +34633436636161303662356264336239356235356666346631343965633866623035636266646166 +35376530363232376638383838656235383730373333303462653631303535346562343130356531 +32653234633133613665636136306631383661626632613639623961303536613335363438306533 +35636437646263636331633261613064643032663535386231333166353234313332363062376361 +65303035613862616639626139663331633630616539656433346431373633346232396465663564 +64393230363834646439303631636564386236373666333130303862623065353632663161363535 +63326637383065303334353531616536393230396239666662326132343666363632383030326236 +39313034306362373264653638383736306537306530363562383661363865633235303136383631 +61633339373264306364393266636233356535623765333561333336303861633661303862366464 +35663135326431383332613864343932353564336664343262316634663431373961643235383466 +30636131643866633463633464353834343961646432343563363963386464313835306366666135 +64363236636263383462653739633766666233393136613637393838623766633465306461386436 +30636661656333353933333163666263646436303462623864343262363130336466636338336365 +36393131656336316563646265306532636330646262616235633431663965383938613436623163 +32626135623235656437366130306163616231326231393561653834623161626437353862616335 +37396133313961336665313263653931373933616135393836626266623136396261653261626238 +61656363376433343132303336623164613431656531343064343762323162663366623933613963 +39386432643333356563383666646637376162366336623634323838323436376439623765373938 +33376537623138633039303963386336373964613164376162323265323230623437303838646166 +36393235633832373931663264303739346461343536306138323630656366653136643062633535 +37323639656662646466616135623462353062313235613533613933383935633761633035636564 +33633263333331663137653961663232333135356232353735663037623433643436326336303964 +66666566366661303161656234356430633334346465386338663233393462303531383638613932 +62306630633264316338396563643132636661333833373264383962353831326631636535613433 +36633934626165306537323036316365313436373433623761336138383265383362383736333861 +38613539393139353966313263313263333966383139376139343338396237623665373934356261 +36333935626166313037616164373731663732353361373035313531663537353230336534666335 +63316262393261666263343237633639636530633666323461633431323233313737616166643034 +66373764303136653033363032313037343033353363306562633165613665386139313364313761 +34366536363763623364653831363434336235383232666639613735343562636262666665346434 +38396533333038613461613864323766643666613962323834633165643438373335346337326565 +66393763646165633865306432393034343661366338366366616237653533656231363835346238 +66393838623337623763636634646138643864313832363330646436323262333463313533383531 +35353638353361666234346566343165383065316230316261623732353664323335663739643734 +63353364623732376637333332636262323666623431386364663166306266623264323962623261 +32663134313664383961353561626435333435333734356432636532656433613139626637396264 +39383930363931303334306233313761393164323663656661326239316662333865313632656131 +32316631356433343865383862323334343437633063343539633466636464313565623964623232 +34343136323066383736323131353438333530323036373961386332343164653632383165313763 +38346337356138306136393539306139386334303830343636313932343138656661396163656139 +62353437663933356533393535613734656230303737383436333437306631383933393061306463 +63626465623731316437646161656636313962323630393061393664646436626337323132346163 +34316464363333343331646335636532646462383431326363323663386138363334643165653733 +32633561633163633437613034643732343238353165366639363736623034343362313766636132 +39336533393232303163373639386362643735393335626530326335303332393864326564363265 +37316462663665386130383437623563383861316532393137636338626632656366313566613833 +32396563616139366164623030636434363262643931663761386231353632373365653737343539 +65643462393338393931623566656631386335333837366632623038373663303030396334666437 +34373939396534656239356535306162353237306464646339326662626264336530313630373135 +31626536356461623664346464326463363635376337333431303365343537323832373533333466 +66613236306161303032663037303034656334303763633336376266613261336662313465353034 +33336565356263333364633138633961623235643839613230343439623235653962383662316330 +36376664656462353736313938336436333964396236316665376138383565346462316661323633 +31613335323039353330666263316132636166666232363633663532653465663739313866306431 +31366536323661323938366538626262313666653363396365653965633439616662336439656261 +39316262373032363932303133333961313339323665383138666338663536636539633736346633 +34353532636431346432633264306363303830653437353834373836363133356539663137616563 +62356633353262616133353262326264616136643238353039636430363837666339343636356234 +66623531313065663635373838343830326564633966376634306236396637353436663764383964 +33393261356531386362633335633236393566303033306232656466306336663465636239623864 +61616234303631373665353139656439396132373934663434633830613033643161633131386534 +65643234326532656161396163346631613831313330636633613538636530633338616637626638 +39396333633130656664613733386235616363326630346565643631393366333639666239383837 +34613362643961653636633634303561346264353364313131626232643838303562396435336166 +30353835393762663938326439633438316634646365613530633737373963356331616231623535 +36303635313435323533396361333430333363613635666638393766313737383638663863653063 +62613339656365323064393434633838656565303838343331643234323562326136623765626333 +37383231643363643161303862613630646465366136333030333937393638363431623331323137 +36366666396233633333613031666466346231376661393662626330633865326566623961663439 +62376461656462623636373464373931666363366634636337396639623531356564303939333065 +33393766353634323232383738393431363965363561356132316463383931386537666533663637 +39303166353832323564323162353335326438363431613739353235383536393132393933633436 +62613436326464343163623461383235363565353362343439333338663162323231373239613465 +63313630336639393835623261663261633861626131613962363139316537323539333231623864 +36303033326330303235626139346265343462653833623433663636323062393831386364613939 +32363365366535323663663731643263303833656338623235636563313233376232323835363739 +39333935666333626364393261306334633433313135623638326136616234363438633465343339 +64316662633263646263306133626532383962646333646565653030333063613331363135346366 +33363237306136343864353031646236636161613236616133326137343836323830316564333336 +33383062646331636430346137643334316565343662383763636337653632626232303437353063 +33326163636166643131373265646532343062633033636563396338303063646432666463323463 +35633266646265303839663832336539346464646564613937383336663133383731323132643630 +64366334323262363835386132353365366264633365663639616131653839366233613736383038 +30376536646138353330343630363666633833366465323635396334633362396333366165643532 +30383637646665613065376661363632333661623231336461633736393430663461356632303735 +37636165346138643534396538346266333739613232646439343638373961633265656137333266 +35613331333564623131636434373439613733636138656539393763313766346661313734663064 +30663264393835643865323738613231373536613538333263396262323939336666373363623630 +32393935653463353538653432373337373066383165386561303136623631633335643762393361 +37383036306636323962393937303033376139393638616238336565333465353366366562613462 +36623831343436633362613561313361333837666639646138303837373764353436386339616534 +61306538626337393266383965346634616136623838613036616636373038626363393831613034 +65656263393461636632663532303164313162663938373730393564343134333765303362333730 +61333735373965343737373066626432303265383435623362623865626235353464316339613631 +37336336613066313635353031616162663663623330306164653138363165313038373362366266 +38633062653963643739613638323939373739623938366135393631393962666164666537663263 +36363863393739376231393039393063646232386232666337306133663134353632363938653837 +65656666363436306561633533656663363961386261623837343266653836306462356536366562 +34626365376463353339333133363335336233346438303730303231336362323465636364366131 +33373566313036373236323464326263353337666633333238396335376464393132626632396631 +62373035336339376564643233613161303262636235386630313963303834386530383135313930 +39353333613039316465643863313765333234363139653039313731613564643365666365653032 +39313131386239663737386634643231633038633939653138326538333434393333363230316162 +63323338386161353931343933633765356434393562323236333439333136653036366237303962 +32396361633062396561653865666662346463386664656265623062643861636439363635393330 +30383563303636613736343837626166313762613535656138623630376166383434346630613538 +30653930653864393133383135663734396265313137353634643631326538313466313432336238 +66633532316636623639656234376136326637313962353439663338386566623431623831393537 +30613062656338626432306563643531373834366335643032633030646434623832313461363839 +61313337653731633963313663623163383833326666616231383838613033383939326337383462 +66633062633839623130666530653531346136333635393162636538333937613164343238343865 +61336239363139303335393065613539333133316534316465663033343832386638666231383636 +31666435613434653133343036373339656132373765663463393263303936646266396437323232 +32633938316165663837666630613337623161663731666662383561343332336363616135346335 +61623061383162653939303463383731623932383866643035313663313932323762623733633630 +38323539353438626430316535343663316131623931353031626538396464306539656132663663 +38656139376333303864356663323537626132373635366538353932663766653537313063386531 +62383438353334363165346366383765383565373037616239613061336564366630376436666235 +31386533663466626562656162666536326634383930363663643439323134393130313063373561 +37646538663063643765343738383636343636666636383965623137643738346332313863353137 +31626166613164313336643235376530383237613865613238343564643439653462633061333532 +38636632306133303466373630646163623739663230393238636361393039366262666164396363 +30336661633065343365343530336339336564383936303138613761663338303530343033343730 +66303337666436643138633964666565306638323334326437306434353063363034326562383932 +34373861643733623761656230613736373131306435626330643861333830373733323233393764 +35346665353564353763373264373462383236366638666565353265383032376133373236313638 +32356435643763656161646230613236653737323964316338326161356238316434663935343364 +35396336326162323564326661313934393038346632313637306566336136393363643862303637 +32343737626463313163326432663136333664383138303835323731613264303061323232303738 +34646537326562613066366139633632333736383939323734353338633764613430396634346433 +35346531633561323265323263616562353734313636656237306337323834333531326433386435 +30343962383137626264613539333134356462396662323961323734353737613435356161343031 +32383637376133333064663637373964383032343861366632633834663363666335393832383936 +63303634306439366433316265623138666566363862646231326531366239316132643334643331 +63393532646666313365373362373639323933663961336533663464313035386162366539393330 +36366333306233623736383465613865373962646238646431356165376637346432303130613932 +37663534633338306462623435303537326235383764326536663834376466353466636364643066 +35343632336563363161346461643662313163323563353866643535346466313139666638323431 +64343136393630343635353063643031623963303263373263663133633632636230623462623465 +32353431643765373833646464313034313762386163353564366361373334656535623734353461 +32636635303233663837306436633131373330633562306563336137323361633431616330363865 +30393665613262326665306466613634646439343365373536646135303039326236626361313135 +30366163663766343062623165393162323139623563306539306636306534363939336337653161 +63383561383266623433363266326532383936363430633335303264373165666366653932663037 +63353836383563356562346131386331613036353266313239376437383936383531663565396661 +37333131366361386362323437353162373163333234333439643439383730643438653633643738 +39356266643662663630366564653738636432366636303538323232613733353131373636313466 +31616232356161636639646139333535333137646366343936346139343833383939306335636563 +38656534363632333361373438343431393932373965613863663864623238336464626537396561 +36386361363661613536376539313130616262656130623530613737346566643538656566626461 +63326165363630353531616436306436616430353632373630396536666232353430393666376466 +35346232343738663135616334633064396436353537643539316530343132353936656434636263 +66363938363930333765326139643463346237313037336566353632626461306632393631376134 +33356233383164303636633136373564383265346438626630396561643664373031323435306230 +34643562363366663064633032306533326664396364326366373064666339396262626431623439 +38323562383230646330613133383966393864363434316237306266353963633733316335623633 +38383732336338323832656537656463363564383966313630376561356136396461303133616561 +37303434643265366436346632623663653938653466353133303032343966316661336464376162 +61633061383431653662623233373834643138313531346263666233323464326633363339616533 +32316431643662396565653430313465646562663064343861666365663934633833396334666463 +30343632343835396662306439386463646637386234303038373035366530636366376438363333 +62356233343162326531313766356262393566643739653036636538616437303934353532303939 +31326435316662343166376564633566353137303363343335346530346164393533646131376464 +39613634323035633431613264313234633734303364343432383265653162653661633335353334 +33353939646133303166623230303738343936363732623436353133376562333739646264353139 +37353630636438373861386661306364353631323362653965633634653235303963396230616536 +31643066373435636665303230323130336131636633326534363139386536626435613338393536 +39343935636530393931643664363364393034303463373161666263363135623964623436323231 +33353836386139636261663062326431646235633262306139323737656335643064393661643333 +30396339336366613566386531363830313065343431343763353364306463323866666638343266 +38643333643639366264653232303236636130323432636532613836663239343666316239323834 +38623439376139633466646232383435303837663662613739343333336636363232613562663566 +31303433616662316332373037633830616661333231616361353464323831323664393235666264 +35616331353462393166346361323436623735326563316666613134623264386636333636646335 +35626364386430623164656439633036353662346235623064356130633832326137306361356263 +66323831366361316631613261333563373463333538333632643232313166303365656430343764 +66346137396661303732613364643032643263346661663238663934633235356662663430643936 +39656661373466663336366262643938393965336630616664336637393339303430316465653930 +38656136303663326537396132393738633035363330373436353136303665386132363032343135 +66616630316663363162383338613531393630343165373162323161303739373234613665313965 +64633236323237356138663961616166353066333665343738366132383765363036653935316233 +35303539663561353636363861656233386562623433316133646136616534613836663434313234 +31373264363637366662373731653634323865313331616532306164626338653538666535343166 +36363130333761653836333266336432336433343662306461383139343134303935646433373237 +35326632343535373936646363376532643264396239383662303232613862323032393663343761 +63613334373337333665663033363963646333303735313234666230393630373366633834383537 +34306331613836623934393661356632623663313039366138356137333435666338646539646661 +33643933376363386436366666383335353739393234643034653764623766396431396563323136 +66653236323131316265633539393961393564643465363939316264333162373062656564336364 +39366263363465626231386365333430313462306263646237633065666136663763313031663231 +34323131613936376339613236643162323538643365363566376265643065646538333266366261 +62313635326635393564376632373535323037643262393065646134643833646631336531363935 +33623265613466633730646130356230323031326537383031313736636637306437663331323661 +37356262663362333036343832376562623333376339626666623036323261626632336336663036 +30303162373033393631663866313430313732343036313066626663393263303030653037383833 +66616561646237303232396233623465363566626336623935353139353564386165393239306332 +35343762653938353066316163356436663666373039643766636338353835616430303662343634 +34646338333264376336303364336434373131326631326539353934306237313065353064356531 +30343364386239623765613762666539616234643764303738366531323861633663303163363566 +34643937353766326435623763646239643435303735643034613565346566623031343631393363 +62386135366366373363663261613866396437636266656534363366313833666638313634653664 +31313231386230643661383330653430643435343063613937613037353932363764646138323765 +65396537363762643734653439316264646434633430373964653132316336366462333039393431 +32653737306361316435383637626665396638643934383466646230613533363162616531356166 +62623737623233653166643536333563363932303761653966656663373565356433373530333239 +33656362366632373437613264666133656561306163336465656432336338633036323530623361 +32316332653831323563366630343663326535633737626663383632333537616339653534643764 +63616562666561316661303864666134373437663761633330316561303265333663303466376261 +33353134313730393439643136636263643335336335633862353363343734346633306339353564 +35363063336563393065383939353939646430363037646634613734356362373762613739373965 +31636531373935366635646139363762653933383837373764383535633738376436323263313630 +33313563666233653936626330373463623435393835656566313264353937316461343361633338 +32306263373738396566306366386331333663633061333065653330616361323733363336636463 +33306337356661626439303130303839353765623032623362373232313161353330623364623764 +38616164303038636333626438353034613731343365393462613061383639306135623532346239 +30366465343336393232613935306162313331343530383134326432643739623265656130646565 +34376363323066366635613933303166653264366138366365353534343564333365643534613934 +36396238666437353036366262656163366537356362623466303932643631383261636264353265 +64626161353866613965326234643162376563636535663061663661646362393263623531383361 +30346365363130636533386434643064613130313833346637623638333536666234376338333639 +65356639363536386164336438353538616536393533643031396637666132326331353561313564 +61386235313530323532653232613739393933656466656233633434316563363732656564303165 +36373461323239303035623335363835396630366365633438323639323132626135383432363036 +37323061363635373930326634396562613734666230393461643764313261376235346132656565 +36633930383231383433636535303230613462373637653530393237363434316236376462306265 +34346665626362363236336338336439623630343862393130646365623938373435336137656230 +32373762336363643734366435376630313563396635333636363064373234376162393131316562 +35376165633264363263373963356432346236333665393661653735323365613534353037393638 +35626665666430306163313538386436666631333565643762396366333537626236666533356265 +39643737363133653538393838653164313561353731386664643136383331663931653437363938 +35626666346134343037653261613030363438353138396661613864313363666635633839623462 +38646463343361376231636638613361623332393562613765623333623630666431663232643965 +34613437616563376138326538363262353466653862303230646339306539363163383837613035 +39393636303937333663366231376662636562363734333933353963376237663563356231623739 +61393938386566383865363863333038376131333937313230626265396466623433643234363335 +35313236363935393133663963313137393835653062373736383135393264373363383562343165 +33313836333365376136393937643064643836396131313964643434626565653836616530633337 +35656163333733323830663438383739363134643262643661633330366266626661633365663765 +39343738353232633437363161396537383439336232623832393636363561313261303732646563 +33663432326630633566353336396365363336626236633031393233646235336333666630376435 +39386266386532626538376134663630356535326465623364346530353438333331623531346639 +35613930626162383633313434653034373035313638303936353039633031663466636635636539 +39623364333334633833633035386532633162646138653637353634363036643336613864356566 +37316261303138623336323464316134346437306666633938363162623363633831383063313864 +33313263623337356535663638376531613362323138666161303938633562343534376530366139 +62306535666535633763643166346333333966383631623261633931636137663333326166656133 +61373761653936353536353535643838646264653839346538363134623464306662653233366366 +33313461633161373062626437643330376335383334636435356537303966616639376465343633 +35666564633735303366343132313466356263653838613536313466646261396265356234303532 +61636335616135353961643964323632613064353132613066326633326430653033366265333130 +61356266376365366236316637306531383766363935623233656337393132656163663839333333 +33623162623439323964653465303933356235623265623663653261356438633762316535383762 +66323365303132663935363463633530623362333339383230386531363939393536333239386664 +39656239333834323932653637323832356664343364656336363939313536343836666334353439 +61303164366164313638373936663764313961323632386134653663643237376636636163316661 +63343335313664343934343464323836633166656563346161353831346238643330613335333633 +62613830373235653763633736366562393834333733666166333061323530616365633662326538 +38643838643738616334656164313030613331363065323566383934366464653339643934393666 +38393134366531663039303031633034653637353933666532623931656162323039373565623634 +62666662373739323931383036396233313931376639633062396233303461336361326538613063 +39356536353865653964636563316464636261613531383730353136633263663336373933356261 +37656466353432373430336437373966653138646533653134613636656636336236633132663035 +39356332336135333334616431386239386566393961306165373330373439653366353337373266 +36376561313131663064383834333333383230343932346164386630363164643133613338643733 +33653263613337653265363738653034373063333261633032343132386433366461343462333831 +64386433336636636237613039646234383838656133383639633135623832316630643363313830 +62663436663739643033386164653366666632613964336231326434333639623838653039343337 +34373431373461626636656166313734653333303665623664633762383234653465356130643634 +62313337333364336262363863326137343736393535306230323864373561343333396438616139 +34626634663165303265666136663035633430376261356234326362386135353062333964363563 +64313534313832386437376231313838313832633837626538383431373136383565363739343562 +62373532613431336639393734353562306261346138363262663032626536656563643264643033 +64303432336130366564643736666334626566316534323764623864643335383161663836666566 +35393762323463343263393463313163363665326237306436323736353339333838313330616436 +65366364366333366262663835333834643138313561383635623934356264353733396437353034 +34313837323138646435316462343531333865376364623536393161373863333036303330303039 +64366130393230633566366334633362613238613765646433356531353635653036663335386438 +35386264313031366531333539353764336533623963613862313730613965343331373837643433 +34343333633734633435633839633335386539626138663365646336376333386637313764383565 +33343330636134636436386366333132666136366437356164386364306235363236356137386630 +62643561346639656565646631366263306330363838376365353864653262366635626239396237 +30333666613564356330636565363336336165376337313637623631343138323430663631376232 +66643330363236313030393863313536363230376139383265363230333862363830316134366263 +33376365376437633039656565393763373763663031663262333865376533343164356561383961 +38343939386466383039333637366263636465646161343830323633326465633830633364616631 +36373362393739303865383230336135373035626135613134326233383730626433623131643434 +62376237383265356632373164333566323561663165643032376263346636613562313263326661 +31323266353937306631326136336439396239663239663530396137643635393038333639326465 +64386535636532616266653532636334383333303930343732646636323261363664633735363764 +62353063306135393037376236376533383064363561373930323533393638663635353730353665 +63353530663331343732323836666264623062346561376637633565626537646366333164313137 +65383563343833343739356535313333643432373436356165353263643533313531633762663331 +39343163653639623763383162336366653366653938626333396463333163626464386630643035 +35373736306664663065303832323035623632303663623766666635393332616161363730343439 +35313261343838656532353436653037623036346335363662343665633732396636323466373735 +66633635666535306163323963633264303038656262353433303730356665346636323563353931 +34346665376330336133336664346438383731633333383237316336343337653766643439326264 +61383837343234636233333562393861383161636166303266653337383464636431366336643035 +32353962626531636266623965313163653365626461303266326366626530393062656163653566 +62343563313361383937636331343262653434663466623831643830343733623638316136336461 +63306366333164666332366134396137663832386632353765316532336565353838303131666438 +38613664623366333731653565633161363963343061366561346630356235323162343332376230 +37623633633131333033396233323930386536646235323538393839306636616438303666336238 +38663632323438346536613337323838653031613534383336636639383035366265336230323832 +66363431343637333935303265393733623764653738323937316132623632363238643330383834 +61346561336334663232356632383564303762663263656463386166623961353863633432643963 +38306164323131396638363636633337666163646564336339323838333337643736383431353131 +37363966633131643930306433613433623961363966623438346636616464346163333139633563 +62343862373762333634306533373331343332636465313233663332623763353164613539356663 +39666632353534633234653133386132373831613131313563396234353335373865353931633265 +30643062346538306632313931313266616261353363353566396665636230643836626161336662 +38323932383865346262393836616637386532363336393862643138366236333230373564656338 +63653135313065643662333966306532356538643565373733353764323532636366363164623938 +61323762306632366630303239343362373936666363326665386237333937386165656139386262 +63643537363965393164653437393039613937666239663261666664663739643966356331643031 +38663937623337363631393038643066653863633035376434326365333931643361343533643932 +32653335633335323637626336363733633961656537336234373930626564343037306636333135 +38656364316634376239333137356363623334373231356366373733363039336434343236303538 +31333932323464656231316132633131616664613131343933623666633330653361653536353837 +31366261333639346631666462393634373738363438336631663032326235646630333936643563 +36333065336537363362636131353864336432383863373039646238383537323061383933363439 +39346430633030303936396263666439646363343263633163303135393036383262646464336465 +38346339366631363736306631366365393266373963666163623533653266376639636164636661 +37313337643536636235613262633736633464313030643132386239656565396365616561386632 +65646133383834396562343965383435346464643264336230363334323438373337393232386239 +35646338356463613931386135333333336237336136326230636662376332623232383538363365 +30353436643734363637396665646161646464313337383131646634643037646164616565333730 +31363665313738613830323333376139323966366230343535333633646261653638353737666234 +36323439306137356562326137643332623936666362393537636432613536633739653066626236 +35313130623265366332616538303033393737356336323562653863343132363336393164316139 +63323633643334346537343330363065343033373633333837653839663765333434613761663364 +37613565393331356230346235323063636664653266656464616161316661353134613338373765 +34373264613865383765656137333730656466313531376538313530313037303465383364626330 +31306334373233393932623336646134666136386335346466343462633934393261336237616431 +61363636613636353036303034613566386432333765366536646636303664303537306336383830 +37613762666534613933633935336166366436386366386334643762376632316632306262666235 +33333533306431313662333033393237373562616634313037323366633331666135616462336132 +61363934613336383938663066383432343934393234356233616330316434343231656436396365 +32376261383037383131633132343235306263626430303263636434346635313665333665613038 +63373264323532326337373037366165303335356534333030386363653231343632646563393365 +38316161636336643438633034643638343665303165373934313032316433336165643838346461 +65353166386365303732316462653632303233653030623238346633353466653433393431613264 +36613361653066396638323736613933643532336235353432626237343564313131656139373364 +34656439396135373365393936303866346331303437343366396462303364306364346665353231 +36636561343964656231393061366336373836393637656536646333316532333335383632353762 +61613034623930616235316235303538623630616234306164616537323838316132646130643165 +35356530356663343630383235373961313738336465616232346434373065633361336164653336 +62353337356565653732313638613337333761633538386236323664393432333837393362376262 +38316633653236646363326366303062383362613266333462333563656365323263343938643162 +64633430326239393638376464336334653135636130626430663639656139383633383637616338 +34366165393765653532666161613731303366626132643362373039616136383333636530366361 +31623431353030633230636330633430646234306564663865633033633132366235663938316534 +39323630636266633833346334333565633631336636646563386638613534366665316461323032 +31623366633136303435343966633133623030313730303930386362366366653465383133353834 +66613462663265303366333762613038356239353839383664303938653532353336363764336566 +33303264353535636337663635383266303965313039313762616533323461373030663161643034 +62626633333065626630303838613732313561636365356434666136353132626333333962663661 +61333639333662636463396662643362656436653534346638666332353630316263373730653137 +37643266346539326533333030313533646434666537393665363661343737656231383762353463 +34316433643035666439653263613532336566356137366264396330313638333238313132323835 +63396433663061636239623931656132663533396232646665653234343466323037616661343736 +37643365333763623531396631383138363861303866653536353065323734336265386363383339 +31616163356338636165316435343431383735636266313866366138326230373535636635373466 +32613564616630643930303738643638306164626266383665353635346237366336313163373833 +32633531323338363861663762356639393939626665396130613264383063613763663364333531 +63343063373334643336303963633036363833303335633063666365666261636561316133396463 +65366264383638353434356134316438323563363261336561653034366537353935306665616539 +35346662343335353262363565353030613839666438643066326431373132633461333633353339 +63313462386539656262356565396331303532376630366338313538356665623332386262333735 +38366138353863653563656630343939616466356337373564386464363738373634346165306463 +63393762313930336266366264343432616131343439303934303663646262663233616637616233 +33653930626561623232623165323664326565356365356639666233376563353264623634343565 +64636666633463336534643161333537346133306438333338363463613835623438613961643934 +31626262333237626539666261393562616237623536316337623663323830643431373932356430 +65663666346230356138396634663635373138343566363638353461616334336331613865663534 +33366435356537303330656163636263323138376164623462316536623335323261373761663238 +35663164333234373261306464643735313935336161376333333932646335666333356531656565 +36333632636535376537303737666430343730646163623833393664306631373434633164656466 +37383435396637663831393439363334623237396335323438303033353033333565303039613566 +34393066666665363033336436363637396661353864353561623336323134383363303031363030 +34643532313330323833663231643333666533666430343763373739343230613066343738363138 +34303531306537353661313834333534666631613763343739343737366164366661613261353333 +36333238313130626262386461306266613939316435376531623862383561356232333863383236 +63356130326262313836353165626339653964626130623064346433303139613065346132633462 +38643939653863373165346632613732303365656233666139666130656162306634376435626263 +61356339646231626430326237376539373631333965626162343533343734353832346133343430 +64333630396230653166336138663732666263323638313832633233326132396437343666633438 +38333565653065616638616537326430653934666336353435313166363966636236353466383162 +31353862373263383231396639346463356230623437393532396430383064333030643634353564 +36313238366433363133336536363137376461343864313131626139336561346530326238346338 +33656531396132313636313132376665336261306530623138343432383933383466343436313234 +38363263633539343836393532653034633064383261636662633637366462633763653062356132 +66356264363237346236373630643165346632323434353862376363633764633962383963393131 +64656435386438656630396233343465313064616261323938313431663238643631373261316162 +30633139363265393035323462653232396238643965636536386538656236633364303962303135 +66616330356133363261356337316630623664353333613333313236303262393062633836306237 +34643833643936366462363235376530613564656330626333646138303763633430373739333434 +34306437346430313734363138393038623063333838623131333064643434336233643364346430 +38333733383334333934663963366434373063353739346163323934626232366436313635333932 +38366464336263356630653436613666333737303638633738383436323339386161613537396664 +61333333613863316435393334366432323164383439313864323733656337666161373563303464 +62386432663639373265333035353761343534303162383362383231613564333466626366353534 +65656338643263353434623233663163666465326264363139633137353363366432376665643837 +62306532316630353136316465326436353965633861363363306335363336363633363435353566 +33326362326362323462633532643237383266396437373832383934303335663362316662616664 +34613138356330626265626362306634336133376339616533643736343335396361366436376462 +35316238383833366266323563646464636235656536663161303830663962633035646531333931 +34653831366533633835363639653637616239303136613462323436666364343830353633623338 +65613137383765356131643132646130306562633265383330316430393832333637373533306364 +63393132356266663436303733613034316665663634616536653963356539643263353561386436 +61346435643831653834663561383630623332353961356461383462323535646636613465343266 +62333634643066333365663335363761323365373162376338393263396537626364303030393738 +31613334336531363632363362643139613432643236336432336235306439303439646237353233 +32383666356536646566623664366364333761373537636138643738663962333330356463666265 +38343038646363326263666137343439616639623538636432356436633065343632383163356339 +63376163313334376363353631303836316534373336303461623137663337346334386633313737 +30346337393362653634653139393837393738613535303031666637666430323565613638333232 +62663234643064323461333435656666316266613938643666616333656339343935636137623230 +33626461343939663635626463633135636335663463633637366330666637376461636331613166 +39393065366130333539343761653833336464656436376462313932336135653435663661646531 +64313966663730653563386135663633373236633735653031376437346563393464316138666336 +31346166376430616664393862666339616538653533366231333932373130373630343962353162 +63633439363033663566383434636233656465393536363637353934643038303962643663346633 +38653938323561356365396136316665643338316334613362323932356362666536316237303031 +39616164373864316335636133636136363937313066363837336264373964386331346535663331 +37363762663966393262373361323935346261383634323739373932663736313233626530333439 +30656139356337356661366365373735333363323433326163633637316433313265663036613738 +33646662343437386264656661633239646533353665666534373665386535356261343330323139 +65356331353432666164626330623438306237363239393666326435663834643232643436656262 +33643537653631356137363937653132623637633733393330363235636636663265336166383535 +66353365303035653135623137623236653436363662366162366564386365383362363861396437 +32646365636561633136613939623565346139636136326462343034336635663334633332383731 +30353565373038396535633662376633383739613561363130633230343130303961323233653735 +65373633633731323434386265353064383263616338646562343436383333366530653835336330 +62336331353564333164333938313639336234303835396361646630313535393137323863353131 +66323665653865303661356639373438646533323830306536613533666532626366373164666132 +64343837313464323335633835663536326138336164323234623462633432623364363237623432 +64326535646536313736646163336636663366376233376432626337303731633630323834393739 +34653939353333303839643534393634363766613064393636333933323830383261646330303732 +63663530666230353736613530313537373433333532386261313034326263386463616234333835 +38313436626430356134343733333839666532636664356233636436623236313830323435323963 +38626538333966393139373330643336643132643065356638356236393462386465386337636166 +65303234666564316166356138626237396662333064336335643361653739356333623063323535 +33303833643130343933376466303561326364383331373464386631326662623130396163613831 +64376666643336646137643736633565333261366234613539323565303364396564663239316532 +66353834633835383862316238383534313465653238646164316234386133383864643263383365 +66373231636138643537666466633735653130356132336365643839373166636566373131326239 +35616537646231393736393638616563373232383334313565343638353335613733353036316433 +35376430386439663730353764353333623135383236373335393763626561373166373530366536 +33326638363332633436656239376365313639613336343466386335663561306338643333653438 +66666235646632653437313563393161663465663663353638353466353736393430383131393736 +62373764653435666132636438666238343934336636646564343631636165346538363334343762 +38643338313162613262653431386333336636343431376234336534393030313663343338653235 +34323039383161366438373735386330333862396433626136376531393930343730306639383131 +35656363363535343031303962303462626162343436633536363834323566356331633137306436 +63623537626166303966356662363533373139363164666539643334393132663066393232393335 +34343630306439356261613138333038643130616464613432373536376361613537393134363961 +61613031316537313333376330316430386636353830313937313732336163626565616534613465 +37333932356136343331363364613936633434643232633565343731626635346236326336363761 +30333631623138366266363735323761396262316130663135653434663363643866653261386565 +32316266323133326531633937373033343134343132626437656262353939613534653636343031 +62356564376432373335396463346531643564383938393966646230316263396466376434623339 +36393930313131636333653237333864346337353036393431613739303462316333626436363862 +64323463633364383437336535396166656463383963383766393839376633383365613031346237 +38393063616139656530373830633437303732623530383132343935643331353435363033333736 +66353637323831303938633565306131316561396662663862656431343461396532316364613763 +35386663356334326164353634306363653566363564323766343838316638613666333331373236 +64323863316633326563613261626532656636613937626361386230323666623038313035363830 +62333439393232366461643937306439383436613261343036343031373766663934366434633232 +62613534353563333436623862633535666135666164623136343736303639323263633635633639 +61376131343136643538316432663630663133613761653638356339616633363665353563393339 +66393538613562393966303239333337653132316337333437653237663535333434636665643730 +30306433646638626337356363636664616361393133346337303234306139613132303063363666 +37323736653736313463356162346661656332346630633232373865333664366365393632636661 +65316664613933633531653662383761636362373531316461626564663430636165633861663439 +63303264353664323730383032613636373132333563636364383163376134333162646262633539 +35363035626466336531326434643131336463633162376437373235363134306264633535613465 +31323439363539326662383730613637656563376538366133373737333737646165373733396236 +35643464356535653231653133316334666235356239343763333931623561643237393164376462 +34323431663562323964376135306163616461393135613966666536303663373733353064353161 +63353334383036616664613863396664343535663439643531383062626663323135303936623961 +63323766323865613936306135343532343131386562373030303538613465643866313733653830 +34346564396534333766363632376666646137393734386330663861626466316635396666366433 +37366632343861323734366632343165633762313265626537323262663761623263346338633931 +66396432323030666564623539623532363362663764623166613230646430373533653862326463 +30363039316133643166303563663031326166643136333231356231383135363261303536346339 +66313332323338666336393163643132313061333139303065643665373137363730303430313636 +36623365396139363162333533613231633033646331393061666233666462636332636431323561 +38326361386235323663306361353333366333623566623932323835623234383664313833383161 +64613265323138336433363138363536306630656535633132663430306165623932303334376139 +34646330313431333737633835363663656562393764623734613566646332633663313832343639 +38396137343966656132346636646332666134366337303334363237373432363365353331343835 +37326139306261353965636533383562383731323932343963663362396637616635323165616465 +31366634393962663764393361313537623834646566363136353864623566636664623263343066 +62643338336163383132303531383030323661303334343436356565366330313362343836396130 +66336164616438656161363433303036353164376438313563626462663666653032356630326233 +33326465623136383737663265336138313830336231333937643537313466306632353664323838 +66656466663734306130623134373463396639646665333637653565323933656530326633393830 +31323930653337626638363035653261306233323436316332633235373833613430663864313065 +38653931366433376437636437653266666437366464353763613031333437336438323730643438 +64363262366331643738353137303961356563386637393830316335323534613335336537616366 +66353564303166666536366536636531626637613464663764303430633135356234653961383734 +33656434666666613561353735373838363833323737336135353834376563353438653231353633 +37323637396536323731653166383933336532353530613763613339613964653161323562323536 +38386166616630646566343362336636316639343465313731303032353466666263646633303838 +36393833393339393236653837663434383965343461386161396566326536633735666230393561 +61323131323237636263336663636331663732626530306433363738373563343963316562643863 +37643232396238303932653061363732366437323663626236306430666564636535656632656162 +39316439343964323335346363363563323430663632346361303839326563393864396639636638 +36353134326538626633333936303961333963333065393634323039656463663332653831366330 +62623939303131626235666531633261656232666531363736613335363933643339636465613035 +39643064313333316437363265623864323364613435613032623039313861363161343632616335 +33396264656136343365663062373436323337393531353036396562396439306666316233353263 +38313737336330653236363436633434616264383837383039663065393666303935303634373762 +63353964343266616134363433656364363362363830636238323463643339633765303535333236 +34386261326135353033633463373637303066626435633262373566323134356138396139303462 +39303336666336383163313138663161613133663030383337653438363832653833393064386131 +65646539633037656264366532393339313361353737663461346433346161326634653236613534 +65643564313363653839353935346465663030663862376436326239663230303965663864326132 +33353665653934643132356165386438333634356230343865366462343832613461633838633238 +64316664383531373165376535396233373534383735623130373830333365356165303062306463 +32383036346335363231636530663364346262396536313838636535383434643166336336653630 +39313232306134653839343731316535343764353262663061333536656333613965373461386233 +35656439643565313339623934303764643061373861313633336261623836376530653263343830 +63313633343734343435666137313831663766633831663238626632343435373432373263336366 +62626164336364353563313863346231646266643935666465613836396162636137303137366233 +33376638316535356634383866643339363566386363326161343439656635386338616535366439 +61363737363436366463336162656530653035616430313666626337333131353663646165303765 +39353537316439656239363837626136626131393564353065633062306236363364666461306638 +64626637313261396136623339303435306365333239333663306635396662636663643561343761 +35343339643364343333356237643336346662666231383137376432333965343133376337366564 +30613834613665346431306264303363363131633461396364353133663337616464393763373838 +35323338356232643030303961373562656564383237616461653334653935613833613164626339 +32316531623533653130313736363132373231633537333562323935353539343265313237333964 +34316537393134353736373039633964343066353637303864303666306665653131643435393265 +62326631303335633961313534643734336463626139643861613733326666303436333663646662 +36663363356433323964643066656530313638656665333339626331376138306132393638333738 +30343736323635396363646539303566336536303636663961393066663939313233663663663036 +64366430343833326236653039636265613664346364633263613936633563346165623238616536 +36393136666665623464386261613237636234313939663338353533663864313466623938323137 +35343036353736383262306234393637663466636661613130623265313863336539306136333837 +34623635636633653561336235343231393630316562613232656531643330663330616465333665 +33623838316565636538323036306634643331343530313666643937376131323237353565323062 +31323234393639393537623662666662303365623137326534666366356566663764643633663038 +31323961303035333233613738383764316630633133626562643164643038316265653134636432 +37316638663466333833646162366530613839393833396436333866666432646161653064336164 +61346639616363373532666363663634643830363262613366303235393736333630623865303263 +32356439303636666336363530623664623234313432633635386430313935613136663434326134 +39356531393761366636646462346165323137346130333938353961303437333437663731393932 +33346637333736346332376261323731306632373935326434646332643635373761383361363135 +34656237356234373437333533356637336362373436646337623537646539666534666462643538 +31393236633366373637386261633337386438343761623936623861326434383136333637386235 +36636434366361353935353161333737373834663234303732373431383266626162663364393936 +64383162303331363634376161353034383930616336613030353561656166623161653430336134 +35353033636530343866623631363738613965366238313032363934313334396230346135323932 +61336538366264626637313734623839633534393131623865623636326231306265336438383232 +30373133373135356536323961613964613135343833306538323530336163383066303237653461 +37363335646666373639303664393539623433353335626639386633393136363364656264363835 +39363765393831623962653362343563653833336238343761303238643039396561373435653261 +36643736333739656431376163313431396366663638333430386466613137333539376436626464 +63626234343239316432383530616139373063656132396636636237326465376138303436626161 +30386636633539626630393631366366336663636234323662323731636133396534653234653766 +33653735383961343031303065636636636364643665666530353563353732336533306139613262 +36346263663536633164363964326463356436363066643164663939343530643437373938613337 +39323936633166663064396336363230616334663239316538316162363839383830626462313334 +30626464383838366366633461336261343432386439313931646637656564643564313264643831 +39663665376634666366386162363032386430373662343932373636326334393232613535383562 +39623539393766316437656330613838386137636232353633313363636533646230333233393437 +36383661666238653864356637373534633764363231616133346239623934373234396133316261 +33376561313965626135663566363438313535333039356630333935653237363163353238633231 +39336232333361633838666230633033373461373834396662376133666362613938613239333261 +30373432636561386535643830383266316638313662393238393534653136303163633836303839 +38373630623464633666636438653237346136636431386563623936663164666662303132613662 +32626531306130616537656339383834393964376637633964653565623438643866633162663265 +61616139666135376164653762363665643535326561333934386364623466363932396430306361 +36373466643333336363666366366638323364633135333537386632363065383539666464366430 +36376234343536633663373639626430383461386261393332646365633262643764373839653866 +30336531343764393034316636616532393835626534616133336566353935326163656437323936 +38646666356165643538396437343536303835333639623362333538393336326464396336623936 +38623233316162623232623138346165346464336336633338343265623631346361353033636163 +64643565363731383130356637303136656666623538313166353530303535333234383637343236 +63316639386161303263356238386564643433303937333934376565643166396530333036343230 +33326539363861373635646432326536393336366461376431393864313664316563323032383939 +30666231393234323761356462333664386135636564353163643063306465386265336531393233 +34633863623864316130373837633066303661336262393562363937313932393265303535376639 +37343339623233666234356565383937373237623561393439316532663566346134323165383264 +34356139653661653539633462643739633037363134333830373064306362353232663364633234 +37346265333634333731353836636233356465393938366230396430653564333137303433323635 +36303634383431333436373931363464613739363633303162303638663164303037366339653035 +303165643063383837346163646436663633 diff --git a/environments/kolla/templates/rclone.conf.j2 b/environments/kolla/templates/rclone.conf.j2 new file mode 100644 index 000000000..0c3dc652f --- /dev/null +++ b/environments/kolla/templates/rclone.conf.j2 @@ -0,0 +1,13 @@ +[{{ galera_s3_backup_rclone_identifier }}] +type = s3 +provider = {{ galera_s3_backup_rclone_s3_provider }} +access_key_id = {{ galera_s3_backup_s3_access_key_id }} +secret_access_key = {{ galera_s3_backup_s3_secret_access_key }} +region = {{ galera_s3_backup_s3_region }} +endpoint = {{ galera_s3_backup_s3_endpoint }} +# Force list_objects_v2 +list_version = 2 +# Force path style to address bucket +force_path_style = {{ (not galera_s3_backup_s3_virtual_hosted_style_bucket | bool) | str | lower }} +# Don't try to create a bucket +no_check_bucket = true diff --git a/environments/kolla/templates/upload.sh.j2 b/environments/kolla/templates/upload.sh.j2 new file mode 100644 index 000000000..277e316f8 --- /dev/null +++ b/environments/kolla/templates/upload.sh.j2 @@ -0,0 +1,17 @@ +osism run mariadb_backup + +osism docker run \ + -v mariabdb_backup:/backup \ + {{ galera_s3_backup_openssl_image_full }} \ + enc -e -aes-256-cbc -salt -pbkdf2 \ + -in $(cat /backup/last_full_file) \ + -out $(cat /backup/last_full_file).enc \ + -pass pass:$PASSWORD" + +osism docker run \ + -v /etc/kolla/mariadb-s3-backup/rclone.conf:/config/rclone.conf:ro \ + -v mariabdb_backup:/backup:ro \ + {{ galera_s3_backup_openssl_image_full }} \ + moveto $(cat /backup/last_full_file).enc mariadb-latest-full.mbz.gz.enc \ + --s3-object-lock-mode GOVERNANCE \ + --s3-object-lock-retain-until-date 2d From 32b1a6b0aa2ea231b756356add42c5d0c107b728 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Mon, 15 Jun 2026 14:26:29 +0200 Subject: [PATCH 06/49] rename ansible vars --- environments/kolla/templates/rclone.conf.j2 | 14 +++++++------- environments/kolla/templates/upload.sh.j2 | 4 ++-- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/environments/kolla/templates/rclone.conf.j2 b/environments/kolla/templates/rclone.conf.j2 index 0c3dc652f..09d8f4a02 100644 --- a/environments/kolla/templates/rclone.conf.j2 +++ b/environments/kolla/templates/rclone.conf.j2 @@ -1,13 +1,13 @@ -[{{ galera_s3_backup_rclone_identifier }}] +[{{ mariadb_s3_backup_rclone_identifier }}] type = s3 -provider = {{ galera_s3_backup_rclone_s3_provider }} -access_key_id = {{ galera_s3_backup_s3_access_key_id }} -secret_access_key = {{ galera_s3_backup_s3_secret_access_key }} -region = {{ galera_s3_backup_s3_region }} -endpoint = {{ galera_s3_backup_s3_endpoint }} +provider = {{ mariadb_s3_backup_rclone_s3_provider }} +access_key_id = {{ mariadb_s3_backup_s3_access_key_id }} +secret_access_key = {{ mariadb_s3_backup_s3_secret_access_key }} +region = {{ mariadb_s3_backup_s3_region }} +endpoint = {{ mariadb_s3_backup_s3_endpoint }} # Force list_objects_v2 list_version = 2 # Force path style to address bucket -force_path_style = {{ (not galera_s3_backup_s3_virtual_hosted_style_bucket | bool) | str | lower }} +force_path_style = {{ (not mariadb_s3_backup_s3_virtual_hosted_style_bucket | bool) | str | lower }} # Don't try to create a bucket no_check_bucket = true diff --git a/environments/kolla/templates/upload.sh.j2 b/environments/kolla/templates/upload.sh.j2 index 277e316f8..f0fe8ccff 100644 --- a/environments/kolla/templates/upload.sh.j2 +++ b/environments/kolla/templates/upload.sh.j2 @@ -2,7 +2,7 @@ osism run mariadb_backup osism docker run \ -v mariabdb_backup:/backup \ - {{ galera_s3_backup_openssl_image_full }} \ + {{ mariadb_s3_backup_openssl_image_full }} \ enc -e -aes-256-cbc -salt -pbkdf2 \ -in $(cat /backup/last_full_file) \ -out $(cat /backup/last_full_file).enc \ @@ -11,7 +11,7 @@ osism docker run \ osism docker run \ -v /etc/kolla/mariadb-s3-backup/rclone.conf:/config/rclone.conf:ro \ -v mariabdb_backup:/backup:ro \ - {{ galera_s3_backup_openssl_image_full }} \ + {{ mariadb_s3_backup_openssl_image_full }} \ moveto $(cat /backup/last_full_file).enc mariadb-latest-full.mbz.gz.enc \ --s3-object-lock-mode GOVERNANCE \ --s3-object-lock-retain-until-date 2d From c3363405a9d9f2ebc8d9466710a89f5ffb7284bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Mon, 15 Jun 2026 14:34:28 +0200 Subject: [PATCH 07/49] split playbook for different hosts --- .../playbook-setup-mariadb-s3-backup.yml | 34 +++++++++++++++++-- 1 file changed, 31 insertions(+), 3 deletions(-) diff --git a/environments/kolla/playbook-setup-mariadb-s3-backup.yml b/environments/kolla/playbook-setup-mariadb-s3-backup.yml index c5d8721a8..b86fe6379 100644 --- a/environments/kolla/playbook-setup-mariadb-s3-backup.yml +++ b/environments/kolla/playbook-setup-mariadb-s3-backup.yml @@ -1,5 +1,5 @@ --- -- name: Setup restic backups +- name: Setup s3 backups hosts: mariadb become: true gather_facts: false @@ -63,9 +63,37 @@ register: gpg_import_result changed_when: "'imported' in gpg_import_result.stderr" +- name: Setup mariadb backups on manager + hosts: manager + become: true + gather_facts: false + vars_files: + - configuration.yml + - secrets.yml + vars: + mariadb_s3_backup_rclone_docker_registry: "ghcr.io" + mariadb_s3_backup_rclone_docker_image: "rclone/rclone" + mariadb_s3_backup_rclone_docker_tag: "1.74.3" + mariadb_s3_backup_rclone_image_full: "{{ mariadb_s3_backup_rclone_docker_registry }}/{{ mariadb_s3_backup_rclone_docker_image }}:{{ mariadb_s3_backup_rclone_docker_tag }}" + + mariadb_s3_backup_rclone_config_volume: "rclone-config" + mariadb_s3_backup_rclone_s3_provider: "Ceph" + mariadb_s3_backup_rclone_identifier: "backup" + + mariadb_s3_backup_s3_hostname: "api.bfe2.teutostack.de" + mariadb_s3_backup_s3_port: "6780" + mariadb_s3_backup_s3_endpoint: "https://{{ mariadb_s3_backup_s3_hostname}}:{{mariadb_s3_backup_s3_port}}" + mariadb_s3_backup_s3_provider: "ceph" + mariadb_s3_backup_s3_bucket: "mariadb-backups" + mariadb_s3_backup_s3_virtual_hosted_style_bucket: false + mariadb_s3_backup_s3_path: "" + mariadb_s3_backup_s3_region: "" + mariadb_s3_backup_s3_access_key_id: "" + mariadb_s3_backup_s3_secret_access_key: "" + tasks: - name: Deploy systemd timers ansible.builtin.template: - src: "{{ item }}.timer" + src: "files/{{ item }}.timer" dest: /etc/systemd/system/{{ item }}.timer owner: root group: root @@ -77,7 +105,7 @@ - name: Deploy systemd units ansible.builtin.template: - src: "{{ item }}.service" + src: "files/{{ item }}.service" dest: "/etc/systemd/system/{{ item }}.service" owner: root group: root From d2e2068fc6386092bfc087cb64009b8977cc4c00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Mon, 15 Jun 2026 14:39:14 +0200 Subject: [PATCH 08/49] enable systemd units --- .../playbook-setup-mariadb-s3-backup.yml | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/environments/kolla/playbook-setup-mariadb-s3-backup.yml b/environments/kolla/playbook-setup-mariadb-s3-backup.yml index b86fe6379..b73057caa 100644 --- a/environments/kolla/playbook-setup-mariadb-s3-backup.yml +++ b/environments/kolla/playbook-setup-mariadb-s3-backup.yml @@ -115,6 +115,28 @@ - latest-incremental-mariadb-backup notify: Reload systemd + - name: Flush handlers to ensure daemon is reloaded + ansible.builtin.meta: flush_handlers + + - name: Enable systemd units + ansible.builtin.template: + src: "files/{{ item }}.service" + dest: "/etc/systemd/system/{{ item }}.service" + enabled: true + loop: + - latest-full-mariadb-backup + - latest-incremental-mariadb-backup + notify: Reload systemd + + - name: Enable systemd timers + ansible.builtin.systemd_service: + name: "{{ item }}.service" + enabled: true + loop: + - latest-full-mariadb-backup + - latest-incremental-mariadb-backup + notify: Reload systemd + handlers: - name: Reload systemd ansible.builtin.systemd: From b45a8b962f19ea422bcb9d8c384f6bc19d95d7d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Mon, 15 Jun 2026 14:41:19 +0200 Subject: [PATCH 09/49] start systemd timers --- environments/kolla/playbook-setup-mariadb-s3-backup.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/environments/kolla/playbook-setup-mariadb-s3-backup.yml b/environments/kolla/playbook-setup-mariadb-s3-backup.yml index b73057caa..51992b121 100644 --- a/environments/kolla/playbook-setup-mariadb-s3-backup.yml +++ b/environments/kolla/playbook-setup-mariadb-s3-backup.yml @@ -123,6 +123,7 @@ src: "files/{{ item }}.service" dest: "/etc/systemd/system/{{ item }}.service" enabled: true + state: started loop: - latest-full-mariadb-backup - latest-incremental-mariadb-backup @@ -132,6 +133,7 @@ ansible.builtin.systemd_service: name: "{{ item }}.service" enabled: true + state: started loop: - latest-full-mariadb-backup - latest-incremental-mariadb-backup From 4cc6ce309a06dfb9459d10f4661a35f42a0dd879 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Mon, 15 Jun 2026 14:42:49 +0200 Subject: [PATCH 10/49] fix systemd unit activation --- .../kolla/playbook-setup-mariadb-s3-backup.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/environments/kolla/playbook-setup-mariadb-s3-backup.yml b/environments/kolla/playbook-setup-mariadb-s3-backup.yml index 51992b121..4d618634b 100644 --- a/environments/kolla/playbook-setup-mariadb-s3-backup.yml +++ b/environments/kolla/playbook-setup-mariadb-s3-backup.yml @@ -118,12 +118,10 @@ - name: Flush handlers to ensure daemon is reloaded ansible.builtin.meta: flush_handlers - - name: Enable systemd units - ansible.builtin.template: - src: "files/{{ item }}.service" - dest: "/etc/systemd/system/{{ item }}.service" + - name: Enable systemd services + ansible.builtin.systemd_service: + name: "{{ item }}.service" enabled: true - state: started loop: - latest-full-mariadb-backup - latest-incremental-mariadb-backup @@ -131,7 +129,7 @@ - name: Enable systemd timers ansible.builtin.systemd_service: - name: "{{ item }}.service" + name: "{{ item }}.timer" enabled: true state: started loop: From db219ed3b298e3483c104744e10477730621967b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Mon, 15 Jun 2026 14:54:05 +0200 Subject: [PATCH 11/49] run facts before full backup --- environments/kolla/files/latest-full-mariadb-backup.service | 1 + 1 file changed, 1 insertion(+) diff --git a/environments/kolla/files/latest-full-mariadb-backup.service b/environments/kolla/files/latest-full-mariadb-backup.service index 31c5f25a5..fd46e7ad5 100644 --- a/environments/kolla/files/latest-full-mariadb-backup.service +++ b/environments/kolla/files/latest-full-mariadb-backup.service @@ -9,6 +9,7 @@ Type=oneshot User=dragon Group=dragon +ExecPre=bash -lc "osism apply facts" ExecStart=bash -lc "osism apply mariadb_backup" TimeoutStartSec=14400 From e9a2a8045eb330c24dc306a8b51cd16f1c54e33a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Thu, 25 Jun 2026 14:50:23 +0200 Subject: [PATCH 12/49] refactor backup scripts and playbook --- environments/kolla/configuration.yml | 3 +- .../files/latest-full-mariadb-backup.service | 26 - .../files/latest-full-mariadb-backup.timer | 9 - .../latest-incremental-mariadb-backup.service | 25 - .../latest-incremental-mariadb-backup.timer | 10 - .../kolla/files/testbed-backup-public-key.asc | 13 - .../kolla/playbook-deploy-mariadb-backup.yml | 16 + .../playbook-setup-mariadb-s3-backup.yml | 143 - environments/kolla/secrets.yml | 3122 +++++++++-------- environments/kolla/templates/rclone.conf.j2 | 13 - environments/kolla/templates/upload.sh.j2 | 17 - 11 files changed, 1597 insertions(+), 1800 deletions(-) delete mode 100644 environments/kolla/files/latest-full-mariadb-backup.service delete mode 100644 environments/kolla/files/latest-full-mariadb-backup.timer delete mode 100644 environments/kolla/files/latest-incremental-mariadb-backup.service delete mode 100644 environments/kolla/files/latest-incremental-mariadb-backup.timer delete mode 100644 environments/kolla/files/testbed-backup-public-key.asc create mode 100644 environments/kolla/playbook-deploy-mariadb-backup.yml delete mode 100644 environments/kolla/playbook-setup-mariadb-s3-backup.yml delete mode 100644 environments/kolla/templates/rclone.conf.j2 delete mode 100644 environments/kolla/templates/upload.sh.j2 diff --git a/environments/kolla/configuration.yml b/environments/kolla/configuration.yml index 44da833e7..94c561705 100644 --- a/environments/kolla/configuration.yml +++ b/environments/kolla/configuration.yml @@ -123,4 +123,5 @@ om_enable_rabbitmq_quorum_queues: false # mariadb backup mariadb_s3_backup_s3_bucket: backup-testbed -mariadb_s3_backup_rclone_identifier: teuto +mariadb_backup_gpg_recipient: backup@testbed.osism.xyz +mariadb_backup_node: "testbed-node-1" diff --git a/environments/kolla/files/latest-full-mariadb-backup.service b/environments/kolla/files/latest-full-mariadb-backup.service deleted file mode 100644 index fd46e7ad5..000000000 --- a/environments/kolla/files/latest-full-mariadb-backup.service +++ /dev/null @@ -1,26 +0,0 @@ -[Unit] -Description=Trigger backup of MariaDB -After=docker.service network-online.target -Requires=docker.service - -[Service] -Type=oneshot - -User=dragon -Group=dragon - -ExecPre=bash -lc "osism apply facts" -ExecStart=bash -lc "osism apply mariadb_backup" -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/kolla/files/latest-full-mariadb-backup.timer b/environments/kolla/files/latest-full-mariadb-backup.timer deleted file mode 100644 index b7afae6d1..000000000 --- a/environments/kolla/files/latest-full-mariadb-backup.timer +++ /dev/null @@ -1,9 +0,0 @@ -[Unit] -Description=Create full mariadb backup every 6 hours - -[Timer] -OnCalendar=*-*-* 05/6:00:00 -Persistent=true - -[Install] -WantedBy=timers.target diff --git a/environments/kolla/files/latest-incremental-mariadb-backup.service b/environments/kolla/files/latest-incremental-mariadb-backup.service deleted file mode 100644 index 8eca2feb9..000000000 --- a/environments/kolla/files/latest-incremental-mariadb-backup.service +++ /dev/null @@ -1,25 +0,0 @@ -[Unit] -Description=Trigger backup of MariaDB -After=docker.service network-online.target -Requires=docker.service - -[Service] -Type=oneshot - -User=dragon -Group=dragon - -ExecStart=bash -lc "osism apply mariadb_backup -e mariadb_backup_type=incremental" -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/kolla/files/latest-incremental-mariadb-backup.timer b/environments/kolla/files/latest-incremental-mariadb-backup.timer deleted file mode 100644 index acf973601..000000000 --- a/environments/kolla/files/latest-incremental-mariadb-backup.timer +++ /dev/null @@ -1,10 +0,0 @@ -[Unit] -Description=Create incremental mariadb backup every hour - -[Timer] -# Fires every hour exept 5AM/PM and 11AM/PM, where there is a full backup -OnCalendar=*-*-* 00,01,02,03,04,06,07,08,09,10,12,13,14,15,16,18,19,20,21,22:00:00 -Persistent=false - -[Install] -WantedBy=timers.target diff --git a/environments/kolla/files/testbed-backup-public-key.asc b/environments/kolla/files/testbed-backup-public-key.asc deleted file mode 100644 index 9b1462056..000000000 --- a/environments/kolla/files/testbed-backup-public-key.asc +++ /dev/null @@ -1,13 +0,0 @@ ------BEGIN PGP PUBLIC KEY BLOCK----- - -mDMEaiv4ERYJKwYBBAHaRw8BAQdAluo6yANRwGv5CNm22+a1OF+OKI1dXkhlK04W -VxUwoFC0KUJhY2t1cCB0ZXN0YmVkIDxiYWNrdXBAdGVzdGJlZC5vc2lzbS54eXo+ -iJAEExYKADgWIQRNxQan/LGxSY/WKsZk83rQZUHCqAUCaiv4EQIbAwULCQgHAgYV -CgkICwIEFgIDAQIeAQIXgAAKCRBk83rQZUHCqE2jAP9DLK9+uH5WtLSGplmC+FY/ -e9xwiwlxBdYX24uLO2qIBgD/V1wM2QIjxaPE+FcHoJP9clRPphUXL0YaCw8SbYHa -5gG4OARqK/gREgorBgEEAZdVAQUBAQdAI2PpOarlbeaYUQdd7pRVceUSHRyjh0X+ -USzLH9UBzlQDAQgHiHgEGBYKACAWIQRNxQan/LGxSY/WKsZk83rQZUHCqAUCaiv4 -EQIbDAAKCRBk83rQZUHCqIdqAP9KNOLb8ih7aGS84pFQ0qQTxI9iN2ItxY0YmRYe -deeeAQD/RW3YiA1It4zhwWXE+X8UNRZuG4AxtSnxb4Ptr3DuoQE= -=jJs5 ------END PGP PUBLIC KEY BLOCK----- diff --git a/environments/kolla/playbook-deploy-mariadb-backup.yml b/environments/kolla/playbook-deploy-mariadb-backup.yml new file mode 100644 index 000000000..0cc339d34 --- /dev/null +++ b/environments/kolla/playbook-deploy-mariadb-backup.yml @@ -0,0 +1,16 @@ +--- +- name: MariaDB backup — control node + hosts: "{{ mariadb_backup_node | default('mariadb[0]') }}" + become: true + roles: + - role: mariadb_backup + vars: + mariadb_backup_component: control + +- name: MariaDB backup — manager + hosts: "manager" + become: true + roles: + - role: mariadb_backup + vars: + mariadb_backup_component: manager diff --git a/environments/kolla/playbook-setup-mariadb-s3-backup.yml b/environments/kolla/playbook-setup-mariadb-s3-backup.yml deleted file mode 100644 index 4d618634b..000000000 --- a/environments/kolla/playbook-setup-mariadb-s3-backup.yml +++ /dev/null @@ -1,143 +0,0 @@ ---- -- name: Setup s3 backups - hosts: mariadb - become: true - gather_facts: false - vars_files: - - configuration.yml - - secrets.yml - vars: - mariadb_s3_backup_rclone_docker_registry: "ghcr.io" - mariadb_s3_backup_rclone_docker_image: "rclone/rclone" - mariadb_s3_backup_rclone_docker_tag: "1.74.3" - mariadb_s3_backup_rclone_image_full: "{{ mariadb_s3_backup_rclone_docker_registry }}/{{ mariadb_s3_backup_rclone_docker_image }}:{{ mariadb_s3_backup_rclone_docker_tag }}" - - mariadb_s3_backup_rclone_config_volume: "rclone-config" - mariadb_s3_backup_rclone_s3_provider: "Ceph" - mariadb_s3_backup_rclone_identifier: "backup" - - mariadb_s3_backup_s3_hostname: "api.bfe2.teutostack.de" - mariadb_s3_backup_s3_port: "6780" - mariadb_s3_backup_s3_endpoint: "https://{{ mariadb_s3_backup_s3_hostname}}:{{mariadb_s3_backup_s3_port}}" - mariadb_s3_backup_s3_provider: "ceph" - mariadb_s3_backup_s3_bucket: "mariadb-backups" - mariadb_s3_backup_s3_virtual_hosted_style_bucket: false - mariadb_s3_backup_s3_path: "" - mariadb_s3_backup_s3_region: "" - mariadb_s3_backup_s3_access_key_id: "" - mariadb_s3_backup_s3_secret_access_key: "" - tasks: - - name: Pull images - community.docker.docker_image_pull: - name: "{{ item }}" - loop: - - "{{ mariadb_s3_backup_rclone_image_full }}" - - - name: Ensure directory exists - ansible.builtin.file: - state: "directory" - path: "/etc/kolla/mariadb-s3-backup" - mode: "770" - owner: "root" - group: "root" - - - name: Copy rclone.conf - ansible.builtin.template: - src: templates/rclone.conf.j2 - dest: "/etc/kolla/mariadb-s3-backup/rclone.conf" - owner: "root" - group: "root" - mode: "660" - - - name: Copy public gpg key - ansible.builtin.template: - src: files/testbed-backup-public-key.asc - dest: "/etc/kolla/mariadb-s3-backup/testbed-backup-public-key.asc" - owner: "root" - group: "root" - mode: "660" - - - name: Import GPG public key from file - ansible.builtin.command: - cmd: gpg --import /etc/kolla/mariadb-s3-backup/testbed-backup-public-key.asc - register: gpg_import_result - changed_when: "'imported' in gpg_import_result.stderr" - -- name: Setup mariadb backups on manager - hosts: manager - become: true - gather_facts: false - vars_files: - - configuration.yml - - secrets.yml - vars: - mariadb_s3_backup_rclone_docker_registry: "ghcr.io" - mariadb_s3_backup_rclone_docker_image: "rclone/rclone" - mariadb_s3_backup_rclone_docker_tag: "1.74.3" - mariadb_s3_backup_rclone_image_full: "{{ mariadb_s3_backup_rclone_docker_registry }}/{{ mariadb_s3_backup_rclone_docker_image }}:{{ mariadb_s3_backup_rclone_docker_tag }}" - - mariadb_s3_backup_rclone_config_volume: "rclone-config" - mariadb_s3_backup_rclone_s3_provider: "Ceph" - mariadb_s3_backup_rclone_identifier: "backup" - - mariadb_s3_backup_s3_hostname: "api.bfe2.teutostack.de" - mariadb_s3_backup_s3_port: "6780" - mariadb_s3_backup_s3_endpoint: "https://{{ mariadb_s3_backup_s3_hostname}}:{{mariadb_s3_backup_s3_port}}" - mariadb_s3_backup_s3_provider: "ceph" - mariadb_s3_backup_s3_bucket: "mariadb-backups" - mariadb_s3_backup_s3_virtual_hosted_style_bucket: false - mariadb_s3_backup_s3_path: "" - mariadb_s3_backup_s3_region: "" - mariadb_s3_backup_s3_access_key_id: "" - mariadb_s3_backup_s3_secret_access_key: "" - tasks: - - name: Deploy systemd timers - ansible.builtin.template: - src: "files/{{ item }}.timer" - dest: /etc/systemd/system/{{ item }}.timer - owner: root - group: root - mode: "0644" - loop: - - latest-full-mariadb-backup - - latest-incremental-mariadb-backup - notify: Reload systemd - - - name: Deploy systemd units - ansible.builtin.template: - src: "files/{{ item }}.service" - dest: "/etc/systemd/system/{{ item }}.service" - owner: root - group: root - mode: "0644" - loop: - - latest-full-mariadb-backup - - latest-incremental-mariadb-backup - notify: Reload systemd - - - name: Flush handlers to ensure daemon is reloaded - ansible.builtin.meta: flush_handlers - - - name: Enable systemd services - ansible.builtin.systemd_service: - name: "{{ item }}.service" - enabled: true - loop: - - latest-full-mariadb-backup - - latest-incremental-mariadb-backup - notify: Reload systemd - - - name: Enable systemd timers - ansible.builtin.systemd_service: - name: "{{ item }}.timer" - enabled: true - state: started - loop: - - latest-full-mariadb-backup - - latest-incremental-mariadb-backup - notify: Reload systemd - - handlers: - - name: Reload systemd - ansible.builtin.systemd: - daemon_reload: true diff --git a/environments/kolla/secrets.yml b/environments/kolla/secrets.yml index 59942de7b..ed4d9eb5f 100644 --- a/environments/kolla/secrets.yml +++ b/environments/kolla/secrets.yml @@ -1,1544 +1,1580 @@ $ANSIBLE_VAULT;1.1;AES256 -33663739633466323464633661356538356465353936306333373337336432393333313866373630 -3961633963326331666666343564366133633230336163610a663039363839323035643435383737 -35643838366338326130333832303562356538656665613439333464636339616463386461313233 -3837393234386333660a343661313836333436623533366137396338303966653565303736616536 -32636335653964326432383134383230663035303764646330633536363638653034643335376333 -38616463313061363262623565363937613562393632663838346338646634383564306134366134 -62656264656335316531326337623736653561306562363764313338626334646531386263653835 -64343865396564623630323739313531663434326535643235396639323766376662303261633739 -30643061343236646639393038636364616335666133643863383432333836343938396438626233 -62383561326265383931623536613735333135623634343539306563366665666434323165353162 -37343261626135623161316334623037656361656265643337626363353836333538383039383734 -33353165663834323531383731336539386662623139643537306332383666623039306432353464 -38333836343433373962373939333262393062616635363763353234313838613264653731623835 -38376639393964353138666466356666623161356161656462336336653435316536663039356463 -36373361303337343733383066306265356432666632343462393232356466346635383065623231 -34616462373133623633373661316663326136303335623036393836666465643066616161303364 -63633634386134636236383131356237663739373661343233326366626561396634613438656362 -31343339626430326666663962326162323130386165303235336436666164353532353238653464 -65336463623562333137373034633062626131303237633234393239333736313563646263356562 -38333037373738653066616631323438316339306636616366353230616365626639333235653930 -30316464323334333235343465353663356237326136326338346335623030393633373961383433 -32663264376238333539363534373233396632656433656263653862356362653137616666623737 -32613437366562646234306563323430663162303662376461636462633334323430613935353433 -37393565323532333530653132323064643937643232373564353866396633613436373666306133 -62353437616436326365393162663335303933313039313966386364643236333962363731656232 -63386537396233663731636365373834306637353131393337366432616161343933356164353031 -35346435363738376635366232623837633833653632623834653039396434636530633236316336 -30626663393361306535666366643433333634633634666161653539666536626230313361343139 -32656636396536356133316535383065623437303563336661303163626233633538633531643839 -38383366343839353162666363346434336435373164376538653630323739373562303935633466 -64646136383062626133613761653438373862303137353162653966666633643566383232643930 -35656334313638383630333932373065656462326263636565643139616534653965356261336333 -32666161663033376338396538393532653761343734646266356330623537366238666161646630 -61636530393164303830616265333838383739356233323035393964366637633038363361313266 -30636264656266383336666462656266383063616437626630376466356465313637643039383436 -61303363386334643033653936363961666165383361623232346564633666326530666238623230 -63633730653832303630623333353331646135306361353234376437376565316135613035373066 -66313539373336646139393034663465373334356562646461616136663365333161663731383865 -64666165366336383565303363643938333265323166383930653731613466363633343239353034 -34393263393331656237653438366438343639326364613861643639353832623439663964313962 -35356634316131346133626434623037306261653936363238663862326666343734663030623836 -39653538326331613633363939353836333066643933616265623637313431653363313238636637 -39353830386662383563626633386437376361376232353764313831376333653932633662383936 -33656465613833346466643164343266343266393163643733353334623635353734646333613939 -61653266646237643961616464616437376434616335336436336665303736373738646435333238 -33666632646634626462346535376531363865353636663736343034356130393262316662613634 -31366639383637656638393533616336376633643637376261336139623637633239333461626665 -31633561373362306234316134663539616463393065393838616535303364313938646231633831 -39633435616332663462666332613864316237333337373166393765363533636362386332626432 -63383038363639333639393936323761353239363062656435363731373431646233313431383638 -62363033326630346336666634393136666138363366623935316666623464306434613631313062 -62393733613333313637353335303532626662666564633832366531633465663033366432363637 -66356461636663353630323865613038383366346665383536616361643037646132613838313064 -36353031386435393562623137623264313638633261373932363334363136306430613662346133 -35366431623665363331326334633630623765613734343639333465396132613239323331376664 -34643131623437376366353134376233663166363765303730666234313739666539386365393432 -30393966346537653162393736333333323132343833383732323463373133623435306334633839 -30636231633534666430626531643161623261313938383561366438626238656236353439373036 -37383663626132663431646139663166636464613636386130333638393463363830623366356465 -65343066373930386335623337393633663062313737366137336638663463306232316563323436 -63396233386433396133626331636232613332303236363037333331373533383437666437653631 -33383930363763623536343633353231663732366536373563613265396134363065623031353261 -33343435353131376534613465336331323064396233663239326366333835353131663336626132 -62326330393161363865356361333732366265643462363839376132643966383566343962616335 -36383864313633633731616337303166623532306465363766663466326632323062333135346665 -39313962643933306662343463353739653963616331346664643565643632316463316333343330 -66363039653538623638613333636131336635666431303063343765316336353666643435396561 -39383937306565376332663463376439326631633861316138663533333830333738323335376636 -30633661313231616639396435386131326565346235343766663665366436626637383037336239 -38306464373865396564646633396163623038623734656332626632376637653832633738353265 -65373737373963346438373238326337396434623733663964333535623664366362643732363237 -65623866343965343938373432653063653966306634633535316661643164303262633562623638 -33343134613030636630626330633864306239323866313065636330613537303562356663316535 -35646236613534653665383235326366663136363738663737663662383564613430323632636132 -65626364346633643036343737386261646433363962313766383234623362646532343435353332 -63666332656331363035343437303161646262626266323865363734663135396536396532616435 -32316135343835613662626263393663666138356434326631636330636139306534303536333839 -32613665646131396461386161633536323863613363343563636436393034306233653039303466 -61353534373035376264333338333762303734343731383762323838643139613338323436326130 -30393036353235316437343761333139333664346236303331376332613366663964633534313635 -37336631366530626333313130663335653638333530353532623561396162306565303932613739 -64633635396165633739303432316561623266613832393262356638626261663430643236356638 -62646238373434393864353832613265653433343230623637623766353262353231323933623334 -34613664356530663065653238383865333463366630316466383137313435333930363837643330 -31646530613032343633653664653862656235343339343262336162363439376463373937656634 -63643236656332386262376165636362343764636235303632323766313033613232646533353361 -30336230623263303362306665643531393639633534626331346665303938306666633633346563 -64366631623263346566303736613930333965636336333662643936386438353765623130396462 -33306131386261633638313232363339393861633562363136333533343563313630353136363131 -61363761383030646136656435653733656538393839613565303063313163623138303631343962 -30643362623234333265623439383661656135393134323663653263616230613832343030643430 -32616430613839373832303633316331323161306663633365386364343637343961326461616636 -37383463633466333866623634343464356532356266653833386433653963373031626562656532 -37396434656136313664333436663836633064326665336236613065623335323031353430653839 -39363137646337666436346635663963653138333966386162373530636562303763613433386236 -36656438363930346232363864653135353135383364663464353332343535383034393630323962 -38393238643839333931383834386166663338363561613735663764393137313463356537333264 -33616266626537303461656562313336323933353964386638306539326639326238623738663439 -65663534316532626164663731303338663561346437313335333336306537393134323962663734 -31393564343166633261386261656166396338656562633539303436366361383763306536316237 -33366333663566313536613436626332306337383830393831663266313134383362656330393336 -64613333333865383737313835613439316661323864663565303364393334326266356662656266 -37373337333736386139323136653565346364653837366661363266643938333230306434643532 -35636131333362323532633239353133306664396433346330633464376564356338393938633365 -65666561323633633730343162623636616364383261663539616564353462333530353962386436 -66396335383632646566316436613737653439393563626334383962333738386661643562623264 -34646339623863333761336633306331323037663165346235646138303937653863643734306165 -30313265626261346631643035386138633436393564383336633538353661306638326666616439 -39383933363339353364303733393862373266373562623261663166333936313930643131306266 -62366164303463353536393665383963306563646633633132633736326565653162646439613930 -64656530666464323539393166636563326532326366353337333132613733346136363663333837 -66633834636566363664653261626364383435663234323965653036633736303335343437386565 -34643330616461343230613230656537393132346330623632663064396438313333666134626338 -65353564613835643237626133336433343836323334636466363365306165343339623638633731 -65316530613938326232663961356531623031336566346532333237623064316335333033656534 -33623661313738313462623939373563633666306137663461643664396332626538656333666264 -65656335383465393262366662363337373363663634613535643232613734313965346139643238 -64313335633963303361343536366262336337363434623761663161313733356533653639323834 -37646337656435636462356435626133623733343063353635346465373561376464623161393234 -65313238326431366363366239366266633531666665383430633830363264306363313731376262 -35663431373233363965333562393037343538633635643639356462303032393561336135356239 -38396162303530396266643438646132333838313339353933323463623864326534636662643639 -36633461393339363937383430353464663535663830306530383330383632323264313036623765 -36366563343063306230353930306431653838643938383365366364633035353838613936316332 -31643335363664393663303433613765333666396335383866343561336232336137343634316238 -62613534303834633762656365356431343334316137656630613364306465323865366664386563 -35343366346263653434656563646135643439383139643536373962646464303130383936633762 -36333865383564373664656132376234383932633937646361343533393536326337356364356265 -62386235386163356336376334313936373633663661383839323664653037383530346532633761 -34626137343730383337346236343737623465353661336230393231383065623161386238653230 -37346534643632663738343039366565363731303732646336613733623233323237373831353363 -66323239376533303232653539656433333962646238333137646336393063383939356636303337 -62313061333763326163373037326237393836313734613533633636636665313435623566643533 -32333864653632613439616361396231303664333162636338633661383038353331343039616632 -63353835353839373465656637386630306132636630353835356430303732373639663331376666 -31646330666633313936623363636366356263303161383933313536376334356138326166666430 -62383334633932666636653761653064396466323063663231633039373161656130323735376365 -63646563663037346635346631313430636561333761643561313636326438643035626138626662 -32323630616165643732363737393137393330663539323535353564353430333062346664386265 -63623137386163313063613936393237623132633239343536313939623832616237326631613737 -61303438333161383835346262666139343433353633373030366132323761326431616337323838 -32353839386136383930316165643439663761306235383638343835323561613362376431353939 -38633430393864346566383536663538653631363531323534363436306263613063613730623464 -36383437383232313762396464663764306664633234613736353736623833653063303935343364 -66393362333562343763343238626164353639653538316461613837616365383764343938303464 -66663064646365343962616635323836343238646634323538656635373337363534616232353136 -38663639643965353334653939343164656135663039383566396337656131306565306637303738 -36666664656563666363643138646230343538346137633335383738666430393830623031396330 -61393233383339366335333739613531356335646334336165303964616530623566396135373036 -33386562313066616364336161656561396336393438306637313337363334343766643932363931 -64336362653162663863376434346234383130343734323239393835386331306261643038656562 -35313131633838383066633839383637663564313433326637373739363137623436353663656232 -34613431393039346261626333653531663036663830303438313831393134393166363465626234 -63636231613566326631663239376535363338333231366237633462643732386439633430636130 -35306332326666646563383263346437646634336634316532346164373136643337336363623530 -64643335303334353833356661313362646266316663643133393063383963336461323061333163 -39356437363463393565613332323934316237616630393038333161346364373462653632366266 -31356265623835626332333734643232386136633930646233653231663537623362613934373963 -33666636656666303336623365666337386562656137626239306562373762626562386638633736 -31346364366663653536663538643134343735366262653962656134353061616534393765623166 -39313639333161343434613462366663333231376166396533323962356665303562363839346633 -64356366643032623530333935646631383137373866323332303633346231323137373533303131 -36643062633363626435663734643036643662636266393236383564336563346666613666306665 -38616630313632323137616135366339396633326164633534666436616135356130613739396630 -64323534646461353236393633646335656166383533616662363062326130373635376133346131 -39396262346535323334343363666533313538376635383036383931386232366264666364386632 -30376639326166626530316235313732653334336365663736623637363030393964336632653439 -31356264333533613532336638643066303430643834613734646533666639313239396461343166 -30366135353439393437336262613963666435646438646338393362336564396336626438366461 -35656532303863646431666335383637643531636166663038326562623133303832616630613439 -31613933353031346631373863373836333334366566303834333931323132373335663037633132 -65363934623336613430386336396139393862303161373362333433613961623761306363326165 -63613333653465633131316165386339306363363530386364653535643730623031376533643130 -63636533343333303334316361626561333037393535393064303966346361643563346137663561 -35633961333366313633633332306537643331306239396632646564363366656637333439353962 -30343033323063333436393762393832363037666665363961653733373365373230393538386338 -34316261663934366135316365656662336662646364666666316666393533613063303131303833 -33363139376365323239663662366333356631636332613035393232646334646236353135323030 -34343164316538616637646361343434376464373632616434376331333664623031366332363066 -37343761636631666439633035666364353364663637313036396230373938356332346264623365 -35313236356630366466303732376234646235363033353734623234656338643237376536363739 -30366364383964313061656138386134336336356632646539393639653237663130353530643536 -39306632623462313264386136323361383039303164656536313462363039373663613161393861 -33336264613862636261323637336539376131393934396533363765396131383933323439376432 -37386661663938663134363964363838623361386262346230356333333239353430663363653131 -36626163373366656538646463326134356132626533663661323962393732333338626236343133 -36366635346631343064656131626432363832653234366434656466363233323536643363323435 -37353166653661336630653736323763353131386234376535663561623435616361393764633939 -66633665306534373065663263343335336230636163363633336433373436376366623466616333 -38646139386531646264313037653538343332633939376435393831363261643534343130356432 -64633965316361626437393735303237633633646464353365386432636164313633306238373661 -34653765323237336662623766626432376430656635386366663262353366363132376166396630 -64396262383438613561373566306663643439303936656332383065343432336665363166303937 -33323032303933643562326438326363646333323161343662353230626235323561333935333662 -65396435623832393037643239366266613730313032626463623632396533666665396537356162 -32316136656336346361373132353463376130616438346339346635653764393762653365666663 -37636532393434323264623036306533663362663966633533623032323739383037636461623334 -37346362306661653231643933353566643835303439323165633964373033653961303863396539 -34386432613234633265393235323336346462313936653930666566613633653163346436323237 -36653962623035393036633032333839626636323531323632323262386632363063396336313733 -30343834666163303936303432313537356531396665386661626164393063363537326266393966 -65336462663863303739363739646230316233656634373935346439376538626639376336376264 -33656465313661373033363562306337353638396334653336333339366138373866326332306339 -33663436666132616461613365626130323361343731376362383565353066363136383037626666 -33613864663232303538626336613230333463336466623430353961666162616236363664333834 -34333936373532636235303564373065666631613633623466633533346437613933613439633161 -65663632393563376636643835616134613837636634623136666261373666396561326236393031 -38393431636139333136333734356437373036383336383261373466626336356532396162633361 -34613236396436323439393833376636386266346238343564613031366331393165633831333134 -31616439333636623063393331373763376639636365326435356332623261336333386562653165 -37313533356561366566376636633633373665356635323631326135623032623361616336613332 -65613239333939656639643364303363373863633263313130396132346533653130323533663338 -32373334303663613233383235643232643663336361643537613430353066613538656461313433 -63303034376365323836663035653765363435666266373965303461396661343537333131643530 -33666265313939653765636263663166653637303465623064633461636563316363313030646339 -33356537313834636338333630313239353932396361326365653062353033363766353638366139 -39613931386266336564636334393065393861353137336133653533326635303065333966653966 -38626465323532343230393963613237636663313965626238633035333364653036396533663536 -63313666393538343965333830653363356364336330636165623764333635353265333833656430 -32303739396462323133626332336232356261336432613862653431363330633439326139663830 -38343866373262643039386538303733353266613566383837353932636335333064373435386332 -63373534393665373563383261333439333965663462636539393036333761343735306464616635 -61333737356464306366633434363938333864343362383736663161343238653833623232623536 -31313961646230653661306565656630656163323436363635353538326436383964306631626464 -33353965636364313630333837376135336565356561613633333232386230346265343631383430 -66306636646161626132643565323037303863373666623865656533373337306130363132333164 -31653366343831316239323537326563646131613437653433313832383961376332356466356130 -34333338303666306535306666323961306462383138386238343432356131343533646630663538 -37626434636639376236636465306239373635626463386330343936376532313939393634656534 -30663037333434393536396566623037363339333631613330313530373462313633323733343834 -62393861356135303966663739306465396639386334653237373566636666326635306435383261 -62633665646638653364643437303633643365383464356265613966616132326533343435663666 -34383030373230343362366166343339353238383935646361323732373638393535393164356530 -39353665356664336364393162626131646630666530323462613062356364393633636261386430 -31303036396565363062316163666436656362616230373034646235326234616535333531343865 -32646436366665356161376339343431316532653239646436633230393264643633653263393136 -38643430376662623731633439653638303763336665313662633962366134383630363132616365 -39376463663334626438306535333032633634363431656237396564383332366139633933346462 -33366630306533653333656363383165393239613365396662623262353138373130663536653630 -33386365303265303837356138313764393135646239313337613035623730313033303263343162 -61333161373838663333616331396366633439373538366530366564613530613264326137313230 -65646631393061396261326465626363393461613231393039383862333761393662643034643465 -66633963386638376636656238363764623336336465663731653834303130393533373038343233 -65633135333832363365306436633837613262613130353536323035313339376232393132393634 -30613732353433396634646361646266363735343961663431326230643563356634623037396662 -62363664393734373631346130656461623337303465373334313264613438393663353864636563 -34353539373538316363366665313736303337323363346238353030333736363761353133353661 -66643837316130656635616139346562616233306239633231383535636435333232643265373065 -39326631303837663534616433393531366233656439313361386634613633353833303637356165 -37613564363833646264303332306531616633363738633264386636346230303666353861646335 -36343264616536363564396337626132306366393836346433373139636661383837353037393062 -62653434643266383764306130303766363233363063313663346638616238306463396263623366 -61613234303033616338633730353532643932663233333663303332616539323431633465326532 -65396137373738353539336537316166383262363839333431313033623731363436383834326237 -63633638613039663239323232643061346234663136366539323130363361396536363332643966 -62656535373637303739373532653337383330623734393663636465353030353335383138353864 -31363461623161393461373661306239643237663565613336346130646631373465383064653939 -32376431386266393738373465333566316361356533306666356463326161363836633235363961 -38636430333137633833376633666333633038616565646131363539336464336533313466353939 -38303664373736346463663431343030623064386135303761373630633363646434396337653931 -62356332643232333530373732653834303135666635306531616332343132383463393638333362 -37396561646263396339643839653032376238653037313930303033343735636530386564323561 -66653932353661663962383163656430343634366433316239333733633061333934366337313830 -63613666326166326138303732396332646538636363646263326531306565613739386237373436 -65626266373263396463623232346165333764323365653232623537353861316165333038313535 -33323931363338353066366363363333363362653231343136626137316436393439356566306464 -36646137663031303939386364306436326562663033633461343937656237336163333536666636 -31353035343262643032396362646636383538656161333232333137663030343766623731613236 -32616638653162313264623136393732356435663065613333326534303337613337633536343634 -30646339663134616261626230636366383963316431616538643865333963613235386339333562 -31373561653461656166386566333834623061376330613431333937386533316165663733643134 -35663038376333396266366365623539353933323232383236353665343937383532333237636162 -65363930346565396434383430623062373634303931336262616663303165396465646639633236 -34386238386561303334323731626434653731633637383133313037386139333362353833663438 -66613538323435373637303032353937626230363330353065663536313663363637323832653839 -35646434396436646333346466383962616433313338373863613430636431653638313961323831 -64333530613061656338623631356163333363376463313934656565353730393235393430376139 -61363631336232396363336134346165616265663731396533346639393632663862343733303732 -30633239663863313763323761313164633735396232636132663334373831363838336466333836 -64313830336163356331353930363263393935363331653165393430613131623631366561313064 -35383261326430393230373535666264313939313734646135306338663839326134633035626532 -39343033336539643131633536623963336135613466626462366162643838383434303264626465 -39363261393765353566333338626466333337643064623130643565373632656131333334303466 -32346634623837346131663365633236366239313133643337663465616537383732326165373561 -33396664633637636463663334353438666233336363316161323930353865623339366533306537 -65313334663064336261336139303161326330393733343766623037356539306437333934666166 -66353362393566353465313132376166323061346262343532323363633661613364623939373336 -32343737303039653533386138383839623264396566363530323036353531396330313265323430 -62643734653134336333373430336265356638633661616162343535616163313166333230386630 -38613339653431386633346663356166626639643234316130313566353437643637326635666333 -30323633316565346130353433353539383337613732633437313865333738343562343034313863 -61663731666561633234656536303835323666633836373765346533323564623436653364653330 -35353139386166373363373966636230373130633935386535383734316238656536303261353535 -31353434303366356332396562343234636530313962303631633436376464656661663461373362 -35653439383237323462353837303331353461333664386238623237363235623863353630353666 -36353961616234643763366363663035623761643734666436643830613162313730623362393032 -38656565616163316336663835373531646461643663313331383063636366383235313465316466 -33386237643531313737656531633634343139653538326337643665373838653638626334633235 -31303237376230313565646164363737366464333136663239313938613362663339333661613630 -38306430396335656231313463366532393932633162323339336130336336616339356630323231 -31613966316530626639343034643132306161346434336162643038386533623631653032653161 -63633639316632373230383861363634353866636233316234366335633631386665623732373966 -39643132363065393237626262333935343635666533643231666262356666613133616161376138 -34663766646337626130393836366164633839356135623964613531333661623335376630356335 -39623633633131663663383565323861366331303136616235366132656139336361303836313833 -37656365393731373838373034313131363263306434653831613866663930373130353639646338 -64616564363935636534643134663837633263666538643864366164636162343963353937366339 -63313532663966393930633930366162323538636465313865383666316162656538656565663632 -31626366376430396231656637366136396536313165333739333766646366653338376531333839 -38316164326232316265346532393733373363366537386663333534663333663562613661623136 -61616562336235393264613234326133316330643064636132383731383762316536643862323333 -65343738303236316532643063376533313031323031633933363665346439323433383238333861 -33346339646538326566343436363438343930376662623237656436616163616333356533653662 -35363466616536393635376162396133363234363534396539663432656265366234376334306165 -36346662336632653161653136343239346536666664306339303864613165363664653532616433 -38646466336139353133363933333237633262336334343935343263643438313839613530333038 -38353763383666326237623935353035626235636139626364333264326365316530353535633937 -63353930323537333731616563613033363034653165316166643935303333616231336139363137 -37326236383336373565626566616564343232373937623365396533386530343335373039643339 -39613664663364313235313739656538336262373564386563363932386363613239336337623638 -39336633386162663937633534363763663136643463613430643932326634646132616465353562 -64633335306435633735663039316663656138346664643031613332633433353731633438363138 -64623836353339393265396139333832663436653638323966623436396339653662306533653062 -62656664346461306166376130616236633331383539373566366162643831373531313634633661 -38323431303535316462363332386231363262366538373030623431346433386638363139383965 -65633139303537616164663262663435366535366466346331336638393037303964356330383562 -62616665386136373630653837646136373861663032306433666561633464343963613235353330 -61666530376365626361653538383763373264323766383630646135316662333834666561333866 -31306163306430373837393064656639393030356665346633346164383332653631343733353433 -62616330343365663836646135336339653764363764356364346566393830386435636166363736 -33626334643264313432353361393465343166356163616132336238353061666133373061333461 -32333738393334663436356632376433616436656133633331336564653738653765393463643666 -34373535373031326466373664636166633266393832326439373636646139346139386231386236 -32613236666363323735313164383031383236666436653065336562333138633232376637363438 -66396464656337663237663434343964393661383837643961343661653865363237666330353566 -37643835656661353531316334623931313837303234373239636663636236353933643235386534 -31346664633864353039363637653634316562386333613539656461303561323337386139303435 -61383539386337356666636130386364336364633062666665383034373136343763356632323563 -38326365653862633935376337393031376566666534646166303132626233666164373666306136 -32633237346535643132633565336666313164663931633636633464633661323766653861336431 -38313431656231313062386337653465366462636561373437623639313639313830363134323764 -63633238373231663363646337303463653237303236363739623334303965653736333033636136 -31313237313631393533623937386137313530316531623431343531383738616565653736333230 -39633031353135663865393631366365653239333265393137333066323132643165646263303232 -33386261303461646366356665626632373030336333326430376331316631333236613239326663 -36313633323735633436646163383030613237653634326435323931303530306533396237636530 -61623134306265323234316566623732363338333734376161613737393133656136666532373163 -65376239636637356339333238393032336431326237623061376665663034666135646132646237 -36386435393866316265356436323066383033383562663530643730326338663130613665613932 -38373133636637313662623336356637366364646338376436383363303636393034633834646132 -31333865376530656464323561613366313064333166393238336436343337356137636562383166 -64616435646162373563373231373862306137393561383561313131613966326337393364623233 -31643432363632653837353531343230363039316637376536323437313031333463396533336439 -33666534373731666166303238333635323939356634363466646565653535313265303964373134 -31663732306434326635306234636162323935643534393231646663376465366632306637653834 -31376361323565396434323266363731313731343863386230643864383363643166313332656266 -65373964356562656633303763306336383562616662323337393837653137386334353361363231 -62376265373333346237383031666137343735303662383762636536666239623662666536316235 -64373339626431643833313830613933643661363662323339373530616437666336383839366133 -66386661316630356338326539626137336261643632663166356535653664643530656131383936 -38323139396630386562376634363132643834656261663330613038633266666366343634653133 -35666664353136343565623461316162643135366236373336333839653264303463383931613737 -31343061383632663835623032383539303061623161636338363563633638646161633731636461 -38346563333166393066623432666630353661643962633766323665356530643565383135376336 -38393661626362393837616135316262356130386637633738343461376630346137393165353335 -37333030626433643663326363353436303139366461663763313161656334363938376239393039 -36393464333833393235623165653966633736376663653931396362353939613631323331376433 -39613239643435353732656437303030316239303461616262326534613733376132613637393035 -31613333626537623634643066393630613736623036306333353366653131623231646130616535 -36613239316566303138343032623834303231373261383535663064646537636664656266333861 -65333966633863333937366466303134336437343263643236386462383165626533356238643664 -66646536303761613166376264396662326265376330636437353764373464643164373061376434 -34396139323963333966646461663730383132356466616330663636623932353038633039626437 -62373736333933376239636433393038336461656231323465346239666238666637643065353237 -32303038616238643237373736356436376137313365396332653239326333303033373433336263 -35646235393435313032313732653530303863393737663437346264653162626639626639353234 -32616134613463343137326566636433643134653239666539643166396639396664316431666263 -38623537316261333433313861633230313536663936333335396464353537343835346162316365 -32376338303066323164313037643234373730306430303938356665343461333932643230646361 -37613931343834316563316635326336366337653361653265393831646366663238363632333832 -34393038326463336361653138393539366532323564386330343831646337653633366662663634 -63323463316339636561386266646336383261366163386462353362353163333234346238616238 -33353931623965323836396139613832353838356130663465356236613361656638346361656531 -35646332323239393565643037376661626436313031396262346532376637343535393737356235 -64373635616166613863623438356264393530313931313864633661313936633266343834303332 -64616336663735333434373433396462303964656363313231333064613335316233356661643032 -61633034656138323231373261336365356462663736633636663564316139656264653739666439 -37653736343263303265323562346664386532306563393639383665323966383863366435633938 -32336562316537623439623832363436643035623932653635626666653065653435393361333933 -66626435373264316563343562396134303064626234343732653462326435626635336163636135 -35396464343937653663326562366434626163386266623366356562303432316364326130623436 -39356430636535373436356265373633303262383433343133353061663530636136353761626133 -30626132313432353134623530376231383766646261386638636533626237613839303134343562 -32373939346337633633653533353731343361633936633037613039393933316133396465353361 -30313861363434626638386663306434333035363030343265366561623936373931376462653961 -35393730623537393237386566643730316337633762333439343131366263633965373336376236 -32643265623232653638353865626337396138653432303563393261336265653261393062376461 -65366361316132653430333165353930643335663231346136666166313666303235623231366430 -39343562333465333866373034626136313063626135356134626562336338653461633938396537 -37326132303031353934623633323638353264616136626633316432613738653434343638646161 -66343635356664343233353564636233386237633435613630333163643737346333356334653838 -39333262373336326465383532623466383865336562353062383535393763383863306332356535 -34626330353462333335313530353465633737386538333761613934626463366237303663363135 -61386666663939613632393033386136636435306131643336373937313230336430353464383061 -64363861663030643662326262363831373465303736373938613739306163373338303237313435 -64636232386564383230633364346461366433313331643034313865666530363463613066343064 -39303364326235326564316462613430306232653431313538663133303161396135343065363033 -66313038396436333130633735306639653666656632646261373836393662366132623062653765 -62336237613964656330636638666430316166373733343964353766336336333439393761353331 -38303963306234363561376161376236393737626263353337636631316634643438653662316663 -31396534653631333064323466343330313763373461303762386466653461313261376464366431 -35326166373732653366353564363132366130663437316262373235326634313662366333393331 -61353564663063333965333039333065646464316631396166393135326165646266336130323335 -63343834646265653931646532623265303639303864393961663963363032386134303063646538 -32626439653434393030636165366631343433666537666336393863326561643261336335343663 -39623631316437653965626338363030336536326230353863333137333836653565626535363938 -63613865353739396565343261373638646530386535663763303061646463373930303830393062 -36663562306536383537363033626464383666366366363437333363306462633436303164663733 -36613563613231383135373138306537633764363362343866376633393833326235353431373632 -37346633373534373231326634636466343537633636643736386233386265383362653061633638 -65643530633162363235393166353837643164643034316466333661643231616532343761653238 -65613734313066393831373963303236633837393833663136363932313261363534316636366661 -34343161323661616434663633313762343633613836313764663634346335373632316433396134 -31633133306263666463313432636664366331633637313262363439653539613331356462383033 -62646237623035373964616232316361656537656336356362633936633561633532383836663530 -34616530613638326166346239643030623361356266663665373430643530616431306131363335 -62643563323761356433396332316564666435623262383635616264623563383038633132326163 -66396163383235373537366333663138363435656563646332626134393634333132626434666631 -30333034613666333262666632656234336561383530333537623935373565623366663436343766 -36393436326637666139636332393764616633653334376235653437383161623665623639613535 -62343163646633663462323163363734633863326239616262646339363861366130343436326165 -37646461386465663231666564303465613064613565383939306536356337633064313832623136 -33376234323864373137343461616461383763633834366238353636656465303438306438643437 -33613231643630316362373630393130373431626230376531336561346238383637643731363738 -61373837373137643361306564343131623063626337313738336466633565393933643964333834 -34346633313566616233363465323762363436346131393033626332646133303432396466313837 -62333933366233313065636334356330323266626530643465313330396333396433636664663062 -35343033366631303364316362626166396433623331343837613034646563623539613932353239 -37383663643865613663353731363337323439333032633936353033323333643433363662363837 -63356130666166373362363164356438363061383763316633306439333330326134623762306530 -37363738333462386232396531336165653930333137333663396630316537393638376566646332 -36646161306162363733353663353539623831333035613064326237356662643135383739386535 -36353536616266343361343634626439326363343238633732376263346661356231343839366137 -37336331313931653233663933343661326132306665386238653039353438666132363539326266 -31386234616463333435616337633132633233303461613163636330636533343438336163343261 -64356664343761353263333930383264633362623932663434323565663965663634663761386333 -63316562393161313264643334646163643034373262623566643938323866313365346361326665 -36623037653166393631396366613963653137653333363063643638373664653837653333666138 -36336433343532623766333438633631383765376365626364366666376464363463376136623339 -34643231336434653165666665363430393731613062313063373565313936653739303562363132 -37366264363463666332333634623262636235306438646135323934363932316637313435623866 -39313939353061346164313938666264343336306561323962303635656265386537373437343137 -34633731343531303166623632613964383861393434656662366239336130373064663234373461 -33346465303362623434653465363064633237323365643862373736653330393563316533343138 -65393933623732383964313436656266376165666338616537373136666563313831633734363762 -33393933383666313764336534333531343731656537383530616239373765313465656436396163 -61373033653834336537633531356434633563626333343465383739663530316631386334373938 -63376339646239613466343166336438306331623230373539656133313034333661373239333166 -30656430323531303230363932333333323831353233323666323836656439396434616238663931 -36633436666264333365643163636465393564353932373663393635616436393032643534663966 -32386136633931623330383132353366643230656565633336623863663432636631373334643239 -63333230323263663864383532333630313634643464353038626431623461303433316565323066 -37363635633631396533323633643130633962373161383037653861313630393862626134336237 -35306662623736666263313134323261613234323863343738313662633033333132353231656439 -39636334613737343639353630613732666466306434306531636631653334646136653966656430 -39643464373235366233393464626232376233343661323836613235393632386532356532326438 -36333734613038323463303033346137616234643361363630323065323165336166636335343638 -34366365656536316263623033343332303761643266356565313066333966373866393738343734 -38326366393137353737386466383365376338646535306330346431613630326537633239663935 -33343063333930373461333035366135666565313834356531326463643363353136396338643265 -38303966656438653532373936386234326137336239333134343561346232623837393138643336 -61626538353538393837363933666130346133386362303031393633623131326663656236333138 -66343064306333623234623736646335653134343963313961376632363430396662653737643538 -63393363313136303239346131393036313337313730303930343466333265643861386565306262 -61613939326235333031323363326339363938616439343462386664663337366232343730373730 -66663465333163623231303336313463376330633363653865656366616662616436376135663662 -34363230636339383263356166323631396466373361326164663534303264353966343236326534 -34333565303665356666323763633934636662323732646461613561343230633064636338313462 -32373536353836386237633338643863386666626136643131636633323762633235613235343038 -64613133626134616666313465393930393439303534336637306538666332666636366163326465 -31313433383131336565383137326130356134343038396339303231663261663035343733623734 -32613265356334643635313831656133303464373039663532663332333536663232393733376465 -34396235633566363336633836333261346237383162663164666264373564653038316333643939 -35393164383633323636646165333539376562646162363936383537306537313831383964663238 -39353964353933613939646536663230303436663437666436313332613832613930663664343264 -65356332616664343961383538626562633333656561343564363934356237323339643464393036 -39336635396538376261366433633336343634396234313235616261323934336638346434626139 -33613461363235356339363932633437633135623738316138353334363637643236323030393766 -64636165316431366565386432646236623037303434373432613938626538373861336539313238 -61356432653639396164633563613364633261616532383933363039616637363462396338323563 -30313735376136613531396563323435663731376531316333613962353539633761333131323134 -33666435373163316131653836373965666334386638366133653063386562666263633835653939 -31386535386462653837656236343566323632303161373963323035633439643039373536383431 -30626439643036323465373939663531643733383536623838383738656537663731306534326666 -61316336323963656531336234333839396138326232616132666134623066393835663963643563 -32313062623536636564323861663830336333313963363638353438336139366436313730663862 -61653031376263396132366531653930393761373035313761383166386134373235316662306333 -30366530326635336339303065363435323430303433356662333664666630363838396364666664 -39326537326366656137343265643939363738656534383866613238343736386238383836363832 -37386539323732303139663362393835663666646364663434323235336530623231326433626565 -33376665616463393231636237373334653333663664663533643536366233363734363339366161 -62646532313635366438393066376235646635336661353231386332393036656137343164323761 -65393761663966396530363536363535653734623461643834366465396630366336663364646463 -61373933373766653764393638626332333566353036333639663035623733316566633538346136 -33613134316464343539653039323733616439353362393366626336343466336638323738623839 -34373565356230383063626461376265633362623435393639663034316230396331343463303439 -31373363343461666237336361326135353230363465373030303237623630373936636430383762 -31343365646437323563313136363636383663623435653635316265643266366362656631363735 -32386561666566366437313639636131653564303163616134616632363037306237313863636338 -35623133363139343436316362616235333661303061373933656534366637383335636661353633 -33666366376131636534653531396338353237653762623261613730363466333462663735376264 -33653064323365623533643836336562623662613434346630326437356530313131366632636362 -62623935306561636434663464313530356533653235393035646463643536316235653139616664 -30666339353231303630356432353031383739373938643135353134353161646662323035616431 -34383964623161623862326132353232623862633866653361666131623565353034616136623131 -34636231313936313432363537326532313533613264626264623161373232316634626531643439 -63326339336633323437613063613932343932633836303836616530366639383064326632366436 -61616161306337336133643939356532616234333561656437633039623532323234373064626562 -36623431383063353166393761366136396461366236616433353363623965623534343635366531 -65376666393061613032663636646465326331643261613132373532336635653531306661616131 -36333730303139306633313633323033653434373936363462356538366233313431333230323635 -61336636653965656161623666636538633430643832626363386263636634356431353838333564 -39613439613230383036653037393138366634346166666132363761323931356438353466303939 -39666133616564353861383737636333326535346134346538636664636431393832633764366638 -61613535656163623662363764626639383464613938616431366238376336643232393737323062 -62353662333037623231623535633862343837363837323338373762333663386561646232383161 -37613330653036326535343533393335356131353263393636333432333936633966626164376463 -32363131316334346132353832613835663066363565653037303637613962393962656638373861 -31306633353430396236623135393732333364386537613164643335613137373031303835336563 -62393932333065303638393630613561363638663463343830613330353138643931656137373038 -66313936666465346637383939663661346562616461646136386663353435616135373934633533 -65303734346234376334313231613530396166663338353265663464653836633433613036653533 -38626165326636396466303466393039646534313938636130396130353834383035613035306564 -32396532646339346266623264643238376132353435663539336239373032616661653733343161 -63383064393934386137343035323965663031343037373963646134633961303230363636353963 -33616431656566646132373563343530653533663138643965376335643063303165373963633065 -38633464636537333939356637396338323533376661396238613165363635613234666639633339 -32343834643161366231373536326533376131353866626436643835323237323839383030306630 -39333737613733613537306332633134663933653965636564663933316335306661373161663033 -37613566633665383338663361613631656433316165653866626163373037346636633638353532 -32633065636535626334366662656634613536363635626331353632616133663164303633303164 -35616335666332646434383563386537623532623835323639383264613438666461646431343062 -30376334616633323031353466396133653337353833653431343334336439393034303138613531 -34393532333562623665643437336138663065646235326132373438346565353531666334353330 -30393538323732663463616534386262616531316230303530666331373763356336363736393464 -38653163303662643265323830653238313866656234383563366166363135386330316538323730 -64306434633636316634633432333064333337383834343835346562646163643130303933386563 -34373965663734373333636630613337613466343136383464383431343939633236653234383938 -62633935366562313032633536346232653338646235383063633066666265326562396236663965 -63313633383766626532646130396635393539373166336239333237613835643632616334336631 -37636166633836386539356334313237653332663562333833616438306233336537656231313837 -63646563383064333766323937333463636437333062373938383034373537343739663565373231 -32363236393138313765393239323530313461616532353630353437346234383538383365373230 -34363531326261366662346132393036343236386162613261386463336531353466396239666636 -32313531363137343062333662333366363137303463653539613535393638353036313065633633 -34653762656434653131383161643162396331623766316264363634663035396430356262356533 -65633064663436383530653737366265303339313632363339633564383937653164396266643730 -64663861623835623732646637313838393666666138356534373034376365316234643837643436 -38663066353338663534346438623730333830376633623362373630313634366566663063646239 -65356133653130633034663463643837393631343234626164616261313332646266633335366461 -31653738336664623032636338623130323830653766643134636232396337323264666430303634 -37363863313630386139363030653032643130643233333339663437316631353533333537666535 -33303066393033656430616265386434646537356539363633313061326361653965336431643031 -36333134613030383530336365646634393265383037626163663162366432356331303136663463 -30656464316138616261663436626330383565643666336566383363613635393561636461323531 -30383866636431613733616134636436363034393831616639303235343539386461646365643463 -34326633376663353162646635626231386461343861613432626162363466333266353334323061 -61663137343032303430643465356664353562316333326232643834306561303533626165376236 -36326437366337633862323436303063333238623634303031653262376431366462643362306432 -31643531356431613439653764353765656565336466653862666664316132323832323139613030 -66373438616539376639333136326662363663363164653666643435353465343365343161313537 -65316263386637653836356236343063633565646530646338303237323964306166323435646665 -35353033656232653465336637653462333832323565376266313866396532666337393763623933 -30306265666364373766343030303066316433616561653531323432643435663964396261616365 -32623864363438396666616366636233373335373762636535383666613863393665643161643066 -61373561353136623832613965333035346332613538663631663836396539373962383830333466 -33356366636665363637646463303234626630326661316565323865353038646636376134363431 -64646631663538646430653462316262366464386331646337393634663236323532353064346363 -64323063383762613039363462393064396661306237386536613839323438653262306434643539 -33383166303932633930396262333861393534316430613739656465366533393766333938383165 -34326438633037346535356235316133653930623766383861616436393164376661666231363234 -39383332383864613534656137333361643835383666303337656664343438616536663333643934 -35613733656636633834656465306637333838653039326638643364396661646633336133303662 -39373563366438343330666531333366383039623263383566346361626131333333613431346263 -65333065353064313663383537623236366663393766326636323032363330636436323936633866 -34633965353030643164666362666235396336653939663936663465336666623961366565393534 -63353132633565373763303366653034383162366362613733383730613439653339363764373963 -30386462643639303534653030663163336563643966353535633834323965636135393436303261 -38303836653030613366616630613066393063336635616563303363333163656338306538636236 -61666531316164393166306431356361653862323163623765656364376632386432626466353236 -37656535363632366665303464303038653134626266313338396532666331653032333562303739 -66623238616337373537366234356337333530613631633834363338316464396430323439616538 -36356335396131373730653639626436613537363366656266363333356365383362383737323761 -66613635623964333763646563666132393166353930306639366366356637636136623061333032 -35333363643531613633376563386534343561666662643231663462653135373366633139323235 -38353837373932333239386466303836623964393238636266333437393030626164623836643637 -65636361663566656530396532363764323931646263323032333138633362653437373430613635 -30363864626132326363343937363861343963343762336338646236643537346465633063396632 -62393733356561333363366131373037376330643864313935373835323631326230636135336265 -61333335663738396531393462346437663031346136343762643430643938653034303433623566 -36613366383837366131316636333463316561313430353931356538353437366362323139656333 -66303063613539623536316464323038643230663131356530353466656430626337356337623565 -37653637333432326163326265386339316636623837303034356332366439303530393631663565 -34323062663633336135636638333736386532343732313339373933623932366239656265646536 -38353839343164383830366531326131663566363638353266313630396539303139343734363039 -66346338636133336635366132313937343464666636323835663661666665323739303739343936 -63306166353561633038343830653032616662343035633938646631326639386265643635643736 -63393434626131656663663634363563376637653335376362646265363430356262373663323064 -61643737323932636163613164623462326230363034313639306239663963366633336164346337 -32393839323030383133306338633933373539613837646138363761396132633639333036386363 -38316563306565363135363762666135303831316438326139313438383163666361353733336338 -64396535303236316166663762646239356635393732636239376666373866613135306161333365 -63336133313964306436613637373432386235383166616539653736336333313139653261326435 -64623237613463306530653233326135386234333738663961313535356137303465333966336133 -38623537383537656566356261643237333961313138666566653439316531353436306130353935 -32393731343163306132333265653764376161366162386134303330636265643237623530636237 -36316639333335356337613134623535343133366330633831303638363231316336373934356538 -36616438343631333361663763393737663438383430383363626531666634353764656131613537 -38353537313034303364373761336162383233383562666639623564356636666237313237393535 -62653430343239663730616565363138663637343334616132303661343762613035363233316461 -39306664616361316533326430333138643633623336656136373464316637376337396537373234 -31353735616364313038653531303130636561396363623337363961393261316536366134356163 -62663963386664316465633532646139383335353739383461383030326134623864643335343432 -62623537366463336564366430623932373966396565656233323434363438343932636164346461 -32646132353662633266363738376464323365383366646563643533306564386262383861633265 -37623034383861643138303735633031336338623632326464346430633935343639303237623966 -33656535396662386338396438623931346436363733383862316633636663343633383538613539 -37306230616665316339343064353465663732373032326531313438303539303632353830386264 -64613138616534336465356131326163303463396437313061303334613433353232383664383139 -35666166343961643237336436643830313038656432343838303630633933353261643533663864 -34346137616163303363643562303238643564633066353838613565343666396132366366306364 -32626261303565633561316537643335636461363563386530366666366562613831613735313436 -33333739643165643061373038636132616635396136336332323361613131666465346166623264 -66643634333730646332373237306237306466656365343363653130313639343862636138326431 -33656462643633383661353037653461393232663435616563343139653137363237633566663663 -61363933653636353139626366366465373332663961666363613232393266316234353931653063 -33313230316564313466623635313765366235616363633437396565313630393665666464646163 -31626437616339353838366362393631396131626431663833616661313638353533653338356139 -39386266663233613136643639623037356363373965386666656161363136356561663665636233 -39306234333563353535626134636631653538333935643037633235333366646535656562623761 -30626633653634383131626630343339366366376462343033663865363966333139616130393639 -65343339633864373438386432363838663732383330306436396134616363373531616364643866 -31646165353830363239376365643735616134336462616438333237376434366266613863303937 -39383833613239616539373937396162326362323764636332383932306134353532383734653737 -32306631653564383135393739633437663262356131666466393136646335653331633138343837 -62313737643664353134386438303664633239356161376266323735646134333765666431616664 -39663965373036633838633230333437313663386266393034306335623066376432646532346330 -37353232316666376434643337373133336466626431623564343862633239363733623034656139 -66646363643039353866303130643663383738343638386462646665643737373133303063386531 -65616632373734333261326237353533656138373738646461306630313061326632353431646564 -31653135306439336465386464393664343431323032363836343830626362653966346235396466 -32333833666337623364626339303162323864333963663733663735313264396166636634666630 -65316134356161633638356333323263306562646137633264383837333437653363623564613163 -34363632313939326665333339663763346536653232663364323265343061656334323238633430 -35643362333135336262316363393964366134646533626635643732656637396332656533663366 -66393962393462333737343438313365663536386634363132306236313566303532336437343264 -66656166393035656462356365346162616261313033366631623465363833613630306263643666 -63326234633837333536636161663332376665366633356337383262393032656338626166303338 -65396139343962656135373166353233363137386539626130616430336362663163393365356532 -34613864626536393737626235373133613131616135333865303833313831356265623334396536 -36626431613863616539393530626331653736613132346264613433326565316164393436353161 -64646134323937616337626537353564623137653339613665373934363632636338386664626431 -66313339636563393632656263303362656635616333326532623132666439313239646363353930 -64663230646163643463656439383234393933356563313661343032346538346565373439653235 -37333565383566366663336236633464356237333565386539393033646631656265386438613135 -62633664343038633663363034633435653366653266396431323661646634343135303336346434 -64316139623337353134616166366563333439666231616566396639643936663837626334333639 -32656263376233386533396666643239623639376663643163613034616138656136343437626563 -30336236656537373237313766633463646165623237613638376537646165336462343136613461 -32633937363663326362306136363764396536373166343730346637643233643761633762363135 -35636365623365633063313166386362616361326131663231303962373638366662626163653862 -65333531663533343264306533636561646161653030353763666530393163373065346234333930 -66643464313733366536353061393365386461663034656138383233363034663937343264646636 -30306665653537343362636237393834326466343735663464363030346232616438306236633765 -38343065316362636666376564666464393262393665396465636431343463633762626138643634 -65363532373834303432353166613065353364663238386135373933363964393065353433306162 -36323330616631623237353636623038313962353162323534343665393339346166643631643135 -38666533373931376163656630306630393739616639653963333335386538386265363437343963 -61623032366263333832303262373262623964363866636238363431336363633632323435356165 -30376237313334383064313533653735313166666564383932646564636130623532626237656339 -37636136636365623039626639303632366636316564316431626635393663393764356239356336 -34633039656137343363323138353130313433316530353331663436303766323366366633373737 -31303530393265323737306536363933393432633030393861326162643437313833646361653432 -35656266613066316336666133323039643564393033366632366366666238633431383566356638 -65303131643364363639363465616462613131623031623438653633323263373935316562336334 -37336336626433623735623162643937346431613735383330393236323434656561333239653930 -38363430323231373937663762363932656333303533376266313632333437303639303933346566 -30666531306636343362333239383864336333636230653231663335323862623966303762333936 -33636536633638373232373839396436303965613234306435376363616633343963653136633561 -37353035643464363832626131633734613734623162343030303061306532633135626531383934 -30373563643135396366613163316162666265613465353833396366643837363937363030343836 -66323164633465643430303339656362383562646633653739353139663161333730333438383861 -36376639383262613333316239323565373765386432646162653239363666383836656564346364 -31313562623738623432366566306631623966646339386637393166373963613538633036343238 -37326336383832646535653034346433613430333661356165303965323437326261356335346336 -34373237636561303332313066363639633930666263326163636534336563646463663632336331 -63383039653865333531393465366561653965313965643661393139623463643935313634633338 -63663738613636346566303465373039663932626430383033323661366362383866656466396636 -30306432636365383330613961633435623063653735346135336161323332393034653164656464 -32303962383837633965393639643136623964346238356638303539323831393839313733313534 -39656236353961386330623566656234626335653262373135366461356665626361626636353031 -64626139393636633939316163643664393763666361346232633436333066613036646238633366 -32616530386437646430323935656261633334353562396162303732393462326530646565616465 -34313665626633346139613563613134316466633961383232386335336434323634356539616466 -64396534383637646264313230366366303263653064393964356264313037336563356561633737 -36376465386564333261396463653531376664653932363339373865326532303930623838393265 -64323334343838303666633137363037386632383236656239363331316266643165363963313637 -65323731323435373238326136643535636461643739646464613033626339386564633330643933 -34656566383565656665646337373463336134376463373730373561623436656634303163383838 -63383339376236363735346635303835373433353761336166633633393266623565363935353037 -35336336343637303137633263373931376137653537643135393263316239343661336263663562 -66303837613765656235356633633735396538303833306364376462326664613961383335356439 -37643932386564316364393864643831393931396534323531626639396265356339363439383466 -63313439323139386537663336373439316464653864633030613662626238366466313133646564 -37323537333831376531346266396433336437653330643463666563353237346536653132363832 -32393730323766333761653766613635626162393931363035626663663264313338303338613532 -36636133303137323639396230613762636638343665383865383334316635383263653235336134 -33333966313632613932326264323662376464303065653130386662306234636662346262623861 -30613730353238646135333630316632653036396336383761376238313034363936333735356235 -64623831343730323231623832366565386238323333616234393139656665353761376664336362 -63353831336336366263336335613439626233343664656430313130396636383632373935653235 -38313962396662623366383135326232666366653235343764643234626633356563386330306635 -38613862616163333039313835363534653564666634346661643939383130373364306637663236 -33613564356633333639656336386335636432643135396337373033346636656531656634333934 -66326237653737396231643361363266666633316333373934393164393435616139363934313966 -35626362663039616263626262326362323332303764623731363563356365343866646462326261 -64306663646462396237663335656362613834386537616263643732373839303266323962353462 -30353336643637656666653737373162646663616162646137333139643264643036323161326236 -65363865326366396538373730343733666430356233383931663132383862333333616662613164 -65323439376665393333643539343763313632303762613136323465663737373162646366353233 -65343335383165323632656563303461396637396137633033376235626238333765316131633239 -65383765323066383065623161353537313738666263396236626435633466303165393531343030 -38366465363363646162326363396265333233336463643362333365663161336330636535626261 -36386636396139613463393939343166386365336636633566643064633762666534356138613839 -35333664396365656132613166326236393833656231663961633636613431343161383030393134 -30356663653463363538383765633734656638633361313337633039383463666530386632366464 -65653736633461336432633833613835366631626263656139313534663437633566303038643666 -35386532313236356338373737363534323639363437343530666131396464646236386238353039 -38383662656234646239653762316230623432633039613566356265306166363664653766313233 -37636439653766616663333238333638343933656364343933366665373762613733346636323061 -38333539383061393732363731343636383332666461366231346564623230646433356463316135 -65306639666263666665643739366136303237303435346634623065353861376438356532373063 -65336331623063646237303665303637383566343937626336376433666364393136383238636262 -32663562343933313864373866666337343563326636636261613530316633623738383465333962 -37336332313937333162363966376462623130663532343330383030663234616364633138373833 -32626261613332383938323563366637313564653366373464363833663732656635643864346638 -33363631643137353237343631323836653338363539373866303665373565373930383931303037 -31316138393661643630643831373263383361623035623030613834363465623764303963326464 -65356235303138366563616666653061366566613832343332316364613337303564376239646335 -39303730663561613766383763323464366361643562663464316436303136343031323930366435 -37666265333230643430656332653830323132366432346335353734346665393038303236653031 -39313838633765313333363666303762313164396236393637316366353863326266626232343636 -39666532303936363663303539653832383863656565313263393036363338646334313336336266 -39633037393462356434313333626234313438303061383862376662663834343731383661363538 -37323830396236666661306530613736643939363932363761323635633439636639636165356638 -30613666313839663837643063303565356131623665653637373537626165393063363161396237 -38303635666663643437623833636630373430336264356331376634373333333061656465616635 -34353130636430373739323031633539383935663539346361373637633763636263643865353830 -31633139626364303965316262323861336337386634366666656666653838313364653962323636 -38323466663339326261346435363630343438386331646433373131316466643530636365613937 -66366134643530366333643633613635626331633762326535393139633136623537633736636663 -61656431663864366637396561336130633232643633626133623561386264303336323233386236 -32393864363434396161613161656661326466616632663963656432333264663536316136396133 -62623536346435663439373937623665323635333833356666613132386265333732306563643533 -65383033376363313435313231636464626330343834326533646463303064643633643534623964 -63393735396537393738306131653831626664346261313436336634343435663930653032383939 -37663434316130376333393937353235616565303266376632346263393265623264653136616366 -61306134343631353530646338633639386633643863336538373865386438323665333632316264 -61313364386464366533643431343865303631636638646636636238623737353233316634613833 -34326437663439303263613161636365383761313962366137366266303730323861333639316464 -34373230646361623061383566633931663437323935653561363864353936626237663634653064 -39356163393065623965663964333564326536303437653439646263643137306236346639633865 -31333661623938383437373462376261356338333830383036666535653937316133316265663531 -61646365313537626262336330316166393539343133636133316566653538653133303432333038 -36626133666335333564323464643436356161386132613235623333646634613631373933366466 -62373338636233616164323738336461656636353661313062313066326665343239343135663333 -38646161373061366136323634326533356338333962643163356333366337346463633865343733 -34343362656136656464626535303561353565353334653838613465613633356134636434393563 -62616237326432313565386438316639386237373730636436383937326466616531633139643262 -32383731326331663961393631373966353738306432376562666639306535353230663235343462 -31353436383962613865343265646236613066653338643335663166613663313734616161356666 -33316461323065343938373264336532646563666263666438373661383563313439626161303266 -33393532366563326434616131363264356561626430613133623335626434373333336465613662 -36633334393435306430356261383033616232613032633463333661633965643862353339666166 -35643538376132353934613037663633373866663439353561323531336334333536303831366137 -34353639653865663436616231623936376633666132316532636539613032353363643038316534 -65346334656633623631656664313236623331393239656265666363626135613331633964316461 -37396532346136663165373831343832396338633235636139643639373431373132333063306537 -62626431623266323636613564643266323866393230626139356563313165393563653637376663 -31396161363130373263393432303338646662316464633636316633663135373564303464623063 -35373133393561653161383231386232633736633538653665373630346563343137353435663934 -36363433383865333332383161366661656562643831636534363662323735653435326634353435 -31303639663038613732336332663263653736343534346132313931623837336565626566386162 -62636338663238616536666464643339323430376633646363646339623938633665363432366661 -31623038613235383430636664323035636636336462373033633563303430313365623931393564 -38306366373732366331623136333264376339393361666263323061303338396335626431636237 -30663461396537303434643033633135646561353837353135313137353064326536616164646161 -32636262663134623938353966393137323733333530633531663638336135346233663261646637 -37666531636331646231393333313664616166303538333133373963666537396330313831356136 -36633164653261326133613062623932353733356664376239373035383563656663616337343833 -34336264646635643339336239353464383932323233343238383033626335396330376365633438 -33396430393236303866623935613631313439363631373739653236663733633639633734313866 -37383538343636343332366334313939343433306338623265633633643864316432346537346331 -65633266653339366464333034306639643066643164616537376566343237346462323233356362 -66653230633835616130383737353235633230663762363738633331616336393464626363616139 -35376464373331386465636264316366393336336661623230353364363931633264383563383835 -32343335626630303033393566626535326439633631316531656165646631663031353738633665 -63303364316134356562353765646662623032633532376531346363623438363031323762363338 -38316637653863316266633836373937303863333037313934653230363039613562376237386363 -33363962363766396331636564643335363731396363306237663437613732393966636266343936 -63316165643935663232316432653965343263646666323862633630643462313031373838653635 -30373639616166663366396166353135353837626338613964643562663431626465343763643232 -62333231383566306564343165363436353230613832613636653933366465376538653432333731 -33373039646132653964303636656331633737353732633737626531373564623439333939356132 -33313630636562373432383463393634636638666666383838653662613265363830646130333162 -64353939343963393133353965376338373163616637653231323664346233373530663761633161 -34306531633936333030656234633236653066313534323934343637353931323866333834623262 -39346566346137333366313732633666393139646264616630656130653532393761623865613365 -37313332323061363235363137366662333663643335336233623563636633646438636238396334 -31366235313464363064366535366333353738306632303436613833356565353834316236366432 -33613734376661653230373732303430356132626230393632653934306336616462333162666266 -31313130623338626666663732363134346432313439346138613433346437343839366334626465 -37646336653464306334366663346362346364656239643033626464323337313961623266313737 -35366234643533323030353731333866313562346632626166636639653632343166336231623639 -64633334306437383637323232316265346337373862306430666433646639383134363865303431 -64613936313530366165626639613334393033643038623066386534663033326265636535333966 -37623462323531386162393235353061643261613432363230303237393132383539336261353038 -35616465303238646533623835623839343361663532636562393739613663643033323135626634 -61643030633739366235323966376337663537643365666333363764306335323563396663653831 -63646164616634356435643230623461656539616239346566316461646433643663346632336166 -65366632663834643262333236656332666662626339386566343263303666313235326366363732 -30613330666164623031626131386663386564393834313231326565616537626338633633393133 -62623566313764643165393564383565313864613632616438323466326362646433333763303130 -37313262613933633031353639616561386431323934303431316666376630326339653466656364 -62663136643866633835343966656532626331346539303930383134616434376166363933323563 -35633432613533656364643339666561306565393466366232326236356163366631376661626237 -39613234616233386236333934383265376533376663373839313338336631373964303762346261 -38613437376166653864396261383833643937343133396366346261353338633536386239373064 -34373939363333333461633035613532376131303161316330383831373530353663666362383839 -30356234623035353137663534623430313437626239303634626538646165376366373938626439 -36666334643032643732333961613836663763316331623334346635656435663163306336333732 -36343266636262643436316565643964643139613063333332643135383061656438323138653131 -66323436363934626664646539376333313764643237383235343265613462656530396165633438 -66646461333965623566613263393030343563353133373439316233613361336165376138336337 -31386165633263333235323363323232353733346337333563343861373030313766373437363436 -39623262643035313634623039333861316130313038363332633362306536613862393539666335 -37396438343261396632623633373766363833643535366464666563303631653866653236333733 -61343535663437393066346365356231663933663664363863653566313534323938636263613562 -61316266656430663931333030656132656463383534336338396566313139363430383465313962 -34376566346535363365633364373362616632383662626633666465333162653937326234386132 -31643038333132613964336430643537356135373936646235666132653238636139383539633233 -32616462303432393838313035316132363664626631386165373935616339376635313538333333 -37663932333831386162343438343437616561373538646163636361633234306133323738363631 -38396464613334636562616439616437303633346163663830386238303233393161393136613833 -33313766333264656634646665356338333139643130663639633466653665303034326365623230 -33386338636537353836303732303366623632333337343865376636336166326235343237316562 -38643533343763636562616633366436303039383436663638323733616566663361613836633663 -62643533363435633138306361363534636331643965646264306564623064393334353861333230 -31653366633138646633663532356561323537623035663365633738386662333764346162386630 -33613534393132643532386533383838373664333937613732356333633663643533373864323432 -66336661663637303465616234656433376330623435333039643064613564316631303838306365 -65333663353965356532346564623537663466663839626437393831343832363039303635656135 -63363762333636376234613165363039313838303665616139323461626664396164633733343930 -36316363653135366531323164626431356462366262613132333238353931636264326632313163 -33346264653566363164343462303664336634363130323839626538646264363931353266363862 -39316535363066313736343230343539396434653437636434643432383030363931346136386365 -36343836363039353761343939343966383164343363316630316166633532383035633833633833 -65663064633534366136343438306337383766643431313664656531623866653135333735313331 -63336233363831643261343337303561653665373363366636323166343763633966633066326137 -39336438396433366437643637316133373932333834623739386538663266363633346637353962 -64326535313634613935646330616564623338386263613237623136346137373164626434356632 -39376363393462653533616539306131333963363664663137366462353736376263383166326161 -37376639336435383535313133663630383738623163653065343066376537666137613262656464 -61663961646433373338303832376335346536306531316162663762313235353039363265363136 -36363564626339656539306264333965363532353936613164303431616266326563396432623034 -62366633343261376538363539373165356139396332633831336137653638346430363230353335 -36616462653362643635643830626431353334623561343635626434333566653630623339303563 -36363732373030366132613366656236376263396563383366633865326136613561346163373930 -38666436396638383335396466643663376637366161366237666334366332383162353830303362 -36306436346331383463316535303534643566316633366435623836656333623634353438663237 -61366535316366653831343561393064373534623639373164326636656337386437396636333633 -61313738376264343336613931363665373433633564333637323031393330613162623363646166 -34633336313236373531383732633537386662613536643232663134306435373132363163353531 -39343763633135333033396664666334636534326436383961303034313663396166626239623833 -39393164636534383838383963393336643365623666623966313037303865383364663764643233 -39373861316230316239313063343966663165323234616566663437636666636165313132373432 -61616636343531356636666435636434323239336536653564373664613932386566363430353333 -34333438636336623463633230623563666530313731313032386337376363386130393633313937 -37313233383066316234626366333537373330643133356236393539363362393738633536613239 -61313865373432316437386466316264623932653833333462306235613837346661393763333864 -39396130393335626363636136346663613838623036663836656433663437366535393464643336 -35643838663535633266653365656637333030663965316132363666323035353034356339303861 -39393162613737663936653265306633643364333935323061643136313063663033623637323334 -37326164633562363763363466343066333366663266346532353464303361323064623163346461 -38363336323261633732356263323439613665636363616461366535323563653234353466333434 -62623439653136343538363632383434353163616565663835666234393639646330616361616233 -66396236663730396666333030623733376361663164323333346636616364373639666661613561 -32343630363162373336316333643139326261613739316137353338623533363637393439613639 -62313737336234376633666466336531376532383037646136363437616561623537303563383339 -66383434396363663830323764323131323135373565373963633234363938656364383438306638 -36643037666632336332333164643766303239363732643339646666386239356166323938386165 -36616136376535356561626334343338376163646362353338333537363438633966653732373561 -39653335656662366261396162663036336631623238653632666666323732343136313232666238 -31656438336265356134643766313538363137333234383963613536383736313534383539343834 -37343865373164313139306566303663333138303734306630333434373061623966663932346139 -31323136626266663362306535626233316530326466366437623334363434303136656262363663 -30313665303862313832376532343330383864333963326436616434643465306164373734616634 -33623131353236356331626361336664396230303166303364616465306338376430626264353161 -36653133346566643934356639666135623464626236613564613435326234386264316138313030 -30626532313036383736613435613839333566616238363532323430633266393735643661653734 -35396338363539363064303833376538336337326665613439313561623635636337373134343563 -30633863616132623165613866363235303832636630356263653362333535636539623239313336 -61336336313532333335376664663831373565303366336630306133636366353462323862396633 -30356262633964393936346363343530666335333732656363396234363838653861666231643532 -64616333646532633031366539363961663739643431323266366536346433656365373234363163 -38383730386266386238326139656362656531346232623264353263323135323938346631383133 -30623966356265393137306336386162316436373338303530633861663039323230363566383939 -35306563373966373135663630373861613265363330313964663637333739323631393263363035 -30323637396266373332353861613533373765633137303337366339333665303463363465333931 -31663163306431613361393230336632383739666132393037366637653761313532343062353934 -34323037633965356538626638323534633964643463303733633036373932666434313563626530 -37663236323366393931663561303131386136363830353232623262343864313563643861346238 -63353731643531316536336165626136313638666365666230363935613462373466666430373335 -64303431353861393166303338343238343664396635653861343865616132353561376631356539 -62393264616331323062316564366132316362613339626661346636303933303763646239303032 -64366465626432333961346335633832306438353231643031366239666632646464393666373666 -61376163373238376461663437356531326464613733613036643766343762633136303935333361 -64326562393065663830323334356437313334363839613639376664373932356337643063383766 -65393866303137336361363761386539396461623133333561653964316565653537383637373730 -61653261633133343832363462323432373761386131373563356539306435363230343435313430 -63666165633031396536393239353166333333386565666336656235306462323935653466303932 -35366664316534396331656564326530373434383232366234646662393661633463313163366634 -66316265373365353938633463663130663534323334616139303563396235396232316339356338 -37653539623639316262383235313431303034643963303935393566653734326536646164393431 -63613934363766333639393863643462316439313638306239633361363436386635653437616632 -39633532656630353334363963633664663362643239393730613762643665616465663361623865 -33623539623732643936393337363239333230653564363264623466396565343737333236323963 -38666638316333303564626332313639623562643834653333306163626537633865663263613831 -39326636306337353661316132663131383638643333626136316231633631306134616661343434 -64643836353134666666343733373433343936383536643263316364366632393763303031396563 -30306433343965383964633231393132353239353536316536613039626661656537626230626538 -32646466613130386532656638383163633334323235303339316635333463616438353732303866 -37626633616263326164326138613538656237613332656564303561616330643466623266633163 -36326665353334663131636239646365383235346332313835303166363439316463366265396130 -30383430333464306665623138386638633832626233333536653830336132326438653432316538 -61633664303136383235373262333261653532306131366131343132353535613764643432383133 -34613562363334666133623263646339646234303363303361643239373139373161333365313065 -39386461396631636439643961386363343061323664643135633139626230353332646564343237 -35653734383134363030626664616137396533323765646266653539613134653863656331393666 -31383035666364386464386535366566303639353533623932306263626431386439306532666436 -31613363646131623437613736643433333566333234316535626366636439663932653031636466 -35663832653461653165633439313437346138376562646261653561643938313961356464616135 -63346633646165396263363361393639613837646530313762323734316264313530623561613931 -34633436636161303662356264336239356235356666346631343965633866623035636266646166 -35376530363232376638383838656235383730373333303462653631303535346562343130356531 -32653234633133613665636136306631383661626632613639623961303536613335363438306533 -35636437646263636331633261613064643032663535386231333166353234313332363062376361 -65303035613862616639626139663331633630616539656433346431373633346232396465663564 -64393230363834646439303631636564386236373666333130303862623065353632663161363535 -63326637383065303334353531616536393230396239666662326132343666363632383030326236 -39313034306362373264653638383736306537306530363562383661363865633235303136383631 -61633339373264306364393266636233356535623765333561333336303861633661303862366464 -35663135326431383332613864343932353564336664343262316634663431373961643235383466 -30636131643866633463633464353834343961646432343563363963386464313835306366666135 -64363236636263383462653739633766666233393136613637393838623766633465306461386436 -30636661656333353933333163666263646436303462623864343262363130336466636338336365 -36393131656336316563646265306532636330646262616235633431663965383938613436623163 -32626135623235656437366130306163616231326231393561653834623161626437353862616335 -37396133313961336665313263653931373933616135393836626266623136396261653261626238 -61656363376433343132303336623164613431656531343064343762323162663366623933613963 -39386432643333356563383666646637376162366336623634323838323436376439623765373938 -33376537623138633039303963386336373964613164376162323265323230623437303838646166 -36393235633832373931663264303739346461343536306138323630656366653136643062633535 -37323639656662646466616135623462353062313235613533613933383935633761633035636564 -33633263333331663137653961663232333135356232353735663037623433643436326336303964 -66666566366661303161656234356430633334346465386338663233393462303531383638613932 -62306630633264316338396563643132636661333833373264383962353831326631636535613433 -36633934626165306537323036316365313436373433623761336138383265383362383736333861 -38613539393139353966313263313263333966383139376139343338396237623665373934356261 -36333935626166313037616164373731663732353361373035313531663537353230336534666335 -63316262393261666263343237633639636530633666323461633431323233313737616166643034 -66373764303136653033363032313037343033353363306562633165613665386139313364313761 -34366536363763623364653831363434336235383232666639613735343562636262666665346434 -38396533333038613461613864323766643666613962323834633165643438373335346337326565 -66393763646165633865306432393034343661366338366366616237653533656231363835346238 -66393838623337623763636634646138643864313832363330646436323262333463313533383531 -35353638353361666234346566343165383065316230316261623732353664323335663739643734 -63353364623732376637333332636262323666623431386364663166306266623264323962623261 -32663134313664383961353561626435333435333734356432636532656433613139626637396264 -39383930363931303334306233313761393164323663656661326239316662333865313632656131 -32316631356433343865383862323334343437633063343539633466636464313565623964623232 -34343136323066383736323131353438333530323036373961386332343164653632383165313763 -38346337356138306136393539306139386334303830343636313932343138656661396163656139 -62353437663933356533393535613734656230303737383436333437306631383933393061306463 -63626465623731316437646161656636313962323630393061393664646436626337323132346163 -34316464363333343331646335636532646462383431326363323663386138363334643165653733 -32633561633163633437613034643732343238353165366639363736623034343362313766636132 -39336533393232303163373639386362643735393335626530326335303332393864326564363265 -37316462663665386130383437623563383861316532393137636338626632656366313566613833 -32396563616139366164623030636434363262643931663761386231353632373365653737343539 -65643462393338393931623566656631386335333837366632623038373663303030396334666437 -34373939396534656239356535306162353237306464646339326662626264336530313630373135 -31626536356461623664346464326463363635376337333431303365343537323832373533333466 -66613236306161303032663037303034656334303763633336376266613261336662313465353034 -33336565356263333364633138633961623235643839613230343439623235653962383662316330 -36376664656462353736313938336436333964396236316665376138383565346462316661323633 -31613335323039353330666263316132636166666232363633663532653465663739313866306431 -31366536323661323938366538626262313666653363396365653965633439616662336439656261 -39316262373032363932303133333961313339323665383138666338663536636539633736346633 -34353532636431346432633264306363303830653437353834373836363133356539663137616563 -62356633353262616133353262326264616136643238353039636430363837666339343636356234 -66623531313065663635373838343830326564633966376634306236396637353436663764383964 -33393261356531386362633335633236393566303033306232656466306336663465636239623864 -61616234303631373665353139656439396132373934663434633830613033643161633131386534 -65643234326532656161396163346631613831313330636633613538636530633338616637626638 -39396333633130656664613733386235616363326630346565643631393366333639666239383837 -34613362643961653636633634303561346264353364313131626232643838303562396435336166 -30353835393762663938326439633438316634646365613530633737373963356331616231623535 -36303635313435323533396361333430333363613635666638393766313737383638663863653063 -62613339656365323064393434633838656565303838343331643234323562326136623765626333 -37383231643363643161303862613630646465366136333030333937393638363431623331323137 -36366666396233633333613031666466346231376661393662626330633865326566623961663439 -62376461656462623636373464373931666363366634636337396639623531356564303939333065 -33393766353634323232383738393431363965363561356132316463383931386537666533663637 -39303166353832323564323162353335326438363431613739353235383536393132393933633436 -62613436326464343163623461383235363565353362343439333338663162323231373239613465 -63313630336639393835623261663261633861626131613962363139316537323539333231623864 -36303033326330303235626139346265343462653833623433663636323062393831386364613939 -32363365366535323663663731643263303833656338623235636563313233376232323835363739 -39333935666333626364393261306334633433313135623638326136616234363438633465343339 -64316662633263646263306133626532383962646333646565653030333063613331363135346366 -33363237306136343864353031646236636161613236616133326137343836323830316564333336 -33383062646331636430346137643334316565343662383763636337653632626232303437353063 -33326163636166643131373265646532343062633033636563396338303063646432666463323463 -35633266646265303839663832336539346464646564613937383336663133383731323132643630 -64366334323262363835386132353365366264633365663639616131653839366233613736383038 -30376536646138353330343630363666633833366465323635396334633362396333366165643532 -30383637646665613065376661363632333661623231336461633736393430663461356632303735 -37636165346138643534396538346266333739613232646439343638373961633265656137333266 -35613331333564623131636434373439613733636138656539393763313766346661313734663064 -30663264393835643865323738613231373536613538333263396262323939336666373363623630 -32393935653463353538653432373337373066383165386561303136623631633335643762393361 -37383036306636323962393937303033376139393638616238336565333465353366366562613462 -36623831343436633362613561313361333837666639646138303837373764353436386339616534 -61306538626337393266383965346634616136623838613036616636373038626363393831613034 -65656263393461636632663532303164313162663938373730393564343134333765303362333730 -61333735373965343737373066626432303265383435623362623865626235353464316339613631 -37336336613066313635353031616162663663623330306164653138363165313038373362366266 -38633062653963643739613638323939373739623938366135393631393962666164666537663263 -36363863393739376231393039393063646232386232666337306133663134353632363938653837 -65656666363436306561633533656663363961386261623837343266653836306462356536366562 -34626365376463353339333133363335336233346438303730303231336362323465636364366131 -33373566313036373236323464326263353337666633333238396335376464393132626632396631 -62373035336339376564643233613161303262636235386630313963303834386530383135313930 -39353333613039316465643863313765333234363139653039313731613564643365666365653032 -39313131386239663737386634643231633038633939653138326538333434393333363230316162 -63323338386161353931343933633765356434393562323236333439333136653036366237303962 -32396361633062396561653865666662346463386664656265623062643861636439363635393330 -30383563303636613736343837626166313762613535656138623630376166383434346630613538 -30653930653864393133383135663734396265313137353634643631326538313466313432336238 -66633532316636623639656234376136326637313962353439663338386566623431623831393537 -30613062656338626432306563643531373834366335643032633030646434623832313461363839 -61313337653731633963313663623163383833326666616231383838613033383939326337383462 -66633062633839623130666530653531346136333635393162636538333937613164343238343865 -61336239363139303335393065613539333133316534316465663033343832386638666231383636 -31666435613434653133343036373339656132373765663463393263303936646266396437323232 -32633938316165663837666630613337623161663731666662383561343332336363616135346335 -61623061383162653939303463383731623932383866643035313663313932323762623733633630 -38323539353438626430316535343663316131623931353031626538396464306539656132663663 -38656139376333303864356663323537626132373635366538353932663766653537313063386531 -62383438353334363165346366383765383565373037616239613061336564366630376436666235 -31386533663466626562656162666536326634383930363663643439323134393130313063373561 -37646538663063643765343738383636343636666636383965623137643738346332313863353137 -31626166613164313336643235376530383237613865613238343564643439653462633061333532 -38636632306133303466373630646163623739663230393238636361393039366262666164396363 -30336661633065343365343530336339336564383936303138613761663338303530343033343730 -66303337666436643138633964666565306638323334326437306434353063363034326562383932 -34373861643733623761656230613736373131306435626330643861333830373733323233393764 -35346665353564353763373264373462383236366638666565353265383032376133373236313638 -32356435643763656161646230613236653737323964316338326161356238316434663935343364 -35396336326162323564326661313934393038346632313637306566336136393363643862303637 -32343737626463313163326432663136333664383138303835323731613264303061323232303738 -34646537326562613066366139633632333736383939323734353338633764613430396634346433 -35346531633561323265323263616562353734313636656237306337323834333531326433386435 -30343962383137626264613539333134356462396662323961323734353737613435356161343031 -32383637376133333064663637373964383032343861366632633834663363666335393832383936 -63303634306439366433316265623138666566363862646231326531366239316132643334643331 -63393532646666313365373362373639323933663961336533663464313035386162366539393330 -36366333306233623736383465613865373962646238646431356165376637346432303130613932 -37663534633338306462623435303537326235383764326536663834376466353466636364643066 -35343632336563363161346461643662313163323563353866643535346466313139666638323431 -64343136393630343635353063643031623963303263373263663133633632636230623462623465 -32353431643765373833646464313034313762386163353564366361373334656535623734353461 -32636635303233663837306436633131373330633562306563336137323361633431616330363865 -30393665613262326665306466613634646439343365373536646135303039326236626361313135 -30366163663766343062623165393162323139623563306539306636306534363939336337653161 -63383561383266623433363266326532383936363430633335303264373165666366653932663037 -63353836383563356562346131386331613036353266313239376437383936383531663565396661 -37333131366361386362323437353162373163333234333439643439383730643438653633643738 -39356266643662663630366564653738636432366636303538323232613733353131373636313466 -31616232356161636639646139333535333137646366343936346139343833383939306335636563 -38656534363632333361373438343431393932373965613863663864623238336464626537396561 -36386361363661613536376539313130616262656130623530613737346566643538656566626461 -63326165363630353531616436306436616430353632373630396536666232353430393666376466 -35346232343738663135616334633064396436353537643539316530343132353936656434636263 -66363938363930333765326139643463346237313037336566353632626461306632393631376134 -33356233383164303636633136373564383265346438626630396561643664373031323435306230 -34643562363366663064633032306533326664396364326366373064666339396262626431623439 -38323562383230646330613133383966393864363434316237306266353963633733316335623633 -38383732336338323832656537656463363564383966313630376561356136396461303133616561 -37303434643265366436346632623663653938653466353133303032343966316661336464376162 -61633061383431653662623233373834643138313531346263666233323464326633363339616533 -32316431643662396565653430313465646562663064343861666365663934633833396334666463 -30343632343835396662306439386463646637386234303038373035366530636366376438363333 -62356233343162326531313766356262393566643739653036636538616437303934353532303939 -31326435316662343166376564633566353137303363343335346530346164393533646131376464 -39613634323035633431613264313234633734303364343432383265653162653661633335353334 -33353939646133303166623230303738343936363732623436353133376562333739646264353139 -37353630636438373861386661306364353631323362653965633634653235303963396230616536 -31643066373435636665303230323130336131636633326534363139386536626435613338393536 -39343935636530393931643664363364393034303463373161666263363135623964623436323231 -33353836386139636261663062326431646235633262306139323737656335643064393661643333 -30396339336366613566386531363830313065343431343763353364306463323866666638343266 -38643333643639366264653232303236636130323432636532613836663239343666316239323834 -38623439376139633466646232383435303837663662613739343333336636363232613562663566 -31303433616662316332373037633830616661333231616361353464323831323664393235666264 -35616331353462393166346361323436623735326563316666613134623264386636333636646335 -35626364386430623164656439633036353662346235623064356130633832326137306361356263 -66323831366361316631613261333563373463333538333632643232313166303365656430343764 -66346137396661303732613364643032643263346661663238663934633235356662663430643936 -39656661373466663336366262643938393965336630616664336637393339303430316465653930 -38656136303663326537396132393738633035363330373436353136303665386132363032343135 -66616630316663363162383338613531393630343165373162323161303739373234613665313965 -64633236323237356138663961616166353066333665343738366132383765363036653935316233 -35303539663561353636363861656233386562623433316133646136616534613836663434313234 -31373264363637366662373731653634323865313331616532306164626338653538666535343166 -36363130333761653836333266336432336433343662306461383139343134303935646433373237 -35326632343535373936646363376532643264396239383662303232613862323032393663343761 -63613334373337333665663033363963646333303735313234666230393630373366633834383537 -34306331613836623934393661356632623663313039366138356137333435666338646539646661 -33643933376363386436366666383335353739393234643034653764623766396431396563323136 -66653236323131316265633539393961393564643465363939316264333162373062656564336364 -39366263363465626231386365333430313462306263646237633065666136663763313031663231 -34323131613936376339613236643162323538643365363566376265643065646538333266366261 -62313635326635393564376632373535323037643262393065646134643833646631336531363935 -33623265613466633730646130356230323031326537383031313736636637306437663331323661 -37356262663362333036343832376562623333376339626666623036323261626632336336663036 -30303162373033393631663866313430313732343036313066626663393263303030653037383833 -66616561646237303232396233623465363566626336623935353139353564386165393239306332 -35343762653938353066316163356436663666373039643766636338353835616430303662343634 -34646338333264376336303364336434373131326631326539353934306237313065353064356531 -30343364386239623765613762666539616234643764303738366531323861633663303163363566 -34643937353766326435623763646239643435303735643034613565346566623031343631393363 -62386135366366373363663261613866396437636266656534363366313833666638313634653664 -31313231386230643661383330653430643435343063613937613037353932363764646138323765 -65396537363762643734653439316264646434633430373964653132316336366462333039393431 -32653737306361316435383637626665396638643934383466646230613533363162616531356166 -62623737623233653166643536333563363932303761653966656663373565356433373530333239 -33656362366632373437613264666133656561306163336465656432336338633036323530623361 -32316332653831323563366630343663326535633737626663383632333537616339653534643764 -63616562666561316661303864666134373437663761633330316561303265333663303466376261 -33353134313730393439643136636263643335336335633862353363343734346633306339353564 -35363063336563393065383939353939646430363037646634613734356362373762613739373965 -31636531373935366635646139363762653933383837373764383535633738376436323263313630 -33313563666233653936626330373463623435393835656566313264353937316461343361633338 -32306263373738396566306366386331333663633061333065653330616361323733363336636463 -33306337356661626439303130303839353765623032623362373232313161353330623364623764 -38616164303038636333626438353034613731343365393462613061383639306135623532346239 -30366465343336393232613935306162313331343530383134326432643739623265656130646565 -34376363323066366635613933303166653264366138366365353534343564333365643534613934 -36396238666437353036366262656163366537356362623466303932643631383261636264353265 -64626161353866613965326234643162376563636535663061663661646362393263623531383361 -30346365363130636533386434643064613130313833346637623638333536666234376338333639 -65356639363536386164336438353538616536393533643031396637666132326331353561313564 -61386235313530323532653232613739393933656466656233633434316563363732656564303165 -36373461323239303035623335363835396630366365633438323639323132626135383432363036 -37323061363635373930326634396562613734666230393461643764313261376235346132656565 -36633930383231383433636535303230613462373637653530393237363434316236376462306265 -34346665626362363236336338336439623630343862393130646365623938373435336137656230 -32373762336363643734366435376630313563396635333636363064373234376162393131316562 -35376165633264363263373963356432346236333665393661653735323365613534353037393638 -35626665666430306163313538386436666631333565643762396366333537626236666533356265 -39643737363133653538393838653164313561353731386664643136383331663931653437363938 -35626666346134343037653261613030363438353138396661613864313363666635633839623462 -38646463343361376231636638613361623332393562613765623333623630666431663232643965 -34613437616563376138326538363262353466653862303230646339306539363163383837613035 -39393636303937333663366231376662636562363734333933353963376237663563356231623739 -61393938386566383865363863333038376131333937313230626265396466623433643234363335 -35313236363935393133663963313137393835653062373736383135393264373363383562343165 -33313836333365376136393937643064643836396131313964643434626565653836616530633337 -35656163333733323830663438383739363134643262643661633330366266626661633365663765 -39343738353232633437363161396537383439336232623832393636363561313261303732646563 -33663432326630633566353336396365363336626236633031393233646235336333666630376435 -39386266386532626538376134663630356535326465623364346530353438333331623531346639 -35613930626162383633313434653034373035313638303936353039633031663466636635636539 -39623364333334633833633035386532633162646138653637353634363036643336613864356566 -37316261303138623336323464316134346437306666633938363162623363633831383063313864 -33313263623337356535663638376531613362323138666161303938633562343534376530366139 -62306535666535633763643166346333333966383631623261633931636137663333326166656133 -61373761653936353536353535643838646264653839346538363134623464306662653233366366 -33313461633161373062626437643330376335383334636435356537303966616639376465343633 -35666564633735303366343132313466356263653838613536313466646261396265356234303532 -61636335616135353961643964323632613064353132613066326633326430653033366265333130 -61356266376365366236316637306531383766363935623233656337393132656163663839333333 -33623162623439323964653465303933356235623265623663653261356438633762316535383762 -66323365303132663935363463633530623362333339383230386531363939393536333239386664 -39656239333834323932653637323832356664343364656336363939313536343836666334353439 -61303164366164313638373936663764313961323632386134653663643237376636636163316661 -63343335313664343934343464323836633166656563346161353831346238643330613335333633 -62613830373235653763633736366562393834333733666166333061323530616365633662326538 -38643838643738616334656164313030613331363065323566383934366464653339643934393666 -38393134366531663039303031633034653637353933666532623931656162323039373565623634 -62666662373739323931383036396233313931376639633062396233303461336361326538613063 -39356536353865653964636563316464636261613531383730353136633263663336373933356261 -37656466353432373430336437373966653138646533653134613636656636336236633132663035 -39356332336135333334616431386239386566393961306165373330373439653366353337373266 -36376561313131663064383834333333383230343932346164386630363164643133613338643733 -33653263613337653265363738653034373063333261633032343132386433366461343462333831 -64386433336636636237613039646234383838656133383639633135623832316630643363313830 -62663436663739643033386164653366666632613964336231326434333639623838653039343337 -34373431373461626636656166313734653333303665623664633762383234653465356130643634 -62313337333364336262363863326137343736393535306230323864373561343333396438616139 -34626634663165303265666136663035633430376261356234326362386135353062333964363563 -64313534313832386437376231313838313832633837626538383431373136383565363739343562 -62373532613431336639393734353562306261346138363262663032626536656563643264643033 -64303432336130366564643736666334626566316534323764623864643335383161663836666566 -35393762323463343263393463313163363665326237306436323736353339333838313330616436 -65366364366333366262663835333834643138313561383635623934356264353733396437353034 -34313837323138646435316462343531333865376364623536393161373863333036303330303039 -64366130393230633566366334633362613238613765646433356531353635653036663335386438 -35386264313031366531333539353764336533623963613862313730613965343331373837643433 -34343333633734633435633839633335386539626138663365646336376333386637313764383565 -33343330636134636436386366333132666136366437356164386364306235363236356137386630 -62643561346639656565646631366263306330363838376365353864653262366635626239396237 -30333666613564356330636565363336336165376337313637623631343138323430663631376232 -66643330363236313030393863313536363230376139383265363230333862363830316134366263 -33376365376437633039656565393763373763663031663262333865376533343164356561383961 -38343939386466383039333637366263636465646161343830323633326465633830633364616631 -36373362393739303865383230336135373035626135613134326233383730626433623131643434 -62376237383265356632373164333566323561663165643032376263346636613562313263326661 -31323266353937306631326136336439396239663239663530396137643635393038333639326465 -64386535636532616266653532636334383333303930343732646636323261363664633735363764 -62353063306135393037376236376533383064363561373930323533393638663635353730353665 -63353530663331343732323836666264623062346561376637633565626537646366333164313137 -65383563343833343739356535313333643432373436356165353263643533313531633762663331 -39343163653639623763383162336366653366653938626333396463333163626464386630643035 -35373736306664663065303832323035623632303663623766666635393332616161363730343439 -35313261343838656532353436653037623036346335363662343665633732396636323466373735 -66633635666535306163323963633264303038656262353433303730356665346636323563353931 -34346665376330336133336664346438383731633333383237316336343337653766643439326264 -61383837343234636233333562393861383161636166303266653337383464636431366336643035 -32353962626531636266623965313163653365626461303266326366626530393062656163653566 -62343563313361383937636331343262653434663466623831643830343733623638316136336461 -63306366333164666332366134396137663832386632353765316532336565353838303131666438 -38613664623366333731653565633161363963343061366561346630356235323162343332376230 -37623633633131333033396233323930386536646235323538393839306636616438303666336238 -38663632323438346536613337323838653031613534383336636639383035366265336230323832 -66363431343637333935303265393733623764653738323937316132623632363238643330383834 -61346561336334663232356632383564303762663263656463386166623961353863633432643963 -38306164323131396638363636633337666163646564336339323838333337643736383431353131 -37363966633131643930306433613433623961363966623438346636616464346163333139633563 -62343862373762333634306533373331343332636465313233663332623763353164613539356663 -39666632353534633234653133386132373831613131313563396234353335373865353931633265 -30643062346538306632313931313266616261353363353566396665636230643836626161336662 -38323932383865346262393836616637386532363336393862643138366236333230373564656338 -63653135313065643662333966306532356538643565373733353764323532636366363164623938 -61323762306632366630303239343362373936666363326665386237333937386165656139386262 -63643537363965393164653437393039613937666239663261666664663739643966356331643031 -38663937623337363631393038643066653863633035376434326365333931643361343533643932 -32653335633335323637626336363733633961656537336234373930626564343037306636333135 -38656364316634376239333137356363623334373231356366373733363039336434343236303538 -31333932323464656231316132633131616664613131343933623666633330653361653536353837 -31366261333639346631666462393634373738363438336631663032326235646630333936643563 -36333065336537363362636131353864336432383863373039646238383537323061383933363439 -39346430633030303936396263666439646363343263633163303135393036383262646464336465 -38346339366631363736306631366365393266373963666163623533653266376639636164636661 -37313337643536636235613262633736633464313030643132386239656565396365616561386632 -65646133383834396562343965383435346464643264336230363334323438373337393232386239 -35646338356463613931386135333333336237336136326230636662376332623232383538363365 -30353436643734363637396665646161646464313337383131646634643037646164616565333730 -31363665313738613830323333376139323966366230343535333633646261653638353737666234 -36323439306137356562326137643332623936666362393537636432613536633739653066626236 -35313130623265366332616538303033393737356336323562653863343132363336393164316139 -63323633643334346537343330363065343033373633333837653839663765333434613761663364 -37613565393331356230346235323063636664653266656464616161316661353134613338373765 -34373264613865383765656137333730656466313531376538313530313037303465383364626330 -31306334373233393932623336646134666136386335346466343462633934393261336237616431 -61363636613636353036303034613566386432333765366536646636303664303537306336383830 -37613762666534613933633935336166366436386366386334643762376632316632306262666235 -33333533306431313662333033393237373562616634313037323366633331666135616462336132 -61363934613336383938663066383432343934393234356233616330316434343231656436396365 -32376261383037383131633132343235306263626430303263636434346635313665333665613038 -63373264323532326337373037366165303335356534333030386363653231343632646563393365 -38316161636336643438633034643638343665303165373934313032316433336165643838346461 -65353166386365303732316462653632303233653030623238346633353466653433393431613264 -36613361653066396638323736613933643532336235353432626237343564313131656139373364 -34656439396135373365393936303866346331303437343366396462303364306364346665353231 -36636561343964656231393061366336373836393637656536646333316532333335383632353762 -61613034623930616235316235303538623630616234306164616537323838316132646130643165 -35356530356663343630383235373961313738336465616232346434373065633361336164653336 -62353337356565653732313638613337333761633538386236323664393432333837393362376262 -38316633653236646363326366303062383362613266333462333563656365323263343938643162 -64633430326239393638376464336334653135636130626430663639656139383633383637616338 -34366165393765653532666161613731303366626132643362373039616136383333636530366361 -31623431353030633230636330633430646234306564663865633033633132366235663938316534 -39323630636266633833346334333565633631336636646563386638613534366665316461323032 -31623366633136303435343966633133623030313730303930386362366366653465383133353834 -66613462663265303366333762613038356239353839383664303938653532353336363764336566 -33303264353535636337663635383266303965313039313762616533323461373030663161643034 -62626633333065626630303838613732313561636365356434666136353132626333333962663661 -61333639333662636463396662643362656436653534346638666332353630316263373730653137 -37643266346539326533333030313533646434666537393665363661343737656231383762353463 -34316433643035666439653263613532336566356137366264396330313638333238313132323835 -63396433663061636239623931656132663533396232646665653234343466323037616661343736 -37643365333763623531396631383138363861303866653536353065323734336265386363383339 -31616163356338636165316435343431383735636266313866366138326230373535636635373466 -32613564616630643930303738643638306164626266383665353635346237366336313163373833 -32633531323338363861663762356639393939626665396130613264383063613763663364333531 -63343063373334643336303963633036363833303335633063666365666261636561316133396463 -65366264383638353434356134316438323563363261336561653034366537353935306665616539 -35346662343335353262363565353030613839666438643066326431373132633461333633353339 -63313462386539656262356565396331303532376630366338313538356665623332386262333735 -38366138353863653563656630343939616466356337373564386464363738373634346165306463 -63393762313930336266366264343432616131343439303934303663646262663233616637616233 -33653930626561623232623165323664326565356365356639666233376563353264623634343565 -64636666633463336534643161333537346133306438333338363463613835623438613961643934 -31626262333237626539666261393562616237623536316337623663323830643431373932356430 -65663666346230356138396634663635373138343566363638353461616334336331613865663534 -33366435356537303330656163636263323138376164623462316536623335323261373761663238 -35663164333234373261306464643735313935336161376333333932646335666333356531656565 -36333632636535376537303737666430343730646163623833393664306631373434633164656466 -37383435396637663831393439363334623237396335323438303033353033333565303039613566 -34393066666665363033336436363637396661353864353561623336323134383363303031363030 -34643532313330323833663231643333666533666430343763373739343230613066343738363138 -34303531306537353661313834333534666631613763343739343737366164366661613261353333 -36333238313130626262386461306266613939316435376531623862383561356232333863383236 -63356130326262313836353165626339653964626130623064346433303139613065346132633462 -38643939653863373165346632613732303365656233666139666130656162306634376435626263 -61356339646231626430326237376539373631333965626162343533343734353832346133343430 -64333630396230653166336138663732666263323638313832633233326132396437343666633438 -38333565653065616638616537326430653934666336353435313166363966636236353466383162 -31353862373263383231396639346463356230623437393532396430383064333030643634353564 -36313238366433363133336536363137376461343864313131626139336561346530326238346338 -33656531396132313636313132376665336261306530623138343432383933383466343436313234 -38363263633539343836393532653034633064383261636662633637366462633763653062356132 -66356264363237346236373630643165346632323434353862376363633764633962383963393131 -64656435386438656630396233343465313064616261323938313431663238643631373261316162 -30633139363265393035323462653232396238643965636536386538656236633364303962303135 -66616330356133363261356337316630623664353333613333313236303262393062633836306237 -34643833643936366462363235376530613564656330626333646138303763633430373739333434 -34306437346430313734363138393038623063333838623131333064643434336233643364346430 -38333733383334333934663963366434373063353739346163323934626232366436313635333932 -38366464336263356630653436613666333737303638633738383436323339386161613537396664 -61333333613863316435393334366432323164383439313864323733656337666161373563303464 -62386432663639373265333035353761343534303162383362383231613564333466626366353534 -65656338643263353434623233663163666465326264363139633137353363366432376665643837 -62306532316630353136316465326436353965633861363363306335363336363633363435353566 -33326362326362323462633532643237383266396437373832383934303335663362316662616664 -34613138356330626265626362306634336133376339616533643736343335396361366436376462 -35316238383833366266323563646464636235656536663161303830663962633035646531333931 -34653831366533633835363639653637616239303136613462323436666364343830353633623338 -65613137383765356131643132646130306562633265383330316430393832333637373533306364 -63393132356266663436303733613034316665663634616536653963356539643263353561386436 -61346435643831653834663561383630623332353961356461383462323535646636613465343266 -62333634643066333365663335363761323365373162376338393263396537626364303030393738 -31613334336531363632363362643139613432643236336432336235306439303439646237353233 -32383666356536646566623664366364333761373537636138643738663962333330356463666265 -38343038646363326263666137343439616639623538636432356436633065343632383163356339 -63376163313334376363353631303836316534373336303461623137663337346334386633313737 -30346337393362653634653139393837393738613535303031666637666430323565613638333232 -62663234643064323461333435656666316266613938643666616333656339343935636137623230 -33626461343939663635626463633135636335663463633637366330666637376461636331613166 -39393065366130333539343761653833336464656436376462313932336135653435663661646531 -64313966663730653563386135663633373236633735653031376437346563393464316138666336 -31346166376430616664393862666339616538653533366231333932373130373630343962353162 -63633439363033663566383434636233656465393536363637353934643038303962643663346633 -38653938323561356365396136316665643338316334613362323932356362666536316237303031 -39616164373864316335636133636136363937313066363837336264373964386331346535663331 -37363762663966393262373361323935346261383634323739373932663736313233626530333439 -30656139356337356661366365373735333363323433326163633637316433313265663036613738 -33646662343437386264656661633239646533353665666534373665386535356261343330323139 -65356331353432666164626330623438306237363239393666326435663834643232643436656262 -33643537653631356137363937653132623637633733393330363235636636663265336166383535 -66353365303035653135623137623236653436363662366162366564386365383362363861396437 -32646365636561633136613939623565346139636136326462343034336635663334633332383731 -30353565373038396535633662376633383739613561363130633230343130303961323233653735 -65373633633731323434386265353064383263616338646562343436383333366530653835336330 -62336331353564333164333938313639336234303835396361646630313535393137323863353131 -66323665653865303661356639373438646533323830306536613533666532626366373164666132 -64343837313464323335633835663536326138336164323234623462633432623364363237623432 -64326535646536313736646163336636663366376233376432626337303731633630323834393739 -34653939353333303839643534393634363766613064393636333933323830383261646330303732 -63663530666230353736613530313537373433333532386261313034326263386463616234333835 -38313436626430356134343733333839666532636664356233636436623236313830323435323963 -38626538333966393139373330643336643132643065356638356236393462386465386337636166 -65303234666564316166356138626237396662333064336335643361653739356333623063323535 -33303833643130343933376466303561326364383331373464386631326662623130396163613831 -64376666643336646137643736633565333261366234613539323565303364396564663239316532 -66353834633835383862316238383534313465653238646164316234386133383864643263383365 -66373231636138643537666466633735653130356132336365643839373166636566373131326239 -35616537646231393736393638616563373232383334313565343638353335613733353036316433 -35376430386439663730353764353333623135383236373335393763626561373166373530366536 -33326638363332633436656239376365313639613336343466386335663561306338643333653438 -66666235646632653437313563393161663465663663353638353466353736393430383131393736 -62373764653435666132636438666238343934336636646564343631636165346538363334343762 -38643338313162613262653431386333336636343431376234336534393030313663343338653235 -34323039383161366438373735386330333862396433626136376531393930343730306639383131 -35656363363535343031303962303462626162343436633536363834323566356331633137306436 -63623537626166303966356662363533373139363164666539643334393132663066393232393335 -34343630306439356261613138333038643130616464613432373536376361613537393134363961 -61613031316537313333376330316430386636353830313937313732336163626565616534613465 -37333932356136343331363364613936633434643232633565343731626635346236326336363761 -30333631623138366266363735323761396262316130663135653434663363643866653261386565 -32316266323133326531633937373033343134343132626437656262353939613534653636343031 -62356564376432373335396463346531643564383938393966646230316263396466376434623339 -36393930313131636333653237333864346337353036393431613739303462316333626436363862 -64323463633364383437336535396166656463383963383766393839376633383365613031346237 -38393063616139656530373830633437303732623530383132343935643331353435363033333736 -66353637323831303938633565306131316561396662663862656431343461396532316364613763 -35386663356334326164353634306363653566363564323766343838316638613666333331373236 -64323863316633326563613261626532656636613937626361386230323666623038313035363830 -62333439393232366461643937306439383436613261343036343031373766663934366434633232 -62613534353563333436623862633535666135666164623136343736303639323263633635633639 -61376131343136643538316432663630663133613761653638356339616633363665353563393339 -66393538613562393966303239333337653132316337333437653237663535333434636665643730 -30306433646638626337356363636664616361393133346337303234306139613132303063363666 -37323736653736313463356162346661656332346630633232373865333664366365393632636661 -65316664613933633531653662383761636362373531316461626564663430636165633861663439 -63303264353664323730383032613636373132333563636364383163376134333162646262633539 -35363035626466336531326434643131336463633162376437373235363134306264633535613465 -31323439363539326662383730613637656563376538366133373737333737646165373733396236 -35643464356535653231653133316334666235356239343763333931623561643237393164376462 -34323431663562323964376135306163616461393135613966666536303663373733353064353161 -63353334383036616664613863396664343535663439643531383062626663323135303936623961 -63323766323865613936306135343532343131386562373030303538613465643866313733653830 -34346564396534333766363632376666646137393734386330663861626466316635396666366433 -37366632343861323734366632343165633762313265626537323262663761623263346338633931 -66396432323030666564623539623532363362663764623166613230646430373533653862326463 -30363039316133643166303563663031326166643136333231356231383135363261303536346339 -66313332323338666336393163643132313061333139303065643665373137363730303430313636 -36623365396139363162333533613231633033646331393061666233666462636332636431323561 -38326361386235323663306361353333366333623566623932323835623234383664313833383161 -64613265323138336433363138363536306630656535633132663430306165623932303334376139 -34646330313431333737633835363663656562393764623734613566646332633663313832343639 -38396137343966656132346636646332666134366337303334363237373432363365353331343835 -37326139306261353965636533383562383731323932343963663362396637616635323165616465 -31366634393962663764393361313537623834646566363136353864623566636664623263343066 -62643338336163383132303531383030323661303334343436356565366330313362343836396130 -66336164616438656161363433303036353164376438313563626462663666653032356630326233 -33326465623136383737663265336138313830336231333937643537313466306632353664323838 -66656466663734306130623134373463396639646665333637653565323933656530326633393830 -31323930653337626638363035653261306233323436316332633235373833613430663864313065 -38653931366433376437636437653266666437366464353763613031333437336438323730643438 -64363262366331643738353137303961356563386637393830316335323534613335336537616366 -66353564303166666536366536636531626637613464663764303430633135356234653961383734 -33656434666666613561353735373838363833323737336135353834376563353438653231353633 -37323637396536323731653166383933336532353530613763613339613964653161323562323536 -38386166616630646566343362336636316639343465313731303032353466666263646633303838 -36393833393339393236653837663434383965343461386161396566326536633735666230393561 -61323131323237636263336663636331663732626530306433363738373563343963316562643863 -37643232396238303932653061363732366437323663626236306430666564636535656632656162 -39316439343964323335346363363563323430663632346361303839326563393864396639636638 -36353134326538626633333936303961333963333065393634323039656463663332653831366330 -62623939303131626235666531633261656232666531363736613335363933643339636465613035 -39643064313333316437363265623864323364613435613032623039313861363161343632616335 -33396264656136343365663062373436323337393531353036396562396439306666316233353263 -38313737336330653236363436633434616264383837383039663065393666303935303634373762 -63353964343266616134363433656364363362363830636238323463643339633765303535333236 -34386261326135353033633463373637303066626435633262373566323134356138396139303462 -39303336666336383163313138663161613133663030383337653438363832653833393064386131 -65646539633037656264366532393339313361353737663461346433346161326634653236613534 -65643564313363653839353935346465663030663862376436326239663230303965663864326132 -33353665653934643132356165386438333634356230343865366462343832613461633838633238 -64316664383531373165376535396233373534383735623130373830333365356165303062306463 -32383036346335363231636530663364346262396536313838636535383434643166336336653630 -39313232306134653839343731316535343764353262663061333536656333613965373461386233 -35656439643565313339623934303764643061373861313633336261623836376530653263343830 -63313633343734343435666137313831663766633831663238626632343435373432373263336366 -62626164336364353563313863346231646266643935666465613836396162636137303137366233 -33376638316535356634383866643339363566386363326161343439656635386338616535366439 -61363737363436366463336162656530653035616430313666626337333131353663646165303765 -39353537316439656239363837626136626131393564353065633062306236363364666461306638 -64626637313261396136623339303435306365333239333663306635396662636663643561343761 -35343339643364343333356237643336346662666231383137376432333965343133376337366564 -30613834613665346431306264303363363131633461396364353133663337616464393763373838 -35323338356232643030303961373562656564383237616461653334653935613833613164626339 -32316531623533653130313736363132373231633537333562323935353539343265313237333964 -34316537393134353736373039633964343066353637303864303666306665653131643435393265 -62326631303335633961313534643734336463626139643861613733326666303436333663646662 -36663363356433323964643066656530313638656665333339626331376138306132393638333738 -30343736323635396363646539303566336536303636663961393066663939313233663663663036 -64366430343833326236653039636265613664346364633263613936633563346165623238616536 -36393136666665623464386261613237636234313939663338353533663864313466623938323137 -35343036353736383262306234393637663466636661613130623265313863336539306136333837 -34623635636633653561336235343231393630316562613232656531643330663330616465333665 -33623838316565636538323036306634643331343530313666643937376131323237353565323062 -31323234393639393537623662666662303365623137326534666366356566663764643633663038 -31323961303035333233613738383764316630633133626562643164643038316265653134636432 -37316638663466333833646162366530613839393833396436333866666432646161653064336164 -61346639616363373532666363663634643830363262613366303235393736333630623865303263 -32356439303636666336363530623664623234313432633635386430313935613136663434326134 -39356531393761366636646462346165323137346130333938353961303437333437663731393932 -33346637333736346332376261323731306632373935326434646332643635373761383361363135 -34656237356234373437333533356637336362373436646337623537646539666534666462643538 -31393236633366373637386261633337386438343761623936623861326434383136333637386235 -36636434366361353935353161333737373834663234303732373431383266626162663364393936 -64383162303331363634376161353034383930616336613030353561656166623161653430336134 -35353033636530343866623631363738613965366238313032363934313334396230346135323932 -61336538366264626637313734623839633534393131623865623636326231306265336438383232 -30373133373135356536323961613964613135343833306538323530336163383066303237653461 -37363335646666373639303664393539623433353335626639386633393136363364656264363835 -39363765393831623962653362343563653833336238343761303238643039396561373435653261 -36643736333739656431376163313431396366663638333430386466613137333539376436626464 -63626234343239316432383530616139373063656132396636636237326465376138303436626161 -30386636633539626630393631366366336663636234323662323731636133396534653234653766 -33653735383961343031303065636636636364643665666530353563353732336533306139613262 -36346263663536633164363964326463356436363066643164663939343530643437373938613337 -39323936633166663064396336363230616334663239316538316162363839383830626462313334 -30626464383838366366633461336261343432386439313931646637656564643564313264643831 -39663665376634666366386162363032386430373662343932373636326334393232613535383562 -39623539393766316437656330613838386137636232353633313363636533646230333233393437 -36383661666238653864356637373534633764363231616133346239623934373234396133316261 -33376561313965626135663566363438313535333039356630333935653237363163353238633231 -39336232333361633838666230633033373461373834396662376133666362613938613239333261 -30373432636561386535643830383266316638313662393238393534653136303163633836303839 -38373630623464633666636438653237346136636431386563623936663164666662303132613662 -32626531306130616537656339383834393964376637633964653565623438643866633162663265 -61616139666135376164653762363665643535326561333934386364623466363932396430306361 -36373466643333336363666366366638323364633135333537386632363065383539666464366430 -36376234343536633663373639626430383461386261393332646365633262643764373839653866 -30336531343764393034316636616532393835626534616133336566353935326163656437323936 -38646666356165643538396437343536303835333639623362333538393336326464396336623936 -38623233316162623232623138346165346464336336633338343265623631346361353033636163 -64643565363731383130356637303136656666623538313166353530303535333234383637343236 -63316639386161303263356238386564643433303937333934376565643166396530333036343230 -33326539363861373635646432326536393336366461376431393864313664316563323032383939 -30666231393234323761356462333664386135636564353163643063306465386265336531393233 -34633863623864316130373837633066303661336262393562363937313932393265303535376639 -37343339623233666234356565383937373237623561393439316532663566346134323165383264 -34356139653661653539633462643739633037363134333830373064306362353232663364633234 -37346265333634333731353836636233356465393938366230396430653564333137303433323635 -36303634383431333436373931363464613739363633303162303638663164303037366339653035 -303165643063383837346163646436663633 +66323235373765663464643664313936396136313961343966376361336661373963326661353239 +6162333862346464396137316639313737616132303062660a393861393532613930613538643161 +30323337663235313763613634613934613165373832366536353236343933343764353035653864 +3932356334616465360a386539633935633738393339313763346162653735653963303732366233 +37393037383731313033613430373763623464623966616364626662316161333136613135346534 +30613463373362636630336632616432626539363533373338323330303565363161656266313861 +36316534646335373436666334386661356330386639393537643236666334393030396431323335 +30376162373935333038333365303831343162633234663034626633663961633266313437363963 +65656530643764653436343063346461653566643234633163363536656434636265323335623163 +33313237366236653535623339356130303162623162633265386661613764663136333461396438 +38613633363564313433363762376665656438313432316365336532376564653132633033333531 +35366531386437393964643537393764313164646361316163326134336534373931636437663631 +63343335316530346465333364616430333737356333373634636537663535626239306335616234 +32633633346431626237333962303537663963363034393937343037623134313564326562313230 +31303365353462313939313463373337343738623539383566313634653335366661623033313761 +61393332363835353861646662323234636661663436633238333332636338383038383738333136 +66373865643564363030373535383862323538386366653732623164396166303533653635353137 +37646466346361353864643033646666623831366536323164376563636430656439316661663063 +63343637633764383533313737623835333962393233616637313730363836633730363564343163 +36316264333961333164616464666132623064653338626139343538383665666662326165633162 +35383935646134623064383334386637346362656363323265363461363436313438343133366137 +65333633653536356131656536346232323134316532643139383262363538306534613162363063 +32303533613165373863333539353562353730393964663935613564376166366134313163653963 +38313564353034666633666264363161666438363866336231306339323332333136666537653261 +65363335666433386262393635326632326634616161663036326262623036643964653965326161 +38346438343735623435313862376434613430613364373764383337393230653435336462323332 +33616535623131613062616430363337306466373431303661386465396134333234323539343063 +32336431663461383036333833363034633633333061333763313161653063313965373265353637 +36626265323036623365636539376364653263393531306362366532333265343063653337613538 +39613134373635326630633661343530666134306563653031316462653338313763366333363633 +34313033623139353733343931306434356338623764316466653131323964653862353838613963 +39363733343635393930393737626665363461663731316536386631643239336437356262326339 +33626334323164303633346161636265393561613338653866623365376465626562313331396462 +37326138643664653962383765323766396437393432646131363630333666616466356430376562 +36343762613562303766613930336465393665643938626361623331333665646562366634623064 +39396462346230323838633466393438356232356231653931363063363137613332646433326532 +33376363633936626339633164393762643163393336663230666339636365663632393363353863 +63353863323435333335303166363366383165313962653261663366633634303933323233393161 +33616261393933333430626231663538393563323932323761333163386438356638386236386134 +39613739633230656639386637653738386636643239343939636461653062393363663363623239 +35643765383363396439663936396639393665653865356563343739653665376437373839306365 +39623438393235306437633537366634646461353134613430666463633766373961313164623264 +61626634306466386339333462653533616536623562656132633938306639666463646363336436 +35326361643732613939313866626535636264666363313837326530666635643264383231636332 +39656166383334643131333931323430333234306337613131626330373666636236303364303563 +36363133626464333531633564633062363035313035623863643234653663396535343165313961 +64656333363366363666306661316662396437663865656632393562613334653262386366346536 +33313730616633633766313634646631613930333038363166326231313164646361356434656562 +30643163363463633439396463613431646235353130313761626163323764656331353261623761 +39363565346536353430643036646662353839663365353635343266643864653465383431633933 +62383462636231393030343330623430626264383737633364353831333537363436373632323533 +65313438386134363765356130643333383263636430306362653663326463363034626230323536 +37373635373234623931653637646661623131383065323738343561313739643138666234306666 +38636338353036633136393665353438663266383465633232613831373639326465336634346332 +64346533363236336539306362663332343038306332633132656261326537646431373463633931 +36386338383930646464623266363162323932626663343330626136623835636539343465323233 +61363136323065303465313830353534616661666633323237343430613064343633386430643032 +64643136663231623061643336316439356435313633623263633263313830353030343632366235 +31316364333938373133663966326334363439363663616634373632366133633034653261336331 +61313965646330376464353936323439383236326337663033613036373466323939616163626130 +39383634346330353037626337636234346239376139386637303739366131306435613638303062 +63336638383637653537323532343564653462383165353432343963623139386532383530363838 +36396138333434333166343230623266336238303537346332656533373761656632383030346566 +39663365616365663832366663336135333563373035623538326231366636336561313236323662 +62623831613365306361646538633365623932306665333033646639333863306637316533346535 +32383739326239313636666336316330363231366366373131323862346562626263313435323737 +65316665336565383533326561653237616163386338646163363232653032613936656234323434 +30626265656635316265313763303662356434353966343364653639613537653937313937306331 +62653764643338383235303836663033633036383030643836393461643134373934396463383333 +62316161313330393564376535646134663935646333613831653231313331346661643262326530 +36323235393138653865653636336135366161386136623366326135393364303163363966326238 +32383030363436356263336330363864646432373865623966636262613233353466326664306665 +38613530623737313032383966356434626634336138313466356533663233323634626561663131 +31643037353131346137313631623061643263343232623234346163646232663666363936393130 +39653832396435393665626637393737313435313630656232336164643666343531383836303938 +30323935656630613266323230363065383237643234656162386561373337373661393739336438 +63383734313362363066346563343339306432336433373664323834313135303135386239666265 +66336662636631343365373066666464653163346362316134616666383234666364653335626664 +38346461376131646632656134633761346437663839383133623564613561316533633936393163 +61396133306335633932386336306239663865633034343636306336646337376666346264623664 +36303463326139333136616563353464316333653865633839663262663565366336613038623061 +36313032333737643337623535613735636133383436386666313861393232333038326637643534 +37636634383035393631383965663862356439623532376437656537373730366462373033346239 +36346639363963333335643935303939363033623834333063613633346332326537316565623930 +63316365336665656631666532373966373235666335306136366266373264653863383535396564 +33633565303934616163353266393236373938363961323732333832363937373962396334346430 +65393263376461386265323538626638303564663734646566356234333633366364616639326537 +36663636363963363537366364613062393630623635663632313435323738646130653032336462 +63613239616662613531633234623633316562393761356637366638366138353765316139343835 +65396235363463623334643630626461313030663138363537626362646137373038666232316137 +62373831313836303330363038366431383935326139336439373939383531356637656461323330 +66383463663333376665636639343761356433363164653338373732663139373963306335666233 +38386666656362636335396430373437333934633964376638643735376237643038323536343137 +37636465643333333436666432393134613034306165313739363362376331643239336335373530 +33396431343664656531633437306538356430626662653165313764663937353935626237373132 +64336533343764356537663832333862643630633161636665666163623866643138636131356234 +61386337353364353361643361666339383039643063306235646238396438653032356164386131 +39376563333964366562323239653431393663343031333537626234656265323530643238613461 +31336432336263383631373535633130396332353232323635356561653837626661363432653533 +37636231666163376163333538343565353632363631393433396434356635653832396465346632 +66363534646563303135323937653434623864323939626464353639383736336135323161653861 +31313162366432623935626164373735643738313639306339643536643831646532383536386237 +30303734353333626334313530383139653834383130663639326635303631346133313539663337 +64666136663638393535643838333066313161666539396261303637313533386138336532386533 +39396566343365363133363134393636393233666136633663386435653136396339656165623632 +38326162306365303034323766373831623764363562393037353866633231373331396465653433 +61386135333536656331343835653131643530646436623730333637363737353663383066356331 +30326331343131366135643731326166613439383437623837666632633231623931613363326435 +65363462353464393764346661643130623761306464623634306362306139376239623831663063 +36633364303462323163393632643137343730663766646330313031623363343564626665333836 +31393539373066643638333038323537613530356565666564623039356637393362363938663365 +36623234323737353739623036363639376631333235366336323363666364663564333166333362 +30313663653834653337383863306333643637623635653936393236326331356337313938356532 +61636264633865656663383334643936353536613639333631396533383563666633336232386639 +34383532373835666334376131626365333731633732333365643439303937313531353236343661 +64646361383966626463663337353964373763646230366337666634343831303738616135633034 +35376135633564363130643565353939633061376135316339366430376364383061373632346262 +35633232396563383264313634633563306431653763643130666261363135336434373432396338 +64303562396163323436333661343634643433613931336161616138373430396563626537386137 +33356366373462306539636239356538343961343439396638386366343035356338656131356438 +34613739343537313561646131616165666630346431646238326461303830623239623364336631 +32363130653435383031383135616665353430386562393330366237336239323836613864313439 +64643636616261313363376261336237396465313864623530653765333436386364333036636266 +37393166383263333866643765626637633761343631623566656137633130623961656365383663 +32343533613131336535363832663530386262306639646538653739383038313030633966653039 +32616336643639363230323066386164313564643538333962343538653963653038613665353237 +36643361306330333561366165363462356530313638343266316535376238366131323865383038 +63613538313466636230386530633036393938373833623230383932613762643661323035306364 +66346164306432613562656661326137663730333665303737333130623237303666646235343265 +32336437656663353835636235363332316461333961363131316336643932323535653166616233 +66306266396538363066323133353231333362306564323633623465653961643931646235393730 +31326165646130663935353337653666373238333131393265396239653437303165616636333531 +36383933613534356434333365636565303062346235303363663264663466326366623637633339 +38663062363463313839663563353633613635356637306631346166623662643638346563653663 +32666231326639643839396432303266613833376534343439393632613535656437666135313032 +37636435353838346664626338346234363031633866333938376237323632346634363734396365 +35366363623362623864663931613330396662313762393139623662396633366231623836343064 +38303634633539373234653163333231303437646237343436623562386433646338653865313435 +34313064636261393032346261613139356564646361366435663338366465356436663938363437 +64653139323632383236356530306164633831383966633132313563613531306465383034353761 +31353762643764363231356233613238376332663637633330313961323434383564323563633130 +32653666616337303266323666386562656564646432376632393564323537636133666436313136 +62623339336164316539666232646238393232393937626436396237373733366466393531303039 +32653432623738363232363733343666383534373161386264376137303061353665626435626334 +35373835636665623833646439393064366539363461343262313330383534326332313138343034 +36613636313263373737376232643137383634376134623734393035633131373735373639386632 +38343433636431363136373135326665366331373530376462653231646531643835346138653037 +37646666666334333034313363636631336339313234346332313634373035636238623639363634 +34646637613736373163363537613835396563633339636339393332346261313432313738306333 +61363565636137616336613533323165373361623637336134326263346232653035633534366366 +32356530366130313836343639383663626137623434343134656265666464666366653566343938 +36373239653362346461653032333166656463613437363633613331313838643239396564356233 +61373566663233366133323234323365383161623464383036646339646431646664313635333337 +34306536666432323336356665353066666635623434353464306631313533633931646164323764 +62373735633964613039633663343436646136306335663233386538336635366536613934396534 +30373161303766323831313961316464613033623363663563396662643064626635366362313561 +66346664333430353266613932666539383537663133663630376433336235646264636636373631 +32363331636662333232616562663864616434356363306663663531303565323061346335376563 +35663036373838333635333431306633326531366363333738383532343831356336386339373835 +35303434313331653965633035306164303433303036613532313630616635313665373431643239 +37393835366165343337323565396138656363643732353539616535616366633763653261373238 +33343261323866396137396532643334316139373535653739353239343834376131346638316435 +38333765323564656135306232613936613535326134366332333837383032306334336463383239 +35346633626530383737396530633665663164613862653636396437643261653365363465343737 +33303132373531336639393539613538643431653663316365333537326539326136356264393730 +33353639383466663164336533376135333262646237616137316637643337343666643962386234 +31373036663461333730323132326533323165653733666432663762646137343965343137343635 +62326662363931363364346633616438616236646264316331626364373266343739313466373339 +66356661616437343062343065323932393432663165363631366132643838396338373364633934 +32346234386363626339393932303965363163643933623132383030343036393533376461323636 +62396562376435653166313437356165306532663961383062316266623139613830343338653161 +35633065363735323164363562636138363834396233643233336634326161343138323131633632 +64616364333461626464316364343032393735663535623565336165373934323333316463386464 +31623331633833633065306333646133363730393130376464643332663031666261663065393666 +64306462633236616363393038356338306664313234663439316535393331366539356464323831 +66373566376232343464616466323837653365653738393936666538393831366639653038626133 +65343263363965653463346463666230363639393539303131663761393333626535333031383461 +38336139396237656266343038663734656631343830393239343930333733646538643731633366 +38623462623634373034393566663830666362636130643739303136383935646232303861343135 +33373438303235393962383831626364653364396132306332396463636361393661663061396130 +30303132386634643865656439383961366237373438393036623833303438323537396461643330 +31613739376666626137613634306535626131626566363865363030373766323866346631343933 +33343162653732653637373731396233633038363363653763353062363432356163636235343035 +37313664623636353333333834396534646138643462343463353838393762616564363465373064 +33363237643366343435656537383331323939396266303461373938626466643138633966633736 +63393439333862316663343937343666343138363332653265393931336434386336326531666137 +33636634383332366164306136643761643065303330306231316161636136663564393435353663 +36623939306263343666373064353932633533616531313162316539386631626661316239666139 +64343161346238613832396433306633343834616664306132353830613731333963326639643039 +31326635633533316462303136396665373239336165636534393961333066666265613564643538 +35646637373537643933316664666536363232363231636330363363323535366666636261613162 +63356561386265313035653733313932613732663461393936613364613763633861613135383761 +36396262656239623339366131633465613635646434366665373761336530373430653438376165 +62376363363061303831313064616532373435303932336338623339663036383563633165326234 +32306261336238653562653839623530376536326236346165313761636465363638306534336361 +32346637396664303662363830633530663964633032663963386664343833396638343039643235 +65336430656335616437313830396663306332346337653536663131346237346233386462636437 +61326634386463663337376232393866646239323238346336666235363236313266643562666339 +63643466633363353737643730393265653730653034376332646465343835393733363065626231 +65616134383730356461396435326336396635353064376238343539353461646431356164623962 +62663030393465326166653734336131663961366333393161643336313866333064373962333237 +65666231653862616234636532613937383934346433363461366333326639393331396530303865 +39663030613936326366356235303061343262643537663466393934353262356466663036303065 +30343662326534623939646133633237616165646266323231326264623363373733613163633263 +38633162613866653238643033323936323137353833393932353331663861613461666564613936 +64326439626232393161333935353634363264663336663235623064643930623533386264386663 +31653236356265373565396238363063396536366566353530356538393066343138643363343665 +65666533393764656434323834633830633930313864326161653332396336353537346638323764 +36386635316131653932386330616239313336313564333735653235366165343532613937346562 +65393333396664633364343331356431396638343336653730636533366461663539643630616333 +30323035373561636264353763343136353366303332383435323861633362336334353335666530 +34346430303038613435303063316534363063383537383433353461396235616639613966343136 +63366232303961636635316331396238646230393034326134346130663936623764343838363834 +37333534363565353932646238616430356433656365316234623862613836326537616533376230 +66643162303061326139323431303436373533633330663139656239303239316333626131303136 +34653036656234656362663361613332393730316437346530623464663335653239356362343564 +33656530303533653734653535623039333965303862386361346263303731656666633437353635 +37623535396438346530613134646335633663343566313832323239663766313961393439396566 +62643034333335663261323864343830356433316338386438333662353732316630353361363535 +61373735613339313038303162393462303735646632373138386535666633663739316166646139 +61383133613965646163316337383631613434343666353137623838333735623964616635643062 +65306633646330353662383865346237303931663938353162316538346330333230303638383136 +63356164336464396437373762333166383362393034623362646334393737343064383536623838 +37346338323532303636343337643364306232326562373938646463343264353136386638646632 +36616632613932663937616230633532636636643231363162613134313637626139303236373432 +65386266643038636463313964363565393831656135323032663661306362616133363434336435 +34343266356664653133373733393331666533643333393330333230656434613965343134343662 +38666439303732373466343265366336336138643535353832613232393961343761393662663764 +64666432353465356630613666353165663035646438643433333563316234346631353135376439 +37626631663565366437346162326266336630613764303261626239613236326561653539356235 +61336564366266366463356238303639323130646537616336383165303037393933323866316364 +37326161353063373238623237613965366636356630366538636532383739363665613433323031 +37313433393034643961326238613135373838386363346266633064356435613835653137666535 +61643661663430643336633735623661376536646436363465393532336665646331633535316465 +66333666326335643461393431666339393362336564656337326661616531343539393263313536 +31363932633332343161613033393334623938633461346631643836646635313534376632353834 +63363632343963633330323363303136623932616230353462333763343833626363396536396664 +37623766346365613932303065653734326634633066386230356266663162376631633839363966 +66643738623532636330386665613362373361313164653363343439353237623535626530353961 +30346134383835323566313466663336653862363033376237366333333761363639323137616132 +64623466646664336235336631663836636330316134326235363364353934396631386539663364 +61383431373636636163323733633431386166653635393133386630623738396531393966623262 +62363234643865383563303235666539633734373464313834393462343839353738626231636238 +65323662393061303932306333656363376338626434373638393864393635346663386633336631 +35333636653233656632623961393339343633623061383636313430333964636134343334383937 +65623666343665376134303034633032313031663135393833333934616363653263613661383766 +61626166656434653530393230353961363664353230633739623736646464323833333234633133 +33303963346462373964313832386235626631643662383763386638666438363865613735623361 +34316661303466383865396133623030636231396630623361646337353337646430326531363132 +66643464656337623133653965343564333939646439396466343530363036393064633366373732 +64306537663566663331336364356461653431383763616136366534383466353164376365386662 +33306533373936396433316663383664646238663636363963376333393030343835663538633833 +62646435633534376137663838653931326130353964643930353033383331363633393862643030 +33613634653530646632383036656432653836303363383233303563386364363238373230333130 +62646366663937376431663938336131306331393435316166363439383865666637393234646336 +37653466633664633132643137653834633735646232346665346430663435346535633136333336 +66646166363636353962373366323533666133323531326432363037663634393364383638373061 +32633466326238643535633338666135623437383565636166656234613663393231623464653666 +32343337313234303932313562316463316138396339653866333063616638303861306633633161 +38656234383762373464303661633333393365643065373539653063323832373838656165646534 +64616432313437316235646635336331653434376537636163666538636239643465356432336336 +32666663313165363662633538343536663136646235626465343237353661326362303538386431 +37353438616561356461333433336264393930373832653762326638643862356230306439396563 +64333132323635393962626265306235623163663634383739386330393932383266643234663230 +66376563633666323463643135366532636230316334653331613362393039343031373533373935 +61386233663838356532313962303034386161393365346465343064613436643062656362373565 +32386164323031373438663932393232633731633238353535336533396433356234633835646132 +61633936393563386633633732373565353762356437323632336164656330646364373638353465 +63313163346135633661626433373065623761616634306162653134666566336437316333373930 +31333336313063653439633462633538643065316239333533343838303262346566613631396561 +66323736633566323034343632383061333332336163386235333334373531396131616435633135 +62326161613666616634383236326436653337383638396130316664376431376433633831363534 +32633736643131663334383061623536633830663335303335343761393162356634646462663339 +64613135393861306332613830383439653238376339333435313364373432306637313766356665 +63666239653032633439306333653836306336626135663634613364313338393761646165323463 +63306134626131613538383562386331623030663637326439386166333737323664336536333932 +36363161363737313563336562366430613434356139383362613535366263656661653536356262 +38643261396263656433303033363165656639373566373232386262646631333866323939623661 +37326263383662623466373630346135626133363130666337346630623538306332353635386435 +62373232313137343965653033623162346334353534316233313065613766666435646462336264 +39333362386164393032386564623934646135313434626464386335303361313635343134343663 +35653961386535316362626634626534333161303936626438663066343233666230333162333165 +63313361653065333830333435326564336266353836363130383463313737393234663037316532 +61326466373332646166346265656163393064396166313761343636333032616533623038346264 +39303763353236373062323263363735326137303731613637373533313538396339303561373831 +32353265343061326239376162353931306238396564376461663135363532363432333637653436 +65613666313563343536323832306330353935393232653238653465623634353937343132316536 +39646633653837623466666334353835663232656264623033633661653532313638383665663930 +35346538643838343266316438356338363361376534633131373633346131396133316436316564 +66633865373265383939616638663861316231353462383961316661386435626564376666396131 +61373130383831336136623231363336653131323263346638303166336134393630613936633862 +37343963323564613361376663643237616166323766356334613731336639323362363164333335 +33323938373139376135356237323066306332623436663266363939626366636363336435303035 +34393737313132373635313033663333313331653665643538343931623735353063643230326264 +61313135336639303761313536306536346133356536613065303066306539343061383063323064 +38326330356366333236333938336633343661353939626435646266326239666362626361313337 +61393739313636376533616661383431333866363665316636326633643864323562663632313035 +61343635616630616234336661326431363562636337343538616563336339626638366137343461 +64326631643061323266353566343461623161303937636236646433313662356232626534636365 +30323331366535653936616132353232633431626637646230343564633066313864373935333938 +65376365346332613965383234633533373032666238343366633335623134333534336436353764 +37343866636639336531313763633830646564323336303362336432333536303961356135363139 +66393937336563623463333036363130303638353531643930643635303232373065626161343333 +36666139303139333432626263313861313163643535643039633131386565303839613039366265 +32323864353164373961373337363862646235323566656630306537636433623130326237323163 +61376532626533316235343739356135323832366562383738666632636133356134373830343137 +30663963383639313264373333633239643336336364343439636362303834623530373235666339 +34643562646134633935643563316564656434356230353631626236633739616436386336343732 +32343564656333636638376431303664633532616639303765333830626638383765333832633635 +64303862383231633237626466663531653931623765353764646131623736306234323962656631 +63356266656639303537616138663764313430656463323331323039353933333334623939613138 +30623739626233333737616664623532366161636235386332663864653738646230613064386131 +65346337323532613435386635323836323762643662366136643130633039393666383237616637 +61396166396131613136643861656266316636343834663732313933386439303563373262616163 +37333034656562636334316662313566316163366666336632393765393237346138353834616665 +66336132653431373766346464653232336164643631383734393732393635623466303964383538 +66656135376532313038663062666163336238303166353133656564316430303735633937376661 +64306564643235386437643238646530383961386263653762353033656665616434623061656635 +62313330653035393766383263383161303466346131383264303361346530646238333135346462 +31373739373834633730326461633863363031353161313539333165663266666337306637623630 +37323561366536636465636439323939326664356163306161336466663537616336393561303365 +39333330316433616530623563613764616434373538616534373538666336306335393038626138 +66356164393632366132366237666430623836366539376537393633616531303137613962346339 +61356632393233613864316236356564363434393339626230643231376436313831656565666431 +64306532613962383763303164303936373731633630383538623739633337353161373764373630 +62666533326538653464633637303830663035666539656165653633356538626534356466333864 +65306435333139643630616138616466353563326463306236376532323532383339656135636666 +35633730363839343539313236376165316633656132663763633633303033623933663166666338 +65393562333865326634643933363963626261326237333937376338613731323139643734363764 +66306262613432646466383332343030376131343864323539626564396533656465363161353763 +37633462353535353765383333343662663830623865633032363361373766326535303334393737 +61623330356135356139396136353266303762616333663932393436393863323163643330386637 +34623437616132633330333963373364653433363938636631643762376538316263323734306531 +37666433386633646235383338613762633431643963333365303035353961353836666539356430 +36616631633832306361646365356533623435633662353434313139363135336638623964353264 +63663036646464326231393138366439343165633038316337643837323330623961656334653261 +63353462313733656462323937663330636666346239303032323762653163336161643064653230 +62386330363466303038323137333037616438313833636535653363333239633837333737646233 +32633635306262326433343433383365626566373462373762316264373961626561636338643563 +64363364373263376666323639313761313862373936633463313237666530313735663864333463 +61336234393830346332653263636165333662666665626334313232303739663538636136316637 +38636566353830333265386636323561366165383739326363326431616539396434376639393030 +64616536343564336266653364396337646563383763363733623865656563616630646437646664 +61356434653237396532633965393163393539356537343138663361353139313432633032346261 +65333566613161663964373336343866623132373266656661633839643539336539393261633535 +30646431303166373962373332333737393330353935383339623234393763373963306566323731 +63396639376538333336613835666537666161643336613538373431343932663837643065663632 +65663235376164313639343862643638316434386164623736613932666532336162343035323234 +37303835656537333037373036326330326366623037633332626633376137323330393835383938 +37343231633963383165626336316561643065663734653836303761353861646631333066343561 +39323066663130663232366564346438316434383133343037666237616430653665633364663030 +36383266643032363362653864656665623631313038343162303765623265633962326466343661 +64363761393231353834383630626236373862636333663439333031383564626535633235663430 +38313564663739343032653536663130356565333566613836313433313463616138313531643734 +36626435306536613466616165643431393562653838393337386462623037363164303664656265 +35323963376334623333663630626162353638313130626166373531393131663762653837663937 +38353033656535313663343264346334383932313162626639623535303435396232633263326439 +66393538323562333834373837343631636233396539323338323963326265316130623634646164 +34633365363338316335396635393466666663613430353761356139633639306437333836666664 +37653039356363626266316364663264393562663838383264623536303832653333303965346434 +32633030646435353537313737353330616361616331346361653436343163383737636464323764 +37343830623864363436383635346234656434333532663964333639366137393734353966323633 +35393836333662316363343666336634633030346562396634396437366564623633356561653132 +61383036316565623431373934303333323734336338393435313164393631333032663865363065 +38303161326133303261636334386534643266613037336136663330303338306438653365316536 +31303234633534613839636561636638373132383730633066326336643134643134336264336630 +37333835313366616636313732353939343138303236353764333435656536353639633732343730 +35653637656632666630323331336130393135356664393632373139393039313163333166356133 +63373536656533323835303630306534663032356539653838323563346635316133393235363332 +64346563393964303261326134613163626233323434336536333766323730346638613339313138 +34383564643631323733393065643631313533623531376630613038386462346130373064313462 +30363539663664333265353264333535373433376437326163656238373634646437366132633434 +32616638336532633262326231323236326661383533386366323533313362386630613265303538 +33333336616132343961333234666332323039353164373165626561653334336564386132376565 +31353866336465646366346136366564353930666230663864666333313531326133623134306564 +63346165376533666135366132386463333831353431373132346434656366653336336133383331 +36613434343731656264373634346135613962373466336161646631346232353064393932323839 +63643362666637343137303263633062306330666637316339346131626535333337643333356633 +37633330623165396333393362393839643365663837333439336338393138643864326335633534 +66323332303233656234336534373538353938373131313862616530633062393639663565343636 +64633963653539383435326464656231346261343964643535373034346331356137346135623265 +35383330643238333832656163363737393237666531343237396564383738393435346665633438 +35623264373833303863333661366139323961333364353933386435623862643934356266396633 +61373538653535613263306665616265323839636665653364383362666230386462373238623232 +61316632643663643465376538353564613738373131343034333661353330323532323965666565 +65663239633263623533623539336632303261333762663435633737623331306332313266336630 +39353331393233613865363934393864336633323538386564326135356638373862373433616638 +65393838363037363638646131343331386461316537636435343662383562396463353564363239 +36626165353336313234653839306332663264376664313039376462613130306433316235356130 +36326661616239363665623962393363323637633161303135373239393639656239373235376630 +30656130653262613763306635376436343739633134626231633461363362303661383532623433 +61326439306432646134316239363664366132303231313864333963613138393961653865343262 +38666562633133356233303939646263623666373162373064626465613461343037336165303364 +63373962313061366132613630323865626563323261373264623239633036306335326666623363 +63653037633562393466323665316532323664393664353237363131653034626361646361306238 +36323263386439376163353338366236623066653562396535353137343633353761303932303938 +62316338646538343039623332383433363830316239383638643232353061626230343539356135 +66316239303639663137313933643466646639623366663936396666393032303432323263646166 +33373834646535646566626535353137663263633363623966623535303865383438346235616631 +37353366396337636136353935356362633831373964386339643865613238626433366437636538 +32653331616661623338616263366134323862306230353365313238373330393861393531326164 +31333831333034323161356632626537386433376236346639653435313339626638333864393464 +37386337303930316236373636323932323933663766663233313865663330643431303034633731 +38343430393636373138393134646137393664373231653761326539313136386465623836393566 +64656661366131316237633264383931303736346235633732303432326131326361626464643935 +61626265373166646365363235386634333135336535376630303038353134623037653764623737 +36366636336638656330313630396439396562633766343237336663326135316232616533666338 +30643737626264366137333535653735346563303831396463373664323261636438393933393035 +36373165343832343335356164393763336439376562303830303130653363336264396434616533 +66323031646362623839373534633939376233613734363835616562653265616532363064376537 +33633162393064386265333230653033376638383465613863333031376239643330363338636234 +32643033363432343066626630346262333237383166316365313139393963373262383733363535 +66356464623539303934376130636363343265373830303239353938316137353636343565366139 +39323864666339613131313764313366633934616230303362303030323964356137383465313138 +37376666393639396464346662303538613436326638383236643730626366313730346433316138 +61663934626530353730306564663965613562316237636665386334633031636538346331626466 +30376238353366346163643230353066336139613837653664643861333937366461343439363133 +64353239663232616666313535396261646235616433636437343662326263356132393133613866 +64613065623333353866666266356533373634306461313232326266396465356136303639613239 +64393164643233613430663036343838393662323136323665653836333433326233366334383839 +33323964666238333431656436316332643538636631383033346338313566323162626166386434 +35323237313366386365633231646163383231313363653737333562383962306439653337386638 +37366132663231663933656166323065633662343439333331363430653063326232643833396435 +36636537623936366330656535333235306631613037633535373435386266626664653732356439 +62333539323430646365633666373333316330613630366165643639383831633035346636666632 +32623536333264333830303662326135653661643236336135346131313931313861356332383732 +39613339613933323739393836393934623762663231613131396233353731346133633731333763 +31343431663566326565346336636432623466383038626165353962313962376564353635623837 +38636534373936366561616163616137656563306437636262636266396331633164386333336439 +38643237383833616461613335363331663936376266326136376233633236393938643639656636 +61303733386439323338363064363932303135303836353338323964316634623761333366346137 +39313734616431633565373234666631353064373361373763373832646665393137626236306434 +39323364323038643832656563626462336633396361643139366164613736636132313038306365 +34633233313131343332313964633065663339636663643836383439366461316364663763363739 +61343035663461326331356539666337363637393864366564353430623634366361656566393363 +38623364616135333166343461636239346439313762326661336333336439333138633936313939 +39623039343337366662386530373934333834366533356131646362393235396661356136393439 +64366462313465636661393834663233393935656133376331326564666634393631363834393565 +62326337313434363365303738316538333664326463663138393430333432396238333036633735 +36313338613264383966383736613032356339383237306565326635383835656337636439633831 +37313262376662356562313766336261663463636365306663613238306139613163346261616531 +33343766326230396130373630376438643261356234653231616236366531376337303932356138 +39643230626134396566323565656639366135623738653063366665376361343965326534643136 +31376465353564336431643536393339613235323963323932653730623033376139346434303239 +31643736323666383566366235383966313035316161633835343566663232636464353233393838 +35376438613764363037663163376365376238333564343566613235373365613936616163373334 +30663132666138303633636662376136663061333839343361336639636432366639326564383137 +31356437663031623936383866656535323164323162316630336236373133656339333231313639 +32386565663238646563653232326461303863643964366638363862643730383264326530616463 +33613964313831623863333030623638383662393935306637663530636465386638343663663238 +33653530663362663837373738646461316138376662316464643565383132373636386365636136 +63313732323238663134323137623430343039376335373638393131343537333361636134303534 +62633034393835356238313266326432663061356231626630393932383462333966343533336565 +37316561363135393131336538666638373430343664633963383736636334336530363336636130 +66333234396139613839373063623936323834313564313339383739656662646234373032363336 +39323731323038633739393138663134663737353834373965396139623136383031663534633661 +35353636383435386236303135396235663137323762383838306533383064326264613564623039 +36613137333664393838366361636530626434383166643661336162373132633335313437343230 +64326634626338323139313533373934366164653539393432366638326666643530363865343835 +30326436356430343737343365303161636261333565356335663864636137356139306165663837 +63353334623861336465666561643437333130353564663031626464656164636533633635653835 +35373662363236313864666465633865396365636562623039306533303132646166643263636261 +36623432306537333261653539303136386162616335333135363465326562366565393836613436 +32396532313936373335613735303565333633343436653637363236663163366564306166313732 +66633132366137373235386431616562613532653233343065646466383761616232326434663833 +63363561373733623636383364366531623537646637653331393431623965386233663166323531 +34633839356366356633346533636630623161616230643762346166656465643931336561346437 +66643730646566336462393239383435383332336361666435636666666335393763306630646136 +32653234326631653061386166306535333130663136373135613138303830306431343339376138 +63333963616635366132336336613761363238653163306264333738323966313936373963353032 +63383463353638373966373935363134363931303433303964616239636538653962373865316437 +39343134313766656461343662366263356332623338613638373333353937643462663632666165 +34636564326664373465343634306437396533373161623032376435636238333937633431656236 +39633364336165393862343932353038626236643037326164653964323030396333363036336131 +37363764303734376332656262373133656231636365653938313232376236333464346636636630 +33633735643735303364376166623662353762656238393461393964653466666662656438353037 +34663739333639396462353961393633343365303963323334306464376330316465656231616537 +62633963626362633230313439643036333861333130643539333662396139353837376533653962 +34373065373065383539613736346165663163303733373665363565353330623739326362626237 +39363436363364366666376262363961316131623936323138633736316537316232656230663063 +31323361653633646438316136363033643332383530623766373531653634316134353438346136 +62373938313434653231656634336563643932356631336365393736653634333465613139393361 +31626438363230353435396662323338313137383635396663393436626138396334303636323762 +64313765643430373837303763393038306537363930623664653165303433636366393934316133 +33613930373431316631323838373033393531633035616638623463346162643064396438616461 +33656335386132323934346138623735656364376261303336376131376435646231386531336336 +61303765306463643464333235373532613332373439386664316464373266613964373362326630 +32366333363531653239306331323730306430333533333664356635636639656264323136653166 +35613538386161316366333838663034316633323263373738663138396538316362646364366563 +32356330313231336331646265316137666231393961623330646435306534643535343163616563 +63376633663937316235633830373836396439616166623366353830636530623262646462396235 +64313365313234353061626464343639373335623737376462326238383734653062306164363435 +63333830363231373835303935393631393661613433623538663936366366663534393936353433 +63656333613163633862646437643530316134656232326438313062306464353632386238313032 +37653466316639333235623430336538316361366435353861633738326432333733653964316334 +37396330653930656131356164656261393661646336313733313736386531386439653235303363 +30613635353536353065383938656233623765633536343633323334343964656665663836376166 +65636530356133663364346561343236663830633638383439633562336630643834363138316361 +36613763386631366132336236323633666238353538613933363062636531656265613435376331 +34373466663532643130633461316538366361613739346333393734653664353033303436363266 +66643863633633346331643062326336333837626131636265386235346166646338373438666666 +66613334326630303538326530666562313831356534373735303435376664663265613465313661 +66643838303737393366333364363265343631623135666537313137643966343465633361303366 +31646232656361333832396362623632373432353531396430643364653338653364396539323535 +34326333336364323166656235626136636639636239333335313138663931376364326438393337 +30653435316238623437366362356263396262303861653237613262323663666230303835346436 +33353134336461343334613433396562613632313732373130313466616638346135336234323733 +36633035626266636534393739363233313631353862653865623031366562643530326434313763 +31363163346664643266633130383433646232333463656661313239366638643739356530633561 +32653462653365623133323462333938636237323462326236303337306435333839333836633337 +64393338616533373333346233333331353831353236666661656239313265616633383765336633 +63313735336136663839636635393731356631333235346435646235376639333933326165393739 +63656637636136636337346538373065353630623564643165333134383731313335633662646538 +63393134663831326535356130373330306633373834613634643262323761366137643635616361 +32356331373630336130616237323938356233346339313930643033646538666138613263383465 +64643330363432626461653865663734326261633932303265363339323165666238353931616363 +62613163636333343538613633393933663362303530363862383933343131313863616539613534 +63393836643731643032386634313762616363323262656166656632626338363539663132363738 +65336262313130313634303333376431643830613332313735353237653133356536653531613031 +34366230633837386564383237393539643861633938643362303030313639663963343137353934 +38373437303138393864616536346132313335346636353466326633396330343539653336353331 +61636436356330626138386336316434646136653339653131373861323636306533333238363763 +37393238653134386564343930633338666264616338323963383332363137363632323735303237 +39613139303031613631313538366332376439393261373866383935363031303032376665633361 +37373861323338373761383934346639616137326439383433306462656232646562353066363763 +63316265303731653762323431643131303732346665623932656165366434663732303064356164 +62383463326666373239613237363236626230343563643163356537343230643930313965386634 +63643930616661333265363032313238616661343039666162633533346636313166623264663262 +30333932343735633866386232653736336161303364343662313432373230363430643764386235 +34653033623431323735323330376531616462343663343238383538333664333539393264626666 +37613061313662633064303933383739306431666161653837366436663566306461626638613866 +32346633356665363435653061353335646233356231303239303863656264626161383065363436 +62323936316330363564323338336662623931636139633437656666643533616262316436383662 +35386533643963363765633963626334346463323864633061626330366236623930323164643565 +31373031616662646662313933633931633065326431323865323130636137633166626238653764 +32656339636636633234376131623532353237313139626332653565303564663766616539666561 +65643238316562383230316633373430356435353638626531633331366163663664383736336639 +31623234386164333133396331626633313431366331306137643136663835306566323764373663 +65626134386461373030653365616261373736313361643433666632383463636263343436643131 +37396639666561663564626165666332636465366662383536616337323531636235323239343464 +63646635323532656165633836326263363836346139646434366532363766666235623966396166 +66363464306135326363643932373836323032366338396231343064643862323761663038633237 +63633738633265343366393562663130313562656465663036346338353435393865306166306563 +62663061663930363939353636633838376562633234356535306362613765643234303261373335 +65306564343532633234376666636366316563353963323433623864643863666537323130316339 +31373537636433323564353036316164346462323931373531653337626361323937633736643433 +33353562303134323561373536653235623632613537333639373966376462386432346633383365 +33313131386131636439393631616535353666646266356265303564663963323964626337666137 +38653434336564366337376438306431383339303234306130653439653064366565336437356333 +31306562303365343737396534633338326132646562313561393734623235353032303135376263 +32346461643037626237313931393662653731363938616232623837383130393238386234643362 +35323935383065656461346361383531383933623963336163333365643337313136643332313536 +66376133656466616137353930643437316636626663393066393136303339373638326261613764 +61643963303962643164326636363033613866663165323031336236653338643934626364353633 +65653133623036336634666530626136356239656165326430303863303230356531386461336238 +64326165306330326232343139363435343230646633623639323239643434633734363037363463 +36306262333835643831626234303465666534376265653866623633633166626566633933363765 +62643764396238626131303165613430656631353032396264303562376666333666353764623664 +33616430616332353833313831333064626531396335303933616462316239376134373231323961 +39386534656433336439323863326431303937386533656332386433613163663838666139363863 +35356362383737303733633835356364386438626535636162376437653035386530633334383435 +32343161643137323064343535656463626561623239636131613965643339643363656564613234 +39303435336166383933363566613333356139353134393538623865383433346130303165313730 +36356462303466643865643234633666303233643463373439383438376131343066626361393563 +33363530623034386438313639643261666633616137623238363864303665623330633665326362 +63326138333132386162626633333039363434656662613064633462313433313464343266393938 +36323366356536623364353139343065333431303432353634363533396133643033333735353864 +62633231303263353162383836323431653835636639386135366536396531336339353932396238 +36333937306131666563616232626562363363393139346363316335323961623462303434333165 +61333532376364386630346364313232366535356364316664323966333565366165373339393633 +32313131646165643836333962366361303735386332303037373032613434646464323539653336 +63313266323366323538646139343737643333663265373232333334383762313735376631383963 +61666264303938613439616635313331323431656430303765366366336665306164313639626437 +30373135323035396134376462383562363161316164666530373737313662373363653332666533 +63383662326432643833353962393330343738343864623835303632663663303262383436373464 +65646163353533323664333335646337613461393539393566333961656535373236643231343764 +34663332376464623261303034373738346164646338393065343836363661643864653436363837 +65643965653737343762666336336335303962356131653131343763313530633236393461373632 +35396533643966653233313839636135653933343639326364656663326165303835316163316238 +33336661663038366662643533323330363530626338333764373566393465396238333163383236 +38623064306437633632333239366339383038356134646237663266353562323332316665366337 +30653030306536616238393230653464396534333862306633643161323862653231316331653731 +34333938393737373165346436313666343363303663626235353564306632646665333235366163 +37303830633833383233643563653661323739633761623130336234633664373132373063346365 +38346566313662333931376661333666326136396237306635363430393337326335653462663833 +32333766363234386532343162313634626434653865346665383562666366663436356164386239 +38613765343333396666356366623535656431353463356463613233616537393437653634393634 +62633836656234623761383863613964333665363564623765313031393135313163333033643636 +34363931373134656531336436373863363739346633643934336137653932633436626165626438 +62376533613465663232353235633362323965386565633838326430666537363138653461306137 +37306465396638306433653465633962393135633830656534346165626230366138383130646433 +31346632313531613439313335653266336636336238636333663339303939386237316534326435 +39373534623730356231356435613265363632373666393537343632663033386431663830356262 +36343738303862363166323336346333313161383162623364373738663136356466393238303866 +62383030346437303562353332303135343935646537616665373838386466383236343434623539 +63386661363731663932353630613432303939333964383137313538336561303366363166386161 +61633534336663633565323032646263386636623439373261316666363633636136653733663539 +36386363353335353566363133323631633230663137643336303766366531323734363337396561 +64343230323061366237666233326265333231343464303436393331323437336363383166643666 +38623731393137376331643762373363366463636435366338626361386335663366356137376563 +66383533626665666466393331303638626337316666666265636138353733336232316432663538 +35396632386439646237663831383731353164396166303962613765343133383334376638633532 +30363433623133306362393838333061393164643265326338346265373235353835386166393037 +33333632346361313233636533323238613963376335306336363064666162663732313230323466 +63633436613762373261323231336538383432326263616630653939333761333361353430386539 +62343130386464353234656136356263643263643337366533363764666663343161643439646330 +33366664303665383535316235323061623962643465623365373237386431623730313762333361 +65366230653463643264623464323238363835643437643837323464363134663436316163633733 +30633834346232633234346661336563333538376662303762326336336466663631303635373063 +64396536366133663033373636306136386335376538356166326561346566373863663464333763 +61633566626561333930313532303335323034333032613462663532323336303833646162633364 +39386331626639343566383636396334626266663031313865663738343662363564666237633461 +66306237333636336336376366303564316465373039626537396332313266643532336234306537 +38643165643838336232623034393138353631633536653763323838343861623066323039643266 +30656365343635353534653234663736623733373338646462663631363461363533373137393266 +37666437373862333533626230613532663666326638616430346432623337373935653830363163 +64323039333037336632393863323636343364373664303138636335376539373537303436353931 +30646435386134323634323138333938333039326663633063336564343933316563616139393164 +35656263303031366261343039396366336135396663303038323639616333363130356434333737 +38363933323639313336356636356536356431616662313931313737643238393264663933383438 +63396137363333386462653065363464336563373336316637613131373666646632333061636137 +66396364333062666439613337646165316463346436363331653465363732366334643966303562 +33326432373038636635613536326466653966316663646565316536363935613136386132303437 +34653238643738663462313031363037646531313861383630343533323934313733376634316666 +35336637306530353362383232306233653533333630376132626661636131636563356137623763 +35353132313066303330613563373430653430383164326530373135343562353763646232376562 +39343466306666353563356332353163313234366461386330646564643562366164333538656366 +35343763383665613030346430386562363564383966343630313537613839613431336434646134 +62613331613237306562653239613236306235623766396532303161366236636566316361363165 +66343763326332663136383737383333356635393866616236326461326235306232386232393832 +33333834643530343031633561343335643635343065383465613330326662343538343165653763 +32626161663834323161353865636266666434383130303665323732363530313162363435353330 +65623131333139363534333866333730323636373662363535333865656362663033616536396630 +65646139663166326133343732323237366537386632343337623964393966353563303933323361 +62376530313831386166636435333239623435383764313464353034336131623862633731303735 +63666538666163646661336531393131373461646339353666306437626461636233396438643738 +35393139636634333338306535656161336430363531623766646662326532663863343137373135 +33376238616164653266383235623666383534336130643765376264353436613931313463376334 +34303366386562646239393134306436396664666466663638316431613161633563353534613466 +64623465626238306535313562646233363832663937653164646335383534376361613038383961 +37626235613939613636653264663164613339366262366639656639666537633238303961663164 +30663137353434643033343037393039346363346639393638316331383535333233626465663433 +66623939393430633061396239303330396337356534653861346263643563616435316532356631 +33343438343366636432323538336465626534303366306331393135613363313562393332633939 +31386334613430643034643766323134373931313433646632613836323533616566363863633330 +39626638386531376235326538636131643832386338326537663832396436636263373535646261 +31636534326338636532343261303939653636393365643338663562386634633764303539353034 +38666561323230643739626664343534303735343366323639663234616563613131313330386363 +37393766373739636238356266646363666134353834383234363238313666373233373739613632 +33653733396236353965313964353261363461313031666161303831633461623436613534306663 +30313335386161623931663964626630633630363731376538633635316339346563343839666437 +32363839343539393338666535316263623936333666653965656166336464373938623764323933 +33666565326535666436323432356132396536363630303931663361623731373530313733623836 +32393830353261646232363538343831373264356363643366373666373637356263373430313765 +61353437613830663061303036323961653530643639623365353336376230303666633565643632 +34633438623339333730363766333465633137363531353332303037323738303633353736303166 +34303331353835333262336164616637346131616535363134663065396631333038626232313466 +30623331666563623762346333623532383134333737666634363664353663393765656237373638 +35323764646438656339366565353562373532393466653465663934356662376633353038383033 +63366230633261396362616261326237306334393635616466343634323833356437343562343738 +61303630386138393834313361653734343930383838313663343361643361396365656464653333 +66653461633138383033613262613164613035396638326430663666633633376234333235353561 +30303533666532336535353133363035396435353063383063643932323636633163373935383131 +61613837313337336634626432353538383032366235353732326533336537326231646461656230 +38383634393831373063323838333538363665303833363666643531666538303235303631616463 +32613265396337613062356538393438613031383561656337393330323262366263383063346535 +66326539356436323863366166636564616539623466353336343930366131303536643263653763 +61616366626439323433643231656332366462366137343938663734346561623765343833313864 +64316564623136623963366566613038376130313832363831616536383964303562613430613735 +62333263663961346531326334383735306636343037626333623361336234363937313034326265 +34643134633363333135653265326161613232383334656335623233333031333466653765306235 +35666130633835663133323134353433353063316161316236333539646239613039616638613162 +64636530633161353832396532626633373238656265313633393661626337326635393132663136 +33363532356235643535623038383931613636653465636430656664303930386263636662643365 +64633563353632356230333733303666323566336136383863376466636533363865363866316435 +66363231313366383134623133376639343131383932383537363835633266613036313738386230 +64623566633037333133653136663832306566393531336265356439326664356431353235363636 +38646332396265626333303134643065326462363464333139303935366536393534306230326366 +61653633323139313732663333363037396232336131623635346234363937666535383134613264 +63336639353238616639356435316536363266366535353263393531366431303235376265343330 +35383831663330633030353236303137303835363636323864346338346638336236336236643066 +36363632316337316632623863373430303039313634313832303136363537343433393730376538 +65373932363030663430313763663666376262323265383164653165346232653965653633383535 +35393936663364376630626364316461626232343039333662653766316663613039343566643838 +33343332316265356636653466353937393535646333663164333533373635616632643039353233 +36316431653235623031616136613838316161393338353939306234353435623230383735326236 +39353039613661636136306237633233636163323838643538656330616437323433396432356361 +65643961633533316663643536383432343632343230303034356239633636616632326139306463 +63396365613736343336333832643735386534383762616263653034666330323337333437366266 +31336133343430616239323433313735353136616566313835633539336562366566386364663832 +37333964626136396639373534366336393535383463376639303735383762373666393562353535 +35393162316162653732383137633234353332396461306566343865393865646635333464313666 +38386535373932333063326531366134653538656662323337366432393335313039663931366264 +32373732333032313262383461656466616261386465323333303835313566346363646464393930 +38353032313166313939646233313765333032636537366366376334313961623163623561373135 +32633264333964356431636639656534366361306561393233333132626136376333313531636537 +39633631346130386135323865313831376339303133666330643333346561613566303037326264 +34656338366461393038306465656131323565633264626637626165333335386337613432306663 +63386330393635376264666537636235616339363831343066343365326564303735366565323365 +38666365623437353265326266303461316165343537333932396634623365383866366438353134 +62333462323565376538653931316137326262303231633261303136623632333364336463396337 +63323365653730643731313837616265336437303433366230623335323832356130303761336234 +39363432613766613564343035376631666131363661303864616132373364653139353765363332 +35653232666235623065656536633633646161393939303466386363643163613966623665383133 +30313535316237646361393337333230393566306662396635313533323133653433623264386265 +39643062316436636138643538306431323633666666373363396364333639326361366265363838 +31373636303965353363356565336531643232346264323465616530353232356538363634396165 +63623435333530353638363036663665376236383837396566303939376162636266303439663266 +39623538326135356338616566653436666561313732356562373232346465633034643865346334 +63346333306138383136336634616163356562653166373531373766663537613134303837653061 +66333433633731643937356238633163303962666635353263313530613733316362633731323539 +65653935626363653831333139316235303336326430313263343239616435346462356532613437 +33643761333662333965353262353638303061373136636134323233333064313432613739633561 +32636465663832636137613530343362363561373934653562643834393161343966396330333564 +64346134303934303831333039393239623536626165333861653131313332613735383961386535 +62303765623134356232313137346461666165326237666430373031613636393833663239386632 +64643738333631626538343966373461643337343563336531636166376231623437393538643435 +66383131333763663033313339303739616630336664633037636135313532316335663963643831 +62316635353463613233346566396664343434363837646363323061353966313865633332663766 +33623138343832383238303335616630623564383531626164666533393239663331306337633566 +38303034373862613039343537353730653936653839613032303933326336343931373264633362 +33333335636165313465316465613334363530363137333563373835616166313637613662643132 +38396332663632333038623861613431346234666530613737343965383835653836373334663738 +39343530613634326465663533306632636438666431373430383239336139323235306534373366 +65393231383038623664613164653236393330356162393837393533346166626635333133663533 +63316632363761353764653466353833363238666562393536336363616536653031633839643663 +65643433303930643130653333396566393033363162363261393132626364346235333232313738 +63643930633636343065653764623633363630386636633932313466306662303462653030396339 +31373636366631653338613632613133613730386531333066633335383836613538623633356561 +38633031623136313730626638366636373730346630343762313164643166633463626131386336 +39346336393839623564333536376539393930323534393866613336646538386437383965653064 +34363133343836316665653130633635313065633733613661666161646462313962666166653839 +63623562363232316461326461663361393466343931313936373265333466373435396462643039 +33353033336330656337396433336434376139633038386234626536646236666538663035303331 +61353938333131393263633464336564376531373062623261393939343934333263373931316433 +65303936306633393466376633373235383265643964656333653236333464313261343164376139 +62323337323161386337336336613661336362353733643039353266353063383537393766643830 +30346438643566363238376236323463323332383536373734316635613937393034646432633337 +62613864323636633161333634663138323632333664666164623132336361346164306164336665 +64363365633233323232646538633165656466633662633765373766663838366666323364613733 +63386530633436366561306163636361383937336432653035646361393135356431663030393663 +64333537626438326430336537623939633330303430656131303661623830646663653265643131 +38363039363938333333636535656165616239646530636364623937386539343366663535303763 +33616431646336633938313430316362633862323161356366373031356335623666343961633039 +30363138643562306138373933643434383931653465663435623465613534653061613362373132 +61393964316161376465343466373835623732376436333830333234393737386231313266303263 +35316233636564303962336562303939336665313166343766363264323463666461653137356666 +37383132326634643938366364303561316435623863303633343237393266336239653034653366 +37386235353136393464616565626165663731626438393135623333336534666431396131313964 +32353563393630346437333937353733306231333865396663366138303962623135333836373361 +39616337353031383330396463363161383061623831643131633536313438336538646337383330 +35643632393561306539666362336137386165396630336531663362383830303030633335633739 +37633136333333636231373562313731623461366634393931373863326539366433623634373964 +63383839616165643065656138306434333634653666653235306433653631666361363461346537 +30653736353539323365383837653139613631326364353630366235313730316262333565653036 +36366539356664313939666139306139386632643232363638336161656331386162323935663464 +66646139653533353161303636346563376335613963646661643661376264376234343931653664 +30393738613462316631383566383935393462393535336634303739663932646434313964663163 +34663338653736383865396262613865333265373535326463653161343133336137353934396132 +30366636363562663437623463363333353339396339396435616536616665353133613032326536 +66333935306530393432373435363637623631323231623861623130623766666166346137336433 +31383732326532323331306339613937323062336236383264623632343738353562663538643734 +31313761613539316530323731373464623536643535623530343236323638343034326432643038 +32376164383432626137323332323131353337643337343539386362373634343835326535333164 +64366561356463333364663563376339363361366361356334616466656534353861623632333037 +63353730653165336232333632326664346134623361616636316533666366636663386564343231 +61363466376366303861373337393661653730646435353936653564383734653164323663313835 +39656231343137613333373133356139363864346332326635613330363839343163383862623235 +64633831343834613935316139303463383135383937376532386364303733633261643631303966 +33343037333330336235663234376237643730643539646630393461626435376432343731383036 +35633438636235633662383438366637663566363532306633356265343962653234396337343161 +65363465313263383162613531303664373134336131383563646131376431323834313663623130 +36346465376562373232623065663637353964366566323238636434643131633531653332386637 +32643032623736343934613066633335653062383537643638643837653132363031366161346439 +36646266326465653933383466386364336465323636366562336433613737343861623535346163 +61323932333762373064313739386435316530663934396230343963613737653638623333363731 +33656132313632663838633961646437646564393533623332353361636332323263663535343530 +39653834666538363763613436323630303637316161356439313632323864646630393861656566 +39656532613738373438653531633461636630313833613238316334643866343232666137323465 +61303764313961313262643535656232343031393064393062663962333765626238303830623836 +31343261636430353039376665313861613764316638346664393464353565363464636231643737 +66383235326166623338336331353630353766663166616339363866343938396365383136326233 +32363365383538623464383762303430386434373537356164346263353562346263383738653337 +33643633393764393431326337386534373731353161313930366664343731303930633438383636 +33313763376432646434313431303732613534656136646630653838623133333634303965313639 +64346166643765303964323934353336656538326633303434366333383764613761333133313236 +38646239386632336334623636323161303135613539663039613635363433316561366138306137 +63326634373939653963613730353562396632613137613036393037303035323532633066663165 +66343538366231643933646538313664376561323032313835613461663134393863363364326335 +30636366626239393164373061356233313633643936343333373938336136616434363730663138 +33376365663730363937396534616633366530613636373538393536363866396564316461346166 +38633138373637643035346432303435313138393635333239613838386365383733333835363737 +65353966303237626635633466613739626335363438306530653065663462316434363531663039 +66353964316238633732643734343365393264386362636139303364363533323666356633323565 +33313161623937333239653534323236313034616262343937373162393030376432363165363565 +37623335313236663262333436373763336562656533396336376430383433656330373963313363 +62396634363664303830396139333962656536343737333734366334313732383066633036373431 +61363631393665643433323464376138636465306533623635343565393337386536313738396136 +64333561353534363131623264656163386230613536643764386538663034356537373731666263 +62643433613534376330656339393763643231326364646665613634316462356664343366333730 +32613864656539326339616264656262376237353234653131343137613465393937316333373239 +35663038636337303332336634663230643535633034343836346532323135393232383536343864 +32343362633664623438313863663230663861303832663433396361363938656632613363383532 +32363237666464313435323337303239646361373338663937646533316631373966623762333963 +63643033396532646639613134366538656265393161303532633563303733323134626361316331 +30623738363864373934636533333838393734323966353938376432323461336332663365356262 +36346337636335663963623462643934396166386237653537366233363837376435373966376534 +31626638323563386366326134313336356262656430643530656236343237343462343365356538 +38663334383338393861616137376264323334383936336230633166353230643332663336313366 +30633530663261643262343837393165616261363637396261353337396639386264316234666330 +38343266666438333039646566306161646466393034383661376364326539646263343330346263 +31363138343131363739376331343066393230656336613132336432313538376139656662646639 +62336435613432653237333632303031356263656361373337333434623966386663373635363235 +36633436356430643565363164383834643661623738356562363739663134613631343130313336 +61346261326432363962653130613732393461616131663832336163323734633165353738383239 +34343832616233633165343032363636383364326437323264386365333133653062656265663031 +36323530363237303735643339313764646236333763666265313932303033326536623739393362 +31383831353162333962393865663337393362623633636232646538356564373262303339346462 +36353435353637363532653232663033616361623439633066633530393334643765653536376337 +61646336336437666532393137366466316561373066326336616461386665663032306433613935 +65623866356332383438326364353337373139326662353831653766643036393461653564616239 +63363533383564393061303631646331323864653832653464646330656261633364346664373934 +64613537333637613335643133313735303537663834666634306464313932616530383963323635 +65393035303434663231643432646565646136613634663237326661336261326331623236346333 +32333639656436663031323066616261313733623539373465646632376636386435383533623132 +39393832656266666335336238633336653063333831626333323637323231356333373238366634 +61643436326166326630643139393339393735303562653661643030613838616235306533643936 +35383366663037316333376337393064636132663763653361316430373263393666626631663361 +30323434376566363664343931323261343765353534363234343030613932383361333833333161 +64376338653830653230643239346336313330393862303433366634313336313265353464643639 +30643931663636633933393964323634633036656361376365653663393433656437363266333539 +32633332633730613939343832363063663566656138326266613862663061646635373630663033 +38383035306164653537373361646636626137613531326538663263613031363164306339626432 +36366134633262346662373339626533366337663566613561303964373062626236343463373061 +36316463363338393562643562643331656663653036396361366463333631623434643261666631 +33343837346262666235313064386363643964656438393430623039373535613939383465373264 +64346539633962656138366236353536623465656534623162373033626261373633663332326430 +66323032346436646631336666343036386531383461313735383465316466653438303538373730 +65373264656136383133366330326331346231333633383638376461363466643664623734386630 +61316365643830333161353036383035363162376632343633643035333435646565313832653933 +30313435333333336165623565613064376365646639333365363335383565633637383730386439 +65393662656330653537656436373166346461323664306639323463313261343731396664343964 +62383663323436376466366339313333386532306138303138336463396434626665323335373861 +62316538333361343635623061623930653961323236626664303631323633666336376331633438 +31613737656139323339333463366332336638363932653538666131613336323933353062326534 +61343936383061666162353562646337633538373630336666333161333563366638633238653465 +34386637646137363766626466396161656233333731343865333739643239323033613733373734 +36353662646235303535356431396561303062383433346661363130653066623735383630316539 +35346663666632366335656231313766353466623030343237646461636265633463333065353863 +66643139386532666139323733376637613831663835373232656561376330303061636537356638 +64636364363434313265306637336661346366646633396231316637383233396639313862313462 +35653461316365363731663564663334616262363265393166643131386530313032663163313537 +64393831326662633764333933316166376364653537333539373962303437363933656162616535 +37353039356466666335346632626333393836303434343362663039333333343731386433326539 +38376333653966623935333330616561356561613337663461383861363738366632643230333234 +38653262653930393263336132636363363635316139653535383231656130643038313764626665 +30323638613338373335346132343030633761353866376137333265646633336166656665393462 +33653136363435383432613762373138373237333635343333613561353962386636616462633237 +63643561333837623938323562646137396666373665613035666630336636363335643337343038 +39393633336137353131333266646538323364333739616236616663306363336439373338373765 +31343236306630666663353362336664613737393736303963336337633339333263333362386132 +32363761636431363961666238353936356234616535306639303033363265316439343465646265 +30376265653762633235653637363435306637396363376630643365613164643062616637666437 +65316637323934663531353862623834643734313761323061633765613431663537393163396335 +35376136636363303237313363383066646461616337326661353664643536353865653532656436 +31653031393836313633323061623561396564653732636563353238663237393937393436373034 +63666136316664356530383665643732643636303034343531663835383130376364633236623830 +30613438633636373861653464363563343066623565393765626532666661326165326530373338 +33313335363365383234663462656438386166623265616261383230643131663435353537343438 +37313766353035343230386336336233643766643964653834346135303262353638306439653465 +64613838666231376264376331343161366630646630343732376135373638393638623365623739 +36326639613965633864343536333138303139613333663361303132626463326537616537623531 +32303937633566666564363732323937336533376131613065666261343965383832366264383933 +34393234663839643030376233623439373065313465346332363638613363663365383161663432 +61303063346265356562323539366131666666626134343031623537316262333663393035383963 +36636666306337306532333461346132373766363565313634633061346431613033623438313135 +66356634653636333434356466353661396362333333356430326139633733646335313064396537 +61313466383435323839383237663330613539383031396263333432316236623936313933396565 +35383231313863306166636431623139633665623561376162303836636234656264663662663939 +32666330326262343563313330306435393738646636333238316432343365326435663330353335 +64326630336137336564333432646163393835313232643935656463346334366338656262643537 +31363733306335626666656264393862313366313761343466333562646162636562643735373366 +38626132393865326263626530346135353839663861333964633632363138623634633430313538 +36663830306332306138306239616431316235383036333536636564653039383435623866323236 +31346634346339343863326631323732343131303934326430646135623437376539346237383161 +65323064633032373664623761343930653134303436396463366432303439383732366564353832 +38343863343435313535306534343465363930643830303062376238333962323135656261323831 +35333739346439313936386437326435613335366334636264613935636439376664663438346561 +38663732376263353938363538623831346539633262376566306561656366336637336664353032 +38316265666133646263333437646430393931653164663761316262396537363562666362383131 +38393435333531333230333364383265613563363535356335653437346435653735303537646131 +62623035336137373532346661323563393534323333323236313764323265333539643364383935 +38663233356530353737653562376339313831616633636138373733656165366637336363643661 +35333136373136313835306436306131323439623735663938353332616634313835393166363265 +38363761623335336632373538343032653364366563636139346565386430353836326232643735 +35643230613231623336633834636136323139353766663435303462353037393830333136376131 +65653334633530646564333336333038343762313333306336346635653438353662633632396161 +65616633313938363231396564623233326432343234323962333738326235393139396535663238 +66343763643030346132303638363761343132383364663132316663643162643939393263336261 +36653435306132646138646539393137343037313135383833643033313564346130303037643065 +31393661396134646132376163383864376565353165383531626165636439633562633032646638 +65653763336464623632666533356332323461666463646539333164303230366138626635663565 +33393963333363653765613737636663663563303638316539636330616639366638336636303232 +35616636373462363335633331373238396433303433383036346161336462366338333866373166 +32663436366435666465386534303062386265396566313863323266636665346333373762333932 +37646666303363616531643934386166626566646564313234666632303661353165343464386339 +34363364363565366364383365396432313761663039623932666234353234346538663061396638 +31326139353833643136373732326262633430323437303038396234316238623462376432393033 +30656337303666626136396365663261663362343666333436666436333036663439656332393238 +63356663373438613737313131343064643264393438323431623832623030323537303335383130 +64313830306161303763616161316431646531386335633237623361623961646232633130656638 +63376538663835663462376565653062656164656334373839373762363762323432636563613339 +36386366386536613932613664363938333961366534646161346238333331373938353965623139 +61346663633738343334383538636534316466316431393631663031313033353661363361653439 +30666530313935306636393931666631633736386134333963663832333466626139346161353332 +30383938363566623338653764393561336436623262663961383235343962613363653064303235 +38303836386232623562373666383532383430623739656433353237353663633039623531396630 +35373432633963656538313435636235323837303465643433613632313435646133626139316430 +63373732306634663832626432323666316231353162383432353737326633646464653963323635 +65663862306532653139373034303939643865663130653831383762306236386439376564326536 +30323236353561663431373737643434363932656636373738386536656666613135316236666463 +39376134663639393164346233383138353238646363313633643133333732366431383132646262 +33303862376230376437323838343832306163313531373166616539336434343662323234316338 +64383533663038313866663436313737666462626237383638383730393936356434373837353066 +33623332613833376232383465316561353463616361323564303330653464383966343132633366 +37363565306663613262323166626135623534343639383330396130643230346361666239633537 +37626231626530326561386365623466643737303764616434323766333566356464653233653761 +30643962343636636561383534623038643764366533363764646136353133336663613532326638 +32323132366362373938306438333964333830346532306664326365626463343936653635363862 +65383761313832363536303163393732316134623635663732346463343732653366663338643464 +37613762626563316137653530646162633136373561656361633263646138653738616262616461 +33323663306161646363376563613561663566663435663862356437303738653135393462643333 +62386462623262393763313362666437633266363863396534633037313432656430303664643162 +34376634326263653939663939303966376232363031376366646330373833306264303936663361 +38663362356331356638393564316237356435633764613537373537666433623437383336643035 +62383534306662373065373936346431646231636337646433633932353837346362363539366536 +63336338623830356633333939363136643465343731373266653566363235346163323935313439 +62616231646330623933633463393834623862326565343536633134313236653466663730366461 +37323661363032363561663439323633643265313763366433333435373461316333386638616665 +39386436346266393334313334313437383565396231656535663430313639623131663731353936 +39653934626435336466633131363333333232366463363966636436383930613538346236656239 +34623962353361376165336238643831323634333838353965363034346436633433353034663337 +62353065353434303866643835343833653263646639336131363832333737336364623061636239 +37633734633764303966393765393063356663633162353363656336363534613034383033333139 +30313934643233653431393432613835633863653739643738633263376566643238626264333532 +36333366373331346234303034333130343564643863323239393234663466346239626435636464 +33643561366337393731353036353762613935356538613333393738376563373063353063623730 +66316262306565396361633139393332643638643933393235326566336265373137646230363761 +33313330333763656265343464313439303231366264633666356532636431373234386132363435 +32653464656162343865383036363035303530383239343132333835373463326666323034336334 +63306136633465313161643833306430613439666230393939656136663433333036383733366661 +62336362303633643331616338383566643530313862333061626533393663313163306337343463 +39393531333838663635366238333066333161636234366230306362343864646135363162633162 +35353232636331646461616239386464656261666433306239643962326633373864656562633638 +36623435623365613434643136616236313131366461643233613565383738653833303663383932 +62333533336139656237656332353161636134623131376566616537623262663333623531306534 +62343133393531386666363962623562353831646164383631303662313932653765353565613638 +36613861326330663732356638343533643636353835323637643135333331386266393764663165 +64376536383937633937383333316365623832393636323138636236373333643938303162386564 +31313861323530383336613036663534373739333639376130333062383534333932636363653365 +64623637373130663135396633343039316634333463663236343765303830393732373231333231 +38613833393631613661383936643362376338396165616437393461306466643338353465623462 +62643934666165393261336265323734633161303939643937616336363232396166663766666261 +35636339353839373539343739623931393335636665396337663137306637363164333332323433 +34313537336463646362643931323465663136376465656634353561646635386265326363656534 +33616239386365646432363466333433356661336562653238623538653430353765373631366535 +34373064616262656565313235393935633432633364643464666264373463636165616239626563 +64316666326236383363356132613933326634666532616264316433396462343238343436363938 +65653663663262626534373933376337623462663331616563613365303034326662383666643066 +64376665616337336630373137346532336165656564353631336462643964616261663833396230 +37616135336139616137363464373062353363366665656331323133396433373164396363346337 +61336665353666333434353830663262653938363434396362633939316530316238626261313265 +62366338363065646236306234343863653934363164613432666263623962396162623334316635 +33386130623033396365623461613965326437613034386533643861313630336535356233613264 +33323339343936633433363934396533353264306330306433613464386339356235356333363461 +33623838393632323566663139393163323862393735303837353566373039643339396661653065 +39356366376262353563306537643534633232666163343965323338616131326338633863643031 +61306665313731313261613137323232633966326162306634373836613565373436666163393563 +61623438613931383232386264336237633731313139626363373739386239396639333532363963 +66303862633534373563383436663961303266336235613166333465613262323833663639653938 +65393738383039343635616665643666316433353139613963383938623230373031356565356162 +66353337313237306637333736623566633634373533393934393662396439306232316137303165 +38633436656635613331333031623537393538323036653937306333306436343165396165383935 +33653461323733393863643864633837353531316336306561396232313265633837343734666334 +31333430363730393963653962316136313164393664363365373736393063633764363631636538 +63396230313335653066373932623333333639666363353366353939626339656632633539343637 +65653831393739333334386666366361613031623638636363623566333031363734643939326662 +32313861383131313531653939313830346261613437373734356362376638316337333131303638 +62303062343065633130333337656138313131663966376337303237616532326266383637663734 +64323431396531646332336336393638653165393732373466616134393932303130373165666666 +62343833313938363864663465613037343431343965303930666630323439643334373064633361 +33333331363164396261366262353966353163373364366461353061366565316331363430356430 +31633835393965323831386466613661323966646664373864346636623534303833373436396436 +36666232313963623833626162323362663865363366623766663736323331353562643166346137 +65393661633132633666353832356366363639643437373735343531636265306530383665373738 +35333362666464623037336231353765616434363763343266323938633131353635663766333131 +34346265313633626430323633653664353336333033663262396662333534663037663136326130 +31663962666337656134376465313334386532366664373433623863393231643064373836633735 +39313434333035643537643166323566643436343432626233313332663037653434373938663537 +62313130303033363633393363326662666330646136363164613235633863313034366537613039 +35656131333865646438656437313232633964633634313733376639316135393433353763346364 +31336661656432333864633966333261643533303465663465643937326162666366356639353934 +39303362616635383161356238313465623266626462326638326439616336663538336264646330 +30396365393663643734303163653636663232643938396537633538613937643030396164613864 +34393031666239646534373439613262303435383638633139656661313265396263316430653031 +63386630626238663864333866383337366436323939386233366239303666316432323866633438 +65613061386266383161663365323263323832323166306463353534373834326665336433666264 +66333434303963306131376330303365393166343462663834316266353063316261353763316563 +61623936663538326235613437353338353333353038643864633664326565376461383563363230 +62303735616638343832613266306139643739383364393233653330333664346163353833663838 +64313262363561643865633930303932356466336134633566626137623831663236396563316166 +38616237643630363765336632393537373939383037313562396239623763373765613134623233 +61376231636437383031656638626638373732376666636133306234643566646234643438636139 +62333037666133393533376664633065663066323835373730353438343033653532333063643261 +30393136393731623462393866646465323938353264656563646366623535383432346137663864 +30646366613934646231663333356131376464313235373466346165333737363566363666316630 +34346238353032353963316231346163616361343866303238313739346432633839386338326236 +33616633323336366339303165613833343830663635366330313962633233323939323131613366 +32663136363138356333643461393166633039366661383563343237303064623466386138383964 +38623033646230303535636130636534663462316265353039383932653737326662356566326163 +62313861636638343131646163393430363465663138343736346137613464356464336334643964 +38346238363633383635346265316131343733393238666236343965353938613133623132666632 +34643765353763343839313736343264383761303564643138333664636666326536323262613137 +65363534323830343164623134343362363966666233393161666462643565636662356636333466 +38633536363639633764343339656363616262346565373861653637643633383035393838366161 +34613939393431646366663866303735356134643465663934656536643338346430396432356330 +37646132363131373134613935653337313232666333353562613531316566383730306664373866 +32303034643466376463313230366463633933313132653032386237616664373964373631373937 +65643733386630373730613065343133396537623666313664663736343933316138353939333337 +30306635383237636366353234313935623162663132663937346439623532363163666665303739 +61383938646233313162616234316562383765633833616435623137656534313635343134306333 +36393835616435616266333335636230353863336130623037376232356537623832356633326363 +65363663366633636634323037623737356261343134333362626336613964343831326535326337 +66383335323136623861383035623261326563386539643832376665373066656438313365636531 +63333263363836653031663363336231656266626139376262613030646337376335643566376561 +30346135643638636635303237333564613739326439663965336331636261303165333339393639 +62393534633065383838393363366431636639616566343236303265316464626535663563636630 +30613065343732353562636433666661363131336562393332396564623932356635313634666338 +35396363353365313939333837333732633833663066646537326533333437316361313332303034 +64613339653233656537313263333265323865326536356461613834616639616136363761383331 +63643436356138393139383565616562356335663436313530653439653538353530383039646332 +37313434653465343764343837343635656262343537336337326239613665623535303335323230 +38663166653065316231313338623764656562333962646263623665336638303132613030303866 +39636366646561363730626165383361356366366639616132313734633266376165396461336332 +64633531653730666237343862633736663537346537663961666236636338326131653565616538 +39303631356266366363663364376134343538313366346533366234663062333937346631623137 +65633934616132353461353139343934346263336464616437663930383237323664333830643237 +38326433666131646237363564376436393064646262633964303532663337653032663866396334 +62653061303534626231373334646661343364363632343339376631663466636132333137323633 +35353163323137356163653264623162363936663961643134313266373765616137663633366633 +38633965303831333833396332656231303166386163316132326631373062663830356361666435 +61626664646535356533626663306439313139643535393030623765353434343338396263373865 +39383230633564396430306539303866313364353237663665613930393062396435323731623265 +35396239313538336237646333303530336336353864666430343266643038353966326437316166 +35373631383033623333373239633834386331373635653937303937656535666263643131366337 +33373635306661613764663035396266356464303332643365323765636638363565393164373438 +66626437623530656134323235326135653862326336373665653364383334326464653638313135 +62363535376463336262663864376333383965353430666233363964393737636363366530336538 +36663565343835656137366635373931313632393139333464356364626333623836626462396232 +30666438613639343434643763336263303938313737383838353065616433303435336461333532 +66363031613265646664386261643235623738643734626365333766636162356234393437326466 +35383434366461303766336238333835316334623231303035663263373031656135623463363366 +35333636616431653534343931636364366332363265666561376337353337373034613431356264 +62653431373834636664363332663537306631623334653564353035666430323363653564653336 +38323533306432373861356231623034396239386633373263363164343465336131353461626561 +65383766316464643534393164646565643134356266643864623261626663616538396461333830 +62313235353462653730353435663038333663353530376339373634396230646239396663373038 +36326237656337303665663231353636313430643637643630643330343635353566386163376561 +66326432623062383466313833363961363131653762306538646362623932643635313261616463 +62653533336437653030333532393338616565316339663232613739393061353938356431333631 +66316639313535666632373065373035363065636135316530363664646665656462363635303138 +38356336643662633638363263656265633762656362636466623164336534363634396163346536 +37633131333534373733333537653839623433343630663933633366326466353237303262323562 +39373235646563633862613730376663356638356336663136623430613837653265343135346239 +38613034346131303665336566633231393134376266636162353237306433386633313461663964 +66346239626439343735613566376333333561333633363734393632323738656639313066316330 +63393935356466633434373938366632393337666431353634356131616664323563636537393566 +63306633616561616465333264386361393132356463396137643132633137306339353266306531 +32363735653837383134303033646263343133343562303361373238643734303061343333353735 +66383931303735393436656362663265353266363561326365623539663438386162613839313331 +66386139326432626130636434656338633432396235613365313865333831346362373961653736 +31313234313733653337313063383938303739663838383937323438356533643931346236386239 +31306438303936373134373063333232343030616231353639303236666564653236373336356435 +38373439313035366230643465346533316366346136633434306431626263653038336635313861 +62363163393631303261666338323566396137386336303737623266343335643233643332393239 +31643630643039623531393136666362386538326433303238633462623564396639643762393462 +65393765653232303364336334393831633630623238326530306431316366376230363166363035 +37333532353031363664616435346538653433613532643837303737653762653637646436323532 +37373035643331313561353135633230383834623232386463363739646163366333353962656334 +66393833663438663232333064393338643334383335383439323136313062366334326664353363 +61333163633134623333393164633732333462646162646234643261346435323035623363346330 +66646563356365363661356636336166323233373235313234303763636235323734373338623934 +31353065313038616132303265363133303834656562363561383230376663373339313436333065 +31633662616532366331666630303738663630313931346335313664363331366138386265363837 +35376135656632623566383331343462386630363465373236663534383832303532633463643363 +64626666653132376533616534623031666435393662343238303061373339306634613365386435 +34323964316233303332373864643531383864626165646163383465316335646233366130633364 +36636432306337376634336536356231356432303332376661396133346637393739346633623833 +65393831636665363461326533343433633361326434346331356137666138346337633734636337 +66666130636135613437353837393637616439623865383939366663396637333065316461653463 +34613139613163663737653230633635653765313533643665666131643462313966653337373863 +62666535333631303661616565383864383036616162653261303965373361396262613039656661 +31613663386166656435323563656535616532363431366666356663343265653738333264613031 +64643333393463633464666335623836666566363533663933323436626166633962656438363266 +31626363343339336534393638363038303236386465653964633238336665613831343262356234 +64323564316663393437383433386534343864623732626364613435613562336237613066303036 +32313838356436303331346362313338323232363637383664356662616466373932333566646330 +34336536316136653930323130363162393965656134346662643631343736313538373135356136 +33633734636230303434666261363064313065333762636635356330313666336436323333313266 +31346562356634613933616239366365646465376236383064623565666131386638373031326434 +34633835353062353237313633393761356338306134373535613937623231306165383236316462 +65646161663430346162643765376130646665306231653934343032626336316264353037376265 +31613638343964633264376361313936653861303561323932306337383033373964633061323632 +31613238343362656236633664333531386533336464343861363232313437323639616438323335 +65663164663730373666613133633537303333333662646364383837653132633536303030326665 +31323266333766353861346533373838653133373330383761633065666238333063633664613136 +63343163343138623736653430666334396262373831376634326164646663373135306537393931 +65383630383763396666393838653366616238616662363163343337373430646664383638383862 +34376534646433636266623233663366633832666264626337633239323865633830376164343466 +66383639646235643963373137303265343338653730373636386562306330333361646663343833 +39643238636530383864306236393734643739393964383661383265363432303437396465306639 +61653330323365393934353130393635323936336235663939306335383963306439336538333536 +34626261623934343231353863353735326337646336323865306631653234353235336233303135 +30663264616532333335346462333131656365663530303538316439626465633165373834323435 +66383739356139613464343633353530323932303663313437626163393133336234373337653662 +62366335333164646636303265623163363033636266366239623637323736303265366362616664 +32326561653535613661303131326538343761626237616539336162323834626266616333303964 +62666431656539666166353732313234373138306462376434363536333965373432363265323063 +39396238333838306466313563663236366561393238376132333065393534353462653163373033 +31376430306136633464663830613336333638616566346233303234316139326466616466653733 +64346264306132313061356133333531396230666432633166393036616635643432656633383430 +37346534666238366537333733643738316264393535303631663966313265626666366566613134 +62613765306232326631343337623037666365363361616331346562653939633962386437623264 +61633235653537613530313236333862316465613135613234663130356262626439376630663235 +63623863646230333634343137643761623539353331356437643364316433613665316165623332 +63303763383565343832356164346166306631313731386664336436316535353430356366643765 +36313838313036623463623361353538616230336263613336393930316135376137663036316432 +30353965373739306366383862386331343238623961393835623938356265616132373734303362 +38323037393039376436306339636136623237383463323830316564613265396632383364323236 +39666230393864623865666563613964323264306364646464663065373665666231356138363965 +65303565376362613637323764313761653661623261343765333739656138383662353061616466 +64653833366563633036666662396439346633383464663135393734633032663331636435343763 +33323563363135373137306161353064333863303439383238323733626165326231393732633863 +35396265646336323632303764393831393035396362326435303236373035306231326362303133 +38613330383365316137646266663966623463323837376339633434333666613033363861333137 +63373864336666643737323564363161653638613762373565656533663035643334356531336632 +61303439396365363939616363363931303263306133653335323838616261646136346435393330 +39346134316665643139316465353237386566653861626164643538383661336237333366343564 +63653165303831323532376665313163326366303131633936373633626333396233653635343663 +30303830376561306332316635336434623839666663626464366366386364353531393265356630 +33333838363666636531313836356339343163366262313236396139386134326262393436306430 +35393333383364623836323038366133613766643362626434376538396133613639306431303338 +66333631343831353764663964633761363131653139386335303635356535613331323135336465 +39346536316663626234303837363737326364643437393638373036306364313133346564353233 +65623330326365623163303231646465336131383666393437643337303039636566613762633035 +36363463383763326432376466363936666562376436666665643731343830316234386336376362 +39626438386235653130383038316664623866613763393038383039353837656465303533633666 +61643033353163383430663131636565363439623365333863346437326465356139656533366338 +36323463306436376432303561633339326537333163373766393438343039393265383662306666 +63326238343366303730326335616439313030653261656237626535376238336131663963386133 +34666664383663373738366164663733343962653636306233613930363434306264393563323533 +61343461316133656664333363306665396133373065366233623232386537663536626366303631 +32333163643534396331363561313361623163623665373238373665663730323633646261633234 +64633363663161623766663238346366383466623262376662656535626337653063623036663861 +31653163303264383131633832626537363439616134303264663238326634306235393934646131 +36306633393565343535623237383764663563646138323732363063656239383466393931393565 +66666431613361643739366130633933666363386163633138323531313264373737376566636338 +65353336636336633431323135396336663734323738383836663264653635343766343931333430 +38316136633765363133643265636432333039656137323138646239303632353333393563613937 +30633735353064626337626638326461633761366136313331376536306432303331383661663533 +65303232336332343365393235333337653739633564303032303166353162636639343565363065 +65613361313337353638363639326162363235373262323063353364623163653730343338386636 +61356561656137353735396539666639613565656136383532366663633064626134653232383764 +62373539363839623431343636353965343439643434313232376637663861313765623737383133 +66323761646361393365353264636138666337316333653063366634366366356563636236326230 +30343333386562303438346435613261626231343430336632393636323433343238666365313732 +63356439306362656264313931383331303165353832306137333536366463323262366530363530 +65333162343966386230643434666465383637346530353964633166303338656465316238343735 +34346531373238363363386266373834323635336366663666386366643731636537643037633965 +61336261616431313161336330653564323561306634646135313261633935386664393766643038 +39323530353833343137383632393537653366356139333961326564643662663235386466343637 +37626337643237636363346133636638353631383462356163353735653864656135333537653332 +37336239313039636532646638646266646461343366333639383633393466316337373161313565 +61363766393031346564633630333663373334366461323664646231356462373361656438363363 +36663837396438306630666235626361393164616430316466336233313239646630633930653836 +30306437386635653664306231333834303637303266306664323038383161373361626337323632 +35343865633765613666366535643239343162653235323532343964636131323762653036616531 +62626533663463316235306438633434363764666532616463386637636436363932313939336437 +37313232613165616161336339666130623039343530333139616138353639646639396533343132 +37386266663263376539383738346531383235653939373664303863313432303437646436336230 +35393964626464613533353266396435616437613130336531636165313030633037373262333030 +32303733666132666566383131616636663231613934323237623764343663326636613133646465 +61616661316239363430313638346166623630633734333930343834636235643564313165653463 +30323664623836303334616536666636616434336431626530313466313563306332376461333431 +61656333663666353538373132636231663761383631663133383862303033313739313462643265 +63373739343362303265323130626462626236373864343162636362393265306332363139306663 +65313035646165346261643564663761353735323962366532663530633662303064323839636264 +33383535346133666661333137663338613331633461623964353638396337653832623731393939 +36393637363932616532363437653438666634373733643962313962656131326530633035313264 +32393764646365663262316531376532363764323765626230623663346638353938633138626362 +37626535333035383434373566336263343337373837666336613339363539353633316637616433 +61393763643037376433613137616262646332343761666563306563366231626263383833663039 +36363266633438653364663635663766666566356265343436316564316339373138323739343635 +36303839313331353064633265363432323638363139663865326165663063623430353262636637 +32653133343239623366663334393261313661646161373837373761663438663936376530333938 +33656231383964643332633439326163653035663538313063636430633664323330626437653939 +62356339396638626565396335396564316534623130323434313937376231333034663862356631 +35326632313737396261626330306239646263636661313365646438663037376565633565373162 +64643465313638313731613965633930386533623566653734646561313766393038353236643330 +37616337613838653830333733346431343062636330646135643935346339633739643831376634 +33383139396536323462396132373036613262393030376534643265623936353164643936323262 +64663464303637633333333839623363343633383432386566666261626333623834343062393365 +64336635346638643864316633623337643234613734653365386362393261666234386162356438 +33306339663733313065623266343337333334633666323235393265663634343332303162326134 +36333132623239646539623665353632386239663537633561643138653835626433303563383765 +64633865343130356135646336303433313462343231373965333163373730336234656334623066 +61363334616165633032653966386537323233633632616564383732363066363235336235386631 +31336632656166386262353162323965303362626435656437636464313536303630373433643965 +66313134306665376538653431636530646664663861393931313465623863393834316465323830 +30633238383832626234313265646434663263613462653831386330303065613935323631383638 +61663738313639333062356561613732663863353538393537356339326636636638306131366230 +38313261386630336235313664313138373232623432333963393338623266633930653462636437 +38353531626439626336646565653338333038393631643262663030633132303432316138346366 +30306137313337313135623130326263326137366562623339373736316338316234643830363137 +35356139356539326135633039623464323963386633636161336661373761303763363063623466 +34643965653366636334396331633661323462393936326139373031363135353861656366616532 +37633839636566313232376635373636633537653165616236343166613536663139333537343333 +62653438343737356537633835653135393866363965393836653930653330663236306637333132 +62343662383664343165636238623035386335666262633264366238303462636237393633303330 +34336239343761393435313763356133633832343535313935616263366430636233326234653861 +36653337343432653132383136366431623836386130666562633635663330326134383837356264 +30613930353734326234333136323039396139656635643738353031346536646336393133373632 +65346639376230663038643532636662623634373362323265383136393439656239656336333833 +37316133623931626435623930323633346537623032653361613833656230376638303532313336 +32316464303934616239656236373439333863343339643833313238383961383835313963383665 +65306131333136633265663330383031303062363965396635323939636465343262616561366465 +39666535323534353836386565656331306137656466656132393861303561313962333963313337 +66306139313939653238383362383031353139346538333162616634376665656262653636336334 +61396538643536393234353062666239623435396430316532336563613136336466343031383138 +39616238346563356236626165633630333138373330313937643062666161613661363031613564 +31376365643033333532336631353664646366646335623734383063663134396639643833333461 +62666230306565366164396566666334643934303533363666666238663335623761616662333335 +65373462613666356639653664353263626632313661623664383237633265393838623465393638 +33616336336630326264643739373164626461636533353433633231636266623361626334643666 +61306438323961376533303833323433323762376538373230363839363465643337613035626661 +32363566616334623831643934653265646535626563313335326438363033633463363634613734 +39333036663833666635616662333536616465396564323336323734653539616231346234366432 +33326338393264616632623261623963323431343138316631316535366261366530346462343962 +66343661666230336431643063663264646437326461353030616464663061626134356236663938 +65383964366638363937623032613936313734383635356162336231663864656133656661656665 +31356666393465633730356133323133303735373435346265663564383936373737663638646638 +66623538366534306435306537333436616533656136346431633735623235656334396538373934 +63313463336539663730313361343462636536616335653361646263663566666466383265653237 +61623936643330623733363833336233373936333835336332383161663861623464313765623231 +32373538343362373262333562376636373638663134303230343430333632613836313232336263 +33666430316136653762363765643733643964303335613633666136356564323230313361386665 +64326166333332636365326665323037373031623437666132383237303934326365623933656139 +38633439666239363235316133666537343631323838313663316336623166346639633536356161 +66313765636537333935666135323964313530323063346432646364363466633231383833616232 +66336534613634646661326266633665303864363035306335363431626337343539666362346632 +38363739333833633830613737366364646435333836303933373362363936343665333333613939 +62613563653466363538336261356264336363646662633537343363383636613161353638303536 +32313364366234353135323937643663343639313336376463366436353430663934623334326366 +36386138653366613131653637633033633639623639653437393536653764383861643831643463 +64353730303738386266383866383631653464386236653664363564383965336433626337353534 +35626537613961656362613561666434643465363237333663316466303231616366376336383634 +63386366646433336532623033373533326530396363396132356136393837333531636435303134 +33363161356466663834336665363466656362656234373135333862616231613064633934306363 +35613933383166346433643436376235633935326665303531353730626364636533366132616463 +66306632653839356133336232613461626236653733623037363835326436663462633536346334 +34366333333765633265303134646230626263663661663863386663326332643064653537343430 +37663734333462353436393939653634643463313761646537633262326533336131613361323333 +36313733336133323034373635363234316630613965636439313636663166323035373639653138 +39653432386330623063333237326662373734333537366337353863353663303131333539613863 +61363036646634333831393764656436653135313030396235383636626164386231346430633662 +35656164613133663230326334373935626662373066336638303138353736393231653238313830 +65303361373163353837363565373932363837316164613266393331326339653630353638616166 +31303838353337623664376664363864373935333663653831613638313333386263393638323239 +32363332353166303038653366623761313731613665393439376463383361646664366334306164 +61373565663333636465316131326233396537663464376438663034363034623163653934363165 +37613537303538633234393134373632656562303136393061663866613661333835336162306334 +62643161396264653030633135636366633831366666666539633632316161633461363539366536 +65336239346336373462316636333235653461346239356333346137653233336332666137326234 +32636535313137303130363631313364323835653762663661323261663464326237633562646239 +31333432383563333139666634613233666262333533636638613034366534323133636532623862 +66396130653661366137653636633335303732343234613564363035643237393836643938336335 +65373266626364663564393634626462356161613766346435373161643333646635613031653664 +63393736613236633936656235363264366332663532323364333364356336396535373130316162 +66323539626135643132336661653861666433653339656237373764326532343164326366353566 +66316339613062626632643539303862386161306439653566666134656538666561653865346161 +34666535623565336630383138633663383235323731333437613966316130656435653465333866 +36313536306365623936343330643034386632636565376634313134313834376462666535353735 +62643364663839616331303831653037323439313564363831353264636461663137383766376634 +35396362323462303864663739623237653435633333643465393732353030313462386231363634 +38333036333631643831326336623239616263366336353332633366316336356334303935613431 +64376261353665353364306339373534616434653735613063326332333733343037653937346566 +66333663333366366532376131386661333562363264656166323333306538336661633066366263 +36343638363134306633626663656665653439336538373163353231626331343565323038353265 +39303931383165663066373030303363653363343435326561343765653561636461313461613566 +64323836663631376262323733643363313633356632313530326666316432643366626435316534 +32653464323362386239376132306333303864653937396239326463383866393239653733653237 +36643933643363313532363133626634373435643363326561313931316130356637356363393663 +32343462386334383066363564623634323534393830343735363037313766373233623931653130 +65623634663635363331643533393133646430663537356535343933333730396233376265653738 +61353136376162316636616665613833306136343639636539373661313865333330633937396336 +62616265373233646231393536623661346633653664363139666239623737666539313731396165 +38653739323565396332393933316433383732323533633233333533646133653838313032323435 +33363065383262666463613334306366393462653437643561393337373465336539363164643764 +32666239356132636136646364613565393735636465613136643762616435303037366634373432 +66396363636130336565646161303736626536356636373037313864663835636161333431653534 +39653530633563363663353465353235346530623162666530383661366339396362396364373165 +39363839663532643833333235643365616463623035623666356536653631656437383939353536 +32653432376163663835616230376138623539363338323230633465313664633162633130653835 +62666365346364386665373466353134656631313461613966643865396638383936663364613964 +65643037613234356366346265623834373464363366363037396536353931393463623037326161 +63363062376530393236343065326563393066316133393762666561633836306430373563363138 +31343939346336363265333335313837313061366665373365386136383534636261663431656530 +66366662313439303864303766386439343631306336303832616134653030643630363836646634 +33396237643262626132653632333638626231303031366465633834383531373931343065363436 +31303430323632373964396438613039356464303234646339386632366362613463616661396135 +33616461623634343933316237323565383031653439376637666463393733316532653364383234 +34643162326336386362636639646230353262376262663035373061663862623431616266376662 +32646330326236393139653533363635623163613332666436393339393339653630373233326634 +33396437646233346265373137616334353036393231633939646239653238343135313936623864 +65623430666163376436376234313236373839666636313639346333326630393065633935353631 +66653630643630636434633763613736323165333763653064366437646561343035656134303761 +33323639366632383965323030343838336134376633393362323037643765656138333464633566 +36323039383463633164656139323630343834333563346364623237663463396235363461336634 +37346237303135303132303036303231666338663761326265303366313235383563653266316535 +38356433386464313463316430353336316561373836353631386637393633643935373762333365 +33626333396339653935303734626635623763396331646662623137613032313364346364356563 +37613766343838343838633562356361353236356664373832633831373861613335396230333761 +34313963323030633965376432663339333061323734356332633062353461383662633363393162 +64663163393866663964636438623839613935313432616433393266643661396564353564626162 +65366366356330323330616463393835396662303732613363666665343430376463623665626432 +38336264386630393637663666323839373964643135306635373865323764656234313738313366 +31363037663261356265333364323235656237363862363130393964623936666465343965363633 +39646134396532633932363166326364633363353466313138363930393339356438363731636635 +30643963396566633031613838306635356462393163383733653734336432393135376535313436 +36376234663433346635616437633632383336383963386662386439323039613631353234336362 +63356139646236386134633035346335616233343362366133373666363033366638353136316361 +64336338643531643836646530666236356262393231326431626332666231316462386533623534 +31653365356437646666333631383532343936626165646635383435393863303931663664393130 +61393836623033366464306536633837353061376366353464626230393335626264396666653238 +38626564356362653638313735653262383139656361633139656566373933303263343038336231 +63306164313339353961386138653437633236663565643666383136363166363639363533616234 +33626434373134393439333931316164663430656131633832366234663264613566613538306631 +63666331363131383865653464613965343833663232313461303137383165333761333638653831 +64376335383036373731393633383739323237663534356435356330626365326332626236623538 +37353439313535383963626563303363333365323332636233356364396163376430373332633264 +30643265386133316236303862326431323938626437343866363732323039386464326536623836 +64326663646231386436633065336537323561653736633065323834653135343565306333616633 +66626262376166383739303532623038353331326363333138386165386134356263633232346333 +37623263386232316239393861643135366230663733386632396462363931663935333931623661 +37613139316232643536343862616136613261633933643862323766383162376639316330626663 +32666539373230326239396237393232363863643731326462613063313035643535613537396134 +64306335343434313136626533383264343137323736303838666233303334333036373462343338 +62393238373562663232326564376533373661366364316362383831386163343739313964623865 +31306361376466353630393664613033383339353430623366353761633531323865663833343336 +35653862323864356439666565363137326263393430366662313938346637306439376661616431 +34663735333030313631613238643837393139386465303563393934613266313638383665613533 +38363836333337336162313732623333666139653063316531323730363930636338616263663532 +63316331333663636533643463336236353936373763353339653261363937353330656631666465 +38376334386333646437643231313937666635323465303039653266663339636334386332613963 +32373164663562396439626161386361386633363266633532353163323331383835656634623837 +66343266316364346561636230383534616664373030346563616131323165373035386236613164 +37643939626631393136306164343331643235353837646464636264383236333737386564636466 +35333265626464363661393636363339633538633639386631346233366366646332646662303063 +32666364353561336138373939323733386438363964656565626538386264636337633364636366 +64313033386366323163363334306266643430643766623135313331303061366337333937633033 +36356264306632326566313566633266616135376462326633613664303961346234663535633039 +35633765383538656466356565333864356632653730613462656536326639643963643634363163 +62306632333833373334626431663436613663346531356566363966323539323833373638623030 +35306430303466633739303437616639643063316365383130363330313233393036623232383239 +64376136303838643235346436353335356562663863656365646230303863623161323038386533 +33383139343737306139333238326666346337333866383930663230613537353536326139363765 +63303562633564386436303231336162646437396230656432353234346135656635633031373031 +32326330393334663133636665643134376133633831343837346464623631356135633133633262 +33336236363561386537303234346537386365646331633433316133383562306331323664323865 +64333962323736366331313664636135373734396264613632633433356332656333353361343836 +35623865663732396230393033613935373231663237633437353462656234326334303631636161 +65616333653933616437343530336532663632613636663835306434383934383435643331323263 +30633233373431313831623562623137633530373434336363346436623431336563366161343936 +65656136326366306335343330666536653465633061353266633036366136666663313064343638 +33643763623162333732313832623733343131383632376263323437616436633031623431376130 +32343537303539333334316633306364393962636462363935363239643164336435636337303138 +31343663353132303737643565663432363130343665633762616232653936623662636434633332 +31623733643464656136303432336237616662323338373264646462303135646330353761626435 +63303738303464316234313339386463343234653832356362376533346561613537396261633562 +61383131346464633737393061313663323437346665343063316132663531346434313762373862 +61323666366332306238653638343434666633636164363463363536663233646236363565356333 +31363166663764353130656364663332343436623466633662383461663834323838333864383136 +37643931623737613330306663313264323238333137363166353735343439666237346433373263 +36336563333662646337656536323331393530613266613532633134363534666238326230313231 +31363937343536663437393962636534383732376138343163613335323735376165636463656633 +38643833343337616264393930613236653538626163346530336165396532393034653336623430 +65323436613237326530346632366664303761333966386536356139656431396637663930306131 +62616435613034343166396266303564326164376433373530616364366338623632363034643662 +33653939653262323437366631303061336664613666306533363038343832396232623466353138 +61376336356638666264333535393236653130343266326130386139386635303839333666313665 +64623039616536666665356431343761306163656439336162646537666631633836336363343936 +38353163333130663835393830313161616533653834383731626361323161393066343637386164 +34346333306263396134336366363136326166366161343962376465616137333061363261373066 +62616536653034333738623139336632643863373037396531306437333738306430306434326536 +30306534326563613834363431623132643138386530396466333661633033376166646436636533 +62363134623138333831626664336134376263346237653666376630623339633766626431663965 +63306164643930353135306266393633313030363333383439326361393031333262636133646633 +33343235313432386636343662643130393862616539346234616636616537613464383738623834 +65373365386134633034393632343461366366336465383637366532613131653032303961396135 +66666564326463663431356435366461333564363566346665373736336361646464663062626363 +37656639363536346662356232313935626430663037396230663737613261653165663734373861 +37333134626639346433363732393635366666643139343736653835613736663338326161643262 +31643035653034353139326333626333613136346230626664313433323466636534616164613065 +62623330373661303039376230353838313239613834383139656461646532643130613864363165 +65336162373264356633356333633062383364613161636362666338353361356362623430353536 +63653038613463393764303038353233303138343335613030393638633634643732343661316462 +32353064643137336237316238353364636365313965343166336230396561656336633335336165 +39646661643061363061343731346135343532653438636234616564623531396562616531343162 +61316632386537393031316131376362376532333230666431363538393864373665336361383935 +32316537653262323933366562303931353739633233333331383263656638373366373132353264 +32313564366563353532666563663535316333613130343631656530306539653364363530363730 +64613033616430343339393131383739383431363238386162643165636162643438363539326136 +61353465396461386537386265333939653137366436366231656335393630306332396239663832 +61653036656534363732353336636534623730613362613131393561393736636130363231643630 +61656333306439653531333666363561373761316532613862373163323432636231613731623932 +31363739666264666661363566653631633237393362363761613336633136343364646464336563 +65366161343033366364643262376633623238376562393264646136636531323166636139326537 +38653765316366376533633962646565383865323365373237626237656233326637646533393936 +34636562623261383433326136616462663731396130643366383865303337323531373634623364 +66363030343532643431363165626662346264383838663338633139343336613032633333643233 +62656438306630346234376431633833356363663065303964353466613238386338383839396334 +31323164303439663366363635326639396366663764363131313461623965636637383637613832 +65333833376462666432663331623337393838316561656365346565383534323434666135623538 +64653738333466313764333834316333663230663031373865616566643264303337643065393134 +33313230323061663937313663626538353433393834353566636638626235623932633466663366 +36303737633063346232623062646136393562626637303430353536643630653835336661616234 +38663938643939323463343738323166336637373133636234636366353131633139353531666363 +32356666313834633039343137623963653232396532346139383830393963616665663233363133 +31626165623966366561376538656138303164323338393966643066393632386635643330633461 +65373236323134386562646530616636363638366237303163333338313132313133336166353833 +34373836633464323235373631366465343538343038636164643830313534393034303033633935 +34383565646438333462663339336330626566346166303866643062303738653137623137626265 +34313033343364633438386666616665623137363838343036633739326366373034613466666537 +39623339383238373834306336323862626636376532636132653738343931643064613134323765 +35643664656664633764636263393863663463313862383139626536663265363934623533323133 +31333632663466346430643238626262353633396535356534386361333561653437656330343564 +31393530363836356637316532643162663535343936353637353137303030316234616434306332 +62643632326636656333333332303730323530313162313634346538336230303765643433386666 +64616433636436613233313538313434373964323165623231386436336666643833373634646364 +66623035306562323437613739666236613963373134326632666530373830646261383934386130 +66613332343835653038633365386561383438656566626665396266363165663433663139636464 +35343136323738313361353532633762313434363664303234633036656533366266386464336138 +62656235363639306462656132346264376233396163383865313763323163363038346135316364 +63613836323338646465363965396564653164396638343264356339646434663738313361303764 +36626462666633383665303730396537636237336533323361386337316339393038313032303932 +30306566623839656162366133616137643166363931386630393037383834353031333733333161 +61323631623435303437613563656338333337333330336363663630313963366631363037356161 +32323633663162333036643363313263333063346336363664353237656361336563373431383033 +63393761666166313666386432386565663364323463366432303963353836343361356166666131 +66653562323466386439633936356635323930363135343066356132626361396666383833353438 +63396134346163613164613962343066343165623033336136393036653238353239353366663538 +30393466616337333332626630313234366566336431383261323430393864306564343531653133 +64656433313836393766646634346539306635386464663261636561306162626337623438616164 +37613236376637313938333764383562333232373964643536323632626532636139376633363664 +32383339633237303136306434366334383137366633346130323263336661646666386336626537 +31326264316530323031623532663363626432633834643839333837353335363936663230636130 +61633066343163653561626535396531323966333362626339303030376663353962656232353661 +65323639306335316135643635326639663534333938363638316331366565386435373863306635 +33383834313364356237363961336337326565613631636634353439376535343239376237313062 +39386435326562653134383033396535396337613862623935356365356137366361366136323232 +39326664393663623265363333656435353431613438303438353934316234616266623364336539 +65363633313664383032663337313861373839613239326563613162353739343733386463303236 +35303464646637393037343435636663373632346633633238663539323338353034346131353963 +65396331376338653930356530333532613862656437316636326530313035313939396562376635 +63363764346666323564333533366563316163623736346665666361653664613339656435663933 +32396232323039663862643035303036346463363266623837666237393634326135313762616635 +36623132343731313635363130646361343361653663616131633161336139303363636632653963 +34616436336266633263653338303366636632633539666132343933613132353766613835316532 +63383731383932303833396631376664323364313935646330376666303064303638343539313462 +30393338353830616139653464633436666362363563656639663938356666343539353763383666 +62303833656566326636346337656133333339396430363935303238393938636265346231306338 +35323862333565333835666339366137633237666135646366383039313831616638656566393535 +39303936613335633563313032653133373134336437346230313064616139346462626666623833 +39303432336161323038643662373462616361643466653534333330306366666532363965323564 +62343931383663666239376533336335343665613561633237383564653134666566353130343238 +62383761313339396665613161616135656164373365303434316439313266303032333534366465 +37653963313130333366333732376630633935343938613439303036316439326164636662613265 +33656162363033663432643635323761326430373763313462663231323836323137633636376639 +61353634326561616462386563363637643965313066393136393161636265346339646431653937 +63396365366630343365633961393133303162383562373165353339303138313164306232303330 +33366233396462333730356531313762326264306539653634653863373038623430316436353365 +32663761336533373861656562333934393534393731326534353437383132366333353035346362 +64313731613337373166346634363935396633363366643662356461373132333631303333643265 +38303834333865373237316361343030343636316438313663616633346433313565386639313738 +32373332326231613664323930666362626632646537356132376364363838353964653064653236 +31306635383037613661666436646433323363386637333661313033646132333263656566363030 +31626166313064306435616433363461393136373635316430353230626265666432313134343461 +36316466613266613532353663626632343234346230316531373235626331366134656635393862 +39363136623962373733643539363534633538336163343930643436633037626365343138303032 +63623034346634636233613430356664376462633965323035633136363433313964326261646566 +37393831316530333864626336386665366437643038303661613162353865613563306638363338 +34653730306135616236653835623462376338363933306533306564653065346131323033333364 +37363433633538363665376166323436343565616266633134326164653062336161303232373136 +38393734336631386261623363636438386438383733633864666134386232633238366630343432 +62343532383965333738346537383431323135653334373932643766386165363238306166383566 +30356562623535393730313533353764313463653230333631643236343938623533356632333964 +34656132666530343337613931323763613661626336323734656630386330313666393631386132 +63633331643832376339663636346362366261363336353333386331316332393531376363356164 +37313764623265633562643963343964343838323562613564613237626335666131626439663833 +65393237666439336137336437616333316536333531343338663031356338343263373832346565 +35313732616536663335343861383962666637616633333139636561666637376263363965626364 +66616639623164313932636365383765353563396339623339663132336236646635303634303833 +66656536346137363839363061323430633733393065643131613664346631636465653039663834 +35393531643763316233323833316662303436373765613335386164636234613436633864623838 +35623236616366383634346631336163616632653637613434376639306136303833323034623938 +66623132636336303066653262653363653661333263353932333833323761343463353631396435 +32633037343933666230653635616631343961363562366162653362356234333634326663396631 +37353164633532663465636661623435383264313463613862323261666236663361336636373762 +37393765323163626239313436646563363735623232613263393831346265373033643865613933 +64393162386464343137363938636131626162656539386532326133323864636534363235626234 +30353439326639653064383430356631393936383531646664656565616161313461656534613334 +30326634623464383434666166393731303433613336356337663632356432643531353765613964 +38396430656261303862653965663635353162646234323933353334356664313234376230393731 +31366265613239653932656633653366336436383537663739333434336366313330306338643934 +63303832343562613333643161663234306365623936656537376636316532376162313462366635 +37666132366437333265306663626430373066633635333961643933663139643633663365653435 +61643262373366396339643335343135326136643264383661616466616339343133353630643066 +38303139653136303136373834303264333734333433636430393031383839616230613231353661 +66356530636633323738343231643366366661326135336139623232646130633664346430316238 +35616166633566616434333430323232363833373931663938383137623563323131333864363836 +62343861666166616536346166356566353163343338336433623531663933316137363163383663 +33643065353830636432616334613064616530353165636136616666353030333062323039396530 +39386231653863643131336531373834316137306262396335643463656432323964346436336663 +39336133353961626261373234626130303938616530643731633563616266646666663263663764 +36393262613036353634393434323631346261343465616266336132383139386331653839356366 +35353661313562623062353662353935333436653331316665663433653763633833343133373465 +34366339396261626435336238653863383531313738643034656664633437666430373561363132 +33616335623832393932363561643234396436383761616231306634313366643463336531393135 +64353138333738333533396434376231323333626265643938383763393734623963613262616536 +39303932666630656432336330366636336533323563306333323962366635626361396236653135 +38343832383163613964663864316466643539616264313563396436333835656166316563366530 +66626532613737313538343138393139623136323135363061383439623561313436323338616131 +35643964623464316435613831623666346534633265326337323332323733666336303633313161 +33343334333861623362656363646363383462316265366462663431333561376561643937333162 +65393734303035333761326661643864306364643461333935643266373039353334326131353137 +66373066316363306166613935656530373663653531336336356337333238646531376132653863 +66353966353363653434656539636138616365396139323931613362393563656635303966303361 +61376230626430363632653565656535626338623936323534633733636335356162363534376365 +38356330313433333764656537653565343635396162366535643339653334346262393461373232 +36376535396432373939333630363330646630316536363364623262623363613864623630633431 +37626631333338323062656564376164313066326461353138303865636263326234353534623738 +36653135306434626263393761396636646230643163626266393865653964376663633138626230 +62333865396238343266663331613835626638313865393734636430626338656366393633386639 +62303734633264323633386532663661336663316363376636313065343862303239633964633738 +63633966663731623334306438373830363162633739363831656630363136303538643566366439 +66383866653064353162333738656336626164386462366230363566363738353666316136346462 +35393834653066643833336261313066613761663137656565646666323233643836663163656130 +66653838323934363339646437613764343566656132353838373037316533653365633732613463 +30623930646538626539663162653639313730353639306365656539323066343934643335353664 +39613834343939613131646537363136333737663861633366636361376534636233623833613664 +37633337366632666637323866346631616462316362336530343966633762386133373033623265 +36303733313863386366643337353830663130626535626433623733613633616564613631643439 +61643732363964666435353465353531343666346365393165653964653330343966623065326131 +30646639366337643763383734383362383433383636613230636363666639313736306562356161 +62383864363837386263663638333263326663666365316238306236623632333462663361646231 +38336230666238613836613635633533313338646565663464323761636165613066356664653264 +39363933323538663531316363323638393065323266303338636438363233396563333833303430 +37643838393934363734626433356530663366613732653939663130633964333934623830363762 +37653364663662333364393535326630333932373265643564396333646339336133366437336538 +37383061313538653363373464323136633638366466303432393830363930386636613262383331 +33376536623732383139353465333438613332363338663032343430393539393835326565636236 +37626333646465396430613335633634336239623038613439333661303737363137613237366533 +64366639393936616537366161646536623838396531313662343564303636366539353430653132 +30336466373930636361646438316339663136366437616137633534623431626435613437303532 +62353365356132383333653562656364373836376532343338333830373937303331393133373661 +65353038323834333264383238623864386436353166313466316533343739313635373038393161 +32323766323234663665613337313236643966633638666638303732336238393039393537343037 +33633235303231333561656265343237616336666534643735353966333535666365346266376530 +333563303261666566663465386631386537 diff --git a/environments/kolla/templates/rclone.conf.j2 b/environments/kolla/templates/rclone.conf.j2 deleted file mode 100644 index 09d8f4a02..000000000 --- a/environments/kolla/templates/rclone.conf.j2 +++ /dev/null @@ -1,13 +0,0 @@ -[{{ mariadb_s3_backup_rclone_identifier }}] -type = s3 -provider = {{ mariadb_s3_backup_rclone_s3_provider }} -access_key_id = {{ mariadb_s3_backup_s3_access_key_id }} -secret_access_key = {{ mariadb_s3_backup_s3_secret_access_key }} -region = {{ mariadb_s3_backup_s3_region }} -endpoint = {{ mariadb_s3_backup_s3_endpoint }} -# Force list_objects_v2 -list_version = 2 -# Force path style to address bucket -force_path_style = {{ (not mariadb_s3_backup_s3_virtual_hosted_style_bucket | bool) | str | lower }} -# Don't try to create a bucket -no_check_bucket = true diff --git a/environments/kolla/templates/upload.sh.j2 b/environments/kolla/templates/upload.sh.j2 deleted file mode 100644 index f0fe8ccff..000000000 --- a/environments/kolla/templates/upload.sh.j2 +++ /dev/null @@ -1,17 +0,0 @@ -osism run mariadb_backup - -osism docker run \ - -v mariabdb_backup:/backup \ - {{ mariadb_s3_backup_openssl_image_full }} \ - enc -e -aes-256-cbc -salt -pbkdf2 \ - -in $(cat /backup/last_full_file) \ - -out $(cat /backup/last_full_file).enc \ - -pass pass:$PASSWORD" - -osism docker run \ - -v /etc/kolla/mariadb-s3-backup/rclone.conf:/config/rclone.conf:ro \ - -v mariabdb_backup:/backup:ro \ - {{ mariadb_s3_backup_openssl_image_full }} \ - moveto $(cat /backup/last_full_file).enc mariadb-latest-full.mbz.gz.enc \ - --s3-object-lock-mode GOVERNANCE \ - --s3-object-lock-retain-until-date 2d From 7c099977f9b72e4ebbedfb77570bd196b2236e09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Thu, 25 Jun 2026 14:58:28 +0200 Subject: [PATCH 13/49] add missing roles directory --- .../roles/mariadb_backup/defaults/main.yml | 79 ++++++++++++++ .../roles/mariadb_backup/handlers/main.yml | 4 + .../kolla/roles/mariadb_backup/tasks/main.yml | 8 ++ .../roles/mariadb_backup/tasks/manager.yml | 62 +++++++++++ .../roles/mariadb_backup/tasks/mariadb.yml | 34 ++++++ .../templates/mariadb-backup.sh.j2 | 63 +++++++++++ .../templates/mariadb-extract.sh.j2 | 103 ++++++++++++++++++ .../mariadb_backup/templates/rclone.conf.j2 | 33 ++++++ .../templates/systemd-service.j2 | 11 ++ .../mariadb_backup/templates/systemd-timer.j2 | 9 ++ 10 files changed, 406 insertions(+) create mode 100644 environments/kolla/roles/mariadb_backup/defaults/main.yml create mode 100644 environments/kolla/roles/mariadb_backup/handlers/main.yml create mode 100644 environments/kolla/roles/mariadb_backup/tasks/main.yml create mode 100644 environments/kolla/roles/mariadb_backup/tasks/manager.yml create mode 100644 environments/kolla/roles/mariadb_backup/tasks/mariadb.yml create mode 100644 environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 create mode 100644 environments/kolla/roles/mariadb_backup/templates/mariadb-extract.sh.j2 create mode 100644 environments/kolla/roles/mariadb_backup/templates/rclone.conf.j2 create mode 100644 environments/kolla/roles/mariadb_backup/templates/systemd-service.j2 create mode 100644 environments/kolla/roles/mariadb_backup/templates/systemd-timer.j2 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..e3fd2d505 --- /dev/null +++ b/environments/kolla/roles/mariadb_backup/defaults/main.yml @@ -0,0 +1,79 @@ +--- +# ============================================================================= +# roles/mariadb_backup/defaults/main.yml +# Lowest precedence — override anything via group_vars / host_vars / -e. +# ============================================================================= + +# Which part of the role to run. Set per play by the playbook. +mariadb_backup_component: "manager" # control | manager + +# --- Inventory targeting (also referenced by the playbook's hosts:) --------- +# backup_control_pattern: "control[0]" +# backup_manager_pattern: "manager" + +# --- Manager -> control remote execution ------------------------------------ +mariadb_backup_node: "" +mariadb_backup_ssh_key: "/opt/ansible/secrets/id_rsa.operator" +mariadb_backup_node_address: "{{ hostvars[mariadb_backup_node]['internal_address'] }}" # REQUIRED: mgmt hostname/IP of control[0] +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 ------------------------------------------------------------------ +mariadb_backup_config_dir: "/etc/kolla/mariadb-backup" +mariadb_backup_destination_dir: "/srv/mariadb-backup" # control node +mariadb_backup_destination_dir_manager: "{{ mariadb_backup_destination_dir }}" +mariadb_backup_destination_dir_mariadb: "{{ mariadb_backup_destination_dir }}" +mariadb_backup_extract_script: "/usr/local/bin/mariadb-extract.sh" +mariadb_backup_orchestrate_script: "/usr/local/bin/mariadb-backup.sh" +mariadb_backup_volume: "mariadb_backup" +mariadb_backup_docker_volume_dir: "/var/lib/docker/volumes" +mariadb_backup_backup_volume_dir: "/var/lib/docker/volumes/{{ mariadb_backup_volume }}/_data" +# --- GPG (asymmetric; control node holds the PUBLIC key only) --------------- +mariadb_backup_gpg_recipient: "" +mariadb_backup_gpg_public_key_src: "" # path to .asc on the Ansible controller + +# --- rclone (runs as a container; config + disk are bind mounts) ------------ +mariadb_backup_rclone_docker_registry: "ghcr.io" +mariadb_backup_rclone_docker_image: "rclone/rclone" +mariadb_backup_rclone_docker_tag: "1.74.3" +mariadb_backup_rclone_image_full: "{{ mariadb_backup_rclone_docker_registry }}/{{ mariadb_backup_rclone_docker_image }}:{{ mariadb_backup_rclone_docker_tag }}" +mariadb_backup_rclone_config_file: "{{ mariadb_config_dir }}/rclone.conf" + +# --- rclone remotes --------------------------------------------------------- +mariadb_backup_sftp_remote: "sftp-mariadb" +mariadb_backup_s3_remote: "s3offsite" +mariadb_backup_local_remote: "manager-local" +mariadb_backup_local_s3_union_remote: "backup" + +# Off-site S3 remote +mariadb_backup_s3_hostname: "api.bfe2.teutostack.de" +mariadb_backup_s3_port: "6780" +mariadb_backup_s3_endpoint: "https://{{ mariadb_s3_backup_s3_hostname }}:{{ mariadb_s3_backup_s3_port }}" +mariadb_backup_s3_provider: "ceph" +mariadb_backup_s3_bucket: "mariadb-backups" +mariadb_backup_s3_virtual_hosted_style_bucket: false +mariadb_backup_s3_path: "" +mariadb_backup_s3_region: "" +mariadb_backup_s3_access_key_id: "" +mariadb_backup_s3_secret_access_key: "" + +# --- Object Lock / WORM (off-site S3) --------------------------------------- +mariadb_backup_object_lock_mode: "GOVERNANCE" # GOVERNANCE | COMPLIANCE | "" (disable) +mariadb_backup_retention_hourly: "3" +mariadb_backup_retention_daily: "7" +mariadb_backup_retention_weekly: "28" # 4 weeks +mariadb_backup_retention_monthly: "365" # 12 months + +# --- Schedules (systemd OnCalendar) ----------------------------------------- +mariadb_backup_schedule_full: "*-*-* 00:00:00" +mariadb_backup_schedule_incremental: "*-*-* 01..23:00:00" +mariadb_backup_schedule_weekly: "Mon *-*-* 03:00:00" +mariadb_backup_schedule_monthly: "*-*-01 04:00:00" +mariadb_backup_timer_persistent: false + +mariadb_backup_jobs: + - { type: "full", schedule: "{{ backup_schedule_full }}" } + - { type: "incremental", schedule: "{{ backup_schedule_incremental }}" } + - { type: "weekly", schedule: "{{ backup_schedule_weekly }}" } + - { type: "monthly", schedule: "{{ 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..986736070 --- /dev/null +++ b/environments/kolla/roles/mariadb_backup/tasks/manager.yml @@ -0,0 +1,62 @@ +--- +- 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: "dragon" + group: "dragon" + mode: "0750" + loop: + - "{{ mariadb_backup_destination_dir_managers }}" + - "{{ mariadb_backup_config_dir }}" + +- name: Render rclone.conf + ansible.builtin.template: + src: rclone.conf.j2 + dest: "{{ mariadb_backup_rclone_config_file }}" + owner: "dragon" + group: "dragon" + mode: "0600" + when: mariadb_backup_manage_rclone_config | bool + +- 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 }}" 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..c577fb005 --- /dev/null +++ b/environments/kolla/roles/mariadb_backup/tasks/mariadb.yml @@ -0,0 +1,34 @@ +--- +- name: Create directories on control node + ansible.builtin.file: + path: "{{ item }}" + state: directory + owner: root + group: root + mode: "0750" + loop: + - "{{ mariadb_backup_destination_dir_managers }}" + - "{{ mariadb_backup_config_dir }}" + +- name: Deploy GPG public key (from controller file) + ansible.builtin.copy: + content: "{{ mariadb_backup_gpg_public_key }}" + dest: "{{ mariaidb_backup_config_dir }}/backup-pub.asc" + owner: root + group: root + mode: "0644" + +- name: Import GPG public key + ansible.builtin.command: + cmd: "gpg --import {{ mariaidb_backup_config_dir }}/backup-pub.asc" + register: _gpg_import + changed_when: "'imported' in _gpg_import.stderr" + failed_when: _gpg_import.rc != 0 and 'unchanged' not 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: "0750" 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..0f1b9295a --- /dev/null +++ b/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 @@ -0,0 +1,63 @@ +#!/usr/bin/env bash +# Managed by Ansible (role: mariadb_backup). +# Orchestrates one backup run end-to-end from the manager. rclone runs as a +# container with the config dir and the manager disk dir bind-mounted. All +# config is rendered from Ansible variables at deploy time. +set -euo pipefail + +TYPE="${1:?usage: $(basename "$0") full|incremental|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 \ + -v {{ mariadb_backup_rclone_config_file }}:/config/rclone.conf:ro \ + -v { mariadb_backup_ssh_key }}:{{ mariadb_backup_ssh_key }}:ro \ + -v "{{ mariadb_backup_destination_dir_manager }}:{{ mariadb_backup_destination_dir_manager }}" \ + {{ mariadb_backup_rclone_image_full }} --config /config/rclone.conf "$@" +} + +case "$TYPE" in + full) + osism apply facts + osism apply mariadb_backup -e mariadb_backup_host={{ mariadb_backup_node }} + sub="daily"; ret="{{ mariadb_backup_retention_daily }}" ;; + incremental) + osism apply mariadb_backup -e mariadb_backup_type=incremental -e mariadb_backup_host={{ mariadb_backup_node }} + sub="hourly"; ret="{{ mariadb_backup_retention_hourly }}" ;; + weekly) + sub="weekly"; ret="{{ mariadb_backup_retention_weekly }}" ;; + monthly) + sub="monthly"; ret="{{ mariadb_backup_retention_monthly }}" ;; + *) echo "unknown type: $TYPE" >&2; exit 2 ;; +esac + +# 2+3. extract/encrypt (full/incr) or promote (weekly/monthly) on control node +{{ mariadb_backup_remote_exec }} {{ mariadb_backup_extract_script }} "$TYPE" + +# 4. pull encrypted subtree from control node to manager disk (Copy 1) +rclone_run copy + "{{ mariadb_backup_sftp_remote }}:{{ mariadb_backup_destination_dir_mariadb }}/${sub}" \ + "{{ mariadb_backup_local_s3_union_remote }}:${sub}" \ + --s3-object-lock-mode {{ mariadb_backup_object_lock_mode }} \ + --s3-object-lock-retain-until-date "${ret}d" + +echo "mariadb-backup: ${TYPE} complete" + +# 5. GC the manager disk copy (non-WORM); S3 is governed by Object Lock + lifecycle +GC_COMMON_FILTER="-type f -name '*.mbs.gz.gpg'" +case "$TYPE" in + full) + find "{{ mariadb_backup_destination_dir_manager }}/daily" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_daily }} -delete 2>/dev/null || true + {{ mariadb_backup_remote_exec }} "{{ mariadb_backup_destination_dir_mariadb }}/daily" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_daily }} -delete 2>/dev/null || true;; + incremental) + find "{{ mariadb_backup_destination_dir_manager }}/hourly" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_hourly }} -delete 2>/dev/null || true ;; + weekly) + find "{{ mariadb_backup_destination_dir_manager }}/weekly" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_weekly }} -delete 2>/dev/null || true ;; + monthly) + find "{{ mariadb_backup_destination_dir_manager }}/monthly" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_monthly }} -delete 2>/dev/null || true ;; + *) echo "unknown type: $TYPE" >&2; exit 2 ;; +esac +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..5dc635d5a --- /dev/null +++ b/environments/kolla/roles/mariadb_backup/templates/mariadb-extract.sh.j2 @@ -0,0 +1,103 @@ +#!/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") full|incremental|weekly|monthly}" +read -r NOW_Y NOW_m NOW_d ISOY ISOW NOW_H <<<"$(date -u +'%Y %m %d %G %V %H')" + +[ -d "{{ mariadb_backup_destination_dir_mariadb }}" ] || mkdir -p "{{ mariadb_backup_destination_dir_mariadb }}" + +# --- 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 volume="${1:-.}" + 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 < <(find "$volume" -mindepth 1 -maxdepth 1 -type d -name 'incr-*') + + [[ -n "$best_dir" ]] && printf '%s\n' "$best_dir" +} + +# Build the staging-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") + echo "k: $k | f1: $f1 | f2: $f2 | f3: $f3 | f4: $f4 | f5: $f5 | f6: $f6 | rest: $rest" + if [[ "$k" == "full" && "$f3" =~ ^[0-9]{4}$ ]]; then + printf 'daily/%s/%s/%s' "$f3" "$f2" "$f1" + elif [[ "$k" == "incremental" && "$f6" =~ ^[0-9]{4}$ ]]; then + printf 'hourly/%s/%s/%s/%s' "$f6" "$f5" "$f4" "$f1" + 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 + full) srcdir=$(current_full_dir); rel=$(parse_daily_rel "$(basename "${srcdir:-x}")") ;; + incremental) srcdir=$(newest_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:-}" || ! -d "$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}" +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 2>/dev/null || true +# Delete empty directories +sudo find "{{ mariadb_backup_backup_volume_dir }}" -type d -empty -delete 2>/dev/null || 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..d61fee12f --- /dev/null +++ b/environments/kolla/roles/mariadb_backup/templates/rclone.conf.j2 @@ -0,0 +1,33 @@ +# Managed by Ansible (role: mariadb_backup). +[{{ mariadb_backup_sftp_remote }}] +type = sftp +host = {{ mariadb_backup_node_address }} +user = {{ mariadb_backup_node_user }} +{% if mariadb_backup_ssh_key %} +key_file = {{ mariadb_backup_ssh_key }} +{% endif %} +shell_type = unix + +[{{ mariadb_backup_s3_remote }}] +type = s3 +provider = {{ mariadb_backup_rclone_s3_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) | str | lower }} +# Don't try to create a bucket +no_check_bucket = true + +[{{ mariadb_backup_local_remote }}] +type = local + +[{{ mariadb_backup_local_s3_union_remote }}] +type = union +upstreams = {{ mariadb_backup_s3_remote }}:{{ mariadb_s3_backup_s3_bucket }}{% if mariadb_s3_backup_s3_path }}{{ mariadb_s3_backup_s3_path }}{% endif %} {{ mariadb_backup_local_remote }}:{{ mariadb_backup_destination_dir_manager }} +action_policy = epall +create_policy = epall +search_policy = epall 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..340f18574 --- /dev/null +++ b/environments/kolla/roles/mariadb_backup/templates/systemd-service.j2 @@ -0,0 +1,11 @@ +[Unit] +Description=MariaDB backup ({{ item.type }}) +After=network-online.target docker.service +Wants=network-online.target +Requires=docker.service + +[Service] +Type=oneshot +User=dragon +Group=dragon +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 From 1ffe0b37389f83973a481a1db7ade6624f162e65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Thu, 25 Jun 2026 15:29:18 +0200 Subject: [PATCH 14/49] fix typos --- environments/kolla/configuration.yml | 1 + .../kolla/playbook-deploy-mariadb-backup.yml | 2 +- .../roles/mariadb_backup/defaults/main.yml | 21 +- .../roles/mariadb_backup/tasks/manager.yml | 7 +- .../roles/mariadb_backup/tasks/mariadb.yml | 4 +- .../mariadb_backup/templates/rclone.conf.j2 | 6 +- environments/kolla/secrets.yml | 3157 ++++++++--------- 7 files changed, 1597 insertions(+), 1601 deletions(-) diff --git a/environments/kolla/configuration.yml b/environments/kolla/configuration.yml index 6029e47de..9d844973a 100644 --- a/environments/kolla/configuration.yml +++ b/environments/kolla/configuration.yml @@ -126,3 +126,4 @@ om_enable_rabbitmq_quorum_queues: false mariadb_s3_backup_s3_bucket: backup-testbed mariadb_backup_gpg_recipient: backup@testbed.osism.xyz mariadb_backup_node: "testbed-node-1" +mariadb_backup_s3_hostname: "api.bfe2.teutostack.de" diff --git a/environments/kolla/playbook-deploy-mariadb-backup.yml b/environments/kolla/playbook-deploy-mariadb-backup.yml index 0cc339d34..380969a0e 100644 --- a/environments/kolla/playbook-deploy-mariadb-backup.yml +++ b/environments/kolla/playbook-deploy-mariadb-backup.yml @@ -5,7 +5,7 @@ roles: - role: mariadb_backup vars: - mariadb_backup_component: control + mariadb_backup_component: mariadb - name: MariaDB backup — manager hosts: "manager" diff --git a/environments/kolla/roles/mariadb_backup/defaults/main.yml b/environments/kolla/roles/mariadb_backup/defaults/main.yml index e3fd2d505..8619a76bd 100644 --- a/environments/kolla/roles/mariadb_backup/defaults/main.yml +++ b/environments/kolla/roles/mariadb_backup/defaults/main.yml @@ -4,9 +4,6 @@ # Lowest precedence — override anything via group_vars / host_vars / -e. # ============================================================================= -# Which part of the role to run. Set per play by the playbook. -mariadb_backup_component: "manager" # control | manager - # --- Inventory targeting (also referenced by the playbook's hosts:) --------- # backup_control_pattern: "control[0]" # backup_manager_pattern: "manager" @@ -31,14 +28,14 @@ mariadb_backup_docker_volume_dir: "/var/lib/docker/volumes" mariadb_backup_backup_volume_dir: "/var/lib/docker/volumes/{{ mariadb_backup_volume }}/_data" # --- GPG (asymmetric; control node holds the PUBLIC key only) --------------- mariadb_backup_gpg_recipient: "" -mariadb_backup_gpg_public_key_src: "" # path to .asc on the Ansible controller +mariadb_backup_gpg_public_key: "" # path to .asc on the Ansible controller # --- rclone (runs as a container; config + disk are bind mounts) ------------ mariadb_backup_rclone_docker_registry: "ghcr.io" mariadb_backup_rclone_docker_image: "rclone/rclone" mariadb_backup_rclone_docker_tag: "1.74.3" mariadb_backup_rclone_image_full: "{{ mariadb_backup_rclone_docker_registry }}/{{ mariadb_backup_rclone_docker_image }}:{{ mariadb_backup_rclone_docker_tag }}" -mariadb_backup_rclone_config_file: "{{ mariadb_config_dir }}/rclone.conf" +mariadb_backup_rclone_config_file: "{{ mariadb_backup_config_dir }}/rclone.conf" # --- rclone remotes --------------------------------------------------------- mariadb_backup_sftp_remote: "sftp-mariadb" @@ -47,10 +44,10 @@ mariadb_backup_local_remote: "manager-local" mariadb_backup_local_s3_union_remote: "backup" # Off-site S3 remote -mariadb_backup_s3_hostname: "api.bfe2.teutostack.de" +mariadb_backup_s3_hostname: "" mariadb_backup_s3_port: "6780" -mariadb_backup_s3_endpoint: "https://{{ mariadb_s3_backup_s3_hostname }}:{{ mariadb_s3_backup_s3_port }}" -mariadb_backup_s3_provider: "ceph" +mariadb_backup_s3_endpoint: "https://{{ mariadb_backup_s3_hostname }}:{{ mariadb_backup_s3_port }}" +mariadb_backup_s3_rclone_provider: "Ceph" mariadb_backup_s3_bucket: "mariadb-backups" mariadb_backup_s3_virtual_hosted_style_bucket: false mariadb_backup_s3_path: "" @@ -73,7 +70,7 @@ mariadb_backup_schedule_monthly: "*-*-01 04:00:00" mariadb_backup_timer_persistent: false mariadb_backup_jobs: - - { type: "full", schedule: "{{ backup_schedule_full }}" } - - { type: "incremental", schedule: "{{ backup_schedule_incremental }}" } - - { type: "weekly", schedule: "{{ backup_schedule_weekly }}" } - - { type: "monthly", schedule: "{{ backup_schedule_monthly }}" } + - { type: "full", schedule: "{{ mariadb_backup_schedule_full }}" } + - { type: "incremental", schedule: "{{ mariadb_backup_schedule_incremental }}" } + - { type: "weekly", schedule: "{{ mariadb_backup_schedule_weekly }}" } + - { type: "monthly", schedule: "{{ mariadb_backup_schedule_monthly }}" } diff --git a/environments/kolla/roles/mariadb_backup/tasks/manager.yml b/environments/kolla/roles/mariadb_backup/tasks/manager.yml index 986736070..4e9a1b2d4 100644 --- a/environments/kolla/roles/mariadb_backup/tasks/manager.yml +++ b/environments/kolla/roles/mariadb_backup/tasks/manager.yml @@ -11,17 +11,16 @@ group: "dragon" mode: "0750" loop: - - "{{ mariadb_backup_destination_dir_managers }}" + - "{{ 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: "dragon" - group: "dragon" + owner: "root" + group: "root" mode: "0600" - when: mariadb_backup_manage_rclone_config | bool - name: Deploy manager orchestrator script ansible.builtin.template: diff --git a/environments/kolla/roles/mariadb_backup/tasks/mariadb.yml b/environments/kolla/roles/mariadb_backup/tasks/mariadb.yml index c577fb005..6af4a83ff 100644 --- a/environments/kolla/roles/mariadb_backup/tasks/mariadb.yml +++ b/environments/kolla/roles/mariadb_backup/tasks/mariadb.yml @@ -1,5 +1,5 @@ --- -- name: Create directories on control node +- name: Create directories on mariadb node ansible.builtin.file: path: "{{ item }}" state: directory @@ -7,7 +7,7 @@ group: root mode: "0750" loop: - - "{{ mariadb_backup_destination_dir_managers }}" + - "{{ mariadb_backup_destination_dir_mariadb }}" - "{{ mariadb_backup_config_dir }}" - name: Deploy GPG public key (from controller file) diff --git a/environments/kolla/roles/mariadb_backup/templates/rclone.conf.j2 b/environments/kolla/roles/mariadb_backup/templates/rclone.conf.j2 index d61fee12f..e8f667b6a 100644 --- a/environments/kolla/roles/mariadb_backup/templates/rclone.conf.j2 +++ b/environments/kolla/roles/mariadb_backup/templates/rclone.conf.j2 @@ -2,7 +2,7 @@ [{{ mariadb_backup_sftp_remote }}] type = sftp host = {{ mariadb_backup_node_address }} -user = {{ mariadb_backup_node_user }} +user = dragon {% if mariadb_backup_ssh_key %} key_file = {{ mariadb_backup_ssh_key }} {% endif %} @@ -18,7 +18,7 @@ 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) | str | lower }} +force_path_style = {{ (not mariadb_backup_s3_virtual_hosted_style_bucket | bool) | lower }} # Don't try to create a bucket no_check_bucket = true @@ -27,7 +27,7 @@ type = local [{{ mariadb_backup_local_s3_union_remote }}] type = union -upstreams = {{ mariadb_backup_s3_remote }}:{{ mariadb_s3_backup_s3_bucket }}{% if mariadb_s3_backup_s3_path }}{{ mariadb_s3_backup_s3_path }}{% endif %} {{ mariadb_backup_local_remote }}:{{ mariadb_backup_destination_dir_manager }} +upstreams = {{ mariadb_backup_s3_remote }}:{{ mariadb_backup_s3_bucket }}{% if mariadb_backup_s3_path %}{{ mariadb_backup_s3_path }}{% endif %} {{ mariadb_backup_local_remote }}:{{ mariadb_backup_destination_dir_manager }} action_policy = epall create_policy = epall search_policy = epall diff --git a/environments/kolla/secrets.yml b/environments/kolla/secrets.yml index ed4d9eb5f..9959d4091 100644 --- a/environments/kolla/secrets.yml +++ b/environments/kolla/secrets.yml @@ -1,1580 +1,1579 @@ $ANSIBLE_VAULT;1.1;AES256 -66323235373765663464643664313936396136313961343966376361336661373963326661353239 -6162333862346464396137316639313737616132303062660a393861393532613930613538643161 -30323337663235313763613634613934613165373832366536353236343933343764353035653864 -3932356334616465360a386539633935633738393339313763346162653735653963303732366233 -37393037383731313033613430373763623464623966616364626662316161333136613135346534 -30613463373362636630336632616432626539363533373338323330303565363161656266313861 -36316534646335373436666334386661356330386639393537643236666334393030396431323335 -30376162373935333038333365303831343162633234663034626633663961633266313437363963 -65656530643764653436343063346461653566643234633163363536656434636265323335623163 -33313237366236653535623339356130303162623162633265386661613764663136333461396438 -38613633363564313433363762376665656438313432316365336532376564653132633033333531 -35366531386437393964643537393764313164646361316163326134336534373931636437663631 -63343335316530346465333364616430333737356333373634636537663535626239306335616234 -32633633346431626237333962303537663963363034393937343037623134313564326562313230 -31303365353462313939313463373337343738623539383566313634653335366661623033313761 -61393332363835353861646662323234636661663436633238333332636338383038383738333136 -66373865643564363030373535383862323538386366653732623164396166303533653635353137 -37646466346361353864643033646666623831366536323164376563636430656439316661663063 -63343637633764383533313737623835333962393233616637313730363836633730363564343163 -36316264333961333164616464666132623064653338626139343538383665666662326165633162 -35383935646134623064383334386637346362656363323265363461363436313438343133366137 -65333633653536356131656536346232323134316532643139383262363538306534613162363063 -32303533613165373863333539353562353730393964663935613564376166366134313163653963 -38313564353034666633666264363161666438363866336231306339323332333136666537653261 -65363335666433386262393635326632326634616161663036326262623036643964653965326161 -38346438343735623435313862376434613430613364373764383337393230653435336462323332 -33616535623131613062616430363337306466373431303661386465396134333234323539343063 -32336431663461383036333833363034633633333061333763313161653063313965373265353637 -36626265323036623365636539376364653263393531306362366532333265343063653337613538 -39613134373635326630633661343530666134306563653031316462653338313763366333363633 -34313033623139353733343931306434356338623764316466653131323964653862353838613963 -39363733343635393930393737626665363461663731316536386631643239336437356262326339 -33626334323164303633346161636265393561613338653866623365376465626562313331396462 -37326138643664653962383765323766396437393432646131363630333666616466356430376562 -36343762613562303766613930336465393665643938626361623331333665646562366634623064 -39396462346230323838633466393438356232356231653931363063363137613332646433326532 -33376363633936626339633164393762643163393336663230666339636365663632393363353863 -63353863323435333335303166363366383165313962653261663366633634303933323233393161 -33616261393933333430626231663538393563323932323761333163386438356638386236386134 -39613739633230656639386637653738386636643239343939636461653062393363663363623239 -35643765383363396439663936396639393665653865356563343739653665376437373839306365 -39623438393235306437633537366634646461353134613430666463633766373961313164623264 -61626634306466386339333462653533616536623562656132633938306639666463646363336436 -35326361643732613939313866626535636264666363313837326530666635643264383231636332 -39656166383334643131333931323430333234306337613131626330373666636236303364303563 -36363133626464333531633564633062363035313035623863643234653663396535343165313961 -64656333363366363666306661316662396437663865656632393562613334653262386366346536 -33313730616633633766313634646631613930333038363166326231313164646361356434656562 -30643163363463633439396463613431646235353130313761626163323764656331353261623761 -39363565346536353430643036646662353839663365353635343266643864653465383431633933 -62383462636231393030343330623430626264383737633364353831333537363436373632323533 -65313438386134363765356130643333383263636430306362653663326463363034626230323536 -37373635373234623931653637646661623131383065323738343561313739643138666234306666 -38636338353036633136393665353438663266383465633232613831373639326465336634346332 -64346533363236336539306362663332343038306332633132656261326537646431373463633931 -36386338383930646464623266363162323932626663343330626136623835636539343465323233 -61363136323065303465313830353534616661666633323237343430613064343633386430643032 -64643136663231623061643336316439356435313633623263633263313830353030343632366235 -31316364333938373133663966326334363439363663616634373632366133633034653261336331 -61313965646330376464353936323439383236326337663033613036373466323939616163626130 -39383634346330353037626337636234346239376139386637303739366131306435613638303062 -63336638383637653537323532343564653462383165353432343963623139386532383530363838 -36396138333434333166343230623266336238303537346332656533373761656632383030346566 -39663365616365663832366663336135333563373035623538326231366636336561313236323662 -62623831613365306361646538633365623932306665333033646639333863306637316533346535 -32383739326239313636666336316330363231366366373131323862346562626263313435323737 -65316665336565383533326561653237616163386338646163363232653032613936656234323434 -30626265656635316265313763303662356434353966343364653639613537653937313937306331 -62653764643338383235303836663033633036383030643836393461643134373934396463383333 -62316161313330393564376535646134663935646333613831653231313331346661643262326530 -36323235393138653865653636336135366161386136623366326135393364303163363966326238 -32383030363436356263336330363864646432373865623966636262613233353466326664306665 -38613530623737313032383966356434626634336138313466356533663233323634626561663131 -31643037353131346137313631623061643263343232623234346163646232663666363936393130 -39653832396435393665626637393737313435313630656232336164643666343531383836303938 -30323935656630613266323230363065383237643234656162386561373337373661393739336438 -63383734313362363066346563343339306432336433373664323834313135303135386239666265 -66336662636631343365373066666464653163346362316134616666383234666364653335626664 -38346461376131646632656134633761346437663839383133623564613561316533633936393163 -61396133306335633932386336306239663865633034343636306336646337376666346264623664 -36303463326139333136616563353464316333653865633839663262663565366336613038623061 -36313032333737643337623535613735636133383436386666313861393232333038326637643534 -37636634383035393631383965663862356439623532376437656537373730366462373033346239 -36346639363963333335643935303939363033623834333063613633346332326537316565623930 -63316365336665656631666532373966373235666335306136366266373264653863383535396564 -33633565303934616163353266393236373938363961323732333832363937373962396334346430 -65393263376461386265323538626638303564663734646566356234333633366364616639326537 -36663636363963363537366364613062393630623635663632313435323738646130653032336462 -63613239616662613531633234623633316562393761356637366638366138353765316139343835 -65396235363463623334643630626461313030663138363537626362646137373038666232316137 -62373831313836303330363038366431383935326139336439373939383531356637656461323330 -66383463663333376665636639343761356433363164653338373732663139373963306335666233 -38386666656362636335396430373437333934633964376638643735376237643038323536343137 -37636465643333333436666432393134613034306165313739363362376331643239336335373530 -33396431343664656531633437306538356430626662653165313764663937353935626237373132 -64336533343764356537663832333862643630633161636665666163623866643138636131356234 -61386337353364353361643361666339383039643063306235646238396438653032356164386131 -39376563333964366562323239653431393663343031333537626234656265323530643238613461 -31336432336263383631373535633130396332353232323635356561653837626661363432653533 -37636231666163376163333538343565353632363631393433396434356635653832396465346632 -66363534646563303135323937653434623864323939626464353639383736336135323161653861 -31313162366432623935626164373735643738313639306339643536643831646532383536386237 -30303734353333626334313530383139653834383130663639326635303631346133313539663337 -64666136663638393535643838333066313161666539396261303637313533386138336532386533 -39396566343365363133363134393636393233666136633663386435653136396339656165623632 -38326162306365303034323766373831623764363562393037353866633231373331396465653433 -61386135333536656331343835653131643530646436623730333637363737353663383066356331 -30326331343131366135643731326166613439383437623837666632633231623931613363326435 -65363462353464393764346661643130623761306464623634306362306139376239623831663063 -36633364303462323163393632643137343730663766646330313031623363343564626665333836 -31393539373066643638333038323537613530356565666564623039356637393362363938663365 -36623234323737353739623036363639376631333235366336323363666364663564333166333362 -30313663653834653337383863306333643637623635653936393236326331356337313938356532 -61636264633865656663383334643936353536613639333631396533383563666633336232386639 -34383532373835666334376131626365333731633732333365643439303937313531353236343661 -64646361383966626463663337353964373763646230366337666634343831303738616135633034 -35376135633564363130643565353939633061376135316339366430376364383061373632346262 -35633232396563383264313634633563306431653763643130666261363135336434373432396338 -64303562396163323436333661343634643433613931336161616138373430396563626537386137 -33356366373462306539636239356538343961343439396638386366343035356338656131356438 -34613739343537313561646131616165666630346431646238326461303830623239623364336631 -32363130653435383031383135616665353430386562393330366237336239323836613864313439 -64643636616261313363376261336237396465313864623530653765333436386364333036636266 -37393166383263333866643765626637633761343631623566656137633130623961656365383663 -32343533613131336535363832663530386262306639646538653739383038313030633966653039 -32616336643639363230323066386164313564643538333962343538653963653038613665353237 -36643361306330333561366165363462356530313638343266316535376238366131323865383038 -63613538313466636230386530633036393938373833623230383932613762643661323035306364 -66346164306432613562656661326137663730333665303737333130623237303666646235343265 -32336437656663353835636235363332316461333961363131316336643932323535653166616233 -66306266396538363066323133353231333362306564323633623465653961643931646235393730 -31326165646130663935353337653666373238333131393265396239653437303165616636333531 -36383933613534356434333365636565303062346235303363663264663466326366623637633339 -38663062363463313839663563353633613635356637306631346166623662643638346563653663 -32666231326639643839396432303266613833376534343439393632613535656437666135313032 -37636435353838346664626338346234363031633866333938376237323632346634363734396365 -35366363623362623864663931613330396662313762393139623662396633366231623836343064 -38303634633539373234653163333231303437646237343436623562386433646338653865313435 -34313064636261393032346261613139356564646361366435663338366465356436663938363437 -64653139323632383236356530306164633831383966633132313563613531306465383034353761 -31353762643764363231356233613238376332663637633330313961323434383564323563633130 -32653666616337303266323666386562656564646432376632393564323537636133666436313136 -62623339336164316539666232646238393232393937626436396237373733366466393531303039 -32653432623738363232363733343666383534373161386264376137303061353665626435626334 -35373835636665623833646439393064366539363461343262313330383534326332313138343034 -36613636313263373737376232643137383634376134623734393035633131373735373639386632 -38343433636431363136373135326665366331373530376462653231646531643835346138653037 -37646666666334333034313363636631336339313234346332313634373035636238623639363634 -34646637613736373163363537613835396563633339636339393332346261313432313738306333 -61363565636137616336613533323165373361623637336134326263346232653035633534366366 -32356530366130313836343639383663626137623434343134656265666464666366653566343938 -36373239653362346461653032333166656463613437363633613331313838643239396564356233 -61373566663233366133323234323365383161623464383036646339646431646664313635333337 -34306536666432323336356665353066666635623434353464306631313533633931646164323764 -62373735633964613039633663343436646136306335663233386538336635366536613934396534 -30373161303766323831313961316464613033623363663563396662643064626635366362313561 -66346664333430353266613932666539383537663133663630376433336235646264636636373631 -32363331636662333232616562663864616434356363306663663531303565323061346335376563 -35663036373838333635333431306633326531366363333738383532343831356336386339373835 -35303434313331653965633035306164303433303036613532313630616635313665373431643239 -37393835366165343337323565396138656363643732353539616535616366633763653261373238 -33343261323866396137396532643334316139373535653739353239343834376131346638316435 -38333765323564656135306232613936613535326134366332333837383032306334336463383239 -35346633626530383737396530633665663164613862653636396437643261653365363465343737 -33303132373531336639393539613538643431653663316365333537326539326136356264393730 -33353639383466663164336533376135333262646237616137316637643337343666643962386234 -31373036663461333730323132326533323165653733666432663762646137343965343137343635 -62326662363931363364346633616438616236646264316331626364373266343739313466373339 -66356661616437343062343065323932393432663165363631366132643838396338373364633934 -32346234386363626339393932303965363163643933623132383030343036393533376461323636 -62396562376435653166313437356165306532663961383062316266623139613830343338653161 -35633065363735323164363562636138363834396233643233336634326161343138323131633632 -64616364333461626464316364343032393735663535623565336165373934323333316463386464 -31623331633833633065306333646133363730393130376464643332663031666261663065393666 -64306462633236616363393038356338306664313234663439316535393331366539356464323831 -66373566376232343464616466323837653365653738393936666538393831366639653038626133 -65343263363965653463346463666230363639393539303131663761393333626535333031383461 -38336139396237656266343038663734656631343830393239343930333733646538643731633366 -38623462623634373034393566663830666362636130643739303136383935646232303861343135 -33373438303235393962383831626364653364396132306332396463636361393661663061396130 -30303132386634643865656439383961366237373438393036623833303438323537396461643330 -31613739376666626137613634306535626131626566363865363030373766323866346631343933 -33343162653732653637373731396233633038363363653763353062363432356163636235343035 -37313664623636353333333834396534646138643462343463353838393762616564363465373064 -33363237643366343435656537383331323939396266303461373938626466643138633966633736 -63393439333862316663343937343666343138363332653265393931336434386336326531666137 -33636634383332366164306136643761643065303330306231316161636136663564393435353663 -36623939306263343666373064353932633533616531313162316539386631626661316239666139 -64343161346238613832396433306633343834616664306132353830613731333963326639643039 -31326635633533316462303136396665373239336165636534393961333066666265613564643538 -35646637373537643933316664666536363232363231636330363363323535366666636261613162 -63356561386265313035653733313932613732663461393936613364613763633861613135383761 -36396262656239623339366131633465613635646434366665373761336530373430653438376165 -62376363363061303831313064616532373435303932336338623339663036383563633165326234 -32306261336238653562653839623530376536326236346165313761636465363638306534336361 -32346637396664303662363830633530663964633032663963386664343833396638343039643235 -65336430656335616437313830396663306332346337653536663131346237346233386462636437 -61326634386463663337376232393866646239323238346336666235363236313266643562666339 -63643466633363353737643730393265653730653034376332646465343835393733363065626231 -65616134383730356461396435326336396635353064376238343539353461646431356164623962 -62663030393465326166653734336131663961366333393161643336313866333064373962333237 -65666231653862616234636532613937383934346433363461366333326639393331396530303865 -39663030613936326366356235303061343262643537663466393934353262356466663036303065 -30343662326534623939646133633237616165646266323231326264623363373733613163633263 -38633162613866653238643033323936323137353833393932353331663861613461666564613936 -64326439626232393161333935353634363264663336663235623064643930623533386264386663 -31653236356265373565396238363063396536366566353530356538393066343138643363343665 -65666533393764656434323834633830633930313864326161653332396336353537346638323764 -36386635316131653932386330616239313336313564333735653235366165343532613937346562 -65393333396664633364343331356431396638343336653730636533366461663539643630616333 -30323035373561636264353763343136353366303332383435323861633362336334353335666530 -34346430303038613435303063316534363063383537383433353461396235616639613966343136 -63366232303961636635316331396238646230393034326134346130663936623764343838363834 -37333534363565353932646238616430356433656365316234623862613836326537616533376230 -66643162303061326139323431303436373533633330663139656239303239316333626131303136 -34653036656234656362663361613332393730316437346530623464663335653239356362343564 -33656530303533653734653535623039333965303862386361346263303731656666633437353635 -37623535396438346530613134646335633663343566313832323239663766313961393439396566 -62643034333335663261323864343830356433316338386438333662353732316630353361363535 -61373735613339313038303162393462303735646632373138386535666633663739316166646139 -61383133613965646163316337383631613434343666353137623838333735623964616635643062 -65306633646330353662383865346237303931663938353162316538346330333230303638383136 -63356164336464396437373762333166383362393034623362646334393737343064383536623838 -37346338323532303636343337643364306232326562373938646463343264353136386638646632 -36616632613932663937616230633532636636643231363162613134313637626139303236373432 -65386266643038636463313964363565393831656135323032663661306362616133363434336435 -34343266356664653133373733393331666533643333393330333230656434613965343134343662 -38666439303732373466343265366336336138643535353832613232393961343761393662663764 -64666432353465356630613666353165663035646438643433333563316234346631353135376439 -37626631663565366437346162326266336630613764303261626239613236326561653539356235 -61336564366266366463356238303639323130646537616336383165303037393933323866316364 -37326161353063373238623237613965366636356630366538636532383739363665613433323031 -37313433393034643961326238613135373838386363346266633064356435613835653137666535 -61643661663430643336633735623661376536646436363465393532336665646331633535316465 -66333666326335643461393431666339393362336564656337326661616531343539393263313536 -31363932633332343161613033393334623938633461346631643836646635313534376632353834 -63363632343963633330323363303136623932616230353462333763343833626363396536396664 -37623766346365613932303065653734326634633066386230356266663162376631633839363966 -66643738623532636330386665613362373361313164653363343439353237623535626530353961 -30346134383835323566313466663336653862363033376237366333333761363639323137616132 -64623466646664336235336631663836636330316134326235363364353934396631386539663364 -61383431373636636163323733633431386166653635393133386630623738396531393966623262 -62363234643865383563303235666539633734373464313834393462343839353738626231636238 -65323662393061303932306333656363376338626434373638393864393635346663386633336631 -35333636653233656632623961393339343633623061383636313430333964636134343334383937 -65623666343665376134303034633032313031663135393833333934616363653263613661383766 -61626166656434653530393230353961363664353230633739623736646464323833333234633133 -33303963346462373964313832386235626631643662383763386638666438363865613735623361 -34316661303466383865396133623030636231396630623361646337353337646430326531363132 -66643464656337623133653965343564333939646439396466343530363036393064633366373732 -64306537663566663331336364356461653431383763616136366534383466353164376365386662 -33306533373936396433316663383664646238663636363963376333393030343835663538633833 -62646435633534376137663838653931326130353964643930353033383331363633393862643030 -33613634653530646632383036656432653836303363383233303563386364363238373230333130 -62646366663937376431663938336131306331393435316166363439383865666637393234646336 -37653466633664633132643137653834633735646232346665346430663435346535633136333336 -66646166363636353962373366323533666133323531326432363037663634393364383638373061 -32633466326238643535633338666135623437383565636166656234613663393231623464653666 -32343337313234303932313562316463316138396339653866333063616638303861306633633161 -38656234383762373464303661633333393365643065373539653063323832373838656165646534 -64616432313437316235646635336331653434376537636163666538636239643465356432336336 -32666663313165363662633538343536663136646235626465343237353661326362303538386431 -37353438616561356461333433336264393930373832653762326638643862356230306439396563 -64333132323635393962626265306235623163663634383739386330393932383266643234663230 -66376563633666323463643135366532636230316334653331613362393039343031373533373935 -61386233663838356532313962303034386161393365346465343064613436643062656362373565 -32386164323031373438663932393232633731633238353535336533396433356234633835646132 -61633936393563386633633732373565353762356437323632336164656330646364373638353465 -63313163346135633661626433373065623761616634306162653134666566336437316333373930 -31333336313063653439633462633538643065316239333533343838303262346566613631396561 -66323736633566323034343632383061333332336163386235333334373531396131616435633135 -62326161613666616634383236326436653337383638396130316664376431376433633831363534 -32633736643131663334383061623536633830663335303335343761393162356634646462663339 -64613135393861306332613830383439653238376339333435313364373432306637313766356665 -63666239653032633439306333653836306336626135663634613364313338393761646165323463 -63306134626131613538383562386331623030663637326439386166333737323664336536333932 -36363161363737313563336562366430613434356139383362613535366263656661653536356262 -38643261396263656433303033363165656639373566373232386262646631333866323939623661 -37326263383662623466373630346135626133363130666337346630623538306332353635386435 -62373232313137343965653033623162346334353534316233313065613766666435646462336264 -39333362386164393032386564623934646135313434626464386335303361313635343134343663 -35653961386535316362626634626534333161303936626438663066343233666230333162333165 -63313361653065333830333435326564336266353836363130383463313737393234663037316532 -61326466373332646166346265656163393064396166313761343636333032616533623038346264 -39303763353236373062323263363735326137303731613637373533313538396339303561373831 -32353265343061326239376162353931306238396564376461663135363532363432333637653436 -65613666313563343536323832306330353935393232653238653465623634353937343132316536 -39646633653837623466666334353835663232656264623033633661653532313638383665663930 -35346538643838343266316438356338363361376534633131373633346131396133316436316564 -66633865373265383939616638663861316231353462383961316661386435626564376666396131 -61373130383831336136623231363336653131323263346638303166336134393630613936633862 -37343963323564613361376663643237616166323766356334613731336639323362363164333335 -33323938373139376135356237323066306332623436663266363939626366636363336435303035 -34393737313132373635313033663333313331653665643538343931623735353063643230326264 -61313135336639303761313536306536346133356536613065303066306539343061383063323064 -38326330356366333236333938336633343661353939626435646266326239666362626361313337 -61393739313636376533616661383431333866363665316636326633643864323562663632313035 -61343635616630616234336661326431363562636337343538616563336339626638366137343461 -64326631643061323266353566343461623161303937636236646433313662356232626534636365 -30323331366535653936616132353232633431626637646230343564633066313864373935333938 -65376365346332613965383234633533373032666238343366633335623134333534336436353764 -37343866636639336531313763633830646564323336303362336432333536303961356135363139 -66393937336563623463333036363130303638353531643930643635303232373065626161343333 -36666139303139333432626263313861313163643535643039633131386565303839613039366265 -32323864353164373961373337363862646235323566656630306537636433623130326237323163 -61376532626533316235343739356135323832366562383738666632636133356134373830343137 -30663963383639313264373333633239643336336364343439636362303834623530373235666339 -34643562646134633935643563316564656434356230353631626236633739616436386336343732 -32343564656333636638376431303664633532616639303765333830626638383765333832633635 -64303862383231633237626466663531653931623765353764646131623736306234323962656631 -63356266656639303537616138663764313430656463323331323039353933333334623939613138 -30623739626233333737616664623532366161636235386332663864653738646230613064386131 -65346337323532613435386635323836323762643662366136643130633039393666383237616637 -61396166396131613136643861656266316636343834663732313933386439303563373262616163 -37333034656562636334316662313566316163366666336632393765393237346138353834616665 -66336132653431373766346464653232336164643631383734393732393635623466303964383538 -66656135376532313038663062666163336238303166353133656564316430303735633937376661 -64306564643235386437643238646530383961386263653762353033656665616434623061656635 -62313330653035393766383263383161303466346131383264303361346530646238333135346462 -31373739373834633730326461633863363031353161313539333165663266666337306637623630 -37323561366536636465636439323939326664356163306161336466663537616336393561303365 -39333330316433616530623563613764616434373538616534373538666336306335393038626138 -66356164393632366132366237666430623836366539376537393633616531303137613962346339 -61356632393233613864316236356564363434393339626230643231376436313831656565666431 -64306532613962383763303164303936373731633630383538623739633337353161373764373630 -62666533326538653464633637303830663035666539656165653633356538626534356466333864 -65306435333139643630616138616466353563326463306236376532323532383339656135636666 -35633730363839343539313236376165316633656132663763633633303033623933663166666338 -65393562333865326634643933363963626261326237333937376338613731323139643734363764 -66306262613432646466383332343030376131343864323539626564396533656465363161353763 -37633462353535353765383333343662663830623865633032363361373766326535303334393737 -61623330356135356139396136353266303762616333663932393436393863323163643330386637 -34623437616132633330333963373364653433363938636631643762376538316263323734306531 -37666433386633646235383338613762633431643963333365303035353961353836666539356430 -36616631633832306361646365356533623435633662353434313139363135336638623964353264 -63663036646464326231393138366439343165633038316337643837323330623961656334653261 -63353462313733656462323937663330636666346239303032323762653163336161643064653230 -62386330363466303038323137333037616438313833636535653363333239633837333737646233 -32633635306262326433343433383365626566373462373762316264373961626561636338643563 -64363364373263376666323639313761313862373936633463313237666530313735663864333463 -61336234393830346332653263636165333662666665626334313232303739663538636136316637 -38636566353830333265386636323561366165383739326363326431616539396434376639393030 -64616536343564336266653364396337646563383763363733623865656563616630646437646664 -61356434653237396532633965393163393539356537343138663361353139313432633032346261 -65333566613161663964373336343866623132373266656661633839643539336539393261633535 -30646431303166373962373332333737393330353935383339623234393763373963306566323731 -63396639376538333336613835666537666161643336613538373431343932663837643065663632 -65663235376164313639343862643638316434386164623736613932666532336162343035323234 -37303835656537333037373036326330326366623037633332626633376137323330393835383938 -37343231633963383165626336316561643065663734653836303761353861646631333066343561 -39323066663130663232366564346438316434383133343037666237616430653665633364663030 -36383266643032363362653864656665623631313038343162303765623265633962326466343661 -64363761393231353834383630626236373862636333663439333031383564626535633235663430 -38313564663739343032653536663130356565333566613836313433313463616138313531643734 -36626435306536613466616165643431393562653838393337386462623037363164303664656265 -35323963376334623333663630626162353638313130626166373531393131663762653837663937 -38353033656535313663343264346334383932313162626639623535303435396232633263326439 -66393538323562333834373837343631636233396539323338323963326265316130623634646164 -34633365363338316335396635393466666663613430353761356139633639306437333836666664 -37653039356363626266316364663264393562663838383264623536303832653333303965346434 -32633030646435353537313737353330616361616331346361653436343163383737636464323764 -37343830623864363436383635346234656434333532663964333639366137393734353966323633 -35393836333662316363343666336634633030346562396634396437366564623633356561653132 -61383036316565623431373934303333323734336338393435313164393631333032663865363065 -38303161326133303261636334386534643266613037336136663330303338306438653365316536 -31303234633534613839636561636638373132383730633066326336643134643134336264336630 -37333835313366616636313732353939343138303236353764333435656536353639633732343730 -35653637656632666630323331336130393135356664393632373139393039313163333166356133 -63373536656533323835303630306534663032356539653838323563346635316133393235363332 -64346563393964303261326134613163626233323434336536333766323730346638613339313138 -34383564643631323733393065643631313533623531376630613038386462346130373064313462 -30363539663664333265353264333535373433376437326163656238373634646437366132633434 -32616638336532633262326231323236326661383533386366323533313362386630613265303538 -33333336616132343961333234666332323039353164373165626561653334336564386132376565 -31353866336465646366346136366564353930666230663864666333313531326133623134306564 -63346165376533666135366132386463333831353431373132346434656366653336336133383331 -36613434343731656264373634346135613962373466336161646631346232353064393932323839 -63643362666637343137303263633062306330666637316339346131626535333337643333356633 -37633330623165396333393362393839643365663837333439336338393138643864326335633534 -66323332303233656234336534373538353938373131313862616530633062393639663565343636 -64633963653539383435326464656231346261343964643535373034346331356137346135623265 -35383330643238333832656163363737393237666531343237396564383738393435346665633438 -35623264373833303863333661366139323961333364353933386435623862643934356266396633 -61373538653535613263306665616265323839636665653364383362666230386462373238623232 -61316632643663643465376538353564613738373131343034333661353330323532323965666565 -65663239633263623533623539336632303261333762663435633737623331306332313266336630 -39353331393233613865363934393864336633323538386564326135356638373862373433616638 -65393838363037363638646131343331386461316537636435343662383562396463353564363239 -36626165353336313234653839306332663264376664313039376462613130306433316235356130 -36326661616239363665623962393363323637633161303135373239393639656239373235376630 -30656130653262613763306635376436343739633134626231633461363362303661383532623433 -61326439306432646134316239363664366132303231313864333963613138393961653865343262 -38666562633133356233303939646263623666373162373064626465613461343037336165303364 -63373962313061366132613630323865626563323261373264623239633036306335326666623363 -63653037633562393466323665316532323664393664353237363131653034626361646361306238 -36323263386439376163353338366236623066653562396535353137343633353761303932303938 -62316338646538343039623332383433363830316239383638643232353061626230343539356135 -66316239303639663137313933643466646639623366663936396666393032303432323263646166 -33373834646535646566626535353137663263633363623966623535303865383438346235616631 -37353366396337636136353935356362633831373964386339643865613238626433366437636538 -32653331616661623338616263366134323862306230353365313238373330393861393531326164 -31333831333034323161356632626537386433376236346639653435313339626638333864393464 -37386337303930316236373636323932323933663766663233313865663330643431303034633731 -38343430393636373138393134646137393664373231653761326539313136386465623836393566 -64656661366131316237633264383931303736346235633732303432326131326361626464643935 -61626265373166646365363235386634333135336535376630303038353134623037653764623737 -36366636336638656330313630396439396562633766343237336663326135316232616533666338 -30643737626264366137333535653735346563303831396463373664323261636438393933393035 -36373165343832343335356164393763336439376562303830303130653363336264396434616533 -66323031646362623839373534633939376233613734363835616562653265616532363064376537 -33633162393064386265333230653033376638383465613863333031376239643330363338636234 -32643033363432343066626630346262333237383166316365313139393963373262383733363535 -66356464623539303934376130636363343265373830303239353938316137353636343565366139 -39323864666339613131313764313366633934616230303362303030323964356137383465313138 -37376666393639396464346662303538613436326638383236643730626366313730346433316138 -61663934626530353730306564663965613562316237636665386334633031636538346331626466 -30376238353366346163643230353066336139613837653664643861333937366461343439363133 -64353239663232616666313535396261646235616433636437343662326263356132393133613866 -64613065623333353866666266356533373634306461313232326266396465356136303639613239 -64393164643233613430663036343838393662323136323665653836333433326233366334383839 -33323964666238333431656436316332643538636631383033346338313566323162626166386434 -35323237313366386365633231646163383231313363653737333562383962306439653337386638 -37366132663231663933656166323065633662343439333331363430653063326232643833396435 -36636537623936366330656535333235306631613037633535373435386266626664653732356439 -62333539323430646365633666373333316330613630366165643639383831633035346636666632 -32623536333264333830303662326135653661643236336135346131313931313861356332383732 -39613339613933323739393836393934623762663231613131396233353731346133633731333763 -31343431663566326565346336636432623466383038626165353962313962376564353635623837 -38636534373936366561616163616137656563306437636262636266396331633164386333336439 -38643237383833616461613335363331663936376266326136376233633236393938643639656636 -61303733386439323338363064363932303135303836353338323964316634623761333366346137 -39313734616431633565373234666631353064373361373763373832646665393137626236306434 -39323364323038643832656563626462336633396361643139366164613736636132313038306365 -34633233313131343332313964633065663339636663643836383439366461316364663763363739 -61343035663461326331356539666337363637393864366564353430623634366361656566393363 -38623364616135333166343461636239346439313762326661336333336439333138633936313939 -39623039343337366662386530373934333834366533356131646362393235396661356136393439 -64366462313465636661393834663233393935656133376331326564666634393631363834393565 -62326337313434363365303738316538333664326463663138393430333432396238333036633735 -36313338613264383966383736613032356339383237306565326635383835656337636439633831 -37313262376662356562313766336261663463636365306663613238306139613163346261616531 -33343766326230396130373630376438643261356234653231616236366531376337303932356138 -39643230626134396566323565656639366135623738653063366665376361343965326534643136 -31376465353564336431643536393339613235323963323932653730623033376139346434303239 -31643736323666383566366235383966313035316161633835343566663232636464353233393838 -35376438613764363037663163376365376238333564343566613235373365613936616163373334 -30663132666138303633636662376136663061333839343361336639636432366639326564383137 -31356437663031623936383866656535323164323162316630336236373133656339333231313639 -32386565663238646563653232326461303863643964366638363862643730383264326530616463 -33613964313831623863333030623638383662393935306637663530636465386638343663663238 -33653530663362663837373738646461316138376662316464643565383132373636386365636136 -63313732323238663134323137623430343039376335373638393131343537333361636134303534 -62633034393835356238313266326432663061356231626630393932383462333966343533336565 -37316561363135393131336538666638373430343664633963383736636334336530363336636130 -66333234396139613839373063623936323834313564313339383739656662646234373032363336 -39323731323038633739393138663134663737353834373965396139623136383031663534633661 -35353636383435386236303135396235663137323762383838306533383064326264613564623039 -36613137333664393838366361636530626434383166643661336162373132633335313437343230 -64326634626338323139313533373934366164653539393432366638326666643530363865343835 -30326436356430343737343365303161636261333565356335663864636137356139306165663837 -63353334623861336465666561643437333130353564663031626464656164636533633635653835 -35373662363236313864666465633865396365636562623039306533303132646166643263636261 -36623432306537333261653539303136386162616335333135363465326562366565393836613436 -32396532313936373335613735303565333633343436653637363236663163366564306166313732 -66633132366137373235386431616562613532653233343065646466383761616232326434663833 -63363561373733623636383364366531623537646637653331393431623965386233663166323531 -34633839356366356633346533636630623161616230643762346166656465643931336561346437 -66643730646566336462393239383435383332336361666435636666666335393763306630646136 -32653234326631653061386166306535333130663136373135613138303830306431343339376138 -63333963616635366132336336613761363238653163306264333738323966313936373963353032 -63383463353638373966373935363134363931303433303964616239636538653962373865316437 -39343134313766656461343662366263356332623338613638373333353937643462663632666165 -34636564326664373465343634306437396533373161623032376435636238333937633431656236 -39633364336165393862343932353038626236643037326164653964323030396333363036336131 -37363764303734376332656262373133656231636365653938313232376236333464346636636630 -33633735643735303364376166623662353762656238393461393964653466666662656438353037 -34663739333639396462353961393633343365303963323334306464376330316465656231616537 -62633963626362633230313439643036333861333130643539333662396139353837376533653962 -34373065373065383539613736346165663163303733373665363565353330623739326362626237 -39363436363364366666376262363961316131623936323138633736316537316232656230663063 -31323361653633646438316136363033643332383530623766373531653634316134353438346136 -62373938313434653231656634336563643932356631336365393736653634333465613139393361 -31626438363230353435396662323338313137383635396663393436626138396334303636323762 -64313765643430373837303763393038306537363930623664653165303433636366393934316133 -33613930373431316631323838373033393531633035616638623463346162643064396438616461 -33656335386132323934346138623735656364376261303336376131376435646231386531336336 -61303765306463643464333235373532613332373439386664316464373266613964373362326630 -32366333363531653239306331323730306430333533333664356635636639656264323136653166 -35613538386161316366333838663034316633323263373738663138396538316362646364366563 -32356330313231336331646265316137666231393961623330646435306534643535343163616563 -63376633663937316235633830373836396439616166623366353830636530623262646462396235 -64313365313234353061626464343639373335623737376462326238383734653062306164363435 -63333830363231373835303935393631393661613433623538663936366366663534393936353433 -63656333613163633862646437643530316134656232326438313062306464353632386238313032 -37653466316639333235623430336538316361366435353861633738326432333733653964316334 -37396330653930656131356164656261393661646336313733313736386531386439653235303363 -30613635353536353065383938656233623765633536343633323334343964656665663836376166 -65636530356133663364346561343236663830633638383439633562336630643834363138316361 -36613763386631366132336236323633666238353538613933363062636531656265613435376331 -34373466663532643130633461316538366361613739346333393734653664353033303436363266 -66643863633633346331643062326336333837626131636265386235346166646338373438666666 -66613334326630303538326530666562313831356534373735303435376664663265613465313661 -66643838303737393366333364363265343631623135666537313137643966343465633361303366 -31646232656361333832396362623632373432353531396430643364653338653364396539323535 -34326333336364323166656235626136636639636239333335313138663931376364326438393337 -30653435316238623437366362356263396262303861653237613262323663666230303835346436 -33353134336461343334613433396562613632313732373130313466616638346135336234323733 -36633035626266636534393739363233313631353862653865623031366562643530326434313763 -31363163346664643266633130383433646232333463656661313239366638643739356530633561 -32653462653365623133323462333938636237323462326236303337306435333839333836633337 -64393338616533373333346233333331353831353236666661656239313265616633383765336633 -63313735336136663839636635393731356631333235346435646235376639333933326165393739 -63656637636136636337346538373065353630623564643165333134383731313335633662646538 -63393134663831326535356130373330306633373834613634643262323761366137643635616361 -32356331373630336130616237323938356233346339313930643033646538666138613263383465 -64643330363432626461653865663734326261633932303265363339323165666238353931616363 -62613163636333343538613633393933663362303530363862383933343131313863616539613534 -63393836643731643032386634313762616363323262656166656632626338363539663132363738 -65336262313130313634303333376431643830613332313735353237653133356536653531613031 -34366230633837386564383237393539643861633938643362303030313639663963343137353934 -38373437303138393864616536346132313335346636353466326633396330343539653336353331 -61636436356330626138386336316434646136653339653131373861323636306533333238363763 -37393238653134386564343930633338666264616338323963383332363137363632323735303237 -39613139303031613631313538366332376439393261373866383935363031303032376665633361 -37373861323338373761383934346639616137326439383433306462656232646562353066363763 -63316265303731653762323431643131303732346665623932656165366434663732303064356164 -62383463326666373239613237363236626230343563643163356537343230643930313965386634 -63643930616661333265363032313238616661343039666162633533346636313166623264663262 -30333932343735633866386232653736336161303364343662313432373230363430643764386235 -34653033623431323735323330376531616462343663343238383538333664333539393264626666 -37613061313662633064303933383739306431666161653837366436663566306461626638613866 -32346633356665363435653061353335646233356231303239303863656264626161383065363436 -62323936316330363564323338336662623931636139633437656666643533616262316436383662 -35386533643963363765633963626334346463323864633061626330366236623930323164643565 -31373031616662646662313933633931633065326431323865323130636137633166626238653764 -32656339636636633234376131623532353237313139626332653565303564663766616539666561 -65643238316562383230316633373430356435353638626531633331366163663664383736336639 -31623234386164333133396331626633313431366331306137643136663835306566323764373663 -65626134386461373030653365616261373736313361643433666632383463636263343436643131 -37396639666561663564626165666332636465366662383536616337323531636235323239343464 -63646635323532656165633836326263363836346139646434366532363766666235623966396166 -66363464306135326363643932373836323032366338396231343064643862323761663038633237 -63633738633265343366393562663130313562656465663036346338353435393865306166306563 -62663061663930363939353636633838376562633234356535306362613765643234303261373335 -65306564343532633234376666636366316563353963323433623864643863666537323130316339 -31373537636433323564353036316164346462323931373531653337626361323937633736643433 -33353562303134323561373536653235623632613537333639373966376462386432346633383365 -33313131386131636439393631616535353666646266356265303564663963323964626337666137 -38653434336564366337376438306431383339303234306130653439653064366565336437356333 -31306562303365343737396534633338326132646562313561393734623235353032303135376263 -32346461643037626237313931393662653731363938616232623837383130393238386234643362 -35323935383065656461346361383531383933623963336163333365643337313136643332313536 -66376133656466616137353930643437316636626663393066393136303339373638326261613764 -61643963303962643164326636363033613866663165323031336236653338643934626364353633 -65653133623036336634666530626136356239656165326430303863303230356531386461336238 -64326165306330326232343139363435343230646633623639323239643434633734363037363463 -36306262333835643831626234303465666534376265653866623633633166626566633933363765 -62643764396238626131303165613430656631353032396264303562376666333666353764623664 -33616430616332353833313831333064626531396335303933616462316239376134373231323961 -39386534656433336439323863326431303937386533656332386433613163663838666139363863 -35356362383737303733633835356364386438626535636162376437653035386530633334383435 -32343161643137323064343535656463626561623239636131613965643339643363656564613234 -39303435336166383933363566613333356139353134393538623865383433346130303165313730 -36356462303466643865643234633666303233643463373439383438376131343066626361393563 -33363530623034386438313639643261666633616137623238363864303665623330633665326362 -63326138333132386162626633333039363434656662613064633462313433313464343266393938 -36323366356536623364353139343065333431303432353634363533396133643033333735353864 -62633231303263353162383836323431653835636639386135366536396531336339353932396238 -36333937306131666563616232626562363363393139346363316335323961623462303434333165 -61333532376364386630346364313232366535356364316664323966333565366165373339393633 -32313131646165643836333962366361303735386332303037373032613434646464323539653336 -63313266323366323538646139343737643333663265373232333334383762313735376631383963 -61666264303938613439616635313331323431656430303765366366336665306164313639626437 -30373135323035396134376462383562363161316164666530373737313662373363653332666533 -63383662326432643833353962393330343738343864623835303632663663303262383436373464 -65646163353533323664333335646337613461393539393566333961656535373236643231343764 -34663332376464623261303034373738346164646338393065343836363661643864653436363837 -65643965653737343762666336336335303962356131653131343763313530633236393461373632 -35396533643966653233313839636135653933343639326364656663326165303835316163316238 -33336661663038366662643533323330363530626338333764373566393465396238333163383236 -38623064306437633632333239366339383038356134646237663266353562323332316665366337 -30653030306536616238393230653464396534333862306633643161323862653231316331653731 -34333938393737373165346436313666343363303663626235353564306632646665333235366163 -37303830633833383233643563653661323739633761623130336234633664373132373063346365 -38346566313662333931376661333666326136396237306635363430393337326335653462663833 -32333766363234386532343162313634626434653865346665383562666366663436356164386239 -38613765343333396666356366623535656431353463356463613233616537393437653634393634 -62633836656234623761383863613964333665363564623765313031393135313163333033643636 -34363931373134656531336436373863363739346633643934336137653932633436626165626438 -62376533613465663232353235633362323965386565633838326430666537363138653461306137 -37306465396638306433653465633962393135633830656534346165626230366138383130646433 -31346632313531613439313335653266336636336238636333663339303939386237316534326435 -39373534623730356231356435613265363632373666393537343632663033386431663830356262 -36343738303862363166323336346333313161383162623364373738663136356466393238303866 -62383030346437303562353332303135343935646537616665373838386466383236343434623539 -63386661363731663932353630613432303939333964383137313538336561303366363166386161 -61633534336663633565323032646263386636623439373261316666363633636136653733663539 -36386363353335353566363133323631633230663137643336303766366531323734363337396561 -64343230323061366237666233326265333231343464303436393331323437336363383166643666 -38623731393137376331643762373363366463636435366338626361386335663366356137376563 -66383533626665666466393331303638626337316666666265636138353733336232316432663538 -35396632386439646237663831383731353164396166303962613765343133383334376638633532 -30363433623133306362393838333061393164643265326338346265373235353835386166393037 -33333632346361313233636533323238613963376335306336363064666162663732313230323466 -63633436613762373261323231336538383432326263616630653939333761333361353430386539 -62343130386464353234656136356263643263643337366533363764666663343161643439646330 -33366664303665383535316235323061623962643465623365373237386431623730313762333361 -65366230653463643264623464323238363835643437643837323464363134663436316163633733 -30633834346232633234346661336563333538376662303762326336336466663631303635373063 -64396536366133663033373636306136386335376538356166326561346566373863663464333763 -61633566626561333930313532303335323034333032613462663532323336303833646162633364 -39386331626639343566383636396334626266663031313865663738343662363564666237633461 -66306237333636336336376366303564316465373039626537396332313266643532336234306537 -38643165643838336232623034393138353631633536653763323838343861623066323039643266 -30656365343635353534653234663736623733373338646462663631363461363533373137393266 -37666437373862333533626230613532663666326638616430346432623337373935653830363163 -64323039333037336632393863323636343364373664303138636335376539373537303436353931 -30646435386134323634323138333938333039326663633063336564343933316563616139393164 -35656263303031366261343039396366336135396663303038323639616333363130356434333737 -38363933323639313336356636356536356431616662313931313737643238393264663933383438 -63396137363333386462653065363464336563373336316637613131373666646632333061636137 -66396364333062666439613337646165316463346436363331653465363732366334643966303562 -33326432373038636635613536326466653966316663646565316536363935613136386132303437 -34653238643738663462313031363037646531313861383630343533323934313733376634316666 -35336637306530353362383232306233653533333630376132626661636131636563356137623763 -35353132313066303330613563373430653430383164326530373135343562353763646232376562 -39343466306666353563356332353163313234366461386330646564643562366164333538656366 -35343763383665613030346430386562363564383966343630313537613839613431336434646134 -62613331613237306562653239613236306235623766396532303161366236636566316361363165 -66343763326332663136383737383333356635393866616236326461326235306232386232393832 -33333834643530343031633561343335643635343065383465613330326662343538343165653763 -32626161663834323161353865636266666434383130303665323732363530313162363435353330 -65623131333139363534333866333730323636373662363535333865656362663033616536396630 -65646139663166326133343732323237366537386632343337623964393966353563303933323361 -62376530313831386166636435333239623435383764313464353034336131623862633731303735 -63666538666163646661336531393131373461646339353666306437626461636233396438643738 -35393139636634333338306535656161336430363531623766646662326532663863343137373135 -33376238616164653266383235623666383534336130643765376264353436613931313463376334 -34303366386562646239393134306436396664666466663638316431613161633563353534613466 -64623465626238306535313562646233363832663937653164646335383534376361613038383961 -37626235613939613636653264663164613339366262366639656639666537633238303961663164 -30663137353434643033343037393039346363346639393638316331383535333233626465663433 -66623939393430633061396239303330396337356534653861346263643563616435316532356631 -33343438343366636432323538336465626534303366306331393135613363313562393332633939 -31386334613430643034643766323134373931313433646632613836323533616566363863633330 -39626638386531376235326538636131643832386338326537663832396436636263373535646261 -31636534326338636532343261303939653636393365643338663562386634633764303539353034 -38666561323230643739626664343534303735343366323639663234616563613131313330386363 -37393766373739636238356266646363666134353834383234363238313666373233373739613632 -33653733396236353965313964353261363461313031666161303831633461623436613534306663 -30313335386161623931663964626630633630363731376538633635316339346563343839666437 -32363839343539393338666535316263623936333666653965656166336464373938623764323933 -33666565326535666436323432356132396536363630303931663361623731373530313733623836 -32393830353261646232363538343831373264356363643366373666373637356263373430313765 -61353437613830663061303036323961653530643639623365353336376230303666633565643632 -34633438623339333730363766333465633137363531353332303037323738303633353736303166 -34303331353835333262336164616637346131616535363134663065396631333038626232313466 -30623331666563623762346333623532383134333737666634363664353663393765656237373638 -35323764646438656339366565353562373532393466653465663934356662376633353038383033 -63366230633261396362616261326237306334393635616466343634323833356437343562343738 -61303630386138393834313361653734343930383838313663343361643361396365656464653333 -66653461633138383033613262613164613035396638326430663666633633376234333235353561 -30303533666532336535353133363035396435353063383063643932323636633163373935383131 -61613837313337336634626432353538383032366235353732326533336537326231646461656230 -38383634393831373063323838333538363665303833363666643531666538303235303631616463 -32613265396337613062356538393438613031383561656337393330323262366263383063346535 -66326539356436323863366166636564616539623466353336343930366131303536643263653763 -61616366626439323433643231656332366462366137343938663734346561623765343833313864 -64316564623136623963366566613038376130313832363831616536383964303562613430613735 -62333263663961346531326334383735306636343037626333623361336234363937313034326265 -34643134633363333135653265326161613232383334656335623233333031333466653765306235 -35666130633835663133323134353433353063316161316236333539646239613039616638613162 -64636530633161353832396532626633373238656265313633393661626337326635393132663136 -33363532356235643535623038383931613636653465636430656664303930386263636662643365 -64633563353632356230333733303666323566336136383863376466636533363865363866316435 -66363231313366383134623133376639343131383932383537363835633266613036313738386230 -64623566633037333133653136663832306566393531336265356439326664356431353235363636 -38646332396265626333303134643065326462363464333139303935366536393534306230326366 -61653633323139313732663333363037396232336131623635346234363937666535383134613264 -63336639353238616639356435316536363266366535353263393531366431303235376265343330 -35383831663330633030353236303137303835363636323864346338346638336236336236643066 -36363632316337316632623863373430303039313634313832303136363537343433393730376538 -65373932363030663430313763663666376262323265383164653165346232653965653633383535 -35393936663364376630626364316461626232343039333662653766316663613039343566643838 -33343332316265356636653466353937393535646333663164333533373635616632643039353233 -36316431653235623031616136613838316161393338353939306234353435623230383735326236 -39353039613661636136306237633233636163323838643538656330616437323433396432356361 -65643961633533316663643536383432343632343230303034356239633636616632326139306463 -63396365613736343336333832643735386534383762616263653034666330323337333437366266 -31336133343430616239323433313735353136616566313835633539336562366566386364663832 -37333964626136396639373534366336393535383463376639303735383762373666393562353535 -35393162316162653732383137633234353332396461306566343865393865646635333464313666 -38386535373932333063326531366134653538656662323337366432393335313039663931366264 -32373732333032313262383461656466616261386465323333303835313566346363646464393930 -38353032313166313939646233313765333032636537366366376334313961623163623561373135 -32633264333964356431636639656534366361306561393233333132626136376333313531636537 -39633631346130386135323865313831376339303133666330643333346561613566303037326264 -34656338366461393038306465656131323565633264626637626165333335386337613432306663 -63386330393635376264666537636235616339363831343066343365326564303735366565323365 -38666365623437353265326266303461316165343537333932396634623365383866366438353134 -62333462323565376538653931316137326262303231633261303136623632333364336463396337 -63323365653730643731313837616265336437303433366230623335323832356130303761336234 -39363432613766613564343035376631666131363661303864616132373364653139353765363332 -35653232666235623065656536633633646161393939303466386363643163613966623665383133 -30313535316237646361393337333230393566306662396635313533323133653433623264386265 -39643062316436636138643538306431323633666666373363396364333639326361366265363838 -31373636303965353363356565336531643232346264323465616530353232356538363634396165 -63623435333530353638363036663665376236383837396566303939376162636266303439663266 -39623538326135356338616566653436666561313732356562373232346465633034643865346334 -63346333306138383136336634616163356562653166373531373766663537613134303837653061 -66333433633731643937356238633163303962666635353263313530613733316362633731323539 -65653935626363653831333139316235303336326430313263343239616435346462356532613437 -33643761333662333965353262353638303061373136636134323233333064313432613739633561 -32636465663832636137613530343362363561373934653562643834393161343966396330333564 -64346134303934303831333039393239623536626165333861653131313332613735383961386535 -62303765623134356232313137346461666165326237666430373031613636393833663239386632 -64643738333631626538343966373461643337343563336531636166376231623437393538643435 -66383131333763663033313339303739616630336664633037636135313532316335663963643831 -62316635353463613233346566396664343434363837646363323061353966313865633332663766 -33623138343832383238303335616630623564383531626164666533393239663331306337633566 -38303034373862613039343537353730653936653839613032303933326336343931373264633362 -33333335636165313465316465613334363530363137333563373835616166313637613662643132 -38396332663632333038623861613431346234666530613737343965383835653836373334663738 -39343530613634326465663533306632636438666431373430383239336139323235306534373366 -65393231383038623664613164653236393330356162393837393533346166626635333133663533 -63316632363761353764653466353833363238666562393536336363616536653031633839643663 -65643433303930643130653333396566393033363162363261393132626364346235333232313738 -63643930633636343065653764623633363630386636633932313466306662303462653030396339 -31373636366631653338613632613133613730386531333066633335383836613538623633356561 -38633031623136313730626638366636373730346630343762313164643166633463626131386336 -39346336393839623564333536376539393930323534393866613336646538386437383965653064 -34363133343836316665653130633635313065633733613661666161646462313962666166653839 -63623562363232316461326461663361393466343931313936373265333466373435396462643039 -33353033336330656337396433336434376139633038386234626536646236666538663035303331 -61353938333131393263633464336564376531373062623261393939343934333263373931316433 -65303936306633393466376633373235383265643964656333653236333464313261343164376139 -62323337323161386337336336613661336362353733643039353266353063383537393766643830 -30346438643566363238376236323463323332383536373734316635613937393034646432633337 -62613864323636633161333634663138323632333664666164623132336361346164306164336665 -64363365633233323232646538633165656466633662633765373766663838366666323364613733 -63386530633436366561306163636361383937336432653035646361393135356431663030393663 -64333537626438326430336537623939633330303430656131303661623830646663653265643131 -38363039363938333333636535656165616239646530636364623937386539343366663535303763 -33616431646336633938313430316362633862323161356366373031356335623666343961633039 -30363138643562306138373933643434383931653465663435623465613534653061613362373132 -61393964316161376465343466373835623732376436333830333234393737386231313266303263 -35316233636564303962336562303939336665313166343766363264323463666461653137356666 -37383132326634643938366364303561316435623863303633343237393266336239653034653366 -37386235353136393464616565626165663731626438393135623333336534666431396131313964 -32353563393630346437333937353733306231333865396663366138303962623135333836373361 -39616337353031383330396463363161383061623831643131633536313438336538646337383330 -35643632393561306539666362336137386165396630336531663362383830303030633335633739 -37633136333333636231373562313731623461366634393931373863326539366433623634373964 -63383839616165643065656138306434333634653666653235306433653631666361363461346537 -30653736353539323365383837653139613631326364353630366235313730316262333565653036 -36366539356664313939666139306139386632643232363638336161656331386162323935663464 -66646139653533353161303636346563376335613963646661643661376264376234343931653664 -30393738613462316631383566383935393462393535336634303739663932646434313964663163 -34663338653736383865396262613865333265373535326463653161343133336137353934396132 -30366636363562663437623463363333353339396339396435616536616665353133613032326536 -66333935306530393432373435363637623631323231623861623130623766666166346137336433 -31383732326532323331306339613937323062336236383264623632343738353562663538643734 -31313761613539316530323731373464623536643535623530343236323638343034326432643038 -32376164383432626137323332323131353337643337343539386362373634343835326535333164 -64366561356463333364663563376339363361366361356334616466656534353861623632333037 -63353730653165336232333632326664346134623361616636316533666366636663386564343231 -61363466376366303861373337393661653730646435353936653564383734653164323663313835 -39656231343137613333373133356139363864346332326635613330363839343163383862623235 -64633831343834613935316139303463383135383937376532386364303733633261643631303966 -33343037333330336235663234376237643730643539646630393461626435376432343731383036 -35633438636235633662383438366637663566363532306633356265343962653234396337343161 -65363465313263383162613531303664373134336131383563646131376431323834313663623130 -36346465376562373232623065663637353964366566323238636434643131633531653332386637 -32643032623736343934613066633335653062383537643638643837653132363031366161346439 -36646266326465653933383466386364336465323636366562336433613737343861623535346163 -61323932333762373064313739386435316530663934396230343963613737653638623333363731 -33656132313632663838633961646437646564393533623332353361636332323263663535343530 -39653834666538363763613436323630303637316161356439313632323864646630393861656566 -39656532613738373438653531633461636630313833613238316334643866343232666137323465 -61303764313961313262643535656232343031393064393062663962333765626238303830623836 -31343261636430353039376665313861613764316638346664393464353565363464636231643737 -66383235326166623338336331353630353766663166616339363866343938396365383136326233 -32363365383538623464383762303430386434373537356164346263353562346263383738653337 -33643633393764393431326337386534373731353161313930366664343731303930633438383636 -33313763376432646434313431303732613534656136646630653838623133333634303965313639 -64346166643765303964323934353336656538326633303434366333383764613761333133313236 -38646239386632336334623636323161303135613539663039613635363433316561366138306137 -63326634373939653963613730353562396632613137613036393037303035323532633066663165 -66343538366231643933646538313664376561323032313835613461663134393863363364326335 -30636366626239393164373061356233313633643936343333373938336136616434363730663138 -33376365663730363937396534616633366530613636373538393536363866396564316461346166 -38633138373637643035346432303435313138393635333239613838386365383733333835363737 -65353966303237626635633466613739626335363438306530653065663462316434363531663039 -66353964316238633732643734343365393264386362636139303364363533323666356633323565 -33313161623937333239653534323236313034616262343937373162393030376432363165363565 -37623335313236663262333436373763336562656533396336376430383433656330373963313363 -62396634363664303830396139333962656536343737333734366334313732383066633036373431 -61363631393665643433323464376138636465306533623635343565393337386536313738396136 -64333561353534363131623264656163386230613536643764386538663034356537373731666263 -62643433613534376330656339393763643231326364646665613634316462356664343366333730 -32613864656539326339616264656262376237353234653131343137613465393937316333373239 -35663038636337303332336634663230643535633034343836346532323135393232383536343864 -32343362633664623438313863663230663861303832663433396361363938656632613363383532 -32363237666464313435323337303239646361373338663937646533316631373966623762333963 -63643033396532646639613134366538656265393161303532633563303733323134626361316331 -30623738363864373934636533333838393734323966353938376432323461336332663365356262 -36346337636335663963623462643934396166386237653537366233363837376435373966376534 -31626638323563386366326134313336356262656430643530656236343237343462343365356538 -38663334383338393861616137376264323334383936336230633166353230643332663336313366 -30633530663261643262343837393165616261363637396261353337396639386264316234666330 -38343266666438333039646566306161646466393034383661376364326539646263343330346263 -31363138343131363739376331343066393230656336613132336432313538376139656662646639 -62336435613432653237333632303031356263656361373337333434623966386663373635363235 -36633436356430643565363164383834643661623738356562363739663134613631343130313336 -61346261326432363962653130613732393461616131663832336163323734633165353738383239 -34343832616233633165343032363636383364326437323264386365333133653062656265663031 -36323530363237303735643339313764646236333763666265313932303033326536623739393362 -31383831353162333962393865663337393362623633636232646538356564373262303339346462 -36353435353637363532653232663033616361623439633066633530393334643765653536376337 -61646336336437666532393137366466316561373066326336616461386665663032306433613935 -65623866356332383438326364353337373139326662353831653766643036393461653564616239 -63363533383564393061303631646331323864653832653464646330656261633364346664373934 -64613537333637613335643133313735303537663834666634306464313932616530383963323635 -65393035303434663231643432646565646136613634663237326661336261326331623236346333 -32333639656436663031323066616261313733623539373465646632376636386435383533623132 -39393832656266666335336238633336653063333831626333323637323231356333373238366634 -61643436326166326630643139393339393735303562653661643030613838616235306533643936 -35383366663037316333376337393064636132663763653361316430373263393666626631663361 -30323434376566363664343931323261343765353534363234343030613932383361333833333161 -64376338653830653230643239346336313330393862303433366634313336313265353464643639 -30643931663636633933393964323634633036656361376365653663393433656437363266333539 -32633332633730613939343832363063663566656138326266613862663061646635373630663033 -38383035306164653537373361646636626137613531326538663263613031363164306339626432 -36366134633262346662373339626533366337663566613561303964373062626236343463373061 -36316463363338393562643562643331656663653036396361366463333631623434643261666631 -33343837346262666235313064386363643964656438393430623039373535613939383465373264 -64346539633962656138366236353536623465656534623162373033626261373633663332326430 -66323032346436646631336666343036386531383461313735383465316466653438303538373730 -65373264656136383133366330326331346231333633383638376461363466643664623734386630 -61316365643830333161353036383035363162376632343633643035333435646565313832653933 -30313435333333336165623565613064376365646639333365363335383565633637383730386439 -65393662656330653537656436373166346461323664306639323463313261343731396664343964 -62383663323436376466366339313333386532306138303138336463396434626665323335373861 -62316538333361343635623061623930653961323236626664303631323633666336376331633438 -31613737656139323339333463366332336638363932653538666131613336323933353062326534 -61343936383061666162353562646337633538373630336666333161333563366638633238653465 -34386637646137363766626466396161656233333731343865333739643239323033613733373734 -36353662646235303535356431396561303062383433346661363130653066623735383630316539 -35346663666632366335656231313766353466623030343237646461636265633463333065353863 -66643139386532666139323733376637613831663835373232656561376330303061636537356638 -64636364363434313265306637336661346366646633396231316637383233396639313862313462 -35653461316365363731663564663334616262363265393166643131386530313032663163313537 -64393831326662633764333933316166376364653537333539373962303437363933656162616535 -37353039356466666335346632626333393836303434343362663039333333343731386433326539 -38376333653966623935333330616561356561613337663461383861363738366632643230333234 -38653262653930393263336132636363363635316139653535383231656130643038313764626665 -30323638613338373335346132343030633761353866376137333265646633336166656665393462 -33653136363435383432613762373138373237333635343333613561353962386636616462633237 -63643561333837623938323562646137396666373665613035666630336636363335643337343038 -39393633336137353131333266646538323364333739616236616663306363336439373338373765 -31343236306630666663353362336664613737393736303963336337633339333263333362386132 -32363761636431363961666238353936356234616535306639303033363265316439343465646265 -30376265653762633235653637363435306637396363376630643365613164643062616637666437 -65316637323934663531353862623834643734313761323061633765613431663537393163396335 -35376136636363303237313363383066646461616337326661353664643536353865653532656436 -31653031393836313633323061623561396564653732636563353238663237393937393436373034 -63666136316664356530383665643732643636303034343531663835383130376364633236623830 -30613438633636373861653464363563343066623565393765626532666661326165326530373338 -33313335363365383234663462656438386166623265616261383230643131663435353537343438 -37313766353035343230386336336233643766643964653834346135303262353638306439653465 -64613838666231376264376331343161366630646630343732376135373638393638623365623739 -36326639613965633864343536333138303139613333663361303132626463326537616537623531 -32303937633566666564363732323937336533376131613065666261343965383832366264383933 -34393234663839643030376233623439373065313465346332363638613363663365383161663432 -61303063346265356562323539366131666666626134343031623537316262333663393035383963 -36636666306337306532333461346132373766363565313634633061346431613033623438313135 -66356634653636333434356466353661396362333333356430326139633733646335313064396537 -61313466383435323839383237663330613539383031396263333432316236623936313933396565 -35383231313863306166636431623139633665623561376162303836636234656264663662663939 -32666330326262343563313330306435393738646636333238316432343365326435663330353335 -64326630336137336564333432646163393835313232643935656463346334366338656262643537 -31363733306335626666656264393862313366313761343466333562646162636562643735373366 -38626132393865326263626530346135353839663861333964633632363138623634633430313538 -36663830306332306138306239616431316235383036333536636564653039383435623866323236 -31346634346339343863326631323732343131303934326430646135623437376539346237383161 -65323064633032373664623761343930653134303436396463366432303439383732366564353832 -38343863343435313535306534343465363930643830303062376238333962323135656261323831 -35333739346439313936386437326435613335366334636264613935636439376664663438346561 -38663732376263353938363538623831346539633262376566306561656366336637336664353032 -38316265666133646263333437646430393931653164663761316262396537363562666362383131 -38393435333531333230333364383265613563363535356335653437346435653735303537646131 -62623035336137373532346661323563393534323333323236313764323265333539643364383935 -38663233356530353737653562376339313831616633636138373733656165366637336363643661 -35333136373136313835306436306131323439623735663938353332616634313835393166363265 -38363761623335336632373538343032653364366563636139346565386430353836326232643735 -35643230613231623336633834636136323139353766663435303462353037393830333136376131 -65653334633530646564333336333038343762313333306336346635653438353662633632396161 -65616633313938363231396564623233326432343234323962333738326235393139396535663238 -66343763643030346132303638363761343132383364663132316663643162643939393263336261 -36653435306132646138646539393137343037313135383833643033313564346130303037643065 -31393661396134646132376163383864376565353165383531626165636439633562633032646638 -65653763336464623632666533356332323461666463646539333164303230366138626635663565 -33393963333363653765613737636663663563303638316539636330616639366638336636303232 -35616636373462363335633331373238396433303433383036346161336462366338333866373166 -32663436366435666465386534303062386265396566313863323266636665346333373762333932 -37646666303363616531643934386166626566646564313234666632303661353165343464386339 -34363364363565366364383365396432313761663039623932666234353234346538663061396638 -31326139353833643136373732326262633430323437303038396234316238623462376432393033 -30656337303666626136396365663261663362343666333436666436333036663439656332393238 -63356663373438613737313131343064643264393438323431623832623030323537303335383130 -64313830306161303763616161316431646531386335633237623361623961646232633130656638 -63376538663835663462376565653062656164656334373839373762363762323432636563613339 -36386366386536613932613664363938333961366534646161346238333331373938353965623139 -61346663633738343334383538636534316466316431393631663031313033353661363361653439 -30666530313935306636393931666631633736386134333963663832333466626139346161353332 -30383938363566623338653764393561336436623262663961383235343962613363653064303235 -38303836386232623562373666383532383430623739656433353237353663633039623531396630 -35373432633963656538313435636235323837303465643433613632313435646133626139316430 -63373732306634663832626432323666316231353162383432353737326633646464653963323635 -65663862306532653139373034303939643865663130653831383762306236386439376564326536 -30323236353561663431373737643434363932656636373738386536656666613135316236666463 -39376134663639393164346233383138353238646363313633643133333732366431383132646262 -33303862376230376437323838343832306163313531373166616539336434343662323234316338 -64383533663038313866663436313737666462626237383638383730393936356434373837353066 -33623332613833376232383465316561353463616361323564303330653464383966343132633366 -37363565306663613262323166626135623534343639383330396130643230346361666239633537 -37626231626530326561386365623466643737303764616434323766333566356464653233653761 -30643962343636636561383534623038643764366533363764646136353133336663613532326638 -32323132366362373938306438333964333830346532306664326365626463343936653635363862 -65383761313832363536303163393732316134623635663732346463343732653366663338643464 -37613762626563316137653530646162633136373561656361633263646138653738616262616461 -33323663306161646363376563613561663566663435663862356437303738653135393462643333 -62386462623262393763313362666437633266363863396534633037313432656430303664643162 -34376634326263653939663939303966376232363031376366646330373833306264303936663361 -38663362356331356638393564316237356435633764613537373537666433623437383336643035 -62383534306662373065373936346431646231636337646433633932353837346362363539366536 -63336338623830356633333939363136643465343731373266653566363235346163323935313439 -62616231646330623933633463393834623862326565343536633134313236653466663730366461 -37323661363032363561663439323633643265313763366433333435373461316333386638616665 -39386436346266393334313334313437383565396231656535663430313639623131663731353936 -39653934626435336466633131363333333232366463363966636436383930613538346236656239 -34623962353361376165336238643831323634333838353965363034346436633433353034663337 -62353065353434303866643835343833653263646639336131363832333737336364623061636239 -37633734633764303966393765393063356663633162353363656336363534613034383033333139 -30313934643233653431393432613835633863653739643738633263376566643238626264333532 -36333366373331346234303034333130343564643863323239393234663466346239626435636464 -33643561366337393731353036353762613935356538613333393738376563373063353063623730 -66316262306565396361633139393332643638643933393235326566336265373137646230363761 -33313330333763656265343464313439303231366264633666356532636431373234386132363435 -32653464656162343865383036363035303530383239343132333835373463326666323034336334 -63306136633465313161643833306430613439666230393939656136663433333036383733366661 -62336362303633643331616338383566643530313862333061626533393663313163306337343463 -39393531333838663635366238333066333161636234366230306362343864646135363162633162 -35353232636331646461616239386464656261666433306239643962326633373864656562633638 -36623435623365613434643136616236313131366461643233613565383738653833303663383932 -62333533336139656237656332353161636134623131376566616537623262663333623531306534 -62343133393531386666363962623562353831646164383631303662313932653765353565613638 -36613861326330663732356638343533643636353835323637643135333331386266393764663165 -64376536383937633937383333316365623832393636323138636236373333643938303162386564 -31313861323530383336613036663534373739333639376130333062383534333932636363653365 -64623637373130663135396633343039316634333463663236343765303830393732373231333231 -38613833393631613661383936643362376338396165616437393461306466643338353465623462 -62643934666165393261336265323734633161303939643937616336363232396166663766666261 -35636339353839373539343739623931393335636665396337663137306637363164333332323433 -34313537336463646362643931323465663136376465656634353561646635386265326363656534 -33616239386365646432363466333433356661336562653238623538653430353765373631366535 -34373064616262656565313235393935633432633364643464666264373463636165616239626563 -64316666326236383363356132613933326634666532616264316433396462343238343436363938 -65653663663262626534373933376337623462663331616563613365303034326662383666643066 -64376665616337336630373137346532336165656564353631336462643964616261663833396230 -37616135336139616137363464373062353363366665656331323133396433373164396363346337 -61336665353666333434353830663262653938363434396362633939316530316238626261313265 -62366338363065646236306234343863653934363164613432666263623962396162623334316635 -33386130623033396365623461613965326437613034386533643861313630336535356233613264 -33323339343936633433363934396533353264306330306433613464386339356235356333363461 -33623838393632323566663139393163323862393735303837353566373039643339396661653065 -39356366376262353563306537643534633232666163343965323338616131326338633863643031 -61306665313731313261613137323232633966326162306634373836613565373436666163393563 -61623438613931383232386264336237633731313139626363373739386239396639333532363963 -66303862633534373563383436663961303266336235613166333465613262323833663639653938 -65393738383039343635616665643666316433353139613963383938623230373031356565356162 -66353337313237306637333736623566633634373533393934393662396439306232316137303165 -38633436656635613331333031623537393538323036653937306333306436343165396165383935 -33653461323733393863643864633837353531316336306561396232313265633837343734666334 -31333430363730393963653962316136313164393664363365373736393063633764363631636538 -63396230313335653066373932623333333639666363353366353939626339656632633539343637 -65653831393739333334386666366361613031623638636363623566333031363734643939326662 -32313861383131313531653939313830346261613437373734356362376638316337333131303638 -62303062343065633130333337656138313131663966376337303237616532326266383637663734 -64323431396531646332336336393638653165393732373466616134393932303130373165666666 -62343833313938363864663465613037343431343965303930666630323439643334373064633361 -33333331363164396261366262353966353163373364366461353061366565316331363430356430 -31633835393965323831386466613661323966646664373864346636623534303833373436396436 -36666232313963623833626162323362663865363366623766663736323331353562643166346137 -65393661633132633666353832356366363639643437373735343531636265306530383665373738 -35333362666464623037336231353765616434363763343266323938633131353635663766333131 -34346265313633626430323633653664353336333033663262396662333534663037663136326130 -31663962666337656134376465313334386532366664373433623863393231643064373836633735 -39313434333035643537643166323566643436343432626233313332663037653434373938663537 -62313130303033363633393363326662666330646136363164613235633863313034366537613039 -35656131333865646438656437313232633964633634313733376639316135393433353763346364 -31336661656432333864633966333261643533303465663465643937326162666366356639353934 -39303362616635383161356238313465623266626462326638326439616336663538336264646330 -30396365393663643734303163653636663232643938396537633538613937643030396164613864 -34393031666239646534373439613262303435383638633139656661313265396263316430653031 -63386630626238663864333866383337366436323939386233366239303666316432323866633438 -65613061386266383161663365323263323832323166306463353534373834326665336433666264 -66333434303963306131376330303365393166343462663834316266353063316261353763316563 -61623936663538326235613437353338353333353038643864633664326565376461383563363230 -62303735616638343832613266306139643739383364393233653330333664346163353833663838 -64313262363561643865633930303932356466336134633566626137623831663236396563316166 -38616237643630363765336632393537373939383037313562396239623763373765613134623233 -61376231636437383031656638626638373732376666636133306234643566646234643438636139 -62333037666133393533376664633065663066323835373730353438343033653532333063643261 -30393136393731623462393866646465323938353264656563646366623535383432346137663864 -30646366613934646231663333356131376464313235373466346165333737363566363666316630 -34346238353032353963316231346163616361343866303238313739346432633839386338326236 -33616633323336366339303165613833343830663635366330313962633233323939323131613366 -32663136363138356333643461393166633039366661383563343237303064623466386138383964 -38623033646230303535636130636534663462316265353039383932653737326662356566326163 -62313861636638343131646163393430363465663138343736346137613464356464336334643964 -38346238363633383635346265316131343733393238666236343965353938613133623132666632 -34643765353763343839313736343264383761303564643138333664636666326536323262613137 -65363534323830343164623134343362363966666233393161666462643565636662356636333466 -38633536363639633764343339656363616262346565373861653637643633383035393838366161 -34613939393431646366663866303735356134643465663934656536643338346430396432356330 -37646132363131373134613935653337313232666333353562613531316566383730306664373866 -32303034643466376463313230366463633933313132653032386237616664373964373631373937 -65643733386630373730613065343133396537623666313664663736343933316138353939333337 -30306635383237636366353234313935623162663132663937346439623532363163666665303739 -61383938646233313162616234316562383765633833616435623137656534313635343134306333 -36393835616435616266333335636230353863336130623037376232356537623832356633326363 -65363663366633636634323037623737356261343134333362626336613964343831326535326337 -66383335323136623861383035623261326563386539643832376665373066656438313365636531 -63333263363836653031663363336231656266626139376262613030646337376335643566376561 -30346135643638636635303237333564613739326439663965336331636261303165333339393639 -62393534633065383838393363366431636639616566343236303265316464626535663563636630 -30613065343732353562636433666661363131336562393332396564623932356635313634666338 -35396363353365313939333837333732633833663066646537326533333437316361313332303034 -64613339653233656537313263333265323865326536356461613834616639616136363761383331 -63643436356138393139383565616562356335663436313530653439653538353530383039646332 -37313434653465343764343837343635656262343537336337326239613665623535303335323230 -38663166653065316231313338623764656562333962646263623665336638303132613030303866 -39636366646561363730626165383361356366366639616132313734633266376165396461336332 -64633531653730666237343862633736663537346537663961666236636338326131653565616538 -39303631356266366363663364376134343538313366346533366234663062333937346631623137 -65633934616132353461353139343934346263336464616437663930383237323664333830643237 -38326433666131646237363564376436393064646262633964303532663337653032663866396334 -62653061303534626231373334646661343364363632343339376631663466636132333137323633 -35353163323137356163653264623162363936663961643134313266373765616137663633366633 -38633965303831333833396332656231303166386163316132326631373062663830356361666435 -61626664646535356533626663306439313139643535393030623765353434343338396263373865 -39383230633564396430306539303866313364353237663665613930393062396435323731623265 -35396239313538336237646333303530336336353864666430343266643038353966326437316166 -35373631383033623333373239633834386331373635653937303937656535666263643131366337 -33373635306661613764663035396266356464303332643365323765636638363565393164373438 -66626437623530656134323235326135653862326336373665653364383334326464653638313135 -62363535376463336262663864376333383965353430666233363964393737636363366530336538 -36663565343835656137366635373931313632393139333464356364626333623836626462396232 -30666438613639343434643763336263303938313737383838353065616433303435336461333532 -66363031613265646664386261643235623738643734626365333766636162356234393437326466 -35383434366461303766336238333835316334623231303035663263373031656135623463363366 -35333636616431653534343931636364366332363265666561376337353337373034613431356264 -62653431373834636664363332663537306631623334653564353035666430323363653564653336 -38323533306432373861356231623034396239386633373263363164343465336131353461626561 -65383766316464643534393164646565643134356266643864623261626663616538396461333830 -62313235353462653730353435663038333663353530376339373634396230646239396663373038 -36326237656337303665663231353636313430643637643630643330343635353566386163376561 -66326432623062383466313833363961363131653762306538646362623932643635313261616463 -62653533336437653030333532393338616565316339663232613739393061353938356431333631 -66316639313535666632373065373035363065636135316530363664646665656462363635303138 -38356336643662633638363263656265633762656362636466623164336534363634396163346536 -37633131333534373733333537653839623433343630663933633366326466353237303262323562 -39373235646563633862613730376663356638356336663136623430613837653265343135346239 -38613034346131303665336566633231393134376266636162353237306433386633313461663964 -66346239626439343735613566376333333561333633363734393632323738656639313066316330 -63393935356466633434373938366632393337666431353634356131616664323563636537393566 -63306633616561616465333264386361393132356463396137643132633137306339353266306531 -32363735653837383134303033646263343133343562303361373238643734303061343333353735 -66383931303735393436656362663265353266363561326365623539663438386162613839313331 -66386139326432626130636434656338633432396235613365313865333831346362373961653736 -31313234313733653337313063383938303739663838383937323438356533643931346236386239 -31306438303936373134373063333232343030616231353639303236666564653236373336356435 -38373439313035366230643465346533316366346136633434306431626263653038336635313861 -62363163393631303261666338323566396137386336303737623266343335643233643332393239 -31643630643039623531393136666362386538326433303238633462623564396639643762393462 -65393765653232303364336334393831633630623238326530306431316366376230363166363035 -37333532353031363664616435346538653433613532643837303737653762653637646436323532 -37373035643331313561353135633230383834623232386463363739646163366333353962656334 -66393833663438663232333064393338643334383335383439323136313062366334326664353363 -61333163633134623333393164633732333462646162646234643261346435323035623363346330 -66646563356365363661356636336166323233373235313234303763636235323734373338623934 -31353065313038616132303265363133303834656562363561383230376663373339313436333065 -31633662616532366331666630303738663630313931346335313664363331366138386265363837 -35376135656632623566383331343462386630363465373236663534383832303532633463643363 -64626666653132376533616534623031666435393662343238303061373339306634613365386435 -34323964316233303332373864643531383864626165646163383465316335646233366130633364 -36636432306337376634336536356231356432303332376661396133346637393739346633623833 -65393831636665363461326533343433633361326434346331356137666138346337633734636337 -66666130636135613437353837393637616439623865383939366663396637333065316461653463 -34613139613163663737653230633635653765313533643665666131643462313966653337373863 -62666535333631303661616565383864383036616162653261303965373361396262613039656661 -31613663386166656435323563656535616532363431366666356663343265653738333264613031 -64643333393463633464666335623836666566363533663933323436626166633962656438363266 -31626363343339336534393638363038303236386465653964633238336665613831343262356234 -64323564316663393437383433386534343864623732626364613435613562336237613066303036 -32313838356436303331346362313338323232363637383664356662616466373932333566646330 -34336536316136653930323130363162393965656134346662643631343736313538373135356136 -33633734636230303434666261363064313065333762636635356330313666336436323333313266 -31346562356634613933616239366365646465376236383064623565666131386638373031326434 -34633835353062353237313633393761356338306134373535613937623231306165383236316462 -65646161663430346162643765376130646665306231653934343032626336316264353037376265 -31613638343964633264376361313936653861303561323932306337383033373964633061323632 -31613238343362656236633664333531386533336464343861363232313437323639616438323335 -65663164663730373666613133633537303333333662646364383837653132633536303030326665 -31323266333766353861346533373838653133373330383761633065666238333063633664613136 -63343163343138623736653430666334396262373831376634326164646663373135306537393931 -65383630383763396666393838653366616238616662363163343337373430646664383638383862 -34376534646433636266623233663366633832666264626337633239323865633830376164343466 -66383639646235643963373137303265343338653730373636386562306330333361646663343833 -39643238636530383864306236393734643739393964383661383265363432303437396465306639 -61653330323365393934353130393635323936336235663939306335383963306439336538333536 -34626261623934343231353863353735326337646336323865306631653234353235336233303135 -30663264616532333335346462333131656365663530303538316439626465633165373834323435 -66383739356139613464343633353530323932303663313437626163393133336234373337653662 -62366335333164646636303265623163363033636266366239623637323736303265366362616664 -32326561653535613661303131326538343761626237616539336162323834626266616333303964 -62666431656539666166353732313234373138306462376434363536333965373432363265323063 -39396238333838306466313563663236366561393238376132333065393534353462653163373033 -31376430306136633464663830613336333638616566346233303234316139326466616466653733 -64346264306132313061356133333531396230666432633166393036616635643432656633383430 -37346534666238366537333733643738316264393535303631663966313265626666366566613134 -62613765306232326631343337623037666365363361616331346562653939633962386437623264 -61633235653537613530313236333862316465613135613234663130356262626439376630663235 -63623863646230333634343137643761623539353331356437643364316433613665316165623332 -63303763383565343832356164346166306631313731386664336436316535353430356366643765 -36313838313036623463623361353538616230336263613336393930316135376137663036316432 -30353965373739306366383862386331343238623961393835623938356265616132373734303362 -38323037393039376436306339636136623237383463323830316564613265396632383364323236 -39666230393864623865666563613964323264306364646464663065373665666231356138363965 -65303565376362613637323764313761653661623261343765333739656138383662353061616466 -64653833366563633036666662396439346633383464663135393734633032663331636435343763 -33323563363135373137306161353064333863303439383238323733626165326231393732633863 -35396265646336323632303764393831393035396362326435303236373035306231326362303133 -38613330383365316137646266663966623463323837376339633434333666613033363861333137 -63373864336666643737323564363161653638613762373565656533663035643334356531336632 -61303439396365363939616363363931303263306133653335323838616261646136346435393330 -39346134316665643139316465353237386566653861626164643538383661336237333366343564 -63653165303831323532376665313163326366303131633936373633626333396233653635343663 -30303830376561306332316635336434623839666663626464366366386364353531393265356630 -33333838363666636531313836356339343163366262313236396139386134326262393436306430 -35393333383364623836323038366133613766643362626434376538396133613639306431303338 -66333631343831353764663964633761363131653139386335303635356535613331323135336465 -39346536316663626234303837363737326364643437393638373036306364313133346564353233 -65623330326365623163303231646465336131383666393437643337303039636566613762633035 -36363463383763326432376466363936666562376436666665643731343830316234386336376362 -39626438386235653130383038316664623866613763393038383039353837656465303533633666 -61643033353163383430663131636565363439623365333863346437326465356139656533366338 -36323463306436376432303561633339326537333163373766393438343039393265383662306666 -63326238343366303730326335616439313030653261656237626535376238336131663963386133 -34666664383663373738366164663733343962653636306233613930363434306264393563323533 -61343461316133656664333363306665396133373065366233623232386537663536626366303631 -32333163643534396331363561313361623163623665373238373665663730323633646261633234 -64633363663161623766663238346366383466623262376662656535626337653063623036663861 -31653163303264383131633832626537363439616134303264663238326634306235393934646131 -36306633393565343535623237383764663563646138323732363063656239383466393931393565 -66666431613361643739366130633933666363386163633138323531313264373737376566636338 -65353336636336633431323135396336663734323738383836663264653635343766343931333430 -38316136633765363133643265636432333039656137323138646239303632353333393563613937 -30633735353064626337626638326461633761366136313331376536306432303331383661663533 -65303232336332343365393235333337653739633564303032303166353162636639343565363065 -65613361313337353638363639326162363235373262323063353364623163653730343338386636 -61356561656137353735396539666639613565656136383532366663633064626134653232383764 -62373539363839623431343636353965343439643434313232376637663861313765623737383133 -66323761646361393365353264636138666337316333653063366634366366356563636236326230 -30343333386562303438346435613261626231343430336632393636323433343238666365313732 -63356439306362656264313931383331303165353832306137333536366463323262366530363530 -65333162343966386230643434666465383637346530353964633166303338656465316238343735 -34346531373238363363386266373834323635336366663666386366643731636537643037633965 -61336261616431313161336330653564323561306634646135313261633935386664393766643038 -39323530353833343137383632393537653366356139333961326564643662663235386466343637 -37626337643237636363346133636638353631383462356163353735653864656135333537653332 -37336239313039636532646638646266646461343366333639383633393466316337373161313565 -61363766393031346564633630333663373334366461323664646231356462373361656438363363 -36663837396438306630666235626361393164616430316466336233313239646630633930653836 -30306437386635653664306231333834303637303266306664323038383161373361626337323632 -35343865633765613666366535643239343162653235323532343964636131323762653036616531 -62626533663463316235306438633434363764666532616463386637636436363932313939336437 -37313232613165616161336339666130623039343530333139616138353639646639396533343132 -37386266663263376539383738346531383235653939373664303863313432303437646436336230 -35393964626464613533353266396435616437613130336531636165313030633037373262333030 -32303733666132666566383131616636663231613934323237623764343663326636613133646465 -61616661316239363430313638346166623630633734333930343834636235643564313165653463 -30323664623836303334616536666636616434336431626530313466313563306332376461333431 -61656333663666353538373132636231663761383631663133383862303033313739313462643265 -63373739343362303265323130626462626236373864343162636362393265306332363139306663 -65313035646165346261643564663761353735323962366532663530633662303064323839636264 -33383535346133666661333137663338613331633461623964353638396337653832623731393939 -36393637363932616532363437653438666634373733643962313962656131326530633035313264 -32393764646365663262316531376532363764323765626230623663346638353938633138626362 -37626535333035383434373566336263343337373837666336613339363539353633316637616433 -61393763643037376433613137616262646332343761666563306563366231626263383833663039 -36363266633438653364663635663766666566356265343436316564316339373138323739343635 -36303839313331353064633265363432323638363139663865326165663063623430353262636637 -32653133343239623366663334393261313661646161373837373761663438663936376530333938 -33656231383964643332633439326163653035663538313063636430633664323330626437653939 -62356339396638626565396335396564316534623130323434313937376231333034663862356631 -35326632313737396261626330306239646263636661313365646438663037376565633565373162 -64643465313638313731613965633930386533623566653734646561313766393038353236643330 -37616337613838653830333733346431343062636330646135643935346339633739643831376634 -33383139396536323462396132373036613262393030376534643265623936353164643936323262 -64663464303637633333333839623363343633383432386566666261626333623834343062393365 -64336635346638643864316633623337643234613734653365386362393261666234386162356438 -33306339663733313065623266343337333334633666323235393265663634343332303162326134 -36333132623239646539623665353632386239663537633561643138653835626433303563383765 -64633865343130356135646336303433313462343231373965333163373730336234656334623066 -61363334616165633032653966386537323233633632616564383732363066363235336235386631 -31336632656166386262353162323965303362626435656437636464313536303630373433643965 -66313134306665376538653431636530646664663861393931313465623863393834316465323830 -30633238383832626234313265646434663263613462653831386330303065613935323631383638 -61663738313639333062356561613732663863353538393537356339326636636638306131366230 -38313261386630336235313664313138373232623432333963393338623266633930653462636437 -38353531626439626336646565653338333038393631643262663030633132303432316138346366 -30306137313337313135623130326263326137366562623339373736316338316234643830363137 -35356139356539326135633039623464323963386633636161336661373761303763363063623466 -34643965653366636334396331633661323462393936326139373031363135353861656366616532 -37633839636566313232376635373636633537653165616236343166613536663139333537343333 -62653438343737356537633835653135393866363965393836653930653330663236306637333132 -62343662383664343165636238623035386335666262633264366238303462636237393633303330 -34336239343761393435313763356133633832343535313935616263366430636233326234653861 -36653337343432653132383136366431623836386130666562633635663330326134383837356264 -30613930353734326234333136323039396139656635643738353031346536646336393133373632 -65346639376230663038643532636662623634373362323265383136393439656239656336333833 -37316133623931626435623930323633346537623032653361613833656230376638303532313336 -32316464303934616239656236373439333863343339643833313238383961383835313963383665 -65306131333136633265663330383031303062363965396635323939636465343262616561366465 -39666535323534353836386565656331306137656466656132393861303561313962333963313337 -66306139313939653238383362383031353139346538333162616634376665656262653636336334 -61396538643536393234353062666239623435396430316532336563613136336466343031383138 -39616238346563356236626165633630333138373330313937643062666161613661363031613564 -31376365643033333532336631353664646366646335623734383063663134396639643833333461 -62666230306565366164396566666334643934303533363666666238663335623761616662333335 -65373462613666356639653664353263626632313661623664383237633265393838623465393638 -33616336336630326264643739373164626461636533353433633231636266623361626334643666 -61306438323961376533303833323433323762376538373230363839363465643337613035626661 -32363566616334623831643934653265646535626563313335326438363033633463363634613734 -39333036663833666635616662333536616465396564323336323734653539616231346234366432 -33326338393264616632623261623963323431343138316631316535366261366530346462343962 -66343661666230336431643063663264646437326461353030616464663061626134356236663938 -65383964366638363937623032613936313734383635356162336231663864656133656661656665 -31356666393465633730356133323133303735373435346265663564383936373737663638646638 -66623538366534306435306537333436616533656136346431633735623235656334396538373934 -63313463336539663730313361343462636536616335653361646263663566666466383265653237 -61623936643330623733363833336233373936333835336332383161663861623464313765623231 -32373538343362373262333562376636373638663134303230343430333632613836313232336263 -33666430316136653762363765643733643964303335613633666136356564323230313361386665 -64326166333332636365326665323037373031623437666132383237303934326365623933656139 -38633439666239363235316133666537343631323838313663316336623166346639633536356161 -66313765636537333935666135323964313530323063346432646364363466633231383833616232 -66336534613634646661326266633665303864363035306335363431626337343539666362346632 -38363739333833633830613737366364646435333836303933373362363936343665333333613939 -62613563653466363538336261356264336363646662633537343363383636613161353638303536 -32313364366234353135323937643663343639313336376463366436353430663934623334326366 -36386138653366613131653637633033633639623639653437393536653764383861643831643463 -64353730303738386266383866383631653464386236653664363564383965336433626337353534 -35626537613961656362613561666434643465363237333663316466303231616366376336383634 -63386366646433336532623033373533326530396363396132356136393837333531636435303134 -33363161356466663834336665363466656362656234373135333862616231613064633934306363 -35613933383166346433643436376235633935326665303531353730626364636533366132616463 -66306632653839356133336232613461626236653733623037363835326436663462633536346334 -34366333333765633265303134646230626263663661663863386663326332643064653537343430 -37663734333462353436393939653634643463313761646537633262326533336131613361323333 -36313733336133323034373635363234316630613965636439313636663166323035373639653138 -39653432386330623063333237326662373734333537366337353863353663303131333539613863 -61363036646634333831393764656436653135313030396235383636626164386231346430633662 -35656164613133663230326334373935626662373066336638303138353736393231653238313830 -65303361373163353837363565373932363837316164613266393331326339653630353638616166 -31303838353337623664376664363864373935333663653831613638313333386263393638323239 -32363332353166303038653366623761313731613665393439376463383361646664366334306164 -61373565663333636465316131326233396537663464376438663034363034623163653934363165 -37613537303538633234393134373632656562303136393061663866613661333835336162306334 -62643161396264653030633135636366633831366666666539633632316161633461363539366536 -65336239346336373462316636333235653461346239356333346137653233336332666137326234 -32636535313137303130363631313364323835653762663661323261663464326237633562646239 -31333432383563333139666634613233666262333533636638613034366534323133636532623862 -66396130653661366137653636633335303732343234613564363035643237393836643938336335 -65373266626364663564393634626462356161613766346435373161643333646635613031653664 -63393736613236633936656235363264366332663532323364333364356336396535373130316162 -66323539626135643132336661653861666433653339656237373764326532343164326366353566 -66316339613062626632643539303862386161306439653566666134656538666561653865346161 -34666535623565336630383138633663383235323731333437613966316130656435653465333866 -36313536306365623936343330643034386632636565376634313134313834376462666535353735 -62643364663839616331303831653037323439313564363831353264636461663137383766376634 -35396362323462303864663739623237653435633333643465393732353030313462386231363634 -38333036333631643831326336623239616263366336353332633366316336356334303935613431 -64376261353665353364306339373534616434653735613063326332333733343037653937346566 -66333663333366366532376131386661333562363264656166323333306538336661633066366263 -36343638363134306633626663656665653439336538373163353231626331343565323038353265 -39303931383165663066373030303363653363343435326561343765653561636461313461613566 -64323836663631376262323733643363313633356632313530326666316432643366626435316534 -32653464323362386239376132306333303864653937396239326463383866393239653733653237 -36643933643363313532363133626634373435643363326561313931316130356637356363393663 -32343462386334383066363564623634323534393830343735363037313766373233623931653130 -65623634663635363331643533393133646430663537356535343933333730396233376265653738 -61353136376162316636616665613833306136343639636539373661313865333330633937396336 -62616265373233646231393536623661346633653664363139666239623737666539313731396165 -38653739323565396332393933316433383732323533633233333533646133653838313032323435 -33363065383262666463613334306366393462653437643561393337373465336539363164643764 -32666239356132636136646364613565393735636465613136643762616435303037366634373432 -66396363636130336565646161303736626536356636373037313864663835636161333431653534 -39653530633563363663353465353235346530623162666530383661366339396362396364373165 -39363839663532643833333235643365616463623035623666356536653631656437383939353536 -32653432376163663835616230376138623539363338323230633465313664633162633130653835 -62666365346364386665373466353134656631313461613966643865396638383936663364613964 -65643037613234356366346265623834373464363366363037396536353931393463623037326161 -63363062376530393236343065326563393066316133393762666561633836306430373563363138 -31343939346336363265333335313837313061366665373365386136383534636261663431656530 -66366662313439303864303766386439343631306336303832616134653030643630363836646634 -33396237643262626132653632333638626231303031366465633834383531373931343065363436 -31303430323632373964396438613039356464303234646339386632366362613463616661396135 -33616461623634343933316237323565383031653439376637666463393733316532653364383234 -34643162326336386362636639646230353262376262663035373061663862623431616266376662 -32646330326236393139653533363635623163613332666436393339393339653630373233326634 -33396437646233346265373137616334353036393231633939646239653238343135313936623864 -65623430666163376436376234313236373839666636313639346333326630393065633935353631 -66653630643630636434633763613736323165333763653064366437646561343035656134303761 -33323639366632383965323030343838336134376633393362323037643765656138333464633566 -36323039383463633164656139323630343834333563346364623237663463396235363461336634 -37346237303135303132303036303231666338663761326265303366313235383563653266316535 -38356433386464313463316430353336316561373836353631386637393633643935373762333365 -33626333396339653935303734626635623763396331646662623137613032313364346364356563 -37613766343838343838633562356361353236356664373832633831373861613335396230333761 -34313963323030633965376432663339333061323734356332633062353461383662633363393162 -64663163393866663964636438623839613935313432616433393266643661396564353564626162 -65366366356330323330616463393835396662303732613363666665343430376463623665626432 -38336264386630393637663666323839373964643135306635373865323764656234313738313366 -31363037663261356265333364323235656237363862363130393964623936666465343965363633 -39646134396532633932363166326364633363353466313138363930393339356438363731636635 -30643963396566633031613838306635356462393163383733653734336432393135376535313436 -36376234663433346635616437633632383336383963386662386439323039613631353234336362 -63356139646236386134633035346335616233343362366133373666363033366638353136316361 -64336338643531643836646530666236356262393231326431626332666231316462386533623534 -31653365356437646666333631383532343936626165646635383435393863303931663664393130 -61393836623033366464306536633837353061376366353464626230393335626264396666653238 -38626564356362653638313735653262383139656361633139656566373933303263343038336231 -63306164313339353961386138653437633236663565643666383136363166363639363533616234 -33626434373134393439333931316164663430656131633832366234663264613566613538306631 -63666331363131383865653464613965343833663232313461303137383165333761333638653831 -64376335383036373731393633383739323237663534356435356330626365326332626236623538 -37353439313535383963626563303363333365323332636233356364396163376430373332633264 -30643265386133316236303862326431323938626437343866363732323039386464326536623836 -64326663646231386436633065336537323561653736633065323834653135343565306333616633 -66626262376166383739303532623038353331326363333138386165386134356263633232346333 -37623263386232316239393861643135366230663733386632396462363931663935333931623661 -37613139316232643536343862616136613261633933643862323766383162376639316330626663 -32666539373230326239396237393232363863643731326462613063313035643535613537396134 -64306335343434313136626533383264343137323736303838666233303334333036373462343338 -62393238373562663232326564376533373661366364316362383831386163343739313964623865 -31306361376466353630393664613033383339353430623366353761633531323865663833343336 -35653862323864356439666565363137326263393430366662313938346637306439376661616431 -34663735333030313631613238643837393139386465303563393934613266313638383665613533 -38363836333337336162313732623333666139653063316531323730363930636338616263663532 -63316331333663636533643463336236353936373763353339653261363937353330656631666465 -38376334386333646437643231313937666635323465303039653266663339636334386332613963 -32373164663562396439626161386361386633363266633532353163323331383835656634623837 -66343266316364346561636230383534616664373030346563616131323165373035386236613164 -37643939626631393136306164343331643235353837646464636264383236333737386564636466 -35333265626464363661393636363339633538633639386631346233366366646332646662303063 -32666364353561336138373939323733386438363964656565626538386264636337633364636366 -64313033386366323163363334306266643430643766623135313331303061366337333937633033 -36356264306632326566313566633266616135376462326633613664303961346234663535633039 -35633765383538656466356565333864356632653730613462656536326639643963643634363163 -62306632333833373334626431663436613663346531356566363966323539323833373638623030 -35306430303466633739303437616639643063316365383130363330313233393036623232383239 -64376136303838643235346436353335356562663863656365646230303863623161323038386533 -33383139343737306139333238326666346337333866383930663230613537353536326139363765 -63303562633564386436303231336162646437396230656432353234346135656635633031373031 -32326330393334663133636665643134376133633831343837346464623631356135633133633262 -33336236363561386537303234346537386365646331633433316133383562306331323664323865 -64333962323736366331313664636135373734396264613632633433356332656333353361343836 -35623865663732396230393033613935373231663237633437353462656234326334303631636161 -65616333653933616437343530336532663632613636663835306434383934383435643331323263 -30633233373431313831623562623137633530373434336363346436623431336563366161343936 -65656136326366306335343330666536653465633061353266633036366136666663313064343638 -33643763623162333732313832623733343131383632376263323437616436633031623431376130 -32343537303539333334316633306364393962636462363935363239643164336435636337303138 -31343663353132303737643565663432363130343665633762616232653936623662636434633332 -31623733643464656136303432336237616662323338373264646462303135646330353761626435 -63303738303464316234313339386463343234653832356362376533346561613537396261633562 -61383131346464633737393061313663323437346665343063316132663531346434313762373862 -61323666366332306238653638343434666633636164363463363536663233646236363565356333 -31363166663764353130656364663332343436623466633662383461663834323838333864383136 -37643931623737613330306663313264323238333137363166353735343439666237346433373263 -36336563333662646337656536323331393530613266613532633134363534666238326230313231 -31363937343536663437393962636534383732376138343163613335323735376165636463656633 -38643833343337616264393930613236653538626163346530336165396532393034653336623430 -65323436613237326530346632366664303761333966386536356139656431396637663930306131 -62616435613034343166396266303564326164376433373530616364366338623632363034643662 -33653939653262323437366631303061336664613666306533363038343832396232623466353138 -61376336356638666264333535393236653130343266326130386139386635303839333666313665 -64623039616536666665356431343761306163656439336162646537666631633836336363343936 -38353163333130663835393830313161616533653834383731626361323161393066343637386164 -34346333306263396134336366363136326166366161343962376465616137333061363261373066 -62616536653034333738623139336632643863373037396531306437333738306430306434326536 -30306534326563613834363431623132643138386530396466333661633033376166646436636533 -62363134623138333831626664336134376263346237653666376630623339633766626431663965 -63306164643930353135306266393633313030363333383439326361393031333262636133646633 -33343235313432386636343662643130393862616539346234616636616537613464383738623834 -65373365386134633034393632343461366366336465383637366532613131653032303961396135 -66666564326463663431356435366461333564363566346665373736336361646464663062626363 -37656639363536346662356232313935626430663037396230663737613261653165663734373861 -37333134626639346433363732393635366666643139343736653835613736663338326161643262 -31643035653034353139326333626333613136346230626664313433323466636534616164613065 -62623330373661303039376230353838313239613834383139656461646532643130613864363165 -65336162373264356633356333633062383364613161636362666338353361356362623430353536 -63653038613463393764303038353233303138343335613030393638633634643732343661316462 -32353064643137336237316238353364636365313965343166336230396561656336633335336165 -39646661643061363061343731346135343532653438636234616564623531396562616531343162 -61316632386537393031316131376362376532333230666431363538393864373665336361383935 -32316537653262323933366562303931353739633233333331383263656638373366373132353264 -32313564366563353532666563663535316333613130343631656530306539653364363530363730 -64613033616430343339393131383739383431363238386162643165636162643438363539326136 -61353465396461386537386265333939653137366436366231656335393630306332396239663832 -61653036656534363732353336636534623730613362613131393561393736636130363231643630 -61656333306439653531333666363561373761316532613862373163323432636231613731623932 -31363739666264666661363566653631633237393362363761613336633136343364646464336563 -65366161343033366364643262376633623238376562393264646136636531323166636139326537 -38653765316366376533633962646565383865323365373237626237656233326637646533393936 -34636562623261383433326136616462663731396130643366383865303337323531373634623364 -66363030343532643431363165626662346264383838663338633139343336613032633333643233 -62656438306630346234376431633833356363663065303964353466613238386338383839396334 -31323164303439663366363635326639396366663764363131313461623965636637383637613832 -65333833376462666432663331623337393838316561656365346565383534323434666135623538 -64653738333466313764333834316333663230663031373865616566643264303337643065393134 -33313230323061663937313663626538353433393834353566636638626235623932633466663366 -36303737633063346232623062646136393562626637303430353536643630653835336661616234 -38663938643939323463343738323166336637373133636234636366353131633139353531666363 -32356666313834633039343137623963653232396532346139383830393963616665663233363133 -31626165623966366561376538656138303164323338393966643066393632386635643330633461 -65373236323134386562646530616636363638366237303163333338313132313133336166353833 -34373836633464323235373631366465343538343038636164643830313534393034303033633935 -34383565646438333462663339336330626566346166303866643062303738653137623137626265 -34313033343364633438386666616665623137363838343036633739326366373034613466666537 -39623339383238373834306336323862626636376532636132653738343931643064613134323765 -35643664656664633764636263393863663463313862383139626536663265363934623533323133 -31333632663466346430643238626262353633396535356534386361333561653437656330343564 -31393530363836356637316532643162663535343936353637353137303030316234616434306332 -62643632326636656333333332303730323530313162313634346538336230303765643433386666 -64616433636436613233313538313434373964323165623231386436336666643833373634646364 -66623035306562323437613739666236613963373134326632666530373830646261383934386130 -66613332343835653038633365386561383438656566626665396266363165663433663139636464 -35343136323738313361353532633762313434363664303234633036656533366266386464336138 -62656235363639306462656132346264376233396163383865313763323163363038346135316364 -63613836323338646465363965396564653164396638343264356339646434663738313361303764 -36626462666633383665303730396537636237336533323361386337316339393038313032303932 -30306566623839656162366133616137643166363931386630393037383834353031333733333161 -61323631623435303437613563656338333337333330336363663630313963366631363037356161 -32323633663162333036643363313263333063346336363664353237656361336563373431383033 -63393761666166313666386432386565663364323463366432303963353836343361356166666131 -66653562323466386439633936356635323930363135343066356132626361396666383833353438 -63396134346163613164613962343066343165623033336136393036653238353239353366663538 -30393466616337333332626630313234366566336431383261323430393864306564343531653133 -64656433313836393766646634346539306635386464663261636561306162626337623438616164 -37613236376637313938333764383562333232373964643536323632626532636139376633363664 -32383339633237303136306434366334383137366633346130323263336661646666386336626537 -31326264316530323031623532663363626432633834643839333837353335363936663230636130 -61633066343163653561626535396531323966333362626339303030376663353962656232353661 -65323639306335316135643635326639663534333938363638316331366565386435373863306635 -33383834313364356237363961336337326565613631636634353439376535343239376237313062 -39386435326562653134383033396535396337613862623935356365356137366361366136323232 -39326664393663623265363333656435353431613438303438353934316234616266623364336539 -65363633313664383032663337313861373839613239326563613162353739343733386463303236 -35303464646637393037343435636663373632346633633238663539323338353034346131353963 -65396331376338653930356530333532613862656437316636326530313035313939396562376635 -63363764346666323564333533366563316163623736346665666361653664613339656435663933 -32396232323039663862643035303036346463363266623837666237393634326135313762616635 -36623132343731313635363130646361343361653663616131633161336139303363636632653963 -34616436336266633263653338303366636632633539666132343933613132353766613835316532 -63383731383932303833396631376664323364313935646330376666303064303638343539313462 -30393338353830616139653464633436666362363563656639663938356666343539353763383666 -62303833656566326636346337656133333339396430363935303238393938636265346231306338 -35323862333565333835666339366137633237666135646366383039313831616638656566393535 -39303936613335633563313032653133373134336437346230313064616139346462626666623833 -39303432336161323038643662373462616361643466653534333330306366666532363965323564 -62343931383663666239376533336335343665613561633237383564653134666566353130343238 -62383761313339396665613161616135656164373365303434316439313266303032333534366465 -37653963313130333366333732376630633935343938613439303036316439326164636662613265 -33656162363033663432643635323761326430373763313462663231323836323137633636376639 -61353634326561616462386563363637643965313066393136393161636265346339646431653937 -63396365366630343365633961393133303162383562373165353339303138313164306232303330 -33366233396462333730356531313762326264306539653634653863373038623430316436353365 -32663761336533373861656562333934393534393731326534353437383132366333353035346362 -64313731613337373166346634363935396633363366643662356461373132333631303333643265 -38303834333865373237316361343030343636316438313663616633346433313565386639313738 -32373332326231613664323930666362626632646537356132376364363838353964653064653236 -31306635383037613661666436646433323363386637333661313033646132333263656566363030 -31626166313064306435616433363461393136373635316430353230626265666432313134343461 -36316466613266613532353663626632343234346230316531373235626331366134656635393862 -39363136623962373733643539363534633538336163343930643436633037626365343138303032 -63623034346634636233613430356664376462633965323035633136363433313964326261646566 -37393831316530333864626336386665366437643038303661613162353865613563306638363338 -34653730306135616236653835623462376338363933306533306564653065346131323033333364 -37363433633538363665376166323436343565616266633134326164653062336161303232373136 -38393734336631386261623363636438386438383733633864666134386232633238366630343432 -62343532383965333738346537383431323135653334373932643766386165363238306166383566 -30356562623535393730313533353764313463653230333631643236343938623533356632333964 -34656132666530343337613931323763613661626336323734656630386330313666393631386132 -63633331643832376339663636346362366261363336353333386331316332393531376363356164 -37313764623265633562643963343964343838323562613564613237626335666131626439663833 -65393237666439336137336437616333316536333531343338663031356338343263373832346565 -35313732616536663335343861383962666637616633333139636561666637376263363965626364 -66616639623164313932636365383765353563396339623339663132336236646635303634303833 -66656536346137363839363061323430633733393065643131613664346631636465653039663834 -35393531643763316233323833316662303436373765613335386164636234613436633864623838 -35623236616366383634346631336163616632653637613434376639306136303833323034623938 -66623132636336303066653262653363653661333263353932333833323761343463353631396435 -32633037343933666230653635616631343961363562366162653362356234333634326663396631 -37353164633532663465636661623435383264313463613862323261666236663361336636373762 -37393765323163626239313436646563363735623232613263393831346265373033643865613933 -64393162386464343137363938636131626162656539386532326133323864636534363235626234 -30353439326639653064383430356631393936383531646664656565616161313461656534613334 -30326634623464383434666166393731303433613336356337663632356432643531353765613964 -38396430656261303862653965663635353162646234323933353334356664313234376230393731 -31366265613239653932656633653366336436383537663739333434336366313330306338643934 -63303832343562613333643161663234306365623936656537376636316532376162313462366635 -37666132366437333265306663626430373066633635333961643933663139643633663365653435 -61643262373366396339643335343135326136643264383661616466616339343133353630643066 -38303139653136303136373834303264333734333433636430393031383839616230613231353661 -66356530636633323738343231643366366661326135336139623232646130633664346430316238 -35616166633566616434333430323232363833373931663938383137623563323131333864363836 -62343861666166616536346166356566353163343338336433623531663933316137363163383663 -33643065353830636432616334613064616530353165636136616666353030333062323039396530 -39386231653863643131336531373834316137306262396335643463656432323964346436336663 -39336133353961626261373234626130303938616530643731633563616266646666663263663764 -36393262613036353634393434323631346261343465616266336132383139386331653839356366 -35353661313562623062353662353935333436653331316665663433653763633833343133373465 -34366339396261626435336238653863383531313738643034656664633437666430373561363132 -33616335623832393932363561643234396436383761616231306634313366643463336531393135 -64353138333738333533396434376231323333626265643938383763393734623963613262616536 -39303932666630656432336330366636336533323563306333323962366635626361396236653135 -38343832383163613964663864316466643539616264313563396436333835656166316563366530 -66626532613737313538343138393139623136323135363061383439623561313436323338616131 -35643964623464316435613831623666346534633265326337323332323733666336303633313161 -33343334333861623362656363646363383462316265366462663431333561376561643937333162 -65393734303035333761326661643864306364643461333935643266373039353334326131353137 -66373066316363306166613935656530373663653531336336356337333238646531376132653863 -66353966353363653434656539636138616365396139323931613362393563656635303966303361 -61376230626430363632653565656535626338623936323534633733636335356162363534376365 -38356330313433333764656537653565343635396162366535643339653334346262393461373232 -36376535396432373939333630363330646630316536363364623262623363613864623630633431 -37626631333338323062656564376164313066326461353138303865636263326234353534623738 -36653135306434626263393761396636646230643163626266393865653964376663633138626230 -62333865396238343266663331613835626638313865393734636430626338656366393633386639 -62303734633264323633386532663661336663316363376636313065343862303239633964633738 -63633966663731623334306438373830363162633739363831656630363136303538643566366439 -66383866653064353162333738656336626164386462366230363566363738353666316136346462 -35393834653066643833336261313066613761663137656565646666323233643836663163656130 -66653838323934363339646437613764343566656132353838373037316533653365633732613463 -30623930646538626539663162653639313730353639306365656539323066343934643335353664 -39613834343939613131646537363136333737663861633366636361376534636233623833613664 -37633337366632666637323866346631616462316362336530343966633762386133373033623265 -36303733313863386366643337353830663130626535626433623733613633616564613631643439 -61643732363964666435353465353531343666346365393165653964653330343966623065326131 -30646639366337643763383734383362383433383636613230636363666639313736306562356161 -62383864363837386263663638333263326663666365316238306236623632333462663361646231 -38336230666238613836613635633533313338646565663464323761636165613066356664653264 -39363933323538663531316363323638393065323266303338636438363233396563333833303430 -37643838393934363734626433356530663366613732653939663130633964333934623830363762 -37653364663662333364393535326630333932373265643564396333646339336133366437336538 -37383061313538653363373464323136633638366466303432393830363930386636613262383331 -33376536623732383139353465333438613332363338663032343430393539393835326565636236 -37626333646465396430613335633634336239623038613439333661303737363137613237366533 -64366639393936616537366161646536623838396531313662343564303636366539353430653132 -30336466373930636361646438316339663136366437616137633534623431626435613437303532 -62353365356132383333653562656364373836376532343338333830373937303331393133373661 -65353038323834333264383238623864386436353166313466316533343739313635373038393161 -32323766323234663665613337313236643966633638666638303732336238393039393537343037 -33633235303231333561656265343237616336666534643735353966333535666365346266376530 -333563303261666566663465386631386537 +30396338396662633839346434323536373438663664303939653039326363386663373864656532 +3464636233616639393030633336326361643964383236630a636131346539616131386136626438 +36303865663864613935343262313533393438376366393633616662326464393538623262643639 +3032373264316230640a356430376234383433373938366530663836323536353535636130346133 +66383764353034616332333636643465613132316466336264366665656261616565393965326338 +32633766643763366334663436616266643437353730383163663465363864353630643965626164 +38336462326433663939313565363034373938313433316661623231366665336564613564353733 +33396131656135346238663331663835616162396133616231383566323938393365373433646662 +36323732653438623164353336326636313238333531373739383862353538356264653634643662 +39663739366336306366376466643035633237646432316533396636383964353037303066306661 +63356436313431353930356165343835313139373339363661616230616533653161303236616438 +35396635326262366238343836373261346532636632613535363638636366613263643266653136 +65623838313033386465666239633364613034613531383465336639366466666635653139373235 +36383035663835623064356136373030393365653331383662363263633630333436363337313534 +37666366386133666235653534316162626634363830353338343737643466366139373333656634 +31373030363664303365396239323436616361323064633665666466366331643834303236323631 +33663238303863653936303166643261323164643936653663373666386635663437353932353735 +61356136656639613230333837346463643837646465613932666261386136653635346339303230 +64326432393163653736613039633435633161396439383733306637326232636265363934343465 +66363737313338313730303862666336356432346565366630383335646633376132366139336537 +32646133626531626630366532346662313234666630303236353934643035656163363132313466 +37333333633132313239303039373436663736663539303039333164363836613463336163393864 +33623639643439313262316331633165343731363465633639363265333261356432626161353964 +37303334383663663037646536623839306631396464396137333866303366643465366262653539 +66303433346138383635323231303635373633316263353630383632363931663537626138343339 +31613736343763383135663839383262326133653134326362666630393131316532646663643964 +34636261303563663365396637353031313833343236346431653637626635626163643832346465 +39386163616161353933666631333939356563366239346439653237376364623464316634343766 +37626132643537313232396536306361316237653834346566356430333264636161343734623763 +62363563373537396566396464393064656436633161333139656666643938363236613832653038 +35383034363339656562383637363236393965323561663364663131333162363664333865373361 +36626364343930623239366438303263343662323564326633333232393435316261663966353465 +32663237336666323163616438313832323863396535386361636364646537643163633232663930 +36396238393564383863326532633937313561363134613663383263343865356661613065643331 +34393565633739666530616261323538303261656532383538626139353238383632336135316462 +32316434373664643262303761323937653832613966383437303332616231313661343961373032 +35643935656636326434633239613439376436623463333063353262636263323330636263313531 +30373633616662633734616433393439363662356662333233323433656663393030363563336332 +64373163653838316332393062346635393632633064396633313862616331306438373930653361 +32663939323139663561653434623437643735363232653038643031313037343664366232653866 +63383437623064643831323862396238386137313734356135653131636231336336323330313039 +66653936396262323334373733393564663461306365363961396338313566353632373830323432 +30663333383164336231653534366132333165346631346163373238666534353937343761393865 +32653134303336373531336330373935376239663837343232323130383833653536363061666162 +62363061326235316565633237613832306431636566656466626335316332623232643864323865 +39343361323964353231643032666539366630313361633063346266663362303364643230333862 +66366261313538366437613230393638643665633064396361393038346433663061336438376339 +65643666643163653733333136346261353435633234346466336437636463643430396336346632 +31343161333666366433323330386362326265666131633234666264303839393561656462393865 +39663064623565363633393735303861303733343432633530653933636139613231373463343338 +31353935346335316338313532646139313261333065333632373366616635633166323837323737 +66353835656664616433373432393136643364336366623236633634386463393630623636623863 +33643161393761336666353037626663356134346339306639646662386161633662326336383861 +65303238363163356338343437616333343830626163396464643035626634646431633966653766 +63333232666433616561393063353565383836626336326662633535356239333335363430346665 +32653432373737306162666665616334303236666430333434323738353838313165623933613238 +36393230306131303363393537306137613066306466623833303330343235633362643437363161 +32366164396435336561616239656465376362646262653439376235353561333665393666356139 +34666639363533643866626362363330363962386339353134616139353339323034656633383833 +66373530326131613137363366333562656164363639653334643764633132343539623061373164 +33376338633631633531646165383439376432366661613039633736663032376133346331633163 +34353837613733386539366466363939646330396133646336363732653066616166346136633764 +66396638353133363631363238333638353337613737393930333537356664383964623331316338 +39633565356134386561343765333962663130623864636366386534343133633263333461613035 +64613264653133653666303530646261373464356362653964396532386564623436343861386431 +35653338313430653139613638623732303133616561636562316236343964663433613964356161 +38656161363866306239386566383261353232393731356566623532386535396438666635393330 +37666639363231343263646261343562323936383366376239646562383935343664326366646466 +38333564386566386163393334333261303266396535383966306633343365376663666462356163 +66323137663537643030633730333934643338316530383733626435393761303530616431346131 +65343662666239623563653838303734653134306333616466366264653739653138353462383037 +34366535643566636437643737343364373131666432613034643263633137346439633930376531 +66643165383031346438366638343165623831323264366431323962353237666139636430366561 +37636263353338373138616666333065393137396161616138373734373932326361326431316237 +38343266366261333935366666666435373965356337333262363036323439306236313561616366 +39643562613933653137316133353238663234343165653733343535396664373236313935353834 +39373861383761643433343734363636346464643862393766623433373937306130363861663365 +65653766383339313661666130656265663935333932313263303461393134646439633435303232 +35323932623635353835346166653663383161343836313133343364643636646631323038316335 +35313635396563643463636461323162363664633561623765633565393531343465353137623137 +66353631303264353234346436316464623435363761653463333439636264656233666664636166 +64366666396330336465323235656637623838636262633439363065396132353332613337363533 +63656437666664616362343165343534396465323931323763333863653364323531383230633433 +31636164343131386264346632663938346439653337333338326339666261353133323834373336 +61643834393461626638333130363566303538333839316562343065303665303830623062616138 +31643261663734323934313666613264623662393130353332316535623139613133663465663066 +34363538623239653831313833313931343566313431343563356432623938343830663738616137 +66333537336433613639633863356663303965656130343866333732396534373632333634343664 +64666461353532303464383430393731643938303231643731643938383231323161303462373065 +39646430393237386164306230333832323831613661626335306535633733336330316634643530 +36373162656361623135636435383164363137626365616564663436333430316432623533663062 +66613863663632313963663463343262663064613936373733383539313632323064626262393931 +62623635613366306163333333323532323634343063626563336239616564363135313432306136 +32613066653034376132613434656536366238626462363931626132393466306639316361656565 +66383863373733653239663239323035306664613361383331636665623831386430613138323265 +30643633623933363462393434666135343831663735646431336439393062366561353333633231 +31393330636134326664336538303439366634393363386664636633646266373035343635333638 +64386566323135633430323764393832616462356237323037333233366437626534346437306163 +31363137393662643164396534656165366363393235316533356139653439343061326264616531 +62323765653239626538336231313734653531616162333438643837323662373634623138383434 +35366563373730653965316538363434366434303266653930616137383861646638393032616462 +31623530643432663131616432373561636265333439353736396637393632346539616137623461 +62383831653566323365386631346662623234616234366166623131616166633334656635356637 +36633139363833613731333235326439306363623739656234656330346432643865353862626165 +65363035323535653034306266313361663731333434616437363533343161643938356336643964 +35633266633630646636626266656533396366346138336564396434613132333262613863336230 +34656137636635616365626536626263386165383331353865393234323538323032353934626466 +36623562373634356536623964346332336438643335376530653332646436303236343038656536 +39303331313564346433343761613361666263626366343665633638623861646162646236303331 +34666162393338633237646163653533323633316335323730666434313534643337643963383961 +38363938636166383962616539373737353861616430373035616663313938316461333532366238 +39633630653131323265363065353930656639306432356536666534323530383834363264393364 +39653462616437343266386161626361303436643339306265353162653933316466313966613531 +33363539316334313864303034346436656462336337346435363766633231306435396533336333 +34633730333230356131336132666165326432393435366632646130613733343164613531643536 +30363538646433346630636264633434616131616263326639336534353836633637383734306265 +35373034393336623236646561343866383963396534333861393132393638303461656562373538 +37653066366163373961656536303963633031376663633239623765623065623764643233623337 +34396230346536646664353832363731303233346361316432363138393738303139613361326633 +39323462613965633135623234313435666632323761373963353361393636653634376232373062 +39306264333265313832656336323964643531373131383133346635366638343131363435646663 +34616334393338353431643464363437303333613062363935613865313865356263653261316133 +32396466363033656331356335363833333364333866646238333531303864653363636565643636 +37653639326336343261343433303435383034643163633936396566653934326362373535626362 +34393666326530306239323236343836373335303936393564653031633332656236663964333732 +31653361346464303265663835643165656231313861616361383733353638313334366630373566 +61336266613433633966396634616562646364376333663166633331383238346432333730626265 +39323834393432373761323665633132333239646132623737356563373266633236306464363935 +38313735306238336535333539323361666363316234623464623066313966623266323061333265 +35353365636437656332636262636638623334373063353836326662343862663336316463633262 +38326364613138313161376366353737333261396362393637316564333939363663613330633538 +35353239346534663965343030613533616632346364376265656165343731343661326334656662 +35613638326634346132386465613231376662616635303235646138646462393538366131366666 +30646130626134636666316331383537386265326264666662373234653832633663393662313864 +39346266343866306138326564636538623834383438643138613734373236396335643661306438 +30386339313637616132666331623664313530373738626662323862373665306235396236383339 +34393634613133653566306332376331303035383037346332643365333562386330356531343766 +35613666643539363464303662303866396134383662633366356637343434633537323633336230 +66396362396265313930616263323366383134333039333432393865346236636634623132366134 +36373261336166383131363762363962633236623935396432616635383134653238633161343031 +39633335373864666563623862323534336135316335353638366334316431666564323962633537 +32346137353138393463663439626162623131353161656662633364653638313263633238373335 +34333865626638366563626434616565636337306461633162393436636361363434386636643965 +32663431343663663630663533333663623032356331653434323138386535343530326264313065 +37323233363330653938386262666464306465663538643932343062393731313035643961666630 +32653061663632323464313263643839366631373733383831323632346462663732646462373837 +65396435613364306630653433356561376235393637636133386561343533313566643865386465 +32623265646434633631366333613038393832343161333932313038616436643561653962373963 +32306332653539633064653739346637373439366530326537613138373062396639386136633039 +65643939333331353433613065623062316533343462366432613430653930653761616365333166 +62376236663263653036653431643037663938656262313535653736663664303039346164336261 +30323132333331653465366363386662396235616630346161363264316362376437363136313366 +36653561346233636134373732613230656230393539616232666434306138656161323465663036 +64666561656564316162396230633230646630396134366139656234333236333464333266343735 +33616335633331616232623735383762616431346436356230323237663762633337636462373632 +64386531663331336438386438623930366563323066336363316236363263333535386662363135 +63323637363535616263653764346136663231626532333664613963633666313834313162663661 +65643762613135333763616433333136336664333537393237666563306532633461333566316361 +30353432613739343336666330643263646164356235666365313562343430343139663536346363 +36386530386235643035343533383735663161383634636134393730343462366465623937663034 +66376439373131363663663031366562353337636233616265356133613531656163313163653366 +39373134373262353965643936336461356636333739346334393938353431326336653938306539 +61333261326261633062396262383765383862633539666639646137396561383066616339663132 +36306265363334303263373033613731303964393331366530323665336364636664656163313636 +31313830363232316165646134343266333536376236626334663561373137636436656133346138 +63346237323664396438646138303838316464386337336231386261386538353466646330646239 +66646339646130346634373366633037626665663030346536383835393365323135666339376465 +64653134393438396331303038623366616361616134363239643530623934633938333364663035 +31363333323862633961363836323363613566333666643732656261316365373730663865323331 +34303731616636336232393438613730616139396135313130343230343962326533616634663237 +63613462613431303730636261373463303866376332616564663031386466633636623433363562 +66653739353233323838396637653461646361613030636561653930623931373662383637396538 +33303035356236346161653662333038623334313832666135353738336133613131626535653165 +64313266633532343238623663303731303061646234623766313332666535363334333232353965 +36653938373863303037366531316539663264386236663330373938303863353936653564303035 +38383939393430646236303964326263663363303065666433613736303463656431363238613761 +31633731613631393832613034323361316137346232653764373434353337613331363136373138 +38336531343766643263396333613233366564353630613938633537323837333939623962303833 +31633233393861643833643035613832323638663439666463626163376366383439363062393637 +38346535393634363839363730656136346133623366303565623532306534363630356532356439 +39643064653533353331613664653364643666663839393266646663306336633339323036396235 +30363062633939386263623763376530646430653163323361353831623263386234333636376438 +61643833623237316166373739393363333433613239633330623465383138313762646264363431 +63393063613330316437643231343539393733306539616239316334303833343265643034313330 +65613261633835383532383533303561336637656438353732343561666435326336393036633965 +37316232376566623039653365653834343664396136333763393862306566363434656439633937 +66333365373239313961613362353735663538333861663361343265656433613966356636343333 +64313764643262343032613965633636623038626630353631633739323062333863643335366365 +33636236643266346637626263633030373265356633313461373139626431613930323866346436 +61376238353137643834306431336432633033623530623531666465663437613061343837393765 +62636134653863613465393834393666313862333035316566333639326633346131666131353834 +37373934656431353134386133653665616337626531623665656238353036303738323338623161 +63623239613862643764376331363336353630376366396564663936623038636564333763613939 +31646366663033646234666531633938663566626634363732303564396432323030636238366230 +37323562366131343365623265653065383630633731333638313138363735363961346335633763 +37326233333230386333636666356535343333316563316561386139633062356662313331376166 +35373563623462393436646562343565613464323965363832653439383032613862626233353766 +61316665383661336130303630303137346630663038653663383732616166356661373236653564 +35623238616531303665316164343834646130323036366538363337663334313761313531663161 +36316336396437333464343365343161636231626434373832636436316533303532343833643333 +31326436396236666231386432306336616338303234636336333132313937323333326364656634 +30646434663232613739643131616631653866656533656335386138386165626134396637393061 +39646638363661316338666164386338666239393861333938383162666239303063393038613562 +30313963393366633733663137386339333333323738363161343131633032633738653436663136 +30373837623438393431373539353666343436373731383864643266633562313830613636643135 +36363339643063656332303065333333663338333463373931633635613030366335303137343366 +30303639373331646664326663656135626463326139333165333766643166353936306364396462 +39646536616239643939653836623563643633646239336362613363636339393563373533636437 +39343138636238333231636538303235643130666136386232383836623765663936336437613734 +65663165383161633865383730316566663137303834366238346164616138336238636666633134 +31376363306365613864643663323538303265656533376364373166653737643533633035363862 +39333463633230373866663836333931616636313265343765613438383032633733353663646636 +38656537653931343633323435366463363331326337663630326234363537643035616531653364 +30353163363330363564393565386266366566393733393434386333636666333838626161393838 +38323232626664623465663463636236643336393866373533616465356238313764613965313833 +64363166306637616131633737656361326632653936376633393639353536336365643037343236 +39613566613932316138616533373037313339326561633761313836636138336339633239333736 +64613766333732336635373134613333393431663337623933386233313464353038306562633933 +39613739633334323763633434343466666162396639386433666538323435383332613230623765 +62366630383562363965313339383935356664653635373133363661306536633663363538646135 +35323663376335376262343736623963346530656230393434363163623639636535383038353734 +64363630643662333464623231356339623233343435373439373533376366353663333561626337 +63353332326230313562666139306237326137333864376434333434626564353734643734323663 +62386139663063623266303137373339616563653437613964633630633237323365636364373463 +31636438363237643364666366366531373134313831363834383335616438356136626539396665 +38313134393536393330386266376361313366396335363264656131366633616163343266656536 +66303762346531623134666135383962343136346630353230643533383038366238303363303965 +65383665363136303233643362386537303533303666306361313231373039663037333230623332 +38343665663339303965353763643031326331636662356364333730326264643261613166643562 +66366234303639663331623633626634383436356137356464313832313636343264313137363436 +64643538383230616662353036626439653164343631623939306334356335363761363734376261 +36376563646536363465346264626530363762383931663331393666313235333864356236383831 +34363561626237656163623136656631643439653639356634336331353764633537326234626630 +62363834303037373931316461656561646335326139336662323639383464643433613139323038 +61396434393566316636386436333436626430333531363763636439336130356437383063623063 +62333032626566373166316439623830363132343530663862663038333931653932623339343639 +61656233373531633832386666323230376633356132306438646539666434643862333236373730 +30633830656364353437313362366338353461343462373265343862613031626261666432353935 +37346466653931343336633261656332613264393565353362326138326230646236383463393436 +63653030316362313265316631323965333564333464663261666334666332323039666635343038 +31616636343737363064333539666430373863366263366563653838373861303636646631376630 +61646239613761336162656431393731656562373737386365353664366130343838383963623031 +64633134376339663766353861623562396666656233333061333763323632616430303138383564 +64393835393639383331386139333733643763333365343863316161623035646664666134313331 +36646666613239393165663865616338333766336637613161656132643363316262633561613863 +37376530666338653761666130323564366237323464366539336362613933336337353338626632 +61623537323466396364616364323337653265326565323731336163353165623134363062623234 +33613065343965396233333063313562306163326537646366326230633364316665323764653935 +39316363326565643961393663656337643130646266303837636263333562656366393434346632 +62336265373435363837343733353436386261353832333135316261623966663934316134316636 +63613462343436646564376230653638633165376563366361363533646533656336633538353535 +39316161643164343262626462353031346631633730663436373833353362626137326533333064 +64333933373031663930336562373938643563386363323335663461396462383264336631303336 +31313766646562313765356664666339326565323033623137333061386238613430663466643237 +65346136646632383464623932303562333834306264363935666165313236633332386566643533 +64343730623731343036393536643938333838623562346537613838313339643333363963343432 +61623430313866616435363466313738646637363361313035353664663461393164313831353163 +62663833623032653565353136343034666532626233646263633736633162343737343464383566 +65326331656239396433323663363633353131663663316330353738613664313333383464653331 +38396339363464376233336562663565333964656430636363656664623236643233356231336433 +32316639633030343736343766376239643864623965666666343230646532353966343735343634 +31626663346637653363376634363939383066663230646636343135323361313764303765366666 +62383665633062613365313632663437383033633933646335336563363339376631623831623233 +31343634386333306162333137376634353234623535666663343537303964373266616364383131 +31653239663266326334633132363934633962383863356233636434393863303064326136623038 +37636465306661383164343133386236373364353936633965363639383933333731373437616631 +65356637393031316566356665306130613166323738333431623166373634396339653330376432 +66613330303262303635383831336130303135383363326361653130616638333136393364303965 +63326164616638643239373264656133386266656430646533613466396632653538363135366166 +34613931343931613834663339333433363630383835396238643731383563616563373239623066 +38313138383064666631323234663566303738313734346265383836386665373139323062343434 +65653266356230303936623662333562393666663965323131386236643133343631346630646632 +33373833323139353864326633346231313635336564653565346235626565333636323164376630 +33333462636430376431313836353936633932383232313364653237323630336232663033343661 +35333563323662383038376163343335653333653538623534653538623433623365393134336635 +66356432316165376232643537626264653033633361396634653865656461356563363838393863 +37623164393735643132383932616634333730303135356138373366363839613931636466313736 +37343266313931353137653162373732613732613161653631356664613533336166633664306336 +31373561646236396363353538363961663133353834306433613666343030383932653162303865 +35326466323937633833383037323439383262346664633734653936316638356266376430356139 +36323237343839656265303736373765623335353331653030656336373138376661306563306264 +32646439346362623861653562393032323039646433396431333834666362326333343864326464 +64666261386162383632306362373332613238356531643531636230303536346138343431353830 +65633736343736326163343766386133663030653133373937316138633165313836336334363865 +35333461633263633661373165356634343661376562366430663138373437353331313363336465 +30643164636234336266366236643562376636383664313764363034616639333932336664663331 +35653637616663613131316661313965613035383965633538343064306330666139646632386438 +37333562623964353235626539663133343336386531376537623735663130306233356263376365 +33303763346466616461313431373533646161373038336137643562303033316335643534663935 +62353932643665396262623034313163346162393430393631393962316631393662383137383239 +61363437303433666139393062666266393832633735313337343863306264333636646138356530 +65383532383331646463333731383437396630326166383134346237613830303938366637613832 +32313434306263343766373931323432306635323765366662383031356332643530613437393561 +37356335306636363437666463663462333431393963323965663561346530636662346538353362 +37663839656337396166356530396532356566306531653335383332646131353862363062346137 +66336133393235613634386537663364646465636661333333656235316232346633356133663633 +39633962643161633535663731353732626434653565643161356434383136323135643661613638 +61646162356531333331656230353431363932366633636435313534626261383066383237623961 +63613866333165346463333039396164656234333165643864363732636337396663353039353533 +36313034373966663963353134303733616363363264616231613164616232383764316633633166 +31396538613964623861346433313738326437383164313932663262323566633838316534346131 +32393366376437366336636630313461663666633832333162636539376562323863663366396639 +30373364643066396562663233383030326161353266653437343761356364306666653938616662 +66623634333336663764326561653935326334353465356332613765653061346534376565613264 +30613232366532616166653336623962333038633762373162373664336532623866396164336231 +39636362346266336230633032356236613964656436303264323037393263396530646662616638 +32653733656639643335353638343935383133363865306466623865343362316336303330316238 +38646137663864636231663931383935363932396163623162376333366632363761353233366561 +36336534613733303733653839366562616665636138653236326139346562356134316238633030 +34616263636531643362613833313135343563666531363135336438393238613964643861623762 +32356136376363653935353666623061623230313532656363373065313238623438343937336235 +63656337326263316362316535343035636563653432656130366461396234306661613034333338 +37323261373632386334353065323639626630376165646361633363643539613266346662383762 +62646636343062316133623530376534373538396164336362356666323738663164363465623861 +39613361336235316137383632623931633733666332646439323137326231316436653664633636 +39626636613034303061393463356636383635366462373534353232616164383734353461623835 +63383065323463663531373934633738343531633364643334333838613963663435326139333935 +65383235383362646532633832663564663233373232353133613430616438353261326631366464 +31643430313766363438386364613730363035326661663837663864343865643964303665643365 +31303032653132326263363838326332373464386664616336346439383439326265623762643461 +32633764346431613437666332343837303363656661323338643834386635326235393535353934 +65626333343561373564323638363635376535316434663063333432333634653362323832343430 +35656433323866623831383139376239623763313365633036303833393735656231326434653662 +62346330333766646166633833383865663739363732346433353130663030396133613239326637 +37616231333062386262373332396631623265353832393336613531393865623333633336643936 +32666330303564653065323430656462386630666339383833333539336634303161326533316132 +34396437366433343661396261636665363766396563366134633034353732633236393965613764 +39306331376238316464383964623630396466313965653966326539663131333333653539313864 +31366563306531393138356532393633323736336666303862633235386532663734626236396537 +30343262353830653537646131376131306536663332376639366239613230663261646562396133 +35393433323864306334373061356230336166376630326635306139616637393961653861636339 +66373533316139373832343236633431366332633430326561386431633533386439353439343032 +63336638393038666565633339393263633466613263323965363564366164316463316234633537 +62653463623738343638663034326533313730646236623836323539346566613030666165313638 +37326636303161616133633231666266653536343865353134613565323635373738393336353163 +64333961336539356362666637656437383735393730646136303233613962636633336364366363 +30333737343839393839623265373832313739623365383231653038623565323339323832383230 +65383039353139623562613564326234343766393462363834643630633539366332343864353664 +64346132343164346531613531306637363332356138613738306238313934383266666535393462 +34386165343935346663363362653735376462306164636563343161306565396664613164616530 +65636138643661663431336531646366303662323837616333646435646239366333373531636537 +65323264366132633333346232616438653061303639333139646233373138323436353532303539 +63316231303436343361366565313030353439386538373233356666616662363335646136653163 +64396235383036653063633963326464316434636365663466626238626435613935383864383633 +64613837623066653463613136633364626136643766333731316233373635373536633337393634 +65653635666636303831356461646130346666376362653430616638353439666135616663633337 +39613635396263653834383664636637646535393336323763616332373263336432663539366566 +64386237616265633863373336396164653561303132666563303863306362353663353665663763 +61313763666131343939653438386232376434393066333530613038326466613630653261376138 +31346261613561353835303430313738346361343234663832316633313431646163626364303662 +66306331633663353337303266343463643965316137306364653539663332653937343863643136 +66366434636331386639636566653266376138376164313130613836623539333837653930633935 +30366265333031636230373738313534656637613061346662663139623964386137303135333962 +65366465353163653838316564636464616330353962363464666531313030326230643933306561 +61323538333564343737366532393230386234363430373339393836626332656434333562636365 +62333131343730623266613337373535336433616663366161346165376138386662636436643761 +38666134646631636331353637303361666666313337666137306165656338323263646534313334 +65633138333532353663663331613439303964626463623137356262663133656330366661313338 +32346132336431653761346663626539303831653663363531313265663832626331313132343461 +34313862613235393266613961646537336565383732353932383034656462333230613763643033 +31616535653662663264333634623030396364313362353964623437366361616564376539366638 +32613236633439643564346136653334336336343661656238343436336531303163373637333131 +38363530333836366230313362356135346263613738393233626139396433666261323164643965 +64326365303365366263626435373965613732626435613032613064376261373938353264396138 +38353865666237323037643061353566356263303034616535636132626662393032386135326333 +62383665616533653537383832623464393233633466663432336166633634376364303734346137 +31303939383631356466376361313766336134323466333064346638646436393332326464343531 +35343830376438656466376136343962393130353334333035383736313830376239633932663239 +39616238653932393639666432353038643831616161353831633636356532643166373537333533 +62303863666430633432663739633564303961343536363963643861363162346235643264393534 +36613335306561376437363939616462363263646465336539666537353239343466353131366134 +33306366636238323235663631653466323566626235373837636161376334393664396539636638 +37643334326135303135396339383637353931373362306161323532316235363232343263316564 +31653566363635343535663665356332653363636663393130376666613162663538613434666562 +37393037386138633965333631383733376566336139643534303736313631353430373663393632 +36353538326664356434616239366635393539663333643434646434613765363537613664623764 +37393738616535626364353030636165643738326435356337323363666664333732666162643039 +61373163356230663739326636633231386432633532356162623431323865343030616264656530 +61623837613136633666333130626235303238643662653061333738343230663137663838393734 +38363661646335646363373934383239383036613362323038633663373737643934333065383534 +32653162306132313534383636653666346265353138356662666635353561633539336265653065 +37363635323738363964326664373238653938313466303837653238633063376264366431653563 +64343436663464336165326630646236353036666165653933623534643132623033323962393733 +34306532333131303666323866643531303834623339656339386661626431373037656364323532 +38316130313666663132636561366536663038366432633730633531333436323365383435383964 +31306237653934306637356564326665613966303234363134333861623133666538663465663037 +31313962356337366264313838336436666563313565346636376666653931313333303466333662 +36306139363634623164333538623631643139616231336366623139303530363134633431323861 +62376564396230643632656332636662303136376331306432386432653338343733323037393266 +61383361356231636134363330663066373234373265633232323536313766336235643634616334 +61336261346636353863643966373235366435383233663231623133303335616464333862376232 +64643432623866313365356139343864663236653838353765373231643631373264636261363033 +36346336653939313862353065613133663737353535626165626663386637653062383961663530 +37663063393339323565396330613338633930393338336562626639626163303361333162333733 +65313835346537306363393139323863306361373433303131396538626236393961356339306637 +62643132626233356530303932616663366134653537313639653762373462303939343165363761 +31313836643466633334353033356130376161356562323061306232323664626436366565333735 +39396266616461643636633465656262346534393732313733303933313063363138333761643531 +38353930393239313566636535313037303866636231343261643531306666646431383431646631 +65323937366330613337373831396164333965616531363530643939623363333230666638313937 +31316434306233613063643437313337303163343038653634326335323731616336323436646335 +32613435353662303763616137643633653163356462663064643162323030363733336165643130 +65663564326338656531343038303237633737303537623636393739363531663261313931316538 +30633964373266346235313239623964353835386462343833623761306564353765366463353633 +62343135613665663633343237386137323534346661326233626138326237313034646262663964 +33393936616331613965396532373839656132653639336432656333353864383961616437636336 +64316436613334356135316432343964646264616631613266333563313161383338623534363063 +61373239663664363633333061373038616463653833333131313831613665616664353463356262 +61333736646330333064373039303835376162366337333431393938633666346264363438343437 +39333633376132303333616439666263363033333538643839366566636166666332346264633866 +63616631653735386534376361663636623737346131616461303636663461623834393436633339 +65376264393539303565653739623733646233626361326234643766316232313938383032643532 +34323738346330356637326539643336303734346639643564386337636465326361356437323962 +32346637316362393832336439363463653732346464363364653931363161386165333133303236 +34633633393635313162346566333932323536646239383535336137383164353931346232313161 +37666566633938366366373332396163343535653663613963623137393266373438333631363564 +35386263643164373732386234636633373337366336356535613964343037323339343432663065 +63333163383263616663396665313332626537326639626561663962653030363763363336613963 +65656534626366323864663464616432323662363736346531666537333464366566383564323363 +64623431613532656565646531376263616362393239656332646464623066663131646531376364 +39363837666261303061623361303135343537363838353865383437663261383963303433656532 +31643333613361343731623666383837343132666436353538646566346538636235613931663664 +30663632353437623761346636353337336664343338383463306237396463393635656636343034 +66336437663438646439636432386438343261616261363562323034656233323065303538306266 +32626261656664343835373465313266636434396236386463623338356233393534363537616239 +37303961306634653833353237396430336661373966666234343063626234613538363636326565 +61623561613335616331656533363733623338663562376461626236653237663737643636336662 +37626137313133333435313565366438626338663936666166656134363333343063613135346538 +62633366363639623037616261353733666366626630653565326363313236363766623637613739 +36373139336362323134653063356665343164643637316431313965633835633863643830363537 +64386366303230343533613837343766353032356465366665633831643839363332356465363139 +62653334636364623331653366623832343762333837633833663539666265313463633831336430 +38626464393335363761343135346164396536396630333138356337363234363937633261643464 +65373863656231333965646539663136643937616162643866393264323937626237313733626165 +39646539313564636634336266386461356561396231623234306238353465393162663465613066 +32393738363336333034636266353036393139376664626537663134353665396664376439646162 +37356565313238326232633464343537383832366566326165353232656439333636326137323032 +33363635333565313233663339373638613430356234343738626563396265396233353733393964 +65656262616638353365636339653032396665393664323131666232396165336336346538343731 +61353865373036323530356365366133623832316333383735353738326665346535616565666365 +66303262393866653562613266646438656331316431666332333962613230376530363133363732 +30396164343631316234633731303831633039356337373039613661366264653461386236363933 +39393630336265646539373233383034326131346665393038333830366231396231636533666633 +38323733626135636137316339656634313337376166343133333130326564363761663663653063 +66343965393265343865663030313439346664313464633461373438616465313036326366383065 +36346531363733373630363966653561663532323864616634333630313561393538363664383233 +32396466343333306532633537303736383735343966316434393166653132663430333337613535 +30613666623138393864376333636562663662353163666439336231633366633837653761333264 +62376539323762303936666433616630333832336633656431363337643166326366313733326430 +62633330333766313362366261323834636339343565633065306633633830333361313434306665 +62326164616661383462373032313032633162373337666462313863666262616165623731643364 +38663563356532303162616466623834653432616464626465623237323164303836626434323166 +62373332613934663631363337323165613136626534303635396137376464663165396161656230 +33336231646561356561373636333731323935363534373963353034326332386163356637626463 +31643163326137306461346533666566646436303165623261383737643764633661353738616566 +38656631643636363535323534326238333336386632626632653662363039636561643135633664 +64353935343536623030363331346334653266333133343139643633393331303664633532636666 +36666462656337353730643561326233613330356339613130303566316132396337623263653030 +63306639666336356464373533623236633865386638663061653434323866356332313932376133 +61666662383038363965313332656533306330386330663562373333393838363462353434623130 +36616230396539656136333035613764646238303130663036653333336661616136643663626338 +37373365356466656538653366393066643864373764366235373163626533613535636366646335 +35646336626663613739613637646333396630663231666533656433373139343564616630333966 +36363931353036653465666633653965343231616231643733306132663833313565646133666264 +64643864393231306136343165643137623431623633636133653830383966303934383163326264 +33656461646464636265646535366533313334333965383430613235623264633239356337653839 +32616164306237666331393936663762663935356436643266363733393039326533343961643935 +63653765306131323134633231666535656362353736316138626232343835623039383430623262 +64333538366661323636353239646132353137643837313236333538353465323031663232343463 +61356238333436643366393631626537626530353531383339643163323330316366366336633934 +37663363626364656562343865336365636631396434343739323533323130346530623532653832 +30376133386431383938663735616439383664336632316566376663346237666634653439626464 +61376266623037343661326263663633383266333434666437353036366464326261313365363062 +39386562623463623464383034353130623338306366383963636530643431643165353236633538 +61653536336662373066613434323838396436643739376137636139623737323530313630656365 +64333330626464366135386336333438303264353561653265353036633765373332626266613730 +62313265616365336238366663643133343161623735313037373230366664613165366139643934 +62386362346632386638356262336136383130353732303336663631393365636231643236373538 +39383266343363656262303261623861373931623739383163383866343130633737643337663339 +61393466353639616135333062363932333766613436376231363733623735643564396566643163 +62666662636561633961623164656636366566353430346266613730323933326239333464613234 +31393133336662373837663434373837343563393439646565356433353163383664356465613835 +33396234383837643963343037363531613536396166663263623764643761383934666534303265 +32613631636466356362353137386537383830326532333566393164643938623562343564333235 +62396439623539653061303237353032323837356138373231663438653563636232363239623232 +39373232633333323237363238313363366238623436356135326235373539396234643065376235 +33303938383235313465393335656431663265633366356665636634326635643636383536653263 +39653063646130666335616531323665323938336333323238636661636464636161316566396561 +33396166306131386361353636363366623230343466616236393730353966636131323663386535 +37373938363936623065646134396535386565396334323362336663613965656563653238623338 +35356636396336636663316238366335616430663331653666666366346332626364303838373038 +61336464323537643633663334616163326564666136623031343135313731633835663665383435 +37633164353931353032663464643232366231366137616338386435373233656236346466356466 +61366637613761373336663933326638623563366236323166633030313763616237393034363237 +66626232383735373163353466376631666666656537323866663835633636616366383735373137 +61363663383035356133393631323630363830313333333433666430356330363735613165656530 +64393862656130653234623036343637653164343461303564646166323564393537616365623365 +30356130323332393464303163623536313866613965323537623936323630623864343131343065 +32313231636663343634316537343831636531373538343036336362373839613830393334373262 +62663335613030616131653639303430323138663436316364326464396164623461373632656133 +61373463616264316637383463623164383430636562303637383339363036356236366230343839 +38646161353330653731383337313631646437333131343463656362346566383762396230343761 +35643534636137323466623336643032623331333335376631316436306430376235613435633032 +30623730616436396534393065633137633866376436613839323830643031626235376466353138 +66363638613236363632366465643634643663336564313738356466386631613565313066323935 +33396438336532323736346432356139363630656130316365653466656465373330666261353764 +37386530343163393739323963376533336636363563363737323531633130373934613663376130 +38393765653336333239653230373735366566626165643931383966373862306635343832386532 +30386238336266353466663635656634383766396431383338326665653534643266313833346462 +32663731373062346238343237383031616337323764313862346463303235336564653161366532 +38326666373064353435393432663130326466356238363962643533616131306564326634666531 +33613334396330333930633431323937646562353564373838326633613836373732366137626464 +33653261313633623864363835353439336536333135333566303362303538666263636436343966 +31313938646565623631366134346134373739303432353765373131623539623438303766306434 +61613564313365343034616463623163333834303432353831303432393163656663643337393466 +62343961363336366239363530663062633131313835303535623930623535396639633762356430 +35306465646664313066333531343561373337623438323162653966326430383939393335623662 +38393136386531373335343237393464306365663963363236653363303931313238353064653936 +64333739373530646334616234396338303961376339613037326334393935313134663138633966 +30323663343439396231363237353534336463366531326333646563616462313432646137393561 +30663435643433656231326635393961613237326236633033623263623963656636643631316564 +31643835396434343434376639353732313063373263356361666432633739616536623833633262 +37633063346364313937313331386130366562323534663639643866383162633962326266633532 +38393635383935356531646531323633323032653032366535313335626335303534633664356133 +63633863353264653361623561633166323962663661386432643063626465336237373966663163 +65643339373431383932313236363231653535303936643736613038623131356432626632326531 +39336638393031376466313034633631663236616464636363336266316332643339656462323063 +38613430366565333063323237653065396566666365383438306566316439616461616364626661 +35303236666133646432666561373938623366613661633530393531393535653366336536333136 +63353465626234316666633162343737333433343963316236613638383365633637376332646435 +32623034613462323064633533626438343231663337636261646535623738396437343766316235 +39393461346637376435336436393461316331346331376163333837653666313336346463663731 +64633533663366636335356262613564643035366566613866386265626263613666386465623966 +39303064613961353438643938666136333965636661643865363936356366303262656566653331 +39616235356232336639353466356231376563383537366662343332353535396634373538373365 +65323233616461303030646662336535333330396437343763303437323533353839663132393138 +38656636313239333436613762343339643664383733393535663939386138303866613335363461 +63373830366631613861623965633930613438643265643131396134373463336531313937313962 +38636636346164333539323331373262633531616338326538373739643363343336376330373763 +37393535663963393734333761393030653231653036316332353961656365383035313762633562 +37626238663035616230386335343066376661363536336638366666306639663438383833353939 +32373831393862376461393565333135353230653133616432636436376438303731303661353965 +36663936343430333131653938326334323461663835663462343066393834353730373535383537 +35616266306464343031626331336131316164616566346632623531346464343133613463373133 +33376466613639396535396532343832393133373730613634396231636338386332646639643132 +66366630303938623765353364643632383037613436383664306238306164306234393366643230 +36643964383039376638643332343437626563396264393434343035396432366165303663383938 +33313738643539333464623637363266336537643233623335343339353739376266643461623163 +63666665323830613462633264396164653363363731306339356663646163313565336563633230 +37653530326536666666373231396337373538626662666661653461633232396563393763346361 +32333365366135653632363466333533373966303466303634313439616134336262386339376138 +39353135303038313533303930666661373038613666383131393733643662386164336237393662 +35343333656561303266386331353162653135346566383261363437373761646430386239623465 +30393364353634636334313764636166313366366338356333343235363266346132623938666666 +32366138303839333130306364366238386438393335623037666264333464343663353532316535 +65646236663637666261366432386466353563336137646137356634653137326638356562633865 +33613436346233333939623833636165633062336634663866353764306231636631396336343737 +36663262656638373532656564326165613964636564383833346562333266333966613638303937 +36636462303863623735666365643139323565393261336239323233666637323263306432343131 +62383031326230376562643032626635333164636637633361666464653963383037306566613334 +66336133666563363738303634653433363339323834666366363037316564366234333564323766 +64653738626536613633333065343334643737333533663262646636646361666331376430323864 +62316538383139396435363331653632653164313232303065363465356237343233633763636362 +38326233303361316339353834393063666434643035653861363463373262623931383938333233 +63323962653139313138343961616439313766643064643266633864363138313436303565616538 +66636130383666383462383730383132376463313133663964653661616634356133306163333263 +63343239613837633861333234613537303563386137623834633734653030326138313439646464 +39613664613131643231393934653638643066643234663930353332613030663864383535383832 +38373266643061313933363932663639366333666466303835386436303265306565393466656130 +38616532626164356565373833336434366636396562363435633631316333383262313432383237 +66376638323663366430643939643065363434353534383739356663353339646262643131653934 +33633336663363623733366139343938323933623835313539323334336564356239623066326138 +32623334346233303161656637663630633431353263303734313365326333313439663136303536 +38353737316237656630326464663338643964343734333662643062313364393461383035613865 +39353335326234626662643666633861656663386137393435623336666561363034613162613930 +61353933363435653639383438383861313730386463636533623837323930313536323561633338 +37633338643630613161633865373238376362323739326266643932363862636133306132383732 +35303363353462316438656463383334663365656231303436333263343636346433333934323331 +33656136306162316434313138353935643233336239323533323338303035646238396633353362 +30306232636634663032626637616531343935343735373165623263353939643032303462323233 +36323464613931333366333736616463356662303335343634626538396638663836343038656635 +35326361393534653063366261633234386439643931386332653561333636646134333764376265 +65623566633435636235326634666333303636306133356566643437386630663963333966313033 +38306130353266616562653032356230623063646630613232396332393334386638656562326536 +31396131316333376534656162373261643036613566356330323666333533623366366530336664 +33666534313935613833633232396337336566363266323532346331653033313330313633373835 +36393062633462646536633862656463633733346132343731343939346331643835653565633639 +32323930303033393837313130316161656137373435666438626665656238396432663166306261 +39333939626239326532366137666639636662303761366538356264313335346439643938343130 +36343064383864356138356431386333323335353236383535623465386635616639356662353864 +38363437646432633531373964663938626564633636323964653766353639613237313333336562 +63346634656463383037313465376564616634383033336464653835393731306265303864346161 +61633137653464616265353933386464396139636131643664653364643161626462393936363932 +31616162386539346632333135633531323062633531346237363362396666313436343762306161 +34326436386235373363326137373064393832623366353264373030326139383465383166393231 +64613265646438643963396539636265346235363734623262626264373235653037333763383530 +32346166623336623666323639393830663034303262353139636661633331363433326130623936 +62316437343438666163626435656261653038323334393134326333323961376533323936383230 +66353833383037336330343135373238383432643833323965343036633666323337383164303337 +36353430356461323561626464633031383864386231613537383737363337393834626538653964 +36376631356531666465653734383065303166663833306435653031303336373865363531353432 +30343961343535323236366635643034366233373431363730633031396234313632353064373862 +66343966356566316462653438656262313838323936623832353431326464353832393130323737 +65643833633630383536363066346137323532376137343738393265393533366264313865613463 +63613463343830346365373433633764663532633830343836306261393737343835363539363233 +38613562336265636266393362376633343037303536613763376664393961656635353934383033 +66643365636330316335303937333937333837303934373362613133383933623263333934326661 +62316461323031333736633930363430386135333465306538326166623130653663653763303265 +31663162313936666531353863303861326162343264633963616332386339353066323161613633 +36653664396131616134623864663730643431396637646231653063333164353063646638383534 +62633132663166646532353134353839663261653265373930326439326632626239336364663965 +66613662326136393865316134653735303333313738663733363264643331366232616535393964 +30383363303966306232656636373431623663336437393937626135633962326432643731626136 +63373033653662353336333163306138363963646262386135383561643638383532316337663535 +39636634396334366432343538343132333066343161646138663239303664386537313961363938 +65343337333764313636346666303262613230366132313732323838376661333731386337646264 +36396335343264663932343532396463363036646466323931616235646438313931333036386264 +66303035633235343837306165653161386466633165376262656635653066353463303639333131 +61316436383637326638663231326163336439373162356532323836656130663931626363323431 +65623938386331613461343762643737356533306639353337323631373764653337303563303465 +66343336373235633261383765386634386538333862666265316264633230643335353430623132 +32333166383936383636363337383335666130393633376261666334636139386434663134343639 +31386139646231656136356466323866646131353364396463386462333161363839316566383334 +36343735643834653933653665636264666630316639393937306562643130626136656132633863 +37326465383865353866333264636266336536313538616136333532653733386330613361663932 +37316338663639326331666666663935656261343032336165343830636661623465333731383834 +61386363323866643334373132333635396661336332633961646463323562323334363931646265 +32616166386335643931323734326637363461366136336336303535616465346566373730363737 +65653532623962393964383831313965626132663331623032366237333638393532623935623831 +31356536303138396233353462343938663761386634316131363365623366656330393739393637 +32663035376537623839333835336662306331353432313735663639663033316137626264343030 +32616331613636613233303865616335383466396662363134393431316232346335373865363563 +34346462663236383063643563313738663530383930646561313838633165333134333861373139 +32303238356238393663313431633762623430313233396133363766313137386533323434316639 +32613930616432613634353535383630663265663763316666326531383938303735376536663061 +64316334383133393838363033626132396532396630343335653865653732376630333864636431 +61633564643361666661383739356362393261656533333533653966636137363135666432646239 +62663962343565323563303030353034376639616137623764356433613337626633323636316637 +37313466373630353531386366636664303061656534386537303030313837323230386365333963 +34373431653631383161393965306333383234336262613434336431623631326564316337633934 +62316661383031666530656566666665333936336565306336306233333438633865373862646563 +32313565326561356162633239616563313163343633663732363734616538643732613937323837 +61306332393864633331666561623039363063396530396332626566356666626339383139623037 +63373931323565343239656239376436366561653635303962353835616565333830636261383466 +35343431386531613239626464386238346464353364326237303962373430343630393931396130 +65336331653834656561613333356530396666623030353666623831383339393230336130646638 +65333133323862626339653564373530363235666536353764643233316462666365306632376566 +31353338383537393235393035663764386661616330623865383838663662303139313230616533 +63336535623639313639636632386233346439396437373530313165343961613061616630653237 +65393235623031616539316639616462643039306165396433663235633266393537383536326534 +65623631323664373435316539656534373666386366306330623138633236356165633932383533 +31393430303965613162646664633033626636666333393863346635393765303938383261643038 +32343662363738383538666263643730326236663638633938613831616135316132656239326164 +35653065653630643933653133303035353163646633643465373762663835373332326661306566 +36313430666539373861303439303931353635346536393266353361326538346533623832633338 +34316338383438363639393738623961343239653836343238336462393562663132656363366337 +65613230383266373634306132353738393266636231623937633137323738666264626339373065 +64336535316435663666383832623366326166313964373465663461303938306566623331636334 +33326630393039393330306531303263623333633631663466303761646365393331333133393631 +66326437383161363061376265386164386363373764666532613939626134363361333235633861 +35303062613638663235303935393764633136366538306132326466363335313137653937633532 +39343964663234653161626530626665303132323531306464366166383033303863613332316463 +64343365396164626433313266623533323435323762326631666530633365643532366632373838 +62616537373033373765613031623663613030636530346662373164613362613230656231396163 +62623135613337616233333361323566313939313661353264323233373235386561303465633866 +32636330373061346433363330616533306636633532613135623937656433643337383632306435 +32363833316533336666623531393432393832396531613261633265306461623462366337353331 +65336362633964316537303463326632366465346530333362346466333863653430383961316435 +39326364633263636166626234373862613463306263643462363761316562316663373632376362 +66646363326435363038386664373830323663663436383039323266303233353162343630623839 +61316161343164613035646564343735353633646136613533373835333139653032356563316337 +33386562383364396133316533303066386561386162333565356631323963353866363638343065 +65643161303366333264653630396532633939376664633565623730346233343730316137633735 +66653665346564356566333233656139386263333335363538323663306139346233316166633132 +31663035323730323665663332333336356461663031646166353032366436366438643835353966 +37663133326633376661303135326638386165646462383237313433333237356664653335323132 +61313666643662326139373838383461393864333434323439363061333333383861653931666437 +30366565663230376362643964363738393239306136353332323465373664386636636431333066 +65316663383837373433313332623034636636343530613031643764633537313934363534636566 +34373234623837656365636432306130666163383964363538313930396233333465616639326262 +66633566656136626534356335316339656663396333333935363232353834653231373130363462 +36613034636561646366626161323262666166623233346239373533383630623964366639626666 +35643232363938646466396636623339336264303561396133323965353234373934323964653930 +34663764623834663262306133386331303938393835396635366161393134346331366162376163 +37363833396131633835613631386163373137373932393531636366636264393730396132393366 +65383139616333633039633765646330343462666165663437326666653533303831316133343039 +64616561343739663935666135303464323936653162383739353639636536353730396361386161 +32306366396537636263396239376430623336376262316531356339633734363266646337393333 +30633063643333626362653732643432633834653539663835653762643236353737613562363033 +37643337626633353763383634343238386538663936373863656365306633363836666266383266 +37366330356263353831363137653961333261613965313866303338376665346636663336383964 +66643835663165343864386261623463383862643035366238646339663939623336323835373032 +31366537616330383330666639376361633665316430303233346236636464366263333033633131 +64626661346664336135353935653262656434393032376563373832616632386432353136616663 +36326334623065353863343265383662363738333931313561666263656337613533643139346231 +66383764393037313933663961363539623335643661363062666231323964316462636464343733 +32666237663135653764316434646564393138363238343731373464393735616566373465313931 +34306231396262363633663938626337373665376434626663333937366366616233643531636139 +35316564306430653765646566653335336662366261356438383435633431313966646261326663 +66386438353633656233346133626332333762653765613763313132323937396361393037333237 +63376531353263643236353333366134383833373930303866653061333832633964313438653465 +36363134343538323731313963323134363137383235306363623464373436636364623063623166 +65333635643661373130356130656431646332323232336166383435643863653133313164363436 +35326639623261656537393434633764663762313765376664346464346464653338613839643133 +64393966303661666364376261336137393630633461643362616534363039633938393061666266 +37353661313363633363373332383666656433623438383336333537353062343030303466633837 +33306330663239633737376464383065636532643630326137393564383937643934303031386139 +65383936663365356264326634623231333239353336386337313037343137363638663066656638 +30663430303030623164336133393435303032643166373338633062626562623232343930366564 +64393738313863373431623132336533393838663331636434336136666633363063333839346234 +37363734663335303065373563336532346333643762633031636637633234663261376235636166 +35316332373564663662383831303739336230396237326337366338656263323236663763376437 +66616365306138303366633364653636303966366666366466346262363462346338376439373566 +36303531376562336436646535343435376439313337376433623463666536653239313232363165 +34363933323634643937666633303366346563636538613539316632303138656434613766623530 +37336464363735626466376133386361623336643530386666386166633334363864613061393233 +34323361363961386233326235303636353834613264356431376639313136323639303031333665 +30633933613037346134383864376465333865313831623933356236383834336234313961386433 +34373239386539616139306530373837396362363165356636613066653361663632613361303939 +31643863383836613963366166326363316461333866643261373361333833383631643862313930 +34396230303164363532343636363762303961333032373938646234623964353233396565363634 +63643034363239336263363665386535323861616239326138386233646430333566306632376439 +32313830366132353333386639373936346237346331396265616531336235376662653533393565 +62633738393063623631396632376638376432333932303764396132383262663635346132636661 +65313830653433376437316333613666633861333261316564666263666166383064383733666332 +30386435306533326139303939656532376533396666383335313530656562343534643664353334 +39336537396530313032356230636535333365306532386664353039626130303361356362336266 +35363931613061313538376466336564666663636534363832656139306564333933616363623030 +38646338316366636465616161383763376333303435643465616137336664343765396431643532 +38656133386362396437333032613163386564633563656334306335333961656436326362613233 +64663934633162356165303566343833616532613166613861656462643836316636626265383432 +35613565363561353636626631376130306231613866633230653166393231633130343237303964 +61363963303337343938343135663166613364353364346466613435383337613538363965626434 +65313366623637626434346132386332663737643531393139326465653665633033386539633938 +65353530653434633066323561386163623532366163623436306465633730353738356630376439 +65393761666563343966643432663065376636393935336161666362376237386639343264363361 +39326465633031333533643435623663393031303566383938653338643365373637313135306363 +35303433396637346536393933633763633964343832343466353630663531613539343262393236 +63323231666163626361366464303437333862616365376461653662323665616233333461613533 +32353137363233386337316338333636623739303737393639343134303631623635663833326262 +34366635313361613963393839393165363564333663383532343236326561303837656438323730 +34333537376537643936666230306433376430363630646330633235323537383036373836636232 +62633135623334383133346364653637623839343238336330333037373839643036663565653361 +36656231326131393061666533326464303861366262336137366135356266306230353066313061 +66316639346237646432636137316635303962333763313137343033366532343762646533376135 +65666539623461666661363365306366393465633562613935313337656533353361313435366330 +61366563353739653232356665623937656231323932326462363862643839653633613564613735 +34373262636464343964373064663461336638376536366665323238356666666563613634396164 +36323436643863666332386565366233396336376565393135323363383465336136626661363938 +31326531373931356632313436343330373765396533613838633834643233656438646336646432 +37366139326636643731613366666237353335636431646332643031353664663962376162356330 +64656265663038336634373363636361633062613333663531323231646136623563353964643761 +39626236303439383233376431643864613533363037316462636233353331326331373737316530 +64643131383837353964306164336437393365316162356339646264626534633439376165343431 +38353462393939363262646533393534363535626536613034353364323465386634386566366564 +38666266323565613566646134393364393832313265383263333532393834363462356364323266 +31333032623837353361646531333564353030316334613936623565323237306461346534363465 +37393164633734376133616634336162366433663865323664313963313166613537616266346330 +30393735373030323635326332333362626339323431373339653034343965383564613763626239 +30373737326539343534656662396666633538353835333735623563363032616363313432666565 +65323862356335653930323530626431376362323561353633356134346336383564373833653335 +62343937383232633330633436616666366433663632646232363433666161656139353537343064 +66353765346631323666346663646435663564356363633637616238656264653231363831623731 +38643664633234303334353234343532323763663765636332636431353230303165346136363438 +61633866666164323966313763303165663035666264336664326165393364336132656430366631 +34666332636137653234383762626264353662373166363265393863393237663733666634336536 +64386435393963346130613934366263656438616330373362343739383439363931646162346330 +37386538373866303662316234393833653438653735323330643634636434613734333331393262 +32633063336261353934313666643665376265633431326434393834323030623231356233333735 +63663330393638323130383837393562326537623230383939326332653631666535313666313438 +32623839393530613634366636666639646136363361656332633032646162663564346262373566 +61353963316365326164626234626561616564366564616639333232653632343761623531326235 +35373566366231393264366165633762393363373139353061313838383334326464643438393865 +64313739326161393133663538343339333439366538356464663563353262653033366235353463 +37663264356132343933346562343762623136613965363939356131636539636561346135643866 +62623466373433323139306566383234353561383863663636336162373466363363386666363563 +32366239663038393961363839666361376164376161613635386466303662316166343065313266 +38633437306363633163346638343432386333623231613836623163303439393931366634313430 +65396466636335343239646433323731306331653937666334346630373364353364306539326263 +32383135313166666631346566646162666163316564383531623039656666616232383063333765 +36376339333333633866323864313936623731393362636361663062323234643662616137653537 +32613035366130623634613962316664313861663439386537326231346137613565623137653731 +36306661646661373365363832396133363866613335323930623161343232303033326262646665 +65313834353538633966386361613132616337636435623033653163363661303365383732656137 +39663563663765353333353730613364336638383866653865633966313037396235393632383762 +37326631643332336166653663353133663265633835346436313766383965366462303366666534 +32333465376434633463636361623131303165366630383261396462373561336533626365633439 +65613932663934396433336333333132336138303034386363373265346463633832383239346435 +63326333313061636463613636616132366239653133393637636661366537323832366461633138 +38656233353039313139353764346664363131646563393164636136313364363863323465616566 +61646265623636663032366465326365336634353065316263353030653164663732643536343166 +31613431343236616331653334393262306638366263666539316638396332396462613830616139 +37633463643262303765353537656165653865383765343833323131326166306138306531646236 +64333061303066326337616638646437343964653033313736393664303831623861343061616137 +35356337666563353730376134373865353961626537326239646436353733376233663430633235 +66326164646230333764356133303263316132636364663666633835386363336333343139623433 +66353739303764306662633962323035346333353963333436353165393237653462646439343734 +61616237323636613064313966303136376435346466613331393734636462306161653534643062 +38323730356634346335633530653832323538613536313633343237643062386234666237323364 +34363038373038653364353637396562363639326337343338376134613939666562393266663737 +32373730626231343638633135373639326363333034333962643431333431663263316165343333 +34616366633561633966306430663533323762336566343732636230386562386436343434363934 +33643261663762643130653264663539323865313236316663316666343738326636323466323864 +37646565356436396564646239633339346461316633376134643337396361343566313233373439 +66353237656534656336633963643538396331616334343832636137393534666235663136373932 +65323333616233653362376533353132386361373765653461386235343865373236366136396166 +30343733336163386135646164316638356365666636633265393862333662616364616434623765 +34306462316265633063623464383634393565313732326533323765306662376533343666363033 +33363063353332663538373434363264636634663237306234333037653931323462303866626463 +65373033653563653537373538643066643661663037623531373363303139666338346433366161 +62653265623235363934346365656633356462316230653165323262353336636133316138626332 +64333032346239666365373431323364313665303833333532386231343562316461613639646463 +66376435373565353961623762323661666134313432326636383136306462356565353661646432 +34616437653834323463323665663633346632643462643732356337366465316237313366376662 +36643661373333653561643266336335373561393234663837656338303763623831393566393165 +61613562643963646161333639613838663663666337396666663865376563613164326632666463 +39336430666335613639366564613531356663666265313232333533353138306132363235626432 +63616334653138363861623638373339373365336535303836666436386165336430636164323231 +33656664323438613839303034356135636238656661613932663863646435613837663037353733 +36366666643366316637333066653462323338633334303735643933383737623232643134366666 +39653632326334643934366236353263333066383439386265623339346165393064343661663364 +34333537666331313430396131663433353466333064323939646465383136316431316565393438 +61306362363034333932393232363362386637303930363537303562623230633431303961343262 +66633764323466666331373064346330393432373761396261343431646239633238653035383238 +66366635396566396137613636393466656236613633346239376631373738653932633264363466 +62623733663138636361636638363362373265353765373363656364363735303038396132623061 +31323961633534633539346532643234633234386636346231353532323637396234343333656535 +32313933646535613665646561336237313561663338393765376437636639316266656537356630 +33636633333262343035386534383235313236353137373930323465343966333765383261386239 +64373136626139346664376363653039333962616138356339376537393637393430623735333032 +35376162646233313962363736393265353438343035373634653432386336653563336439383663 +38396437386163306539343639326431613534343436383239303539376637653432633562616638 +32306432336132366665616332636338366230323363303334323334343030333531616639653666 +38363135666361653430363766626364626263663432333561623465643761643637616433383363 +32306366663731383436326237366532333835343430343239363131653866616363643338306463 +30336636633033656136366539323138303630666233323764663730613563383738353964363136 +39343338353733623662373531353936363732373666636666386166313630383061336661633565 +32333766383131346463303165626236636462333035346630393666326666636565613266636330 +63356162396339316539626565356239643736643264353466616235663437313664646535313465 +62396333313662353532366333363735633865333238623230356135616262373537383765353763 +64643065383932643266333736303064393663653335326264633032386363363738353863353434 +64616534326437613061336136636334396630326537366632633931326130346466306134623466 +65326465346439636165343435616437343564383734333161386230666133636539653830363330 +32353865633632623236656133663433626463313937336563656364666130626434303235363362 +39393431303533383930306633643435303239646566363639626636306331366361373533623262 +36323062303731613064383465623936326531653361623163366537663962356531663162656630 +34643736666565666431323566363437323335316166646630356237326330656237336361356238 +36336637313961633264616633376335653166666264653764646565333638313566643634623038 +37316138643432636464373239393763383730633536346436643365653064303933373539383834 +32393536313533383938636638633338353233646533393465666562626463303736613336663733 +31393164313561313839383566316539616331656163646263316232616664323035306434373235 +64303661636266303432356239323837303434653839656336393338323631323461313937366235 +31636431653839383866313638623534346337366464396336663937656437343838356564613933 +36646230393265623335633366343737366531616636623438363839663664316539343666336238 +35393936383730366263636335363761313337326537313033316139313436316466366663663063 +34656265383639636363663636376439333566333361353864313230643531343261646163666638 +34363337616232653236393938623464323561636437396134366235313434623035333434313735 +62356334333534613237393364356665386133323539643932636662303262646232636437393366 +32356438623366313534393465346434333939353639336434313464393936303739653631363962 +35353365643133613030336365646536373833303733373264613932366335346136636534336335 +39643636626462623663386433613962333232353134613531343833353837313535383362313231 +35376433396135383232333936643239396162386462326233643761323630373432633334393734 +63616332663131363933343764653834383039663931306639303134386564643766616334373863 +35303234373332343763326666323963336139373632376537343661353262366265373663623266 +63616433636162336663633030303361633263666663663239636362316564313639646166613662 +64316666646664656338303930363765303938306433613636303961303037623632383136636366 +35363036373137383062373136353835333133386566306338613166323761616564316636643530 +39313561626630336436346239333539373363663537393836633962383534656339333430656430 +33626365313234333462393631643138373331633836666631646261306338316230363234316430 +36366136623162363666653065303864343738643538396236373237373230643233366464333039 +35366166323064653531363964623638343761633331346662666435336235303237376436366530 +31353232636135626664396565363166363462356133623433616333346138373762343531616631 +30343631323333356634663434623766356264643664626635383031376336373339643465616637 +66363336363932303432666563316635613131306639303135613832653934306164396161343361 +39343934623039626333383331616665393630663262633234656538353134653134396363363732 +32636235343131373063363433613063386433323666303161373334353663323663343331666632 +32346139376562653338333365316366363235333933373334313466663862323031306531336436 +32353835646435343463633766663936656639333838386332363863636434613338346439376566 +63303166386339323862323037313638343065386336316532303466633335323764653737313636 +38646239393537656139303439386365386561373263643733393666613735613737656635356431 +61623666633630656561373332346162303537313031333663323732623935376439343831643231 +61353235353761313131323764616430356331366339633564663639383231396632313832316432 +38303636393830366438626533663938343538656238633962303631663437313162623030626563 +66656234656664643064643331633732336631626535343135366438343030313730666563383831 +62623266643261336634346265373237396165383330656563323837626361316463353066363137 +61633132313935613738656139356230653732623935313136643833303163623366306633633162 +35626530616534623464303561643632626563616533336238336664386231646330336135316138 +61663365346662333164306531623338313666663537316630663663653933613132633066636331 +63313264646532396166323039643437383331366537616234313938373963346536396435336432 +65396539343637613865636366353539363739346166306331663434663564343636363235343666 +65666537323437373261323737653564306562656164373665393861396362343934323738663165 +35336264333137636337383639326261303765303632626639396535363935363735633063346136 +38333932666533616336663965396337376565396134323334613634373739303738616566376536 +30366361383433633633393765323765383239393162396564353230303262353334616431336165 +33633366643765633465346462303436643066376538313036363962336438356266393164313233 +64613739626238613764386538373231376462613965316461333139653864656533353962363135 +35383762643731383663613936353331336332333534343433343731643263336636383032363934 +66353666303232366634376165383036653935633762366265343730306635336263356236323538 +32393532616634333664613834366133346462613634363866346336373231323632633731613961 +34643064373436383566373162363432306431666466656564336565633266386261373466666532 +63393066643435363731613737663333616136373532636663616363663635626235393037316138 +63333162623433613434656363623432643035646439636663393230376364393663623437626431 +39666234376637376566323134626632393837393062646666336635326137343364366163646437 +65336338643939656338363734326633343165666332376461633262613161623730356532613231 +39636236316331363061633833393534393064343664366362646466386437623762393539316433 +62303330633565326364623564626436616339366632643961373862316665376638633337336266 +36333264343334383030303466363033653033323636333063646366336661656261643636653637 +38333065363132626238643166363462636131646331303666326165316130323734666466613365 +38646436393138376433633166666536666161653531303730613039613362353937363030653334 +64643166623033646332353237666637643965623561663331623761666462643163333037326637 +30623563313335366237623963653966636239343834623032303262623035393333373665386463 +65633638316666376461376562353862316532333063383539343165306535316330333363663563 +37626534646662346132353566646539393237383766323961323135393862623964343331323630 +36353930333862653439326537643537353162356465383436656237323163313435366336626137 +36646666626138393965343436326631313531383534346532636538663736626161343436646531 +36643635303237646330343932303563336437613436346364326332396365386430316166363363 +39633961396437653063633634363263646566346234306532333364373266653531336530333637 +34643837653530626366303461363130626234316361343064343461393732363632653735613332 +39336566386236303065366439393063303734636634396538643134373534356636613138303633 +63326136346134333166306266623566366565653431663363366333623335363334346464653734 +32396432393335646439613964313064653935353834653734306230306561383537386438356465 +63323333613765613165633834383837366466666638663961343839663735386261366639643239 +39396566363862653930376632653731306263323634376239623835613463656636326535313535 +37343734333630363231646339623263383134363633623364306565303338363538646132633763 +64646532306238616533633163373065393035346433633437313939333465643939306536393062 +63386434363336343563333837343838646133653436626263356539636566343633303331363235 +61303731316666333735646134306231663834663637343538363438303066663536366561303532 +33313036653963333462323864333539373338653534363261356236623032323239643638663161 +39366435653238383535373037326532636638666337313136623038386631663838636264363935 +39383034626539393764333461336132663231313839383364353432643235383863326164356432 +35613737316463336336396665646431643039303630643764343165313835643834316136356135 +35653938373937363166626530653436386236663034613432356664323763313830623435383030 +38313766303032356432326261656439346466393132303739313138393161653537373132303761 +35633361646537353865626264333636356539373335383530336461626162633130306337316164 +66643632653338326164306435656466363336356262616635643039316132373431613231383062 +35626139626235383062303831306539336161623232336366303064323836646439626663336461 +66363133373763326234363638303063346539316630323862343137383437663762663962663262 +34363830366364353132353635663533333333396336313462343662316165373835616163326236 +38653332646364386139373961373330303764363539383937663361366538353566663661336636 +64623765386535303531343835613866626637363834346130323038363630353762633566613166 +31646236653233333432306138376230633835663562623033633863323261656131323834363765 +39643939333431326132366438656565323965336236383361343331383739356438373662363461 +62363864363065336630613534333065356239616339656435643863393864366436306630326138 +35396462353166616434313163616461663832353764393333323736343837346433333966663066 +37316264326533643235333836383566373962326661366635323538323930346666623335626239 +64386664656232393962323231343930373931646130376533396661356438376365313939613739 +30346164633561643962643765646263646537323361303033326233373430313330663733366632 +66373233636662656465333839313766333937376261333436663832633335383136346136396230 +30376332623361653434633235333561393561393231383363393963313838386163663538363365 +62323233626630663235366135646339356337386634356163323039346132383136373332626134 +65653232373934363439646437623038373432306562383035353733646437626435313738376163 +39326637323837346663316266633338386266303130653665346438623061323334323862663164 +35623663373061383634626663663936323239393262383230356532363537333336356664626435 +62383337363363666432323764643063333861356162663038326165303163313763633038353063 +35313061386464626438656430643431663663373565666635336535306335613739626136336336 +62613633373334386364613333613436363938326632623431326665313637336563656134333430 +33316633313164396538323963623963313863323965343537353966376266646133326230343762 +62323336336233376532356134663664636161353665373066656461336237356130363132623465 +31363330303365376261613334633332636137663833363530356335633733373062623732643030 +63633565393630323239313336393931656235656633383865376162313035623936616633386266 +39386637636562663839363832323061616337383332386130646234356366356234636235626466 +35386534336434636463616232393531396436373564363635623233313033376435336433626166 +35343163353632373638313938353335303963343233616665653334616232333463353437333438 +34336466626330353930353335353731646437333762353238633138303331373430363431353666 +35666539386661333766376463363434613937356232623963663835663562373234646339633738 +38373532343437666337643165326633353765613731633435343336396430653432343633653735 +36636632323065343538663964303462636565366530643830326434666137386262303232623562 +30336461386333653038633630376638316233396131613037306632353835343162633062633262 +65313733363535636535343031373839373666646364633337646636373936353563353466623361 +32383962316461313964623933396337306330666335376539353238326662313664656337336439 +61326262366564613666343361306461353633646461366165313438323636323039373066653461 +66633864343535653233356536396462626533636533646230653934616434663264653562643163 +61306664396434646533326430313532656237653966663436313538323837326263326231663561 +32343431376630333933343339336431333130613962373739323663396432303039623136633566 +30653137333533376264626133343934626462313730303133356261363064313631326139356432 +34373330653838383738383235353436373661633466633566656166366264373335366134353136 +32626363343336363135653764333965383835343139346338386239633234396361306263613562 +31623766623834613633313938633338383437666439356634343937396364363063326236663138 +66346366643266353234656637666338653035356262613463363237333733383665386264393039 +37306433613534316332393631373966626563396264393364623133343064313962636533663535 +38323938616435616664376665366162333432646130373933356634383332653961356532333563 +33323066653031623764333564326539383637353236303765643862393237666538666363373662 +61383761363064653037633964376662333834333065393032363939653263356434343333343436 +65306566393733663435613661333738393336376637353637343539363464666438303961353331 +66633936343730333566323938373965343236376231626662303866306563623431303937323536 +66346435313036383935363962376362373532393763333465343739663338393231306362353332 +61326364623939336131653066623265353531393362373938613738313837663438653234373037 +30376662653039373936383336633263396133386533326666373738643034383666316335366262 +31306363366237616463666139616332393433633137343533323034376461336566653639643232 +38616536303663343838626165376666326535343332393337313834623433343366326465346566 +30376265623665326430373939313934313230306232303633306236636539613665383666616562 +38386661363034386663326261306538393261326639646431373737393735313530316133333162 +33326337613964343334393532653032313430616531386435383831306631303739646130363039 +61353234653737353565323563616334366163373133616136613034306331626561613837623531 +39313865306164343834303762653461353130613437663564336137646335663261373238616330 +62623665393262306536356237333465636265663435663531616663323763383535633039356162 +33366531383366356235353334656131656230613266393236303433333263363862353437616535 +65333539353634323534633062373262356131323836353762653834623861653961356130366464 +63363431343934636662306339386430626661323965333334656338613462373731623533323430 +36366138666665303630336361636137346230623764316632656234653435346138636432633031 +39363061333766306234613965366664373136333137326432343837393462393166316133373337 +66316561353265353635616330356565306661636263613062633663616363376462653937643363 +63623334306633393930326366343036303430376338316666383835616237633436316533626437 +35326463643965343964366461383031623864666463633430316662336564316233313461336362 +35633639396632356533366234326135663762366537653534633433303163353361616265346665 +31306336366335643366386335346664613831363631653130656463386531303463623033303261 +64383262346163333030396364356461376436663639323135333965313064346338376466316230 +32326666643139396430623561316235306238313261313232363563383334316337643531666439 +32663731626436323264643237366165356636346162363563343937346433383332643630656339 +66316438383364303161383631613137663137386536373166306665393039623136326362353131 +36303738663265356364326537386637303437656263366633646639393030383264333036326237 +64313365626630376630336134396337366332386132386437393062383239306562313037666137 +61653636653738363037326339363962613930616336633530653662346637396466363939363866 +30306165363264383264323532316663656232306564316662353630383664636630343536613430 +66616133653539306231353662643266323766623633623763343432633164393438363536313165 +36643233366433346564383564653735613462383164626430336461356462663265636536613432 +32626664333564666134633033643836383131356565336562643164646434343238656461383731 +66346633633839373234626335386231323534383265323834313335633637616237386534376165 +61396434333166373862343061383939383462386332373237363838383364666233643635343930 +30303435653634396461346266386139663761373965323536303131393331393366383234663766 +62326332616435346334376363623632396539323237653737653362366662656437376638333433 +65336466373464346632336366343331366536363633663832666331383234303861636339313939 +34353039393734393633363461393231346364333931643966616338346161356161663132653839 +34643439303961623332626136323663386335393533343766323633633231633930366530663065 +66656333313661343964323666613766336538343561666435323236326663616635613132306231 +33613663663833383935343239313131306132396162316530653763383231633937666138313430 +37376432396366653531353532623466383534653530613035626630633436336139616465373439 +37613963636338646539333631616436353965363166363038326539356630333564343631643066 +30633834346332356239353630333933343035363630633630303132633233303036333661323238 +66393562366561333565343938323832393737313637303766396537613765323433363862623261 +35386631313061303731386165373965363935393662333430633965373961666533663035363237 +32656564636364306635396562393439666665316338343839333035616133336239373639313039 +63643764316561363336303237303463393233313139386465303861663738623961343563393235 +31353831373566363565396632633734633730636133373338343736333834613831343137313930 +36383166653262633633643331636363663366363064343466626538313830343936373939623263 +64366430336437643764633335333636323663366136333064373861323939646334373230376562 +63316165396264336135383939633865643034383036383062363833313063323866663230633231 +33336435643032336137653366623030656139373430666133393233646239333530303161623161 +33353965643233663538376266316236386262333232633662363430313839363739623536383837 +39303532333732633135346239646231663433323061633235373536373532643530353766623832 +66356463626365376561383334333138643066646136383930383133623033656638633062346638 +61333862633538353734323439616332663865313864383062633361636530616631353837636366 +65376438316261353164306564646632623166633666656130666561356562393166623562353664 +33343134386632626631633664393132306237376335383366636237343238386430666434326462 +36623964636532316432643563386564616238323830366465653133316564633037656132383434 +61386362353335393335303838393431326561353965653234663637363166616330353566616136 +36366434313837653432306263383330336234666336356264643061653330353630386465366461 +66386631653036643464346536346463623062656632663362633362383235373865393464343264 +38336634333863303630616436316139643761396565363564623632363261366466303239366663 +64356337383962326337386130623435346138376463333464313164313737666534303439633935 +39636636343563343662653264343064326262303337633163376661363737666537316164346136 +62383239356639346534363162663633343437383265336562623634636665613838633733303931 +61316635346338313365356464373537346331363239393334633938613034636166303139366263 +37373764616232666666373263343361363831396635353834386336346135383737383035323131 +66353263653663663036633336613039643062366332626565363430323739326435336666303565 +37383037323136376665373064353935633566386333363765323664663431343134353662306134 +31316335653034313837353365653831386236656137303163363864393432386461363137653235 +35393066313231623239346461626362316235393066616434363339356464396135303833343033 +35376365663733326635666264326634623863656231643531343364326662643437396237313839 +65646539343463393338373538656238613566373735666563633631616365336166353238303531 +63396366303661313833333939366232626165633136656238316566356139333933353638386237 +33643165666263646130633438626137643037623537373935623863393162333630313736353630 +33353764373533313762366134313334366666363563616439383738343966616561363336643564 +62333534363435633639353765386639653032373332346236636661383061393236386364313365 +34376263396437376130316631656661303534303132316665633533336262346230333839663939 +38393031396535343563353065373330303439336161643531383435396438636562613261616131 +37653262373837363530383432636638363538616235326333396132393030346431323461376537 +31373432386263643735646463363163653938396630366636306131393231643863376361346466 +64646533613736653531323264366335343935336136333866646665626362346261623633396230 +33383733326235643838303634343666366464386564386164333362656235666239613637386266 +35363534316537306661633030623334306661653436396136623861323962616637626263336136 +31353732623837643739626236333335326233646461393432643264613136646132663231663566 +32363930353065373237373634383465373534343230333361366562356263336265613036623938 +32653064653936663561326238346462336230616135393935333533653438306235366133343635 +30663831386637656638303935323165393638303062356631323434373431303932383333396531 +64326263646436666536616166643666386661663630343364323439633364363165633366666532 +36646266663538353666646430643862336566373237393233393864383637656563383830386237 +38393732326561636631306335396663376431313661613631386666356464356664336135333230 +30333536393333346234363530653665646232643830666232353338666334306432396538306432 +65333962396638396333303130633036626433386132333930626535343136343333376535666634 +64363035646338626337343339333638633663346339666163356564666139306165323639303539 +61613334656532373532653239643939323636666262303961653965333235636532663339306434 +38363831643834326566383564373866303166323333343666653832336634313131633461333930 +66313331663665626530356639323665346135306237623665613262343733626132653537393837 +63653830323537316539323930613838336439396332333731303061656635326230386435636436 +66623765656463636338313934303762343439333062656261613261303834313333636433343765 +62386237373731633764386536333832616231316662623030383839303366613261653236393931 +37396165393461616332646635643065663862633166653166313861663539396333396434373063 +63303064333264636232363933643666383435373239303131656538616632333435306533653764 +63383062353933396232383333356335623338346530326337316233303932323736306336366166 +35313037373934653134656333366631333835326431663734346563336631303965656264333039 +66353863346661623338386332373939333865643033636264383536643366353163383762306136 +36636262343864656462656431346564323430373930613263613964356132333061366465303238 +62323431616633663563386431663839356364383933666362343739393932303462393738666439 +36343766303333323431646165376262396635333136656437333137383737616431636634316236 +61316435333065313761356264616461383738356139333163393265383934393138303966626136 +37363531373338666637333934313766306631376563396136613966396666646438303662663463 +31303264393663393336326233343166373664616362383536613937376161336636393835326137 +32313338666263353238656334636132396231343232383463633435366534376266393438346365 +64353836313862333863366565386463383836336639393330383535626161646561363533626533 +32616137393335313236653735643632623963656435363864346235376635303132616135316562 +38633430343264393333366435643935623135663462396663646137643133313661303338313739 +31643532343932653135656166373130353231326632343832326339613962633933633166616635 +33323962356435333863373139653932356635336262333036306236343562346465313562343238 +62323432376532656663343666353962373138313332306539306239653031663564613931323932 +61383762373235386536383531363936623938643136653063383731646365616363376166626633 +39386339613337643435653737626564663836636665626161323633373635363533623239343061 +38393164396530326532666566306465383561303465386462336532383134323834353230336238 +30336262633963393933393365373636383663333566623436383061316264633230383339646262 +39383766363132613434366631336231616166626266376263313534633062383063643736373834 +35393365313839313261653865656637373664653732653533366538373664663565353661316333 +33353666306161306365303938303639616436306564386335346162343661373630393862316338 +61663930363066616336636363323535633663656434383735346263666332396231393563356166 +32383761303139373432353434333865366138613964383565656237396430636165306239373630 +37626630316266633531613166306239373834383065396463616466373438623365386262353264 +63663532356536623166396564376432343361613630663232346339666465363739666664323161 +35323331343637363164356531343533623165343131386533656235623461353333666135333965 +65386161373863656131663133376235383739333163613165313937643564346235326635666134 +64633164363939646262343931336161636132356361323666616362396138333962313538633037 +66636432373662353234613731383538653938383136393864316465653430353630656133303764 +35646364626230313839626430383466333533663930643937303634633239343835333433313033 +62363739323565613765316234303135623065303037646132373034646130363139336264353433 +34376563343164373238333632643931326437646564353636386239386438366435356333376330 +39333537623035393563663932346266363435356563646165633733373039303661323331653566 +34363939396536393134343535373361346637393061386164633463613865386433393635383364 +33373761396233383634613439333339316663336564386238376263376337633234643934386134 +65646138373239373263646430653431353338363761613765396366306330326464656637636636 +63393135653865363764616432636138383936323538396438643362333663653933346339333438 +36356637626463373030663462356233623162653665376434353664616332303231316265386661 +33613635316438663630333864303631373531316133376133626139363962383539363430303136 +65663864376237633362366531373664376336373461656335373138306561653232383766333238 +33386264663938663333643066383466633465386264653238643134386637613362343232646364 +34646437363462636237373665356666343335316433613135633561353662366464306232663762 +66366232306133383635376133303434366466353264336562636264356135386662353431333865 +35663939336433353035316131313537316338623931313531323136613165373431383930323735 +65323561653262303833396537373730313433393130353365383864346434623836616632353764 +38636263356263623966346463616535316261386638616234663362656632363730373136336435 +61333534383239383563656430383536323164356231656230393865383966653032656533626135 +63323933616232316562303664383230653965346662356162356231303065306632653964366339 +65386331306166336136646535303665383636353036393437356134316266313963366361666433 +62646330633161333730343962316531636463653161383935643135636138383733306561323534 +64623434396338396332646436656361313562366137613163643166613633336464626465326632 +37643064373831336464376637383563313731346637633733356233626462333133396136653635 +37663530306230643839393837653237316664646631636164306139656662393061306533386166 +31366265366431336565653732323564373866633136313934623236363262313562626630353365 +30393763343738333064643234353964366233313262386133396538636135626664636337383639 +65326130643833396531343761633166366534373830363339373237613730653665666332646433 +62386462633031653530653962653438346164666435313237633066386132626266363732366235 +63336563353062393262633461306266376639346634663161383666343031353466353166313635 +65633131386639623161613532336665633331396537393163333830343233346432393736663137 +66306139343636323362323839313036303635373762323734343865323439346636373630393735 +36323231646665326337373738323434636530653231346661393034323437363364396566643632 +30383034666634323964616232353035393834316438336362663137356361303465323263613762 +34623265313038323936633734323230323339356465343566386637336133326261303065393332 +30353962373634646435366633323934653936623761363464336163646361653133323666336537 +36633530623335303135356164373063303333313235363533626663326538353837336362393239 +61313136306534336234343536333730386466376338623361343537396234663931353165363733 +35363264316538343336373066663862383730376130323431336261366361336633313431613138 +32633966356161643765636663386565643264656139333764653835633561666165393535323662 +66613864346165643861376433633733616534623930303830623538343731353132393865643764 +65373230306637316163386533376464343665346330653932383633383230363231646465356334 +33656434353762633665633363363034623633313663316538353434643431326134303264323936 +38393438326364343564663735323063656232366333653765313363323536313531396331323238 +37323832386633636130306432643863616637343461646137373434643231393337643530656530 +37373666333537633436333537623430313635623764313662613964313035613331396533323831 +32363739656165313830393238613263383336306538643763646431613431373137376361383263 +35386362316462383465663966346663623863643065633935353761303563303132336138306162 +63316434366461346462613564363033633535353362613333386633353735643035646664363063 +32353261343732326163343435633463306463386666343563633636306161313861633939396439 +35353063623637316464623236636536656531373730383861633965303538636433333466346464 +38313033656463313533616636373164363531323030306265613062343862386535383532616431 +32343534303631623834336231303062366462643334353332653130376639393464336263316532 +62636464643934313533313630316233383932316363623164326662376439356465363735633230 +63336631366331666438343062613962373361373633323864663736393430373563316433636538 +62363861666332346662396163623734373262383563346234363930643764653662666536386135 +36653861313634633833346364303136613461306166333865363762303633373563316261373038 +62616339333235613437303039343962636466346436613261366433343639386262326634636364 +62373063373237323330656432636561363163303532356530316466306135386633343762646164 +37353036373730393262623363613136613663386234366338646566373065323230313365343536 +61333061633534613037656139326532346431616631323663633532623831386663343032343932 +35383832383535326534313962343037393832316238353434383966623433313262646235633863 +37656461643734616562626166333535393735663962396362616338633730383764633733323035 +35653734343063656434326131663861386637323637646239613035613330313238313062363938 +38356661666531393935333734653664383739396236363338653936356134356432626162373662 +31323765303564333436353162613963336463306533636435636438623137633337366332656464 +66623666316261653035623539383036636131356563376335366562616364356133396133363966 +66383233313465386534333861623231643532393230336232663861656363343763636630633936 +64626634666463653434356332363830653065313430656264386235313066336532323961353638 +30633364613736333465633739373933326266613138666564373464353030386562323961373263 +62656263613331393661366630646636633466323664393062633339613235656262633037663530 +34616639363831373239396333383666653436383931643139333263326639326130373335373932 +61373534316139306664303261326566656263393935663632303834323764313363333837386263 +66323137633136666231623331383364623037303030613664333233616335356166613231653066 +66376137313335313064383166323031363762393130366331613963633932383965313962353064 +35333133306337303431313064303764333232396632353533383136333335306266623237346363 +66623661613561366634393636323735333265646435613063323465663237316637346530303563 +35306162356134306132613066303330623238313731353137383037313432336362653931363131 +61363435353332636366366665333661326630633639643132326238326363393134643333653662 +62643330636133353734663332646437383937353366323137386362633762343566306336373734 +61333265616161616164616431363034366637333534346236353862636336383537653565336439 +33616262613531643635623363633736313365613563363463653364326261663966623836613436 +64306136323830646639306135316533346334333266653932656465346463373265303932306463 +64313331373234353064663361373037666631643435373933663931313339363038376562366632 +65646434386465313132393966393638613366376135373439343361313462656665626665353832 +62386430343234626566376136343235333937393639633864613231663135653762356563356533 +36323661643764326236613231613062343263616430346161363035373332326533316231646362 +31303136363135333963653032633462383965353336303038616266386434666365346363363263 +61626636646466613562333937636165353439316638636364643139656536323431326532303631 +32376666643738396639333863643231366535303732336465643934613037326666373666643837 +31343437663438623937663135363036363863396538646338656430346135623038393964396166 +32653365313639373735643066303038323566323033353064323539353937663165353661306534 +37303837366362363062613232396238613839343865376132616634356265313331643363323737 +35323937353137353964353663623065373362346337653364346265626332666461376366353465 +32366239366438306364623439306238353037333737353135366635663131383136626334333062 +35373862303466303663376564336131323732343463363137336565363232313633346630313239 +33383566353734626466396461313138353033306365656239663463366662633637326433663535 +65613336386365316334303835376632316263626431623235336635303233626535373161646630 +34323935336662613861333466363564356634373165613665323661613566323665663535326333 +63303663636433616562336561633664393638383564656564616435313762633034636461326534 +63643937616661623164363132383231646237313835646334366238656334316465303731663564 +62346336626439393961656232336331636530396431656335623863623364656162343239396361 +33366262646530643064363334633566663463313937306430613262356132353937376331363237 +38303938623037666364343533313336346532366666383562303962326239666366333935386431 +37353833616336333731323137303634346535663862313936376466373234373364653335626331 +33343539393361656361326639303935663563643636623863363838653366383131393337613639 +38626362376661353837333232366334613464386461323639646337653830616331626231613234 +32663537653533663430633863613964303738656439393939643739323334306534386631383561 +33363334313032363936383131326662636565346261643630363466616264653365663834326639 +37386532626664316565363362616262373134306665353535393463376262656664393433323135 +37373132396530303662343966646262356137383836643430313136323732613862316261343130 +38343461373636643161346137613233636539623463346566386465666631663232623136656662 +62346431636630306466346563356430343233393536643238393663306666623434623535613366 +34363330306233323835653761386664363131643932393061636236373433653566623930643134 +35386431393433356639636138623136616566343234386337616634356638643366353630326231 +61613361333664643066363533373239616663656664306263323639653265333135363937316631 +63643938343438633366383764643334656363316230383865643334373161653164626562663964 +63356630373561316666306363356563613639353066343031623436656639663233353836333132 +39343666356562616233303530343132613633666233656635626235643635613565646566313236 +66346638396136633839323063393765336465633063636232316438346132623231633535373934 +39313935653231343764383339363536396631313234343833373361303966346664313430396334 +34643830313039343836363062356138626536633837353666383331336563323330386564333161 +32363432326434376264343135613532343633316138643939373162353161663431333166623365 +65343636343435626265663030363037616265383435623130366564343532656464323938326232 +65613231653462343337353834643137346631353431373434393263643964306638353736343830 +64616234363965353761363433616634323238326266636539633730353432313963383430633930 +34313963396333333732353130656237613237306161626430323161353731613736633963656237 +31323639336563356233323236323239316534643532626262373538323535323263663831313739 +38393861643031653266363132336639363166333864616532613131323033373761626466303837 +39663931663731613338346137616433653533386565363566376633336566613630656564376438 +30363365623266623235376463343565333564616337376264383337323966643033393832343064 +30333365656561336338663931393962393765616637353734303130343462393963623961356635 +38373737626338373138636361613563643335666463356436316133636331613635336136346462 +64633434313865396337316535316237376230333239353565316137323263393536383131366535 +62626436666135326330613865646666393666663065386137306630316133626537343036356335 +31663065346432616131353066633939623637336538623366646436323962653234386238663933 +36356136613530666132316264623234626631646366666565353565323734323964353538383630 +65626162303666306239386561663263353330333532666134363966303163656161613636363961 +30646662383162313134363831333637653434386338373739363430373631313062336662626333 +31396139366165633765376365653331303836336130363735323331613438353861336136396236 +39373363633336663532393363353865356139363665316233626437633532633039376562636336 +62303062346332646538363433396264613130666630343632643365346366326235393161336536 +30336437653765656465366239373836663961303838636230303166353536393334646530343134 +61633831393339393566303830373537343465353534646330383332656336393966333133306562 +63656438383861303535336433313966393536643430666563653061313962303762666432323236 +32376138306264393839356264643561386662393034666266333332666537656138306538336138 +62336138353136623330323930383562643163323762656133616233356538623039376237616366 +39643032323665306433383537616563363965313266336334656236663034633863653263323837 +61653431313330666266663832313165666562656361613335623735346537336234393562343634 +61653561383036333266336664646438383064626336626263316461613733333536646331663133 +35636165613136323763616631656466356662306261656261643965366162313738636230633538 +63383130356135326236636636613463386261393464653133383763346636303330323333633262 +66316432653733643737616639666664326637306339313239396465633139643238316566353862 +65383264366665623533633264643930346637336461353233623430313732653039363734626335 +30666362343136323339313065356639313064393733613963363437363265646638306466643761 +62353863653461393030373730653531346138653265323939323734613738373661376137623930 +64613432646638323366346133363133653461366564643863303038656538663730323637396132 +34316436383865383534653834333232383363663765353633363836613365623831356337333765 +62383132643034373834376436623936346232636339363831623332653438313763383765653262 +38633161626238373038626130663333393234313934646337393161663630386664396364336162 +63643866353764336230636466643630343731303063313836666364656162643139323339373161 +64373332306264363663623163313736336263383463313063386539376134633162326338366634 +61346263363237356536663761376233303031613265356566323633343461313766323961306566 +35336337633230356663353436656334366336663466643763346365303965363535633834373935 +63656634313937636365313336613539633632666662333632356438643037373963326461653234 +66303639323439636331383865613638373535633732653530633665333166633832623737633430 +37353465326232623939366262623066643135336239626137376531363930356462376537643639 +37363436326233646465333738663434386639646437663035653938363834646636306137613263 +39366463343632613765616132343438663762636135366238393032616266326339396532613038 +66643534303261316537313862653964353831376531636333393866313530393933663862616534 +39306630353033653661326263616466656165643433373335346530316534343765376434306537 +38303562353036373266386563316132336233313638646132363933666439386137633433303636 +31343332326234306362666366376163306636663066303635613266643838373563383965343730 +34643535333033356263336530666162646634333866303461623364306134393234613233646431 +33623562666131343239316365633033633132666437613661616638363637323963626166626639 +66633531396330323435343937313135616466326330616262333936316562616237326639303665 +35616264333835643964303366373038363662616661383535636537303636626535376132613566 +31636465623234666632303761396465313365323632653564633365353561373939383564306466 +32366131623036313331666130613663643330366338636462663235346633303039383361323536 +64623264396363636232343264653732313265393765323235616237396161353665323930656337 +34666638366136623131666532626536386434613630643333633637343634316338663535396265 +64376334643835306436343934323336303737326162396334323764383338636264663833636430 +65303237373237623031343836316363653236653134313537633163363263616665633065333932 +65623238336135353332363731363432323562616563326431613832343364363836373766366533 +65363636323137396435393433386136333438333133333637643632363731383837366563643735 +35343736393038376564393736393637366433346531383130316466323535633837393636626366 +35356638626338333762336635373764343865653438613030383535643366336532643531663766 +35303534383932313732636332326334353039346139333737613630646262383333313262376261 +65303561353163643861393966373836383532323063636634636665326261663264303731396163 +30323834656532363335373635353638396334306534326237666332383939623533333333373938 +30393432626462306563633165666637393265366564623461623536633130613162393066383136 +63353731653335363561646434373132393731336566323733656536653833363435303166656432 +36653964666461316332616464633230653165313737636335346131343266666562396531633266 +30333865353035353734316237616661323731633836623861646632396233346237373934313637 +66626661353335343266306539356337343239333438326134646238633965316235373066633930 +37323961306334383738306133336662643164383063303066363039393330366338313065353938 +61616462653562363935633062653234333538316234346432306636626539323135656437656364 +65376331333561373439663630373661333061353735366231376337373563366537336530373731 +64396465636466326436636261626666626434643533323161353230636366313962376635656232 +34393932353065353839643033393231666137653139346132333232653664343864346164393163 +64303639346338333635653162643831653834303262336137306134346131346131313037383435 +33393464326162303938313630303463636137306337393435303630656163313331626535363965 +65363939303065313762626535396566633264643064343562373965626632643738613861663963 +39633832633930363537356633623032366631383361393938343965343430663865323032383066 +63396138316233383262376139303336346336353366363337333730623362363838343865626637 +39626337326231323934376265336231396334333836613331373662333532363931616239633337 +62356139646233666537326662366235653235333837383463656633396535303466303437306433 +64343439326233616464343365333137353933643364336330316636373530323265343862346130 +30303238313137356439616162643733343139313864333439303464633165356438636265376438 +63373335383761363630633332666438323736316464333761626365303335373033643334666466 +33666232376465363533386239363731666335633439303530356631323431353939386636666637 +66303330313736623336613266396537656361636132386564383739336630383131333364353234 +32653566383633393266383734616530303163383732343434396634316465653131336236653563 +63643663623063303261386265333666373364313962363363356661616237643964326464326631 +35656462356333353236353736336462316337346164653765376262363630343239373335336230 +66323230353438396563333862643033303866343833303831383137626632363131323661303335 +38616130366266663732313833343039306165616462626663336664623331613964363863613137 +35313864656334616664363735316631326264396236313439313862366266326337636465303538 +61633762366164626564613064653232323065636139333335613035636431313133653839653337 +31303364346138316334303635633331623832333135633562316636343865346263616365663530 +33663038623266396465623033323132386433373362353238306362616637336636383538376665 +63623533343935363361346437353533376334353963663538373732313661336666383239393361 +63373063383861643634626139376639663366336362383232343935643166303366393932396166 +30376431326562613262343363656634333539363330633737383062383431353563636632346462 +63363635386261393831313237386638343930323664663363333439323666353161326665663433 +32323965373031623036393833666130653935633030373734636462633264356538656464333661 +35363765643633613034383566623932353437313663316130626633353666356335646635656235 +37643163663330623139386433663266346566623636333736333466366332326132663130656635 +35383935383234633030626133303135633830333138313664303739343538373266633965393266 +62343335653238316632333033636165653963623666653438663832303038363136626330656630 +35366337313361333138663166333763636237303335663039316461636633393337343339386664 +66613831303261666363656330343661393633393066633562643234666163376665326264323566 +63646636336236353265633831383734373137396630633765363963623963666334373339663165 +65636532383131363465383138353635323738653833323061336234383034646362343664663332 +63613931383332656464373433346664643533343636373637356166646535363435366262376134 +63353139353534353431386237666435386336626434623162303730393865623361643533613338 +30326538396436356130313633613630626564306162306239333166316638656266316364323337 +31653536653330653435316236346432386161613939373136633933303934356532366464373464 +31366361323436633265616564613031613833393634643261313939366330356630316364333165 +35306130643461356461623236656638323761313832363737323132613964626162636561666362 +38636130353739653165613736646264303533323364363232393063363032656231306163343764 +35663237336334383535383565386664336536356534653664656163633434613261366364643031 +39383762363931336537656330363665393539613434306364396239626364346661613966343764 +38343665646434343963313739353339306662363165356334396661653038343536636561316338 +31363162633661663239393838643663666366363436336135373634356364613636353364383964 +63363039633934336633343130383662363961643735663762356539393839383438623239393435 +61336239393565366135623734353864646361656162353734353437623763643338613665373462 +32333532373431316332646464343236386261346662623035613262343761333963306336666539 +39653235316439636437373432613937376337363836353230373038653232303433333234663261 +37343261666362623732393939343866343866396631333166643834303730616362383962343863 +38336638383062323131613232666133386539376339326364376136383366366530616537343061 +66363463633965643265633031643139376533356436346534383036303139396165626238333836 +38356431363564336164383838656463323865653032613836633337336239653764393765353031 +33363162323364363736396431656230383336343835383264303032306433616664656665616531 +38326131346162373935383133316439653235343833376464386139333138616161386135343733 +31326131363931363662343031393163343534306339373331343761643665663735383334353730 +62626131343339353032656236313563343762326331316139366466303031363462356432363134 +61663663353439326532373939356264376437333465353034636165633634623534343732333961 +61336131373038376335666135623036366339623264613033623665383435613430376534333637 +64306161316437643832316238666635626439363239633932306433626565643132353238343635 +31313130663039353835353236633162323633646538356665653264343963313461383836663734 +62346465356563356461333466376235623233376231626230643235373536313064383764333036 +31336461346633396630643838343663313331663363396239356666316639346137383165613862 +33306561633336353161636666303261303666616162336330346537343237366564333232656532 +61336431346666633863346633356638303764623333373266656233656239363631313937383438 +64643331653064653130623438636162636365663666646238326632366138353931343234383138 +65656664346338623331373933663535343732333761633332616232633133643033356630386164 +64313361343737383435343039643864336230346338393236383234626136643231653461653465 +30326665623730316639666131633933383364626630313631653936663536623865643635636161 +37646333613235303430613964353530303730386636373363323963313932366239666232373830 +31353463336464393830656232386538646434306335633763373264663361663161333335363663 +33303465333832636461306165316239333862623531376637393064633764303837653832323136 +30343039383437353037666237303235303731633238366565663830303062653262663431393935 +32653330346637303731373565383961663661393261343835353564313563316165613138366166 +35613637633731373135653735623136333465326334383766653232373564373763393733326635 +61336533386234366461353735343538373437346133303763316236343434383263653861643434 +62336230613531353038383939323539326466333065353334323533626364613030383131363131 +62326462323137613530613264653931316662663165613966316637343066333466653566333732 +32666661373866393963313166623038333466623564356133666432633363333632623232653433 +37366264613536643661383130333537306234316139633332643866313733653538353962393363 +30656633353236643738386161303636326436333237663561613265363734356161303939356532 +35663134396664373636373633663336323462326637623536623833393733326530643566373936 +36353230303732656462303937633266366461336435656134613333633363313663613130323435 +66383430313033646263343363613663616665386536396637383364363634363531633962643437 +31303639386333333838623136666336336338636162316630363965636461333463646461646563 +30343932313364343036623432333331333834313930343236663137393339333531663734626462 +66353231353530623861396431343863316334303136313633383135663031663935653064393735 +31653731343733356230313639336165643431336639393136613562326235316263353835623766 +37666638373064313835326631373635333133396337646332336664613564636139306263636537 +30646262646364303662353566306432633236316639623562366139626130326435393139656238 +33326263373534323665646130383561393563313734363866396661626234343136383531303131 +62383731376564636263616634656162623864666266323265333636356363393465383463666364 +36626137656436353535313263303332306432343931343764376233313630326339643861373432 +61393638393734383935333339386566393763323563393437666136633963396131353961393334 +34393836343834343933343935666363303961356439346137366266616230393439633365623561 +33653735646332363031356338393139386238353064626162343731303435383533353361366234 +61663936356162356138653261323139323230323564623662616330363536343634623936663366 +34346665336430366638663334356562613337636265356134366466376233373862613637343766 +62383866323230356439326533333037643330323333336165636261383236626434326133323734 +33613663393761393438633264326239666463393639633935323736316433643034623834363335 +66666162633562666232336464656563336635613037633438663434623363613537363734343065 +64323130633066613038653136636138326437356330383033363730613565313866386364376231 +62386235616335396666366261663566613765303538326661333461343633653633633064383738 +32353838623362366266386538393936623833373665353032303866323737333762643965633364 +30623737346535306664343463313035643435376136333664663333666631323836376664613261 +39373730346231343433346565356666393839393039613732303265313466353533666562636164 +66366462643035383562343432316361373936333432663864633961633961396632353238343834 +64306266656666646437623336623939393930646330393130326537363039303236383030323738 +32616137393339393632313263303438333739663865363331313838343161363734656362663437 +36663265386430633661623633323766316164396132303237613433393261346135313562353938 +35666262366338343232343161633635303439313166623631303236633435316464303532633039 +33623766656465366435626261626137386539333334333334356136373762613065613836623066 +66623531653664356633613933383138643862616435356436343865653837343832393536326338 +33383037613234303733376661333664656533376537306437313030306337626639626131323638 +61343535316164346133636233656138353962663563626635663037613866643533353663376230 +30396235613665356661663332313732363964323961373362356138323538353639333437313639 +36646365343737616234633533393563343363633633333035633130613338333663313437656235 +64383266366338333038346532666464623333343039306232373531373738303734643061326335 +39633237643465613431653461343537623465356139353835666661353537366263373866353531 +38336235623666393934396134313737616134386364363736356232633236336538323337393961 +31653131383464353066333634316535366433623863306538656663653130313861643437656461 +66653634393734333938383034323739323731306565376536653332366264666634353832386634 +34623564383065656633393561373138303264353932363666653965623465396365643361633730 +31353334366333306566303131653566626139336438623535663063633131383135613764623335 +65623062343863306135643333373262346435636663333637343162396439343664663561613736 +66636664663939326362383938306236333936393533373330363331623564306137613665323563 +37313536363363336235393039376234646163386364333564653333343066393433386366356338 +38383634383162626265303237633136383733386434636337636639336134373731663831383436 +39623362363731323631323861336664623131653761653239363966333734636437306266643534 +31623864343533366237356665613439616266363231353432616262393066303064313334316165 +38333130336663376639633365373561366365616639373035326465363934643265633464633166 +30653538303961336263656433623937643464643036366139356665383631613635343832653566 +37333939393964343137666335353032326134333061313462393362643731353939383163383830 +33303436353933616162393631653832303364633037643263303662376361303638353061633430 +63333132333363616631613764376361376231336239623266363938616364623637373563626333 +65623834663831323465356661623635316238323965653038383664633331383732323066396562 +37343438326362636562313261316436333862623062383838326430363735633033353436333038 +34343164656638373465656238613665313932326438666561396337323631633536326665653832 +36633336623162396462633864643566363937323165303139633963306563646137666332313462 +30333433316465613937643664633366383036633039643732333362613662396265333034306661 +65653963333935366537636631383466623734366330626662326661623230633939393537393965 +63383136323762303534386464343932316635626562323133633330383734643632613333653763 +64383132393764306166353462316465646531613365626235356239383665303665653839353663 +61326531623735383437616133376531633435633662333365376163323364383332356265386561 +62616634623464373265306139663233653366343130636333303232353236623832353335663839 +62396337663430313565303262373632663537313539303263373630653937663561333462366264 +64313634366530626361346535313234333539396537313863323466306331613333626561393264 +35653035383966356537363861386162396237336538333931396230663431313563666135333036 +61373566626331363938616436383766613331393161626263373032363732313239306161313865 +65386636633938656539386338366166653264643932373338376532636531386361396339646339 +37666136626465393737363831626361393263306162303734336630663936366563306632393736 +34623234656364393739343565316232613530386232626564383364326234633432343563656130 +33303362323264306166613763626336663137333436633934616132333834383364333534623961 +63343861353134666337353534373136656466366633376539383531316239343362343565393466 +66633034643139316166653038363364316133653534366565623063666263376538636163646164 +61376630353961373132303239353736303533396466323762383031373463383435306534383037 +38626234366363346234333961636434373137343062353334626334373165333433333239386333 +37303464396431353631353666346239316163373763393439643032303961333161346166353633 +38333532316134353132653637653734656337643635313332313539636364393030386130396633 +34336236306238396139613461343337323163613330363532616530636130333833326461643965 +65313532316132366431313838663338363534616432373334376635623562326666653661623639 +34313530636366613736303837633332313865383535623534353138633038663332336563356164 +32376465653439333263633734313434326332363734656435643438326261393966646465623934 +61623965363531383532663537366461663565313266313439623031336265313532363937653662 +39333733386463353932326534393665613863343639303764353966336438383133363837616262 +32356432646262376138613735653836323561313063643662373263623134656163393665633937 +37646438383665363863373531343534373039633962353730303033313335326561636431653062 +30336162376337326563363634663233323137316530386665643761623063616161353135396161 +66326238316561303366623562393363336231383731373038313461316564383736373435353966 +31636238333664623036333763346262393838613231613935323331356566313830383962363030 +39313766643833626230336634323636656530393432666166353465646133313930396365383265 +66333539303161356431306162303330396530333065316163666261636261363032666366343831 +35333438343438643839363936316431393338323838633363363134643632386462396535393632 +34353735386131376239363638613637616462643665343664626133623036343531326230313662 +61386336656262383034663762346433636630363466366239363961656265333234656536326535 +35366662393230343739626665663862333535326136376163613666326561336437626238313365 +65323861623532323666303538306132306631626534326131336265616139623362653633303863 +30303566366235316530663161633537626262383232656661353830343365616264326463303864 +66613433383063316233633063663839303838323132633837393762383164393662306165303465 +61343238346137303735346661656263323939353465343632346232623938636466383763643463 +30616236363939363163393465366432353431313936636362653262386464383231383438373830 +31613137643736353965633330623839323530393165393137326561373435353264306463316637 +32366433646333336264613165306234636537306331343335363633316435333533653737346637 +36613437376331343530366364393162636136353361393638636436343733306530663465333261 +35663433376266383363353535316266376433653334336235373562303535363639613631303236 +36663661386232383434306339333637316436633937313861363932393863386534303035373966 +62386538316563336166333430303930653735343436616431313534653030376532343734376530 +38366638356161386331333665616231376434653937613339303636386336363061643133363538 +66643765363964316239663439623964313533613738303931346136663165626462623037373831 +35613438666563666362336437353338643661366230613466386666373639323065333563353034 +61633833336534383838346461663238303938646563656261326430386462393366636334336361 +62326666656463303133353666353765376334383931343833373963386632356234346661626165 +31626438653737636231636237303964366436613736633865306630656135303637386666376666 +31393962646562363935323861326135343238333733626339653830383261323830373132613766 +33326532626331663566353566616131363261323861386436353363376365343166386537616665 +37343630393635303639653562616232303064643064643061623861643065303731623932663234 +30616531663462646338613464666536626339633538346163343761336163343731333739363536 +34343239613633366130643066353135613839613833326166393136313364623337616639333161 +31633938373362366334636666663262356366323136393534646237393333366532623335393334 +63386163346462663832343165656236346266663730373133323632366666303763626665396562 +32643166396464633864656430643766353064313139343931373165323564616430653536393961 +62383438656338373761323533336333383032313835613036366530613930633731323061666433 +39643434303832386631346466633835653733643939353139353530616162323265626238306130 +64323337643935623532633430323932363138313434636466636263396264633738316164313966 +34653233616533666361346664343730643739393462633763626263363632393335626332323364 +62373139353563323339643634316534333235333536363063663638373230616336383038643438 +32326364643237396636343732383333366437333465666162333537666233373564666334663361 +66633432373362626136623666613535343430323236306564353762636539313562353437666234 +36326633383236346565653937373631633232356134663035383339373565333239316266666433 +63326334373434646365336563303634363564353435306165393036663865323037383733386338 +39613466616161363131316430313062306136356431386231353862346163636362353036373365 +31323833333637346432303839613036353061656331623434633631653133626334316430656132 +36386630326162636537313639303563303363643037323732623332616566313566323566633335 +31663337303865336439333064343465393633373766666538633434653237663561386166653964 +32316165653538613465363936316538636431356365346565633332363764343165343539393961 +33663363306539636235363436663962616434343033356233353237643839396561343565386334 +64663737376238373761373139643636313333323434363936316534306162623639333933373861 +38353336646266656632663764343061373934393339313461313435356161626362383437333737 +35666663346261303138643036626264653131313937303663613261336639336161366234383661 +63616463306363306238653464376534633537326633623632333332333133353063626230383066 +31656133336465373532313732343166316662633336306532366463633238376635376435653730 +30323464316430303930323031663333643931616130626532353636326135313565643661346538 +37323063316438386236343265313738396665623862636265613733353136643665646234646633 +65383663363031336266623764353335623630383732646434653361643662366132343033393465 +31343936303033643332623532383233616561633538396232313135356466343535633462306238 +34616336326364333239363531356639393538376231383833303831323766343232333835633261 +61323436376234343539396135616334646563303433363139366132656664613436356234326430 +32306362376434316562313338333965393238336134366430636231316364373064636538653131 +34313764383334333161366262613030356634333833646134366530323638383039616562323636 +64616538396661656334663937666334386664336532353034623836376136313537313139623261 +31346262383934393138383235643266616166616161313234623735333738633538393030663961 +33643963346366623934376464333866343536653332653234336230636635303361356431386463 +32346130373538353232643238313963323665343964653266373234323935363938386531306462 +36303263393764306166623163323666653836633433316436303338623938353263336366333563 +39306136356533373366643839643832663661646161613035383061353333386232346565393933 +64326661663365373636346635383965656639336538366164633930383931333063386339336330 +33316433616336303032613766323466346333393833366532653861323032646630353333363564 +63643737376339376632356534363832616630356339363734346135343162666265346464613862 +63663964636662646266363462623232326637366432653032346439343866646464613763316332 +33366236643563363033623633343133363430626262323731316362376336633561323232323162 +32316632633430346265333730396430373466376632666430636437646630613262326663363233 +63396334613236363961333362663666666334633833346135353735656531653739623333323835 +31383164353436656438363165376136376162623532373962313466313831343261383236653632 +39613962646132333962616561656432626133353264326535653864383939626634376633643366 +33396563316330336663343737653162336234613536393561643337623036613436666166363661 +38393739346165613365376364383361646639343635393535643637376138313661336536383661 +30653038383065663334336466303163653936303936303332636630376131323338373363366339 +66636130626262323262653736623137366363666264343631323461633838316465323736616430 +65653839393232363136333331303235386161383131613461623537313333643732373936613064 +34353833666335643933313333313130383130326336646332636164323330393433633364616432 +63323330376365393333306335653131353130336166633932613135343831326137366364366238 +63663537636161626264393064633335326165393566363630653232653361376235623932633631 +63373636323739623436623439363162323030613435636635336332643934613163663064636339 +38646630633631626431653036656135643562633666333737363935306233623363323030383162 +30646430653433663665313631623031326364393061663961623962326436653365363261323164 +32626237646134336365383437323133353365343963376562653532656264303939343564396465 +33323934323565663261663836643865656634306338633134336434663632353135333030346436 +33313933646135633438336465613430343462353661613539343765656337356232623061356135 +3532336364366237303539336262646133366134363338666132 From 421e3ea0e2f7c3a6f9f4d094b8ee00e8390a667b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Thu, 25 Jun 2026 15:30:40 +0200 Subject: [PATCH 15/49] fix typo --- environments/kolla/roles/mariadb_backup/tasks/mariadb.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/environments/kolla/roles/mariadb_backup/tasks/mariadb.yml b/environments/kolla/roles/mariadb_backup/tasks/mariadb.yml index 6af4a83ff..87c214c2b 100644 --- a/environments/kolla/roles/mariadb_backup/tasks/mariadb.yml +++ b/environments/kolla/roles/mariadb_backup/tasks/mariadb.yml @@ -13,14 +13,14 @@ - name: Deploy GPG public key (from controller file) ansible.builtin.copy: content: "{{ mariadb_backup_gpg_public_key }}" - dest: "{{ mariaidb_backup_config_dir }}/backup-pub.asc" + dest: "{{ mariadb_backup_config_dir }}/backup-pub.asc" owner: root group: root mode: "0644" - name: Import GPG public key ansible.builtin.command: - cmd: "gpg --import {{ mariaidb_backup_config_dir }}/backup-pub.asc" + cmd: "gpg --import {{ mariadb_backup_config_dir }}/backup-pub.asc" register: _gpg_import changed_when: "'imported' in _gpg_import.stderr" failed_when: _gpg_import.rc != 0 and 'unchanged' not in _gpg_import.stderr From 31631d0aaba87ca5f59e0cda5c9a7bec6a275480 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Thu, 25 Jun 2026 15:33:42 +0200 Subject: [PATCH 16/49] fix gpg public key format --- environments/kolla/secrets.yml | 3157 ++++++++++++++++---------------- 1 file changed, 1579 insertions(+), 1578 deletions(-) diff --git a/environments/kolla/secrets.yml b/environments/kolla/secrets.yml index 9959d4091..de3e29398 100644 --- a/environments/kolla/secrets.yml +++ b/environments/kolla/secrets.yml @@ -1,1579 +1,1580 @@ $ANSIBLE_VAULT;1.1;AES256 -30396338396662633839346434323536373438663664303939653039326363386663373864656532 -3464636233616639393030633336326361643964383236630a636131346539616131386136626438 -36303865663864613935343262313533393438376366393633616662326464393538623262643639 -3032373264316230640a356430376234383433373938366530663836323536353535636130346133 -66383764353034616332333636643465613132316466336264366665656261616565393965326338 -32633766643763366334663436616266643437353730383163663465363864353630643965626164 -38336462326433663939313565363034373938313433316661623231366665336564613564353733 -33396131656135346238663331663835616162396133616231383566323938393365373433646662 -36323732653438623164353336326636313238333531373739383862353538356264653634643662 -39663739366336306366376466643035633237646432316533396636383964353037303066306661 -63356436313431353930356165343835313139373339363661616230616533653161303236616438 -35396635326262366238343836373261346532636632613535363638636366613263643266653136 -65623838313033386465666239633364613034613531383465336639366466666635653139373235 -36383035663835623064356136373030393365653331383662363263633630333436363337313534 -37666366386133666235653534316162626634363830353338343737643466366139373333656634 -31373030363664303365396239323436616361323064633665666466366331643834303236323631 -33663238303863653936303166643261323164643936653663373666386635663437353932353735 -61356136656639613230333837346463643837646465613932666261386136653635346339303230 -64326432393163653736613039633435633161396439383733306637326232636265363934343465 -66363737313338313730303862666336356432346565366630383335646633376132366139336537 -32646133626531626630366532346662313234666630303236353934643035656163363132313466 -37333333633132313239303039373436663736663539303039333164363836613463336163393864 -33623639643439313262316331633165343731363465633639363265333261356432626161353964 -37303334383663663037646536623839306631396464396137333866303366643465366262653539 -66303433346138383635323231303635373633316263353630383632363931663537626138343339 -31613736343763383135663839383262326133653134326362666630393131316532646663643964 -34636261303563663365396637353031313833343236346431653637626635626163643832346465 -39386163616161353933666631333939356563366239346439653237376364623464316634343766 -37626132643537313232396536306361316237653834346566356430333264636161343734623763 -62363563373537396566396464393064656436633161333139656666643938363236613832653038 -35383034363339656562383637363236393965323561663364663131333162363664333865373361 -36626364343930623239366438303263343662323564326633333232393435316261663966353465 -32663237336666323163616438313832323863396535386361636364646537643163633232663930 -36396238393564383863326532633937313561363134613663383263343865356661613065643331 -34393565633739666530616261323538303261656532383538626139353238383632336135316462 -32316434373664643262303761323937653832613966383437303332616231313661343961373032 -35643935656636326434633239613439376436623463333063353262636263323330636263313531 -30373633616662633734616433393439363662356662333233323433656663393030363563336332 -64373163653838316332393062346635393632633064396633313862616331306438373930653361 -32663939323139663561653434623437643735363232653038643031313037343664366232653866 -63383437623064643831323862396238386137313734356135653131636231336336323330313039 -66653936396262323334373733393564663461306365363961396338313566353632373830323432 -30663333383164336231653534366132333165346631346163373238666534353937343761393865 -32653134303336373531336330373935376239663837343232323130383833653536363061666162 -62363061326235316565633237613832306431636566656466626335316332623232643864323865 -39343361323964353231643032666539366630313361633063346266663362303364643230333862 -66366261313538366437613230393638643665633064396361393038346433663061336438376339 -65643666643163653733333136346261353435633234346466336437636463643430396336346632 -31343161333666366433323330386362326265666131633234666264303839393561656462393865 -39663064623565363633393735303861303733343432633530653933636139613231373463343338 -31353935346335316338313532646139313261333065333632373366616635633166323837323737 -66353835656664616433373432393136643364336366623236633634386463393630623636623863 -33643161393761336666353037626663356134346339306639646662386161633662326336383861 -65303238363163356338343437616333343830626163396464643035626634646431633966653766 -63333232666433616561393063353565383836626336326662633535356239333335363430346665 -32653432373737306162666665616334303236666430333434323738353838313165623933613238 -36393230306131303363393537306137613066306466623833303330343235633362643437363161 -32366164396435336561616239656465376362646262653439376235353561333665393666356139 -34666639363533643866626362363330363962386339353134616139353339323034656633383833 -66373530326131613137363366333562656164363639653334643764633132343539623061373164 -33376338633631633531646165383439376432366661613039633736663032376133346331633163 -34353837613733386539366466363939646330396133646336363732653066616166346136633764 -66396638353133363631363238333638353337613737393930333537356664383964623331316338 -39633565356134386561343765333962663130623864636366386534343133633263333461613035 -64613264653133653666303530646261373464356362653964396532386564623436343861386431 -35653338313430653139613638623732303133616561636562316236343964663433613964356161 -38656161363866306239386566383261353232393731356566623532386535396438666635393330 -37666639363231343263646261343562323936383366376239646562383935343664326366646466 -38333564386566386163393334333261303266396535383966306633343365376663666462356163 -66323137663537643030633730333934643338316530383733626435393761303530616431346131 -65343662666239623563653838303734653134306333616466366264653739653138353462383037 -34366535643566636437643737343364373131666432613034643263633137346439633930376531 -66643165383031346438366638343165623831323264366431323962353237666139636430366561 -37636263353338373138616666333065393137396161616138373734373932326361326431316237 -38343266366261333935366666666435373965356337333262363036323439306236313561616366 -39643562613933653137316133353238663234343165653733343535396664373236313935353834 -39373861383761643433343734363636346464643862393766623433373937306130363861663365 -65653766383339313661666130656265663935333932313263303461393134646439633435303232 -35323932623635353835346166653663383161343836313133343364643636646631323038316335 -35313635396563643463636461323162363664633561623765633565393531343465353137623137 -66353631303264353234346436316464623435363761653463333439636264656233666664636166 -64366666396330336465323235656637623838636262633439363065396132353332613337363533 -63656437666664616362343165343534396465323931323763333863653364323531383230633433 -31636164343131386264346632663938346439653337333338326339666261353133323834373336 -61643834393461626638333130363566303538333839316562343065303665303830623062616138 -31643261663734323934313666613264623662393130353332316535623139613133663465663066 -34363538623239653831313833313931343566313431343563356432623938343830663738616137 -66333537336433613639633863356663303965656130343866333732396534373632333634343664 -64666461353532303464383430393731643938303231643731643938383231323161303462373065 -39646430393237386164306230333832323831613661626335306535633733336330316634643530 -36373162656361623135636435383164363137626365616564663436333430316432623533663062 -66613863663632313963663463343262663064613936373733383539313632323064626262393931 -62623635613366306163333333323532323634343063626563336239616564363135313432306136 -32613066653034376132613434656536366238626462363931626132393466306639316361656565 -66383863373733653239663239323035306664613361383331636665623831386430613138323265 -30643633623933363462393434666135343831663735646431336439393062366561353333633231 -31393330636134326664336538303439366634393363386664636633646266373035343635333638 -64386566323135633430323764393832616462356237323037333233366437626534346437306163 -31363137393662643164396534656165366363393235316533356139653439343061326264616531 -62323765653239626538336231313734653531616162333438643837323662373634623138383434 -35366563373730653965316538363434366434303266653930616137383861646638393032616462 -31623530643432663131616432373561636265333439353736396637393632346539616137623461 -62383831653566323365386631346662623234616234366166623131616166633334656635356637 -36633139363833613731333235326439306363623739656234656330346432643865353862626165 -65363035323535653034306266313361663731333434616437363533343161643938356336643964 -35633266633630646636626266656533396366346138336564396434613132333262613863336230 -34656137636635616365626536626263386165383331353865393234323538323032353934626466 -36623562373634356536623964346332336438643335376530653332646436303236343038656536 -39303331313564346433343761613361666263626366343665633638623861646162646236303331 -34666162393338633237646163653533323633316335323730666434313534643337643963383961 -38363938636166383962616539373737353861616430373035616663313938316461333532366238 -39633630653131323265363065353930656639306432356536666534323530383834363264393364 -39653462616437343266386161626361303436643339306265353162653933316466313966613531 -33363539316334313864303034346436656462336337346435363766633231306435396533336333 -34633730333230356131336132666165326432393435366632646130613733343164613531643536 -30363538646433346630636264633434616131616263326639336534353836633637383734306265 -35373034393336623236646561343866383963396534333861393132393638303461656562373538 -37653066366163373961656536303963633031376663633239623765623065623764643233623337 -34396230346536646664353832363731303233346361316432363138393738303139613361326633 -39323462613965633135623234313435666632323761373963353361393636653634376232373062 -39306264333265313832656336323964643531373131383133346635366638343131363435646663 -34616334393338353431643464363437303333613062363935613865313865356263653261316133 -32396466363033656331356335363833333364333866646238333531303864653363636565643636 -37653639326336343261343433303435383034643163633936396566653934326362373535626362 -34393666326530306239323236343836373335303936393564653031633332656236663964333732 -31653361346464303265663835643165656231313861616361383733353638313334366630373566 -61336266613433633966396634616562646364376333663166633331383238346432333730626265 -39323834393432373761323665633132333239646132623737356563373266633236306464363935 -38313735306238336535333539323361666363316234623464623066313966623266323061333265 -35353365636437656332636262636638623334373063353836326662343862663336316463633262 -38326364613138313161376366353737333261396362393637316564333939363663613330633538 -35353239346534663965343030613533616632346364376265656165343731343661326334656662 -35613638326634346132386465613231376662616635303235646138646462393538366131366666 -30646130626134636666316331383537386265326264666662373234653832633663393662313864 -39346266343866306138326564636538623834383438643138613734373236396335643661306438 -30386339313637616132666331623664313530373738626662323862373665306235396236383339 -34393634613133653566306332376331303035383037346332643365333562386330356531343766 -35613666643539363464303662303866396134383662633366356637343434633537323633336230 -66396362396265313930616263323366383134333039333432393865346236636634623132366134 -36373261336166383131363762363962633236623935396432616635383134653238633161343031 -39633335373864666563623862323534336135316335353638366334316431666564323962633537 -32346137353138393463663439626162623131353161656662633364653638313263633238373335 -34333865626638366563626434616565636337306461633162393436636361363434386636643965 -32663431343663663630663533333663623032356331653434323138386535343530326264313065 -37323233363330653938386262666464306465663538643932343062393731313035643961666630 -32653061663632323464313263643839366631373733383831323632346462663732646462373837 -65396435613364306630653433356561376235393637636133386561343533313566643865386465 -32623265646434633631366333613038393832343161333932313038616436643561653962373963 -32306332653539633064653739346637373439366530326537613138373062396639386136633039 -65643939333331353433613065623062316533343462366432613430653930653761616365333166 -62376236663263653036653431643037663938656262313535653736663664303039346164336261 -30323132333331653465366363386662396235616630346161363264316362376437363136313366 -36653561346233636134373732613230656230393539616232666434306138656161323465663036 -64666561656564316162396230633230646630396134366139656234333236333464333266343735 -33616335633331616232623735383762616431346436356230323237663762633337636462373632 -64386531663331336438386438623930366563323066336363316236363263333535386662363135 -63323637363535616263653764346136663231626532333664613963633666313834313162663661 -65643762613135333763616433333136336664333537393237666563306532633461333566316361 -30353432613739343336666330643263646164356235666365313562343430343139663536346363 -36386530386235643035343533383735663161383634636134393730343462366465623937663034 -66376439373131363663663031366562353337636233616265356133613531656163313163653366 -39373134373262353965643936336461356636333739346334393938353431326336653938306539 -61333261326261633062396262383765383862633539666639646137396561383066616339663132 -36306265363334303263373033613731303964393331366530323665336364636664656163313636 -31313830363232316165646134343266333536376236626334663561373137636436656133346138 -63346237323664396438646138303838316464386337336231386261386538353466646330646239 -66646339646130346634373366633037626665663030346536383835393365323135666339376465 -64653134393438396331303038623366616361616134363239643530623934633938333364663035 -31363333323862633961363836323363613566333666643732656261316365373730663865323331 -34303731616636336232393438613730616139396135313130343230343962326533616634663237 -63613462613431303730636261373463303866376332616564663031386466633636623433363562 -66653739353233323838396637653461646361613030636561653930623931373662383637396538 -33303035356236346161653662333038623334313832666135353738336133613131626535653165 -64313266633532343238623663303731303061646234623766313332666535363334333232353965 -36653938373863303037366531316539663264386236663330373938303863353936653564303035 -38383939393430646236303964326263663363303065666433613736303463656431363238613761 -31633731613631393832613034323361316137346232653764373434353337613331363136373138 -38336531343766643263396333613233366564353630613938633537323837333939623962303833 -31633233393861643833643035613832323638663439666463626163376366383439363062393637 -38346535393634363839363730656136346133623366303565623532306534363630356532356439 -39643064653533353331613664653364643666663839393266646663306336633339323036396235 -30363062633939386263623763376530646430653163323361353831623263386234333636376438 -61643833623237316166373739393363333433613239633330623465383138313762646264363431 -63393063613330316437643231343539393733306539616239316334303833343265643034313330 -65613261633835383532383533303561336637656438353732343561666435326336393036633965 -37316232376566623039653365653834343664396136333763393862306566363434656439633937 -66333365373239313961613362353735663538333861663361343265656433613966356636343333 -64313764643262343032613965633636623038626630353631633739323062333863643335366365 -33636236643266346637626263633030373265356633313461373139626431613930323866346436 -61376238353137643834306431336432633033623530623531666465663437613061343837393765 -62636134653863613465393834393666313862333035316566333639326633346131666131353834 -37373934656431353134386133653665616337626531623665656238353036303738323338623161 -63623239613862643764376331363336353630376366396564663936623038636564333763613939 -31646366663033646234666531633938663566626634363732303564396432323030636238366230 -37323562366131343365623265653065383630633731333638313138363735363961346335633763 -37326233333230386333636666356535343333316563316561386139633062356662313331376166 -35373563623462393436646562343565613464323965363832653439383032613862626233353766 -61316665383661336130303630303137346630663038653663383732616166356661373236653564 -35623238616531303665316164343834646130323036366538363337663334313761313531663161 -36316336396437333464343365343161636231626434373832636436316533303532343833643333 -31326436396236666231386432306336616338303234636336333132313937323333326364656634 -30646434663232613739643131616631653866656533656335386138386165626134396637393061 -39646638363661316338666164386338666239393861333938383162666239303063393038613562 -30313963393366633733663137386339333333323738363161343131633032633738653436663136 -30373837623438393431373539353666343436373731383864643266633562313830613636643135 -36363339643063656332303065333333663338333463373931633635613030366335303137343366 -30303639373331646664326663656135626463326139333165333766643166353936306364396462 -39646536616239643939653836623563643633646239336362613363636339393563373533636437 -39343138636238333231636538303235643130666136386232383836623765663936336437613734 -65663165383161633865383730316566663137303834366238346164616138336238636666633134 -31376363306365613864643663323538303265656533376364373166653737643533633035363862 -39333463633230373866663836333931616636313265343765613438383032633733353663646636 -38656537653931343633323435366463363331326337663630326234363537643035616531653364 -30353163363330363564393565386266366566393733393434386333636666333838626161393838 -38323232626664623465663463636236643336393866373533616465356238313764613965313833 -64363166306637616131633737656361326632653936376633393639353536336365643037343236 -39613566613932316138616533373037313339326561633761313836636138336339633239333736 -64613766333732336635373134613333393431663337623933386233313464353038306562633933 -39613739633334323763633434343466666162396639386433666538323435383332613230623765 -62366630383562363965313339383935356664653635373133363661306536633663363538646135 -35323663376335376262343736623963346530656230393434363163623639636535383038353734 -64363630643662333464623231356339623233343435373439373533376366353663333561626337 -63353332326230313562666139306237326137333864376434333434626564353734643734323663 -62386139663063623266303137373339616563653437613964633630633237323365636364373463 -31636438363237643364666366366531373134313831363834383335616438356136626539396665 -38313134393536393330386266376361313366396335363264656131366633616163343266656536 -66303762346531623134666135383962343136346630353230643533383038366238303363303965 -65383665363136303233643362386537303533303666306361313231373039663037333230623332 -38343665663339303965353763643031326331636662356364333730326264643261613166643562 -66366234303639663331623633626634383436356137356464313832313636343264313137363436 -64643538383230616662353036626439653164343631623939306334356335363761363734376261 -36376563646536363465346264626530363762383931663331393666313235333864356236383831 -34363561626237656163623136656631643439653639356634336331353764633537326234626630 -62363834303037373931316461656561646335326139336662323639383464643433613139323038 -61396434393566316636386436333436626430333531363763636439336130356437383063623063 -62333032626566373166316439623830363132343530663862663038333931653932623339343639 -61656233373531633832386666323230376633356132306438646539666434643862333236373730 -30633830656364353437313362366338353461343462373265343862613031626261666432353935 -37346466653931343336633261656332613264393565353362326138326230646236383463393436 -63653030316362313265316631323965333564333464663261666334666332323039666635343038 -31616636343737363064333539666430373863366263366563653838373861303636646631376630 -61646239613761336162656431393731656562373737386365353664366130343838383963623031 -64633134376339663766353861623562396666656233333061333763323632616430303138383564 -64393835393639383331386139333733643763333365343863316161623035646664666134313331 -36646666613239393165663865616338333766336637613161656132643363316262633561613863 -37376530666338653761666130323564366237323464366539336362613933336337353338626632 -61623537323466396364616364323337653265326565323731336163353165623134363062623234 -33613065343965396233333063313562306163326537646366326230633364316665323764653935 -39316363326565643961393663656337643130646266303837636263333562656366393434346632 -62336265373435363837343733353436386261353832333135316261623966663934316134316636 -63613462343436646564376230653638633165376563366361363533646533656336633538353535 -39316161643164343262626462353031346631633730663436373833353362626137326533333064 -64333933373031663930336562373938643563386363323335663461396462383264336631303336 -31313766646562313765356664666339326565323033623137333061386238613430663466643237 -65346136646632383464623932303562333834306264363935666165313236633332386566643533 -64343730623731343036393536643938333838623562346537613838313339643333363963343432 -61623430313866616435363466313738646637363361313035353664663461393164313831353163 -62663833623032653565353136343034666532626233646263633736633162343737343464383566 -65326331656239396433323663363633353131663663316330353738613664313333383464653331 -38396339363464376233336562663565333964656430636363656664623236643233356231336433 -32316639633030343736343766376239643864623965666666343230646532353966343735343634 -31626663346637653363376634363939383066663230646636343135323361313764303765366666 -62383665633062613365313632663437383033633933646335336563363339376631623831623233 -31343634386333306162333137376634353234623535666663343537303964373266616364383131 -31653239663266326334633132363934633962383863356233636434393863303064326136623038 -37636465306661383164343133386236373364353936633965363639383933333731373437616631 -65356637393031316566356665306130613166323738333431623166373634396339653330376432 -66613330303262303635383831336130303135383363326361653130616638333136393364303965 -63326164616638643239373264656133386266656430646533613466396632653538363135366166 -34613931343931613834663339333433363630383835396238643731383563616563373239623066 -38313138383064666631323234663566303738313734346265383836386665373139323062343434 -65653266356230303936623662333562393666663965323131386236643133343631346630646632 -33373833323139353864326633346231313635336564653565346235626565333636323164376630 -33333462636430376431313836353936633932383232313364653237323630336232663033343661 -35333563323662383038376163343335653333653538623534653538623433623365393134336635 -66356432316165376232643537626264653033633361396634653865656461356563363838393863 -37623164393735643132383932616634333730303135356138373366363839613931636466313736 -37343266313931353137653162373732613732613161653631356664613533336166633664306336 -31373561646236396363353538363961663133353834306433613666343030383932653162303865 -35326466323937633833383037323439383262346664633734653936316638356266376430356139 -36323237343839656265303736373765623335353331653030656336373138376661306563306264 -32646439346362623861653562393032323039646433396431333834666362326333343864326464 -64666261386162383632306362373332613238356531643531636230303536346138343431353830 -65633736343736326163343766386133663030653133373937316138633165313836336334363865 -35333461633263633661373165356634343661376562366430663138373437353331313363336465 -30643164636234336266366236643562376636383664313764363034616639333932336664663331 -35653637616663613131316661313965613035383965633538343064306330666139646632386438 -37333562623964353235626539663133343336386531376537623735663130306233356263376365 -33303763346466616461313431373533646161373038336137643562303033316335643534663935 -62353932643665396262623034313163346162393430393631393962316631393662383137383239 -61363437303433666139393062666266393832633735313337343863306264333636646138356530 -65383532383331646463333731383437396630326166383134346237613830303938366637613832 -32313434306263343766373931323432306635323765366662383031356332643530613437393561 -37356335306636363437666463663462333431393963323965663561346530636662346538353362 -37663839656337396166356530396532356566306531653335383332646131353862363062346137 -66336133393235613634386537663364646465636661333333656235316232346633356133663633 -39633962643161633535663731353732626434653565643161356434383136323135643661613638 -61646162356531333331656230353431363932366633636435313534626261383066383237623961 -63613866333165346463333039396164656234333165643864363732636337396663353039353533 -36313034373966663963353134303733616363363264616231613164616232383764316633633166 -31396538613964623861346433313738326437383164313932663262323566633838316534346131 -32393366376437366336636630313461663666633832333162636539376562323863663366396639 -30373364643066396562663233383030326161353266653437343761356364306666653938616662 -66623634333336663764326561653935326334353465356332613765653061346534376565613264 -30613232366532616166653336623962333038633762373162373664336532623866396164336231 -39636362346266336230633032356236613964656436303264323037393263396530646662616638 -32653733656639643335353638343935383133363865306466623865343362316336303330316238 -38646137663864636231663931383935363932396163623162376333366632363761353233366561 -36336534613733303733653839366562616665636138653236326139346562356134316238633030 -34616263636531643362613833313135343563666531363135336438393238613964643861623762 -32356136376363653935353666623061623230313532656363373065313238623438343937336235 -63656337326263316362316535343035636563653432656130366461396234306661613034333338 -37323261373632386334353065323639626630376165646361633363643539613266346662383762 -62646636343062316133623530376534373538396164336362356666323738663164363465623861 -39613361336235316137383632623931633733666332646439323137326231316436653664633636 -39626636613034303061393463356636383635366462373534353232616164383734353461623835 -63383065323463663531373934633738343531633364643334333838613963663435326139333935 -65383235383362646532633832663564663233373232353133613430616438353261326631366464 -31643430313766363438386364613730363035326661663837663864343865643964303665643365 -31303032653132326263363838326332373464386664616336346439383439326265623762643461 -32633764346431613437666332343837303363656661323338643834386635326235393535353934 -65626333343561373564323638363635376535316434663063333432333634653362323832343430 -35656433323866623831383139376239623763313365633036303833393735656231326434653662 -62346330333766646166633833383865663739363732346433353130663030396133613239326637 -37616231333062386262373332396631623265353832393336613531393865623333633336643936 -32666330303564653065323430656462386630666339383833333539336634303161326533316132 -34396437366433343661396261636665363766396563366134633034353732633236393965613764 -39306331376238316464383964623630396466313965653966326539663131333333653539313864 -31366563306531393138356532393633323736336666303862633235386532663734626236396537 -30343262353830653537646131376131306536663332376639366239613230663261646562396133 -35393433323864306334373061356230336166376630326635306139616637393961653861636339 -66373533316139373832343236633431366332633430326561386431633533386439353439343032 -63336638393038666565633339393263633466613263323965363564366164316463316234633537 -62653463623738343638663034326533313730646236623836323539346566613030666165313638 -37326636303161616133633231666266653536343865353134613565323635373738393336353163 -64333961336539356362666637656437383735393730646136303233613962636633336364366363 -30333737343839393839623265373832313739623365383231653038623565323339323832383230 -65383039353139623562613564326234343766393462363834643630633539366332343864353664 -64346132343164346531613531306637363332356138613738306238313934383266666535393462 -34386165343935346663363362653735376462306164636563343161306565396664613164616530 -65636138643661663431336531646366303662323837616333646435646239366333373531636537 -65323264366132633333346232616438653061303639333139646233373138323436353532303539 -63316231303436343361366565313030353439386538373233356666616662363335646136653163 -64396235383036653063633963326464316434636365663466626238626435613935383864383633 -64613837623066653463613136633364626136643766333731316233373635373536633337393634 -65653635666636303831356461646130346666376362653430616638353439666135616663633337 -39613635396263653834383664636637646535393336323763616332373263336432663539366566 -64386237616265633863373336396164653561303132666563303863306362353663353665663763 -61313763666131343939653438386232376434393066333530613038326466613630653261376138 -31346261613561353835303430313738346361343234663832316633313431646163626364303662 -66306331633663353337303266343463643965316137306364653539663332653937343863643136 -66366434636331386639636566653266376138376164313130613836623539333837653930633935 -30366265333031636230373738313534656637613061346662663139623964386137303135333962 -65366465353163653838316564636464616330353962363464666531313030326230643933306561 -61323538333564343737366532393230386234363430373339393836626332656434333562636365 -62333131343730623266613337373535336433616663366161346165376138386662636436643761 -38666134646631636331353637303361666666313337666137306165656338323263646534313334 -65633138333532353663663331613439303964626463623137356262663133656330366661313338 -32346132336431653761346663626539303831653663363531313265663832626331313132343461 -34313862613235393266613961646537336565383732353932383034656462333230613763643033 -31616535653662663264333634623030396364313362353964623437366361616564376539366638 -32613236633439643564346136653334336336343661656238343436336531303163373637333131 -38363530333836366230313362356135346263613738393233626139396433666261323164643965 -64326365303365366263626435373965613732626435613032613064376261373938353264396138 -38353865666237323037643061353566356263303034616535636132626662393032386135326333 -62383665616533653537383832623464393233633466663432336166633634376364303734346137 -31303939383631356466376361313766336134323466333064346638646436393332326464343531 -35343830376438656466376136343962393130353334333035383736313830376239633932663239 -39616238653932393639666432353038643831616161353831633636356532643166373537333533 -62303863666430633432663739633564303961343536363963643861363162346235643264393534 -36613335306561376437363939616462363263646465336539666537353239343466353131366134 -33306366636238323235663631653466323566626235373837636161376334393664396539636638 -37643334326135303135396339383637353931373362306161323532316235363232343263316564 -31653566363635343535663665356332653363636663393130376666613162663538613434666562 -37393037386138633965333631383733376566336139643534303736313631353430373663393632 -36353538326664356434616239366635393539663333643434646434613765363537613664623764 -37393738616535626364353030636165643738326435356337323363666664333732666162643039 -61373163356230663739326636633231386432633532356162623431323865343030616264656530 -61623837613136633666333130626235303238643662653061333738343230663137663838393734 -38363661646335646363373934383239383036613362323038633663373737643934333065383534 -32653162306132313534383636653666346265353138356662666635353561633539336265653065 -37363635323738363964326664373238653938313466303837653238633063376264366431653563 -64343436663464336165326630646236353036666165653933623534643132623033323962393733 -34306532333131303666323866643531303834623339656339386661626431373037656364323532 -38316130313666663132636561366536663038366432633730633531333436323365383435383964 -31306237653934306637356564326665613966303234363134333861623133666538663465663037 -31313962356337366264313838336436666563313565346636376666653931313333303466333662 -36306139363634623164333538623631643139616231336366623139303530363134633431323861 -62376564396230643632656332636662303136376331306432386432653338343733323037393266 -61383361356231636134363330663066373234373265633232323536313766336235643634616334 -61336261346636353863643966373235366435383233663231623133303335616464333862376232 -64643432623866313365356139343864663236653838353765373231643631373264636261363033 -36346336653939313862353065613133663737353535626165626663386637653062383961663530 -37663063393339323565396330613338633930393338336562626639626163303361333162333733 -65313835346537306363393139323863306361373433303131396538626236393961356339306637 -62643132626233356530303932616663366134653537313639653762373462303939343165363761 -31313836643466633334353033356130376161356562323061306232323664626436366565333735 -39396266616461643636633465656262346534393732313733303933313063363138333761643531 -38353930393239313566636535313037303866636231343261643531306666646431383431646631 -65323937366330613337373831396164333965616531363530643939623363333230666638313937 -31316434306233613063643437313337303163343038653634326335323731616336323436646335 -32613435353662303763616137643633653163356462663064643162323030363733336165643130 -65663564326338656531343038303237633737303537623636393739363531663261313931316538 -30633964373266346235313239623964353835386462343833623761306564353765366463353633 -62343135613665663633343237386137323534346661326233626138326237313034646262663964 -33393936616331613965396532373839656132653639336432656333353864383961616437636336 -64316436613334356135316432343964646264616631613266333563313161383338623534363063 -61373239663664363633333061373038616463653833333131313831613665616664353463356262 -61333736646330333064373039303835376162366337333431393938633666346264363438343437 -39333633376132303333616439666263363033333538643839366566636166666332346264633866 -63616631653735386534376361663636623737346131616461303636663461623834393436633339 -65376264393539303565653739623733646233626361326234643766316232313938383032643532 -34323738346330356637326539643336303734346639643564386337636465326361356437323962 -32346637316362393832336439363463653732346464363364653931363161386165333133303236 -34633633393635313162346566333932323536646239383535336137383164353931346232313161 -37666566633938366366373332396163343535653663613963623137393266373438333631363564 -35386263643164373732386234636633373337366336356535613964343037323339343432663065 -63333163383263616663396665313332626537326639626561663962653030363763363336613963 -65656534626366323864663464616432323662363736346531666537333464366566383564323363 -64623431613532656565646531376263616362393239656332646464623066663131646531376364 -39363837666261303061623361303135343537363838353865383437663261383963303433656532 -31643333613361343731623666383837343132666436353538646566346538636235613931663664 -30663632353437623761346636353337336664343338383463306237396463393635656636343034 -66336437663438646439636432386438343261616261363562323034656233323065303538306266 -32626261656664343835373465313266636434396236386463623338356233393534363537616239 -37303961306634653833353237396430336661373966666234343063626234613538363636326565 -61623561613335616331656533363733623338663562376461626236653237663737643636336662 -37626137313133333435313565366438626338663936666166656134363333343063613135346538 -62633366363639623037616261353733666366626630653565326363313236363766623637613739 -36373139336362323134653063356665343164643637316431313965633835633863643830363537 -64386366303230343533613837343766353032356465366665633831643839363332356465363139 -62653334636364623331653366623832343762333837633833663539666265313463633831336430 -38626464393335363761343135346164396536396630333138356337363234363937633261643464 -65373863656231333965646539663136643937616162643866393264323937626237313733626165 -39646539313564636634336266386461356561396231623234306238353465393162663465613066 -32393738363336333034636266353036393139376664626537663134353665396664376439646162 -37356565313238326232633464343537383832366566326165353232656439333636326137323032 -33363635333565313233663339373638613430356234343738626563396265396233353733393964 -65656262616638353365636339653032396665393664323131666232396165336336346538343731 -61353865373036323530356365366133623832316333383735353738326665346535616565666365 -66303262393866653562613266646438656331316431666332333962613230376530363133363732 -30396164343631316234633731303831633039356337373039613661366264653461386236363933 -39393630336265646539373233383034326131346665393038333830366231396231636533666633 -38323733626135636137316339656634313337376166343133333130326564363761663663653063 -66343965393265343865663030313439346664313464633461373438616465313036326366383065 -36346531363733373630363966653561663532323864616634333630313561393538363664383233 -32396466343333306532633537303736383735343966316434393166653132663430333337613535 -30613666623138393864376333636562663662353163666439336231633366633837653761333264 -62376539323762303936666433616630333832336633656431363337643166326366313733326430 -62633330333766313362366261323834636339343565633065306633633830333361313434306665 -62326164616661383462373032313032633162373337666462313863666262616165623731643364 -38663563356532303162616466623834653432616464626465623237323164303836626434323166 -62373332613934663631363337323165613136626534303635396137376464663165396161656230 -33336231646561356561373636333731323935363534373963353034326332386163356637626463 -31643163326137306461346533666566646436303165623261383737643764633661353738616566 -38656631643636363535323534326238333336386632626632653662363039636561643135633664 -64353935343536623030363331346334653266333133343139643633393331303664633532636666 -36666462656337353730643561326233613330356339613130303566316132396337623263653030 -63306639666336356464373533623236633865386638663061653434323866356332313932376133 -61666662383038363965313332656533306330386330663562373333393838363462353434623130 -36616230396539656136333035613764646238303130663036653333336661616136643663626338 -37373365356466656538653366393066643864373764366235373163626533613535636366646335 -35646336626663613739613637646333396630663231666533656433373139343564616630333966 -36363931353036653465666633653965343231616231643733306132663833313565646133666264 -64643864393231306136343165643137623431623633636133653830383966303934383163326264 -33656461646464636265646535366533313334333965383430613235623264633239356337653839 -32616164306237666331393936663762663935356436643266363733393039326533343961643935 -63653765306131323134633231666535656362353736316138626232343835623039383430623262 -64333538366661323636353239646132353137643837313236333538353465323031663232343463 -61356238333436643366393631626537626530353531383339643163323330316366366336633934 -37663363626364656562343865336365636631396434343739323533323130346530623532653832 -30376133386431383938663735616439383664336632316566376663346237666634653439626464 -61376266623037343661326263663633383266333434666437353036366464326261313365363062 -39386562623463623464383034353130623338306366383963636530643431643165353236633538 -61653536336662373066613434323838396436643739376137636139623737323530313630656365 -64333330626464366135386336333438303264353561653265353036633765373332626266613730 -62313265616365336238366663643133343161623735313037373230366664613165366139643934 -62386362346632386638356262336136383130353732303336663631393365636231643236373538 -39383266343363656262303261623861373931623739383163383866343130633737643337663339 -61393466353639616135333062363932333766613436376231363733623735643564396566643163 -62666662636561633961623164656636366566353430346266613730323933326239333464613234 -31393133336662373837663434373837343563393439646565356433353163383664356465613835 -33396234383837643963343037363531613536396166663263623764643761383934666534303265 -32613631636466356362353137386537383830326532333566393164643938623562343564333235 -62396439623539653061303237353032323837356138373231663438653563636232363239623232 -39373232633333323237363238313363366238623436356135326235373539396234643065376235 -33303938383235313465393335656431663265633366356665636634326635643636383536653263 -39653063646130666335616531323665323938336333323238636661636464636161316566396561 -33396166306131386361353636363366623230343466616236393730353966636131323663386535 -37373938363936623065646134396535386565396334323362336663613965656563653238623338 -35356636396336636663316238366335616430663331653666666366346332626364303838373038 -61336464323537643633663334616163326564666136623031343135313731633835663665383435 -37633164353931353032663464643232366231366137616338386435373233656236346466356466 -61366637613761373336663933326638623563366236323166633030313763616237393034363237 -66626232383735373163353466376631666666656537323866663835633636616366383735373137 -61363663383035356133393631323630363830313333333433666430356330363735613165656530 -64393862656130653234623036343637653164343461303564646166323564393537616365623365 -30356130323332393464303163623536313866613965323537623936323630623864343131343065 -32313231636663343634316537343831636531373538343036336362373839613830393334373262 -62663335613030616131653639303430323138663436316364326464396164623461373632656133 -61373463616264316637383463623164383430636562303637383339363036356236366230343839 -38646161353330653731383337313631646437333131343463656362346566383762396230343761 -35643534636137323466623336643032623331333335376631316436306430376235613435633032 -30623730616436396534393065633137633866376436613839323830643031626235376466353138 -66363638613236363632366465643634643663336564313738356466386631613565313066323935 -33396438336532323736346432356139363630656130316365653466656465373330666261353764 -37386530343163393739323963376533336636363563363737323531633130373934613663376130 -38393765653336333239653230373735366566626165643931383966373862306635343832386532 -30386238336266353466663635656634383766396431383338326665653534643266313833346462 -32663731373062346238343237383031616337323764313862346463303235336564653161366532 -38326666373064353435393432663130326466356238363962643533616131306564326634666531 -33613334396330333930633431323937646562353564373838326633613836373732366137626464 -33653261313633623864363835353439336536333135333566303362303538666263636436343966 -31313938646565623631366134346134373739303432353765373131623539623438303766306434 -61613564313365343034616463623163333834303432353831303432393163656663643337393466 -62343961363336366239363530663062633131313835303535623930623535396639633762356430 -35306465646664313066333531343561373337623438323162653966326430383939393335623662 -38393136386531373335343237393464306365663963363236653363303931313238353064653936 -64333739373530646334616234396338303961376339613037326334393935313134663138633966 -30323663343439396231363237353534336463366531326333646563616462313432646137393561 -30663435643433656231326635393961613237326236633033623263623963656636643631316564 -31643835396434343434376639353732313063373263356361666432633739616536623833633262 -37633063346364313937313331386130366562323534663639643866383162633962326266633532 -38393635383935356531646531323633323032653032366535313335626335303534633664356133 -63633863353264653361623561633166323962663661386432643063626465336237373966663163 -65643339373431383932313236363231653535303936643736613038623131356432626632326531 -39336638393031376466313034633631663236616464636363336266316332643339656462323063 -38613430366565333063323237653065396566666365383438306566316439616461616364626661 -35303236666133646432666561373938623366613661633530393531393535653366336536333136 -63353465626234316666633162343737333433343963316236613638383365633637376332646435 -32623034613462323064633533626438343231663337636261646535623738396437343766316235 -39393461346637376435336436393461316331346331376163333837653666313336346463663731 -64633533663366636335356262613564643035366566613866386265626263613666386465623966 -39303064613961353438643938666136333965636661643865363936356366303262656566653331 -39616235356232336639353466356231376563383537366662343332353535396634373538373365 -65323233616461303030646662336535333330396437343763303437323533353839663132393138 -38656636313239333436613762343339643664383733393535663939386138303866613335363461 -63373830366631613861623965633930613438643265643131396134373463336531313937313962 -38636636346164333539323331373262633531616338326538373739643363343336376330373763 -37393535663963393734333761393030653231653036316332353961656365383035313762633562 -37626238663035616230386335343066376661363536336638366666306639663438383833353939 -32373831393862376461393565333135353230653133616432636436376438303731303661353965 -36663936343430333131653938326334323461663835663462343066393834353730373535383537 -35616266306464343031626331336131316164616566346632623531346464343133613463373133 -33376466613639396535396532343832393133373730613634396231636338386332646639643132 -66366630303938623765353364643632383037613436383664306238306164306234393366643230 -36643964383039376638643332343437626563396264393434343035396432366165303663383938 -33313738643539333464623637363266336537643233623335343339353739376266643461623163 -63666665323830613462633264396164653363363731306339356663646163313565336563633230 -37653530326536666666373231396337373538626662666661653461633232396563393763346361 -32333365366135653632363466333533373966303466303634313439616134336262386339376138 -39353135303038313533303930666661373038613666383131393733643662386164336237393662 -35343333656561303266386331353162653135346566383261363437373761646430386239623465 -30393364353634636334313764636166313366366338356333343235363266346132623938666666 -32366138303839333130306364366238386438393335623037666264333464343663353532316535 -65646236663637666261366432386466353563336137646137356634653137326638356562633865 -33613436346233333939623833636165633062336634663866353764306231636631396336343737 -36663262656638373532656564326165613964636564383833346562333266333966613638303937 -36636462303863623735666365643139323565393261336239323233666637323263306432343131 -62383031326230376562643032626635333164636637633361666464653963383037306566613334 -66336133666563363738303634653433363339323834666366363037316564366234333564323766 -64653738626536613633333065343334643737333533663262646636646361666331376430323864 -62316538383139396435363331653632653164313232303065363465356237343233633763636362 -38326233303361316339353834393063666434643035653861363463373262623931383938333233 -63323962653139313138343961616439313766643064643266633864363138313436303565616538 -66636130383666383462383730383132376463313133663964653661616634356133306163333263 -63343239613837633861333234613537303563386137623834633734653030326138313439646464 -39613664613131643231393934653638643066643234663930353332613030663864383535383832 -38373266643061313933363932663639366333666466303835386436303265306565393466656130 -38616532626164356565373833336434366636396562363435633631316333383262313432383237 -66376638323663366430643939643065363434353534383739356663353339646262643131653934 -33633336663363623733366139343938323933623835313539323334336564356239623066326138 -32623334346233303161656637663630633431353263303734313365326333313439663136303536 -38353737316237656630326464663338643964343734333662643062313364393461383035613865 -39353335326234626662643666633861656663386137393435623336666561363034613162613930 -61353933363435653639383438383861313730386463636533623837323930313536323561633338 -37633338643630613161633865373238376362323739326266643932363862636133306132383732 -35303363353462316438656463383334663365656231303436333263343636346433333934323331 -33656136306162316434313138353935643233336239323533323338303035646238396633353362 -30306232636634663032626637616531343935343735373165623263353939643032303462323233 -36323464613931333366333736616463356662303335343634626538396638663836343038656635 -35326361393534653063366261633234386439643931386332653561333636646134333764376265 -65623566633435636235326634666333303636306133356566643437386630663963333966313033 -38306130353266616562653032356230623063646630613232396332393334386638656562326536 -31396131316333376534656162373261643036613566356330323666333533623366366530336664 -33666534313935613833633232396337336566363266323532346331653033313330313633373835 -36393062633462646536633862656463633733346132343731343939346331643835653565633639 -32323930303033393837313130316161656137373435666438626665656238396432663166306261 -39333939626239326532366137666639636662303761366538356264313335346439643938343130 -36343064383864356138356431386333323335353236383535623465386635616639356662353864 -38363437646432633531373964663938626564633636323964653766353639613237313333336562 -63346634656463383037313465376564616634383033336464653835393731306265303864346161 -61633137653464616265353933386464396139636131643664653364643161626462393936363932 -31616162386539346632333135633531323062633531346237363362396666313436343762306161 -34326436386235373363326137373064393832623366353264373030326139383465383166393231 -64613265646438643963396539636265346235363734623262626264373235653037333763383530 -32346166623336623666323639393830663034303262353139636661633331363433326130623936 -62316437343438666163626435656261653038323334393134326333323961376533323936383230 -66353833383037336330343135373238383432643833323965343036633666323337383164303337 -36353430356461323561626464633031383864386231613537383737363337393834626538653964 -36376631356531666465653734383065303166663833306435653031303336373865363531353432 -30343961343535323236366635643034366233373431363730633031396234313632353064373862 -66343966356566316462653438656262313838323936623832353431326464353832393130323737 -65643833633630383536363066346137323532376137343738393265393533366264313865613463 -63613463343830346365373433633764663532633830343836306261393737343835363539363233 -38613562336265636266393362376633343037303536613763376664393961656635353934383033 -66643365636330316335303937333937333837303934373362613133383933623263333934326661 -62316461323031333736633930363430386135333465306538326166623130653663653763303265 -31663162313936666531353863303861326162343264633963616332386339353066323161613633 -36653664396131616134623864663730643431396637646231653063333164353063646638383534 -62633132663166646532353134353839663261653265373930326439326632626239336364663965 -66613662326136393865316134653735303333313738663733363264643331366232616535393964 -30383363303966306232656636373431623663336437393937626135633962326432643731626136 -63373033653662353336333163306138363963646262386135383561643638383532316337663535 -39636634396334366432343538343132333066343161646138663239303664386537313961363938 -65343337333764313636346666303262613230366132313732323838376661333731386337646264 -36396335343264663932343532396463363036646466323931616235646438313931333036386264 -66303035633235343837306165653161386466633165376262656635653066353463303639333131 -61316436383637326638663231326163336439373162356532323836656130663931626363323431 -65623938386331613461343762643737356533306639353337323631373764653337303563303465 -66343336373235633261383765386634386538333862666265316264633230643335353430623132 -32333166383936383636363337383335666130393633376261666334636139386434663134343639 -31386139646231656136356466323866646131353364396463386462333161363839316566383334 -36343735643834653933653665636264666630316639393937306562643130626136656132633863 -37326465383865353866333264636266336536313538616136333532653733386330613361663932 -37316338663639326331666666663935656261343032336165343830636661623465333731383834 -61386363323866643334373132333635396661336332633961646463323562323334363931646265 -32616166386335643931323734326637363461366136336336303535616465346566373730363737 -65653532623962393964383831313965626132663331623032366237333638393532623935623831 -31356536303138396233353462343938663761386634316131363365623366656330393739393637 -32663035376537623839333835336662306331353432313735663639663033316137626264343030 -32616331613636613233303865616335383466396662363134393431316232346335373865363563 -34346462663236383063643563313738663530383930646561313838633165333134333861373139 -32303238356238393663313431633762623430313233396133363766313137386533323434316639 -32613930616432613634353535383630663265663763316666326531383938303735376536663061 -64316334383133393838363033626132396532396630343335653865653732376630333864636431 -61633564643361666661383739356362393261656533333533653966636137363135666432646239 -62663962343565323563303030353034376639616137623764356433613337626633323636316637 -37313466373630353531386366636664303061656534386537303030313837323230386365333963 -34373431653631383161393965306333383234336262613434336431623631326564316337633934 -62316661383031666530656566666665333936336565306336306233333438633865373862646563 -32313565326561356162633239616563313163343633663732363734616538643732613937323837 -61306332393864633331666561623039363063396530396332626566356666626339383139623037 -63373931323565343239656239376436366561653635303962353835616565333830636261383466 -35343431386531613239626464386238346464353364326237303962373430343630393931396130 -65336331653834656561613333356530396666623030353666623831383339393230336130646638 -65333133323862626339653564373530363235666536353764643233316462666365306632376566 -31353338383537393235393035663764386661616330623865383838663662303139313230616533 -63336535623639313639636632386233346439396437373530313165343961613061616630653237 -65393235623031616539316639616462643039306165396433663235633266393537383536326534 -65623631323664373435316539656534373666386366306330623138633236356165633932383533 -31393430303965613162646664633033626636666333393863346635393765303938383261643038 -32343662363738383538666263643730326236663638633938613831616135316132656239326164 -35653065653630643933653133303035353163646633643465373762663835373332326661306566 -36313430666539373861303439303931353635346536393266353361326538346533623832633338 -34316338383438363639393738623961343239653836343238336462393562663132656363366337 -65613230383266373634306132353738393266636231623937633137323738666264626339373065 -64336535316435663666383832623366326166313964373465663461303938306566623331636334 -33326630393039393330306531303263623333633631663466303761646365393331333133393631 -66326437383161363061376265386164386363373764666532613939626134363361333235633861 -35303062613638663235303935393764633136366538306132326466363335313137653937633532 -39343964663234653161626530626665303132323531306464366166383033303863613332316463 -64343365396164626433313266623533323435323762326631666530633365643532366632373838 -62616537373033373765613031623663613030636530346662373164613362613230656231396163 -62623135613337616233333361323566313939313661353264323233373235386561303465633866 -32636330373061346433363330616533306636633532613135623937656433643337383632306435 -32363833316533336666623531393432393832396531613261633265306461623462366337353331 -65336362633964316537303463326632366465346530333362346466333863653430383961316435 -39326364633263636166626234373862613463306263643462363761316562316663373632376362 -66646363326435363038386664373830323663663436383039323266303233353162343630623839 -61316161343164613035646564343735353633646136613533373835333139653032356563316337 -33386562383364396133316533303066386561386162333565356631323963353866363638343065 -65643161303366333264653630396532633939376664633565623730346233343730316137633735 -66653665346564356566333233656139386263333335363538323663306139346233316166633132 -31663035323730323665663332333336356461663031646166353032366436366438643835353966 -37663133326633376661303135326638386165646462383237313433333237356664653335323132 -61313666643662326139373838383461393864333434323439363061333333383861653931666437 -30366565663230376362643964363738393239306136353332323465373664386636636431333066 -65316663383837373433313332623034636636343530613031643764633537313934363534636566 -34373234623837656365636432306130666163383964363538313930396233333465616639326262 -66633566656136626534356335316339656663396333333935363232353834653231373130363462 -36613034636561646366626161323262666166623233346239373533383630623964366639626666 -35643232363938646466396636623339336264303561396133323965353234373934323964653930 -34663764623834663262306133386331303938393835396635366161393134346331366162376163 -37363833396131633835613631386163373137373932393531636366636264393730396132393366 -65383139616333633039633765646330343462666165663437326666653533303831316133343039 -64616561343739663935666135303464323936653162383739353639636536353730396361386161 -32306366396537636263396239376430623336376262316531356339633734363266646337393333 -30633063643333626362653732643432633834653539663835653762643236353737613562363033 -37643337626633353763383634343238386538663936373863656365306633363836666266383266 -37366330356263353831363137653961333261613965313866303338376665346636663336383964 -66643835663165343864386261623463383862643035366238646339663939623336323835373032 -31366537616330383330666639376361633665316430303233346236636464366263333033633131 -64626661346664336135353935653262656434393032376563373832616632386432353136616663 -36326334623065353863343265383662363738333931313561666263656337613533643139346231 -66383764393037313933663961363539623335643661363062666231323964316462636464343733 -32666237663135653764316434646564393138363238343731373464393735616566373465313931 -34306231396262363633663938626337373665376434626663333937366366616233643531636139 -35316564306430653765646566653335336662366261356438383435633431313966646261326663 -66386438353633656233346133626332333762653765613763313132323937396361393037333237 -63376531353263643236353333366134383833373930303866653061333832633964313438653465 -36363134343538323731313963323134363137383235306363623464373436636364623063623166 -65333635643661373130356130656431646332323232336166383435643863653133313164363436 -35326639623261656537393434633764663762313765376664346464346464653338613839643133 -64393966303661666364376261336137393630633461643362616534363039633938393061666266 -37353661313363633363373332383666656433623438383336333537353062343030303466633837 -33306330663239633737376464383065636532643630326137393564383937643934303031386139 -65383936663365356264326634623231333239353336386337313037343137363638663066656638 -30663430303030623164336133393435303032643166373338633062626562623232343930366564 -64393738313863373431623132336533393838663331636434336136666633363063333839346234 -37363734663335303065373563336532346333643762633031636637633234663261376235636166 -35316332373564663662383831303739336230396237326337366338656263323236663763376437 -66616365306138303366633364653636303966366666366466346262363462346338376439373566 -36303531376562336436646535343435376439313337376433623463666536653239313232363165 -34363933323634643937666633303366346563636538613539316632303138656434613766623530 -37336464363735626466376133386361623336643530386666386166633334363864613061393233 -34323361363961386233326235303636353834613264356431376639313136323639303031333665 -30633933613037346134383864376465333865313831623933356236383834336234313961386433 -34373239386539616139306530373837396362363165356636613066653361663632613361303939 -31643863383836613963366166326363316461333866643261373361333833383631643862313930 -34396230303164363532343636363762303961333032373938646234623964353233396565363634 -63643034363239336263363665386535323861616239326138386233646430333566306632376439 -32313830366132353333386639373936346237346331396265616531336235376662653533393565 -62633738393063623631396632376638376432333932303764396132383262663635346132636661 -65313830653433376437316333613666633861333261316564666263666166383064383733666332 -30386435306533326139303939656532376533396666383335313530656562343534643664353334 -39336537396530313032356230636535333365306532386664353039626130303361356362336266 -35363931613061313538376466336564666663636534363832656139306564333933616363623030 -38646338316366636465616161383763376333303435643465616137336664343765396431643532 -38656133386362396437333032613163386564633563656334306335333961656436326362613233 -64663934633162356165303566343833616532613166613861656462643836316636626265383432 -35613565363561353636626631376130306231613866633230653166393231633130343237303964 -61363963303337343938343135663166613364353364346466613435383337613538363965626434 -65313366623637626434346132386332663737643531393139326465653665633033386539633938 -65353530653434633066323561386163623532366163623436306465633730353738356630376439 -65393761666563343966643432663065376636393935336161666362376237386639343264363361 -39326465633031333533643435623663393031303566383938653338643365373637313135306363 -35303433396637346536393933633763633964343832343466353630663531613539343262393236 -63323231666163626361366464303437333862616365376461653662323665616233333461613533 -32353137363233386337316338333636623739303737393639343134303631623635663833326262 -34366635313361613963393839393165363564333663383532343236326561303837656438323730 -34333537376537643936666230306433376430363630646330633235323537383036373836636232 -62633135623334383133346364653637623839343238336330333037373839643036663565653361 -36656231326131393061666533326464303861366262336137366135356266306230353066313061 -66316639346237646432636137316635303962333763313137343033366532343762646533376135 -65666539623461666661363365306366393465633562613935313337656533353361313435366330 -61366563353739653232356665623937656231323932326462363862643839653633613564613735 -34373262636464343964373064663461336638376536366665323238356666666563613634396164 -36323436643863666332386565366233396336376565393135323363383465336136626661363938 -31326531373931356632313436343330373765396533613838633834643233656438646336646432 -37366139326636643731613366666237353335636431646332643031353664663962376162356330 -64656265663038336634373363636361633062613333663531323231646136623563353964643761 -39626236303439383233376431643864613533363037316462636233353331326331373737316530 -64643131383837353964306164336437393365316162356339646264626534633439376165343431 -38353462393939363262646533393534363535626536613034353364323465386634386566366564 -38666266323565613566646134393364393832313265383263333532393834363462356364323266 -31333032623837353361646531333564353030316334613936623565323237306461346534363465 -37393164633734376133616634336162366433663865323664313963313166613537616266346330 -30393735373030323635326332333362626339323431373339653034343965383564613763626239 -30373737326539343534656662396666633538353835333735623563363032616363313432666565 -65323862356335653930323530626431376362323561353633356134346336383564373833653335 -62343937383232633330633436616666366433663632646232363433666161656139353537343064 -66353765346631323666346663646435663564356363633637616238656264653231363831623731 -38643664633234303334353234343532323763663765636332636431353230303165346136363438 -61633866666164323966313763303165663035666264336664326165393364336132656430366631 -34666332636137653234383762626264353662373166363265393863393237663733666634336536 -64386435393963346130613934366263656438616330373362343739383439363931646162346330 -37386538373866303662316234393833653438653735323330643634636434613734333331393262 -32633063336261353934313666643665376265633431326434393834323030623231356233333735 -63663330393638323130383837393562326537623230383939326332653631666535313666313438 -32623839393530613634366636666639646136363361656332633032646162663564346262373566 -61353963316365326164626234626561616564366564616639333232653632343761623531326235 -35373566366231393264366165633762393363373139353061313838383334326464643438393865 -64313739326161393133663538343339333439366538356464663563353262653033366235353463 -37663264356132343933346562343762623136613965363939356131636539636561346135643866 -62623466373433323139306566383234353561383863663636336162373466363363386666363563 -32366239663038393961363839666361376164376161613635386466303662316166343065313266 -38633437306363633163346638343432386333623231613836623163303439393931366634313430 -65396466636335343239646433323731306331653937666334346630373364353364306539326263 -32383135313166666631346566646162666163316564383531623039656666616232383063333765 -36376339333333633866323864313936623731393362636361663062323234643662616137653537 -32613035366130623634613962316664313861663439386537326231346137613565623137653731 -36306661646661373365363832396133363866613335323930623161343232303033326262646665 -65313834353538633966386361613132616337636435623033653163363661303365383732656137 -39663563663765353333353730613364336638383866653865633966313037396235393632383762 -37326631643332336166653663353133663265633835346436313766383965366462303366666534 -32333465376434633463636361623131303165366630383261396462373561336533626365633439 -65613932663934396433336333333132336138303034386363373265346463633832383239346435 -63326333313061636463613636616132366239653133393637636661366537323832366461633138 -38656233353039313139353764346664363131646563393164636136313364363863323465616566 -61646265623636663032366465326365336634353065316263353030653164663732643536343166 -31613431343236616331653334393262306638366263666539316638396332396462613830616139 -37633463643262303765353537656165653865383765343833323131326166306138306531646236 -64333061303066326337616638646437343964653033313736393664303831623861343061616137 -35356337666563353730376134373865353961626537326239646436353733376233663430633235 -66326164646230333764356133303263316132636364663666633835386363336333343139623433 -66353739303764306662633962323035346333353963333436353165393237653462646439343734 -61616237323636613064313966303136376435346466613331393734636462306161653534643062 -38323730356634346335633530653832323538613536313633343237643062386234666237323364 -34363038373038653364353637396562363639326337343338376134613939666562393266663737 -32373730626231343638633135373639326363333034333962643431333431663263316165343333 -34616366633561633966306430663533323762336566343732636230386562386436343434363934 -33643261663762643130653264663539323865313236316663316666343738326636323466323864 -37646565356436396564646239633339346461316633376134643337396361343566313233373439 -66353237656534656336633963643538396331616334343832636137393534666235663136373932 -65323333616233653362376533353132386361373765653461386235343865373236366136396166 -30343733336163386135646164316638356365666636633265393862333662616364616434623765 -34306462316265633063623464383634393565313732326533323765306662376533343666363033 -33363063353332663538373434363264636634663237306234333037653931323462303866626463 -65373033653563653537373538643066643661663037623531373363303139666338346433366161 -62653265623235363934346365656633356462316230653165323262353336636133316138626332 -64333032346239666365373431323364313665303833333532386231343562316461613639646463 -66376435373565353961623762323661666134313432326636383136306462356565353661646432 -34616437653834323463323665663633346632643462643732356337366465316237313366376662 -36643661373333653561643266336335373561393234663837656338303763623831393566393165 -61613562643963646161333639613838663663666337396666663865376563613164326632666463 -39336430666335613639366564613531356663666265313232333533353138306132363235626432 -63616334653138363861623638373339373365336535303836666436386165336430636164323231 -33656664323438613839303034356135636238656661613932663863646435613837663037353733 -36366666643366316637333066653462323338633334303735643933383737623232643134366666 -39653632326334643934366236353263333066383439386265623339346165393064343661663364 -34333537666331313430396131663433353466333064323939646465383136316431316565393438 -61306362363034333932393232363362386637303930363537303562623230633431303961343262 -66633764323466666331373064346330393432373761396261343431646239633238653035383238 -66366635396566396137613636393466656236613633346239376631373738653932633264363466 -62623733663138636361636638363362373265353765373363656364363735303038396132623061 -31323961633534633539346532643234633234386636346231353532323637396234343333656535 -32313933646535613665646561336237313561663338393765376437636639316266656537356630 -33636633333262343035386534383235313236353137373930323465343966333765383261386239 -64373136626139346664376363653039333962616138356339376537393637393430623735333032 -35376162646233313962363736393265353438343035373634653432386336653563336439383663 -38396437386163306539343639326431613534343436383239303539376637653432633562616638 -32306432336132366665616332636338366230323363303334323334343030333531616639653666 -38363135666361653430363766626364626263663432333561623465643761643637616433383363 -32306366663731383436326237366532333835343430343239363131653866616363643338306463 -30336636633033656136366539323138303630666233323764663730613563383738353964363136 -39343338353733623662373531353936363732373666636666386166313630383061336661633565 -32333766383131346463303165626236636462333035346630393666326666636565613266636330 -63356162396339316539626565356239643736643264353466616235663437313664646535313465 -62396333313662353532366333363735633865333238623230356135616262373537383765353763 -64643065383932643266333736303064393663653335326264633032386363363738353863353434 -64616534326437613061336136636334396630326537366632633931326130346466306134623466 -65326465346439636165343435616437343564383734333161386230666133636539653830363330 -32353865633632623236656133663433626463313937336563656364666130626434303235363362 -39393431303533383930306633643435303239646566363639626636306331366361373533623262 -36323062303731613064383465623936326531653361623163366537663962356531663162656630 -34643736666565666431323566363437323335316166646630356237326330656237336361356238 -36336637313961633264616633376335653166666264653764646565333638313566643634623038 -37316138643432636464373239393763383730633536346436643365653064303933373539383834 -32393536313533383938636638633338353233646533393465666562626463303736613336663733 -31393164313561313839383566316539616331656163646263316232616664323035306434373235 -64303661636266303432356239323837303434653839656336393338323631323461313937366235 -31636431653839383866313638623534346337366464396336663937656437343838356564613933 -36646230393265623335633366343737366531616636623438363839663664316539343666336238 -35393936383730366263636335363761313337326537313033316139313436316466366663663063 -34656265383639636363663636376439333566333361353864313230643531343261646163666638 -34363337616232653236393938623464323561636437396134366235313434623035333434313735 -62356334333534613237393364356665386133323539643932636662303262646232636437393366 -32356438623366313534393465346434333939353639336434313464393936303739653631363962 -35353365643133613030336365646536373833303733373264613932366335346136636534336335 -39643636626462623663386433613962333232353134613531343833353837313535383362313231 -35376433396135383232333936643239396162386462326233643761323630373432633334393734 -63616332663131363933343764653834383039663931306639303134386564643766616334373863 -35303234373332343763326666323963336139373632376537343661353262366265373663623266 -63616433636162336663633030303361633263666663663239636362316564313639646166613662 -64316666646664656338303930363765303938306433613636303961303037623632383136636366 -35363036373137383062373136353835333133386566306338613166323761616564316636643530 -39313561626630336436346239333539373363663537393836633962383534656339333430656430 -33626365313234333462393631643138373331633836666631646261306338316230363234316430 -36366136623162363666653065303864343738643538396236373237373230643233366464333039 -35366166323064653531363964623638343761633331346662666435336235303237376436366530 -31353232636135626664396565363166363462356133623433616333346138373762343531616631 -30343631323333356634663434623766356264643664626635383031376336373339643465616637 -66363336363932303432666563316635613131306639303135613832653934306164396161343361 -39343934623039626333383331616665393630663262633234656538353134653134396363363732 -32636235343131373063363433613063386433323666303161373334353663323663343331666632 -32346139376562653338333365316366363235333933373334313466663862323031306531336436 -32353835646435343463633766663936656639333838386332363863636434613338346439376566 -63303166386339323862323037313638343065386336316532303466633335323764653737313636 -38646239393537656139303439386365386561373263643733393666613735613737656635356431 -61623666633630656561373332346162303537313031333663323732623935376439343831643231 -61353235353761313131323764616430356331366339633564663639383231396632313832316432 -38303636393830366438626533663938343538656238633962303631663437313162623030626563 -66656234656664643064643331633732336631626535343135366438343030313730666563383831 -62623266643261336634346265373237396165383330656563323837626361316463353066363137 -61633132313935613738656139356230653732623935313136643833303163623366306633633162 -35626530616534623464303561643632626563616533336238336664386231646330336135316138 -61663365346662333164306531623338313666663537316630663663653933613132633066636331 -63313264646532396166323039643437383331366537616234313938373963346536396435336432 -65396539343637613865636366353539363739346166306331663434663564343636363235343666 -65666537323437373261323737653564306562656164373665393861396362343934323738663165 -35336264333137636337383639326261303765303632626639396535363935363735633063346136 -38333932666533616336663965396337376565396134323334613634373739303738616566376536 -30366361383433633633393765323765383239393162396564353230303262353334616431336165 -33633366643765633465346462303436643066376538313036363962336438356266393164313233 -64613739626238613764386538373231376462613965316461333139653864656533353962363135 -35383762643731383663613936353331336332333534343433343731643263336636383032363934 -66353666303232366634376165383036653935633762366265343730306635336263356236323538 -32393532616634333664613834366133346462613634363866346336373231323632633731613961 -34643064373436383566373162363432306431666466656564336565633266386261373466666532 -63393066643435363731613737663333616136373532636663616363663635626235393037316138 -63333162623433613434656363623432643035646439636663393230376364393663623437626431 -39666234376637376566323134626632393837393062646666336635326137343364366163646437 -65336338643939656338363734326633343165666332376461633262613161623730356532613231 -39636236316331363061633833393534393064343664366362646466386437623762393539316433 -62303330633565326364623564626436616339366632643961373862316665376638633337336266 -36333264343334383030303466363033653033323636333063646366336661656261643636653637 -38333065363132626238643166363462636131646331303666326165316130323734666466613365 -38646436393138376433633166666536666161653531303730613039613362353937363030653334 -64643166623033646332353237666637643965623561663331623761666462643163333037326637 -30623563313335366237623963653966636239343834623032303262623035393333373665386463 -65633638316666376461376562353862316532333063383539343165306535316330333363663563 -37626534646662346132353566646539393237383766323961323135393862623964343331323630 -36353930333862653439326537643537353162356465383436656237323163313435366336626137 -36646666626138393965343436326631313531383534346532636538663736626161343436646531 -36643635303237646330343932303563336437613436346364326332396365386430316166363363 -39633961396437653063633634363263646566346234306532333364373266653531336530333637 -34643837653530626366303461363130626234316361343064343461393732363632653735613332 -39336566386236303065366439393063303734636634396538643134373534356636613138303633 -63326136346134333166306266623566366565653431663363366333623335363334346464653734 -32396432393335646439613964313064653935353834653734306230306561383537386438356465 -63323333613765613165633834383837366466666638663961343839663735386261366639643239 -39396566363862653930376632653731306263323634376239623835613463656636326535313535 -37343734333630363231646339623263383134363633623364306565303338363538646132633763 -64646532306238616533633163373065393035346433633437313939333465643939306536393062 -63386434363336343563333837343838646133653436626263356539636566343633303331363235 -61303731316666333735646134306231663834663637343538363438303066663536366561303532 -33313036653963333462323864333539373338653534363261356236623032323239643638663161 -39366435653238383535373037326532636638666337313136623038386631663838636264363935 -39383034626539393764333461336132663231313839383364353432643235383863326164356432 -35613737316463336336396665646431643039303630643764343165313835643834316136356135 -35653938373937363166626530653436386236663034613432356664323763313830623435383030 -38313766303032356432326261656439346466393132303739313138393161653537373132303761 -35633361646537353865626264333636356539373335383530336461626162633130306337316164 -66643632653338326164306435656466363336356262616635643039316132373431613231383062 -35626139626235383062303831306539336161623232336366303064323836646439626663336461 -66363133373763326234363638303063346539316630323862343137383437663762663962663262 -34363830366364353132353635663533333333396336313462343662316165373835616163326236 -38653332646364386139373961373330303764363539383937663361366538353566663661336636 -64623765386535303531343835613866626637363834346130323038363630353762633566613166 -31646236653233333432306138376230633835663562623033633863323261656131323834363765 -39643939333431326132366438656565323965336236383361343331383739356438373662363461 -62363864363065336630613534333065356239616339656435643863393864366436306630326138 -35396462353166616434313163616461663832353764393333323736343837346433333966663066 -37316264326533643235333836383566373962326661366635323538323930346666623335626239 -64386664656232393962323231343930373931646130376533396661356438376365313939613739 -30346164633561643962643765646263646537323361303033326233373430313330663733366632 -66373233636662656465333839313766333937376261333436663832633335383136346136396230 -30376332623361653434633235333561393561393231383363393963313838386163663538363365 -62323233626630663235366135646339356337386634356163323039346132383136373332626134 -65653232373934363439646437623038373432306562383035353733646437626435313738376163 -39326637323837346663316266633338386266303130653665346438623061323334323862663164 -35623663373061383634626663663936323239393262383230356532363537333336356664626435 -62383337363363666432323764643063333861356162663038326165303163313763633038353063 -35313061386464626438656430643431663663373565666635336535306335613739626136336336 -62613633373334386364613333613436363938326632623431326665313637336563656134333430 -33316633313164396538323963623963313863323965343537353966376266646133326230343762 -62323336336233376532356134663664636161353665373066656461336237356130363132623465 -31363330303365376261613334633332636137663833363530356335633733373062623732643030 -63633565393630323239313336393931656235656633383865376162313035623936616633386266 -39386637636562663839363832323061616337383332386130646234356366356234636235626466 -35386534336434636463616232393531396436373564363635623233313033376435336433626166 -35343163353632373638313938353335303963343233616665653334616232333463353437333438 -34336466626330353930353335353731646437333762353238633138303331373430363431353666 -35666539386661333766376463363434613937356232623963663835663562373234646339633738 -38373532343437666337643165326633353765613731633435343336396430653432343633653735 -36636632323065343538663964303462636565366530643830326434666137386262303232623562 -30336461386333653038633630376638316233396131613037306632353835343162633062633262 -65313733363535636535343031373839373666646364633337646636373936353563353466623361 -32383962316461313964623933396337306330666335376539353238326662313664656337336439 -61326262366564613666343361306461353633646461366165313438323636323039373066653461 -66633864343535653233356536396462626533636533646230653934616434663264653562643163 -61306664396434646533326430313532656237653966663436313538323837326263326231663561 -32343431376630333933343339336431333130613962373739323663396432303039623136633566 -30653137333533376264626133343934626462313730303133356261363064313631326139356432 -34373330653838383738383235353436373661633466633566656166366264373335366134353136 -32626363343336363135653764333965383835343139346338386239633234396361306263613562 -31623766623834613633313938633338383437666439356634343937396364363063326236663138 -66346366643266353234656637666338653035356262613463363237333733383665386264393039 -37306433613534316332393631373966626563396264393364623133343064313962636533663535 -38323938616435616664376665366162333432646130373933356634383332653961356532333563 -33323066653031623764333564326539383637353236303765643862393237666538666363373662 -61383761363064653037633964376662333834333065393032363939653263356434343333343436 -65306566393733663435613661333738393336376637353637343539363464666438303961353331 -66633936343730333566323938373965343236376231626662303866306563623431303937323536 -66346435313036383935363962376362373532393763333465343739663338393231306362353332 -61326364623939336131653066623265353531393362373938613738313837663438653234373037 -30376662653039373936383336633263396133386533326666373738643034383666316335366262 -31306363366237616463666139616332393433633137343533323034376461336566653639643232 -38616536303663343838626165376666326535343332393337313834623433343366326465346566 -30376265623665326430373939313934313230306232303633306236636539613665383666616562 -38386661363034386663326261306538393261326639646431373737393735313530316133333162 -33326337613964343334393532653032313430616531386435383831306631303739646130363039 -61353234653737353565323563616334366163373133616136613034306331626561613837623531 -39313865306164343834303762653461353130613437663564336137646335663261373238616330 -62623665393262306536356237333465636265663435663531616663323763383535633039356162 -33366531383366356235353334656131656230613266393236303433333263363862353437616535 -65333539353634323534633062373262356131323836353762653834623861653961356130366464 -63363431343934636662306339386430626661323965333334656338613462373731623533323430 -36366138666665303630336361636137346230623764316632656234653435346138636432633031 -39363061333766306234613965366664373136333137326432343837393462393166316133373337 -66316561353265353635616330356565306661636263613062633663616363376462653937643363 -63623334306633393930326366343036303430376338316666383835616237633436316533626437 -35326463643965343964366461383031623864666463633430316662336564316233313461336362 -35633639396632356533366234326135663762366537653534633433303163353361616265346665 -31306336366335643366386335346664613831363631653130656463386531303463623033303261 -64383262346163333030396364356461376436663639323135333965313064346338376466316230 -32326666643139396430623561316235306238313261313232363563383334316337643531666439 -32663731626436323264643237366165356636346162363563343937346433383332643630656339 -66316438383364303161383631613137663137386536373166306665393039623136326362353131 -36303738663265356364326537386637303437656263366633646639393030383264333036326237 -64313365626630376630336134396337366332386132386437393062383239306562313037666137 -61653636653738363037326339363962613930616336633530653662346637396466363939363866 -30306165363264383264323532316663656232306564316662353630383664636630343536613430 -66616133653539306231353662643266323766623633623763343432633164393438363536313165 -36643233366433346564383564653735613462383164626430336461356462663265636536613432 -32626664333564666134633033643836383131356565336562643164646434343238656461383731 -66346633633839373234626335386231323534383265323834313335633637616237386534376165 -61396434333166373862343061383939383462386332373237363838383364666233643635343930 -30303435653634396461346266386139663761373965323536303131393331393366383234663766 -62326332616435346334376363623632396539323237653737653362366662656437376638333433 -65336466373464346632336366343331366536363633663832666331383234303861636339313939 -34353039393734393633363461393231346364333931643966616338346161356161663132653839 -34643439303961623332626136323663386335393533343766323633633231633930366530663065 -66656333313661343964323666613766336538343561666435323236326663616635613132306231 -33613663663833383935343239313131306132396162316530653763383231633937666138313430 -37376432396366653531353532623466383534653530613035626630633436336139616465373439 -37613963636338646539333631616436353965363166363038326539356630333564343631643066 -30633834346332356239353630333933343035363630633630303132633233303036333661323238 -66393562366561333565343938323832393737313637303766396537613765323433363862623261 -35386631313061303731386165373965363935393662333430633965373961666533663035363237 -32656564636364306635396562393439666665316338343839333035616133336239373639313039 -63643764316561363336303237303463393233313139386465303861663738623961343563393235 -31353831373566363565396632633734633730636133373338343736333834613831343137313930 -36383166653262633633643331636363663366363064343466626538313830343936373939623263 -64366430336437643764633335333636323663366136333064373861323939646334373230376562 -63316165396264336135383939633865643034383036383062363833313063323866663230633231 -33336435643032336137653366623030656139373430666133393233646239333530303161623161 -33353965643233663538376266316236386262333232633662363430313839363739623536383837 -39303532333732633135346239646231663433323061633235373536373532643530353766623832 -66356463626365376561383334333138643066646136383930383133623033656638633062346638 -61333862633538353734323439616332663865313864383062633361636530616631353837636366 -65376438316261353164306564646632623166633666656130666561356562393166623562353664 -33343134386632626631633664393132306237376335383366636237343238386430666434326462 -36623964636532316432643563386564616238323830366465653133316564633037656132383434 -61386362353335393335303838393431326561353965653234663637363166616330353566616136 -36366434313837653432306263383330336234666336356264643061653330353630386465366461 -66386631653036643464346536346463623062656632663362633362383235373865393464343264 -38336634333863303630616436316139643761396565363564623632363261366466303239366663 -64356337383962326337386130623435346138376463333464313164313737666534303439633935 -39636636343563343662653264343064326262303337633163376661363737666537316164346136 -62383239356639346534363162663633343437383265336562623634636665613838633733303931 -61316635346338313365356464373537346331363239393334633938613034636166303139366263 -37373764616232666666373263343361363831396635353834386336346135383737383035323131 -66353263653663663036633336613039643062366332626565363430323739326435336666303565 -37383037323136376665373064353935633566386333363765323664663431343134353662306134 -31316335653034313837353365653831386236656137303163363864393432386461363137653235 -35393066313231623239346461626362316235393066616434363339356464396135303833343033 -35376365663733326635666264326634623863656231643531343364326662643437396237313839 -65646539343463393338373538656238613566373735666563633631616365336166353238303531 -63396366303661313833333939366232626165633136656238316566356139333933353638386237 -33643165666263646130633438626137643037623537373935623863393162333630313736353630 -33353764373533313762366134313334366666363563616439383738343966616561363336643564 -62333534363435633639353765386639653032373332346236636661383061393236386364313365 -34376263396437376130316631656661303534303132316665633533336262346230333839663939 -38393031396535343563353065373330303439336161643531383435396438636562613261616131 -37653262373837363530383432636638363538616235326333396132393030346431323461376537 -31373432386263643735646463363163653938396630366636306131393231643863376361346466 -64646533613736653531323264366335343935336136333866646665626362346261623633396230 -33383733326235643838303634343666366464386564386164333362656235666239613637386266 -35363534316537306661633030623334306661653436396136623861323962616637626263336136 -31353732623837643739626236333335326233646461393432643264613136646132663231663566 -32363930353065373237373634383465373534343230333361366562356263336265613036623938 -32653064653936663561326238346462336230616135393935333533653438306235366133343635 -30663831386637656638303935323165393638303062356631323434373431303932383333396531 -64326263646436666536616166643666386661663630343364323439633364363165633366666532 -36646266663538353666646430643862336566373237393233393864383637656563383830386237 -38393732326561636631306335396663376431313661613631386666356464356664336135333230 -30333536393333346234363530653665646232643830666232353338666334306432396538306432 -65333962396638396333303130633036626433386132333930626535343136343333376535666634 -64363035646338626337343339333638633663346339666163356564666139306165323639303539 -61613334656532373532653239643939323636666262303961653965333235636532663339306434 -38363831643834326566383564373866303166323333343666653832336634313131633461333930 -66313331663665626530356639323665346135306237623665613262343733626132653537393837 -63653830323537316539323930613838336439396332333731303061656635326230386435636436 -66623765656463636338313934303762343439333062656261613261303834313333636433343765 -62386237373731633764386536333832616231316662623030383839303366613261653236393931 -37396165393461616332646635643065663862633166653166313861663539396333396434373063 -63303064333264636232363933643666383435373239303131656538616632333435306533653764 -63383062353933396232383333356335623338346530326337316233303932323736306336366166 -35313037373934653134656333366631333835326431663734346563336631303965656264333039 -66353863346661623338386332373939333865643033636264383536643366353163383762306136 -36636262343864656462656431346564323430373930613263613964356132333061366465303238 -62323431616633663563386431663839356364383933666362343739393932303462393738666439 -36343766303333323431646165376262396635333136656437333137383737616431636634316236 -61316435333065313761356264616461383738356139333163393265383934393138303966626136 -37363531373338666637333934313766306631376563396136613966396666646438303662663463 -31303264393663393336326233343166373664616362383536613937376161336636393835326137 -32313338666263353238656334636132396231343232383463633435366534376266393438346365 -64353836313862333863366565386463383836336639393330383535626161646561363533626533 -32616137393335313236653735643632623963656435363864346235376635303132616135316562 -38633430343264393333366435643935623135663462396663646137643133313661303338313739 -31643532343932653135656166373130353231326632343832326339613962633933633166616635 -33323962356435333863373139653932356635336262333036306236343562346465313562343238 -62323432376532656663343666353962373138313332306539306239653031663564613931323932 -61383762373235386536383531363936623938643136653063383731646365616363376166626633 -39386339613337643435653737626564663836636665626161323633373635363533623239343061 -38393164396530326532666566306465383561303465386462336532383134323834353230336238 -30336262633963393933393365373636383663333566623436383061316264633230383339646262 -39383766363132613434366631336231616166626266376263313534633062383063643736373834 -35393365313839313261653865656637373664653732653533366538373664663565353661316333 -33353666306161306365303938303639616436306564386335346162343661373630393862316338 -61663930363066616336636363323535633663656434383735346263666332396231393563356166 -32383761303139373432353434333865366138613964383565656237396430636165306239373630 -37626630316266633531613166306239373834383065396463616466373438623365386262353264 -63663532356536623166396564376432343361613630663232346339666465363739666664323161 -35323331343637363164356531343533623165343131386533656235623461353333666135333965 -65386161373863656131663133376235383739333163613165313937643564346235326635666134 -64633164363939646262343931336161636132356361323666616362396138333962313538633037 -66636432373662353234613731383538653938383136393864316465653430353630656133303764 -35646364626230313839626430383466333533663930643937303634633239343835333433313033 -62363739323565613765316234303135623065303037646132373034646130363139336264353433 -34376563343164373238333632643931326437646564353636386239386438366435356333376330 -39333537623035393563663932346266363435356563646165633733373039303661323331653566 -34363939396536393134343535373361346637393061386164633463613865386433393635383364 -33373761396233383634613439333339316663336564386238376263376337633234643934386134 -65646138373239373263646430653431353338363761613765396366306330326464656637636636 -63393135653865363764616432636138383936323538396438643362333663653933346339333438 -36356637626463373030663462356233623162653665376434353664616332303231316265386661 -33613635316438663630333864303631373531316133376133626139363962383539363430303136 -65663864376237633362366531373664376336373461656335373138306561653232383766333238 -33386264663938663333643066383466633465386264653238643134386637613362343232646364 -34646437363462636237373665356666343335316433613135633561353662366464306232663762 -66366232306133383635376133303434366466353264336562636264356135386662353431333865 -35663939336433353035316131313537316338623931313531323136613165373431383930323735 -65323561653262303833396537373730313433393130353365383864346434623836616632353764 -38636263356263623966346463616535316261386638616234663362656632363730373136336435 -61333534383239383563656430383536323164356231656230393865383966653032656533626135 -63323933616232316562303664383230653965346662356162356231303065306632653964366339 -65386331306166336136646535303665383636353036393437356134316266313963366361666433 -62646330633161333730343962316531636463653161383935643135636138383733306561323534 -64623434396338396332646436656361313562366137613163643166613633336464626465326632 -37643064373831336464376637383563313731346637633733356233626462333133396136653635 -37663530306230643839393837653237316664646631636164306139656662393061306533386166 -31366265366431336565653732323564373866633136313934623236363262313562626630353365 -30393763343738333064643234353964366233313262386133396538636135626664636337383639 -65326130643833396531343761633166366534373830363339373237613730653665666332646433 -62386462633031653530653962653438346164666435313237633066386132626266363732366235 -63336563353062393262633461306266376639346634663161383666343031353466353166313635 -65633131386639623161613532336665633331396537393163333830343233346432393736663137 -66306139343636323362323839313036303635373762323734343865323439346636373630393735 -36323231646665326337373738323434636530653231346661393034323437363364396566643632 -30383034666634323964616232353035393834316438336362663137356361303465323263613762 -34623265313038323936633734323230323339356465343566386637336133326261303065393332 -30353962373634646435366633323934653936623761363464336163646361653133323666336537 -36633530623335303135356164373063303333313235363533626663326538353837336362393239 -61313136306534336234343536333730386466376338623361343537396234663931353165363733 -35363264316538343336373066663862383730376130323431336261366361336633313431613138 -32633966356161643765636663386565643264656139333764653835633561666165393535323662 -66613864346165643861376433633733616534623930303830623538343731353132393865643764 -65373230306637316163386533376464343665346330653932383633383230363231646465356334 -33656434353762633665633363363034623633313663316538353434643431326134303264323936 -38393438326364343564663735323063656232366333653765313363323536313531396331323238 -37323832386633636130306432643863616637343461646137373434643231393337643530656530 -37373666333537633436333537623430313635623764313662613964313035613331396533323831 -32363739656165313830393238613263383336306538643763646431613431373137376361383263 -35386362316462383465663966346663623863643065633935353761303563303132336138306162 -63316434366461346462613564363033633535353362613333386633353735643035646664363063 -32353261343732326163343435633463306463386666343563633636306161313861633939396439 -35353063623637316464623236636536656531373730383861633965303538636433333466346464 -38313033656463313533616636373164363531323030306265613062343862386535383532616431 -32343534303631623834336231303062366462643334353332653130376639393464336263316532 -62636464643934313533313630316233383932316363623164326662376439356465363735633230 -63336631366331666438343062613962373361373633323864663736393430373563316433636538 -62363861666332346662396163623734373262383563346234363930643764653662666536386135 -36653861313634633833346364303136613461306166333865363762303633373563316261373038 -62616339333235613437303039343962636466346436613261366433343639386262326634636364 -62373063373237323330656432636561363163303532356530316466306135386633343762646164 -37353036373730393262623363613136613663386234366338646566373065323230313365343536 -61333061633534613037656139326532346431616631323663633532623831386663343032343932 -35383832383535326534313962343037393832316238353434383966623433313262646235633863 -37656461643734616562626166333535393735663962396362616338633730383764633733323035 -35653734343063656434326131663861386637323637646239613035613330313238313062363938 -38356661666531393935333734653664383739396236363338653936356134356432626162373662 -31323765303564333436353162613963336463306533636435636438623137633337366332656464 -66623666316261653035623539383036636131356563376335366562616364356133396133363966 -66383233313465386534333861623231643532393230336232663861656363343763636630633936 -64626634666463653434356332363830653065313430656264386235313066336532323961353638 -30633364613736333465633739373933326266613138666564373464353030386562323961373263 -62656263613331393661366630646636633466323664393062633339613235656262633037663530 -34616639363831373239396333383666653436383931643139333263326639326130373335373932 -61373534316139306664303261326566656263393935663632303834323764313363333837386263 -66323137633136666231623331383364623037303030613664333233616335356166613231653066 -66376137313335313064383166323031363762393130366331613963633932383965313962353064 -35333133306337303431313064303764333232396632353533383136333335306266623237346363 -66623661613561366634393636323735333265646435613063323465663237316637346530303563 -35306162356134306132613066303330623238313731353137383037313432336362653931363131 -61363435353332636366366665333661326630633639643132326238326363393134643333653662 -62643330636133353734663332646437383937353366323137386362633762343566306336373734 -61333265616161616164616431363034366637333534346236353862636336383537653565336439 -33616262613531643635623363633736313365613563363463653364326261663966623836613436 -64306136323830646639306135316533346334333266653932656465346463373265303932306463 -64313331373234353064663361373037666631643435373933663931313339363038376562366632 -65646434386465313132393966393638613366376135373439343361313462656665626665353832 -62386430343234626566376136343235333937393639633864613231663135653762356563356533 -36323661643764326236613231613062343263616430346161363035373332326533316231646362 -31303136363135333963653032633462383965353336303038616266386434666365346363363263 -61626636646466613562333937636165353439316638636364643139656536323431326532303631 -32376666643738396639333863643231366535303732336465643934613037326666373666643837 -31343437663438623937663135363036363863396538646338656430346135623038393964396166 -32653365313639373735643066303038323566323033353064323539353937663165353661306534 -37303837366362363062613232396238613839343865376132616634356265313331643363323737 -35323937353137353964353663623065373362346337653364346265626332666461376366353465 -32366239366438306364623439306238353037333737353135366635663131383136626334333062 -35373862303466303663376564336131323732343463363137336565363232313633346630313239 -33383566353734626466396461313138353033306365656239663463366662633637326433663535 -65613336386365316334303835376632316263626431623235336635303233626535373161646630 -34323935336662613861333466363564356634373165613665323661613566323665663535326333 -63303663636433616562336561633664393638383564656564616435313762633034636461326534 -63643937616661623164363132383231646237313835646334366238656334316465303731663564 -62346336626439393961656232336331636530396431656335623863623364656162343239396361 -33366262646530643064363334633566663463313937306430613262356132353937376331363237 -38303938623037666364343533313336346532366666383562303962326239666366333935386431 -37353833616336333731323137303634346535663862313936376466373234373364653335626331 -33343539393361656361326639303935663563643636623863363838653366383131393337613639 -38626362376661353837333232366334613464386461323639646337653830616331626231613234 -32663537653533663430633863613964303738656439393939643739323334306534386631383561 -33363334313032363936383131326662636565346261643630363466616264653365663834326639 -37386532626664316565363362616262373134306665353535393463376262656664393433323135 -37373132396530303662343966646262356137383836643430313136323732613862316261343130 -38343461373636643161346137613233636539623463346566386465666631663232623136656662 -62346431636630306466346563356430343233393536643238393663306666623434623535613366 -34363330306233323835653761386664363131643932393061636236373433653566623930643134 -35386431393433356639636138623136616566343234386337616634356638643366353630326231 -61613361333664643066363533373239616663656664306263323639653265333135363937316631 -63643938343438633366383764643334656363316230383865643334373161653164626562663964 -63356630373561316666306363356563613639353066343031623436656639663233353836333132 -39343666356562616233303530343132613633666233656635626235643635613565646566313236 -66346638396136633839323063393765336465633063636232316438346132623231633535373934 -39313935653231343764383339363536396631313234343833373361303966346664313430396334 -34643830313039343836363062356138626536633837353666383331336563323330386564333161 -32363432326434376264343135613532343633316138643939373162353161663431333166623365 -65343636343435626265663030363037616265383435623130366564343532656464323938326232 -65613231653462343337353834643137346631353431373434393263643964306638353736343830 -64616234363965353761363433616634323238326266636539633730353432313963383430633930 -34313963396333333732353130656237613237306161626430323161353731613736633963656237 -31323639336563356233323236323239316534643532626262373538323535323263663831313739 -38393861643031653266363132336639363166333864616532613131323033373761626466303837 -39663931663731613338346137616433653533386565363566376633336566613630656564376438 -30363365623266623235376463343565333564616337376264383337323966643033393832343064 -30333365656561336338663931393962393765616637353734303130343462393963623961356635 -38373737626338373138636361613563643335666463356436316133636331613635336136346462 -64633434313865396337316535316237376230333239353565316137323263393536383131366535 -62626436666135326330613865646666393666663065386137306630316133626537343036356335 -31663065346432616131353066633939623637336538623366646436323962653234386238663933 -36356136613530666132316264623234626631646366666565353565323734323964353538383630 -65626162303666306239386561663263353330333532666134363966303163656161613636363961 -30646662383162313134363831333637653434386338373739363430373631313062336662626333 -31396139366165633765376365653331303836336130363735323331613438353861336136396236 -39373363633336663532393363353865356139363665316233626437633532633039376562636336 -62303062346332646538363433396264613130666630343632643365346366326235393161336536 -30336437653765656465366239373836663961303838636230303166353536393334646530343134 -61633831393339393566303830373537343465353534646330383332656336393966333133306562 -63656438383861303535336433313966393536643430666563653061313962303762666432323236 -32376138306264393839356264643561386662393034666266333332666537656138306538336138 -62336138353136623330323930383562643163323762656133616233356538623039376237616366 -39643032323665306433383537616563363965313266336334656236663034633863653263323837 -61653431313330666266663832313165666562656361613335623735346537336234393562343634 -61653561383036333266336664646438383064626336626263316461613733333536646331663133 -35636165613136323763616631656466356662306261656261643965366162313738636230633538 -63383130356135326236636636613463386261393464653133383763346636303330323333633262 -66316432653733643737616639666664326637306339313239396465633139643238316566353862 -65383264366665623533633264643930346637336461353233623430313732653039363734626335 -30666362343136323339313065356639313064393733613963363437363265646638306466643761 -62353863653461393030373730653531346138653265323939323734613738373661376137623930 -64613432646638323366346133363133653461366564643863303038656538663730323637396132 -34316436383865383534653834333232383363663765353633363836613365623831356337333765 -62383132643034373834376436623936346232636339363831623332653438313763383765653262 -38633161626238373038626130663333393234313934646337393161663630386664396364336162 -63643866353764336230636466643630343731303063313836666364656162643139323339373161 -64373332306264363663623163313736336263383463313063386539376134633162326338366634 -61346263363237356536663761376233303031613265356566323633343461313766323961306566 -35336337633230356663353436656334366336663466643763346365303965363535633834373935 -63656634313937636365313336613539633632666662333632356438643037373963326461653234 -66303639323439636331383865613638373535633732653530633665333166633832623737633430 -37353465326232623939366262623066643135336239626137376531363930356462376537643639 -37363436326233646465333738663434386639646437663035653938363834646636306137613263 -39366463343632613765616132343438663762636135366238393032616266326339396532613038 -66643534303261316537313862653964353831376531636333393866313530393933663862616534 -39306630353033653661326263616466656165643433373335346530316534343765376434306537 -38303562353036373266386563316132336233313638646132363933666439386137633433303636 -31343332326234306362666366376163306636663066303635613266643838373563383965343730 -34643535333033356263336530666162646634333866303461623364306134393234613233646431 -33623562666131343239316365633033633132666437613661616638363637323963626166626639 -66633531396330323435343937313135616466326330616262333936316562616237326639303665 -35616264333835643964303366373038363662616661383535636537303636626535376132613566 -31636465623234666632303761396465313365323632653564633365353561373939383564306466 -32366131623036313331666130613663643330366338636462663235346633303039383361323536 -64623264396363636232343264653732313265393765323235616237396161353665323930656337 -34666638366136623131666532626536386434613630643333633637343634316338663535396265 -64376334643835306436343934323336303737326162396334323764383338636264663833636430 -65303237373237623031343836316363653236653134313537633163363263616665633065333932 -65623238336135353332363731363432323562616563326431613832343364363836373766366533 -65363636323137396435393433386136333438333133333637643632363731383837366563643735 -35343736393038376564393736393637366433346531383130316466323535633837393636626366 -35356638626338333762336635373764343865653438613030383535643366336532643531663766 -35303534383932313732636332326334353039346139333737613630646262383333313262376261 -65303561353163643861393966373836383532323063636634636665326261663264303731396163 -30323834656532363335373635353638396334306534326237666332383939623533333333373938 -30393432626462306563633165666637393265366564623461623536633130613162393066383136 -63353731653335363561646434373132393731336566323733656536653833363435303166656432 -36653964666461316332616464633230653165313737636335346131343266666562396531633266 -30333865353035353734316237616661323731633836623861646632396233346237373934313637 -66626661353335343266306539356337343239333438326134646238633965316235373066633930 -37323961306334383738306133336662643164383063303066363039393330366338313065353938 -61616462653562363935633062653234333538316234346432306636626539323135656437656364 -65376331333561373439663630373661333061353735366231376337373563366537336530373731 -64396465636466326436636261626666626434643533323161353230636366313962376635656232 -34393932353065353839643033393231666137653139346132333232653664343864346164393163 -64303639346338333635653162643831653834303262336137306134346131346131313037383435 -33393464326162303938313630303463636137306337393435303630656163313331626535363965 -65363939303065313762626535396566633264643064343562373965626632643738613861663963 -39633832633930363537356633623032366631383361393938343965343430663865323032383066 -63396138316233383262376139303336346336353366363337333730623362363838343865626637 -39626337326231323934376265336231396334333836613331373662333532363931616239633337 -62356139646233666537326662366235653235333837383463656633396535303466303437306433 -64343439326233616464343365333137353933643364336330316636373530323265343862346130 -30303238313137356439616162643733343139313864333439303464633165356438636265376438 -63373335383761363630633332666438323736316464333761626365303335373033643334666466 -33666232376465363533386239363731666335633439303530356631323431353939386636666637 -66303330313736623336613266396537656361636132386564383739336630383131333364353234 -32653566383633393266383734616530303163383732343434396634316465653131336236653563 -63643663623063303261386265333666373364313962363363356661616237643964326464326631 -35656462356333353236353736336462316337346164653765376262363630343239373335336230 -66323230353438396563333862643033303866343833303831383137626632363131323661303335 -38616130366266663732313833343039306165616462626663336664623331613964363863613137 -35313864656334616664363735316631326264396236313439313862366266326337636465303538 -61633762366164626564613064653232323065636139333335613035636431313133653839653337 -31303364346138316334303635633331623832333135633562316636343865346263616365663530 -33663038623266396465623033323132386433373362353238306362616637336636383538376665 -63623533343935363361346437353533376334353963663538373732313661336666383239393361 -63373063383861643634626139376639663366336362383232343935643166303366393932396166 -30376431326562613262343363656634333539363330633737383062383431353563636632346462 -63363635386261393831313237386638343930323664663363333439323666353161326665663433 -32323965373031623036393833666130653935633030373734636462633264356538656464333661 -35363765643633613034383566623932353437313663316130626633353666356335646635656235 -37643163663330623139386433663266346566623636333736333466366332326132663130656635 -35383935383234633030626133303135633830333138313664303739343538373266633965393266 -62343335653238316632333033636165653963623666653438663832303038363136626330656630 -35366337313361333138663166333763636237303335663039316461636633393337343339386664 -66613831303261666363656330343661393633393066633562643234666163376665326264323566 -63646636336236353265633831383734373137396630633765363963623963666334373339663165 -65636532383131363465383138353635323738653833323061336234383034646362343664663332 -63613931383332656464373433346664643533343636373637356166646535363435366262376134 -63353139353534353431386237666435386336626434623162303730393865623361643533613338 -30326538396436356130313633613630626564306162306239333166316638656266316364323337 -31653536653330653435316236346432386161613939373136633933303934356532366464373464 -31366361323436633265616564613031613833393634643261313939366330356630316364333165 -35306130643461356461623236656638323761313832363737323132613964626162636561666362 -38636130353739653165613736646264303533323364363232393063363032656231306163343764 -35663237336334383535383565386664336536356534653664656163633434613261366364643031 -39383762363931336537656330363665393539613434306364396239626364346661613966343764 -38343665646434343963313739353339306662363165356334396661653038343536636561316338 -31363162633661663239393838643663666366363436336135373634356364613636353364383964 -63363039633934336633343130383662363961643735663762356539393839383438623239393435 -61336239393565366135623734353864646361656162353734353437623763643338613665373462 -32333532373431316332646464343236386261346662623035613262343761333963306336666539 -39653235316439636437373432613937376337363836353230373038653232303433333234663261 -37343261666362623732393939343866343866396631333166643834303730616362383962343863 -38336638383062323131613232666133386539376339326364376136383366366530616537343061 -66363463633965643265633031643139376533356436346534383036303139396165626238333836 -38356431363564336164383838656463323865653032613836633337336239653764393765353031 -33363162323364363736396431656230383336343835383264303032306433616664656665616531 -38326131346162373935383133316439653235343833376464386139333138616161386135343733 -31326131363931363662343031393163343534306339373331343761643665663735383334353730 -62626131343339353032656236313563343762326331316139366466303031363462356432363134 -61663663353439326532373939356264376437333465353034636165633634623534343732333961 -61336131373038376335666135623036366339623264613033623665383435613430376534333637 -64306161316437643832316238666635626439363239633932306433626565643132353238343635 -31313130663039353835353236633162323633646538356665653264343963313461383836663734 -62346465356563356461333466376235623233376231626230643235373536313064383764333036 -31336461346633396630643838343663313331663363396239356666316639346137383165613862 -33306561633336353161636666303261303666616162336330346537343237366564333232656532 -61336431346666633863346633356638303764623333373266656233656239363631313937383438 -64643331653064653130623438636162636365663666646238326632366138353931343234383138 -65656664346338623331373933663535343732333761633332616232633133643033356630386164 -64313361343737383435343039643864336230346338393236383234626136643231653461653465 -30326665623730316639666131633933383364626630313631653936663536623865643635636161 -37646333613235303430613964353530303730386636373363323963313932366239666232373830 -31353463336464393830656232386538646434306335633763373264663361663161333335363663 -33303465333832636461306165316239333862623531376637393064633764303837653832323136 -30343039383437353037666237303235303731633238366565663830303062653262663431393935 -32653330346637303731373565383961663661393261343835353564313563316165613138366166 -35613637633731373135653735623136333465326334383766653232373564373763393733326635 -61336533386234366461353735343538373437346133303763316236343434383263653861643434 -62336230613531353038383939323539326466333065353334323533626364613030383131363131 -62326462323137613530613264653931316662663165613966316637343066333466653566333732 -32666661373866393963313166623038333466623564356133666432633363333632623232653433 -37366264613536643661383130333537306234316139633332643866313733653538353962393363 -30656633353236643738386161303636326436333237663561613265363734356161303939356532 -35663134396664373636373633663336323462326637623536623833393733326530643566373936 -36353230303732656462303937633266366461336435656134613333633363313663613130323435 -66383430313033646263343363613663616665386536396637383364363634363531633962643437 -31303639386333333838623136666336336338636162316630363965636461333463646461646563 -30343932313364343036623432333331333834313930343236663137393339333531663734626462 -66353231353530623861396431343863316334303136313633383135663031663935653064393735 -31653731343733356230313639336165643431336639393136613562326235316263353835623766 -37666638373064313835326631373635333133396337646332336664613564636139306263636537 -30646262646364303662353566306432633236316639623562366139626130326435393139656238 -33326263373534323665646130383561393563313734363866396661626234343136383531303131 -62383731376564636263616634656162623864666266323265333636356363393465383463666364 -36626137656436353535313263303332306432343931343764376233313630326339643861373432 -61393638393734383935333339386566393763323563393437666136633963396131353961393334 -34393836343834343933343935666363303961356439346137366266616230393439633365623561 -33653735646332363031356338393139386238353064626162343731303435383533353361366234 -61663936356162356138653261323139323230323564623662616330363536343634623936663366 -34346665336430366638663334356562613337636265356134366466376233373862613637343766 -62383866323230356439326533333037643330323333336165636261383236626434326133323734 -33613663393761393438633264326239666463393639633935323736316433643034623834363335 -66666162633562666232336464656563336635613037633438663434623363613537363734343065 -64323130633066613038653136636138326437356330383033363730613565313866386364376231 -62386235616335396666366261663566613765303538326661333461343633653633633064383738 -32353838623362366266386538393936623833373665353032303866323737333762643965633364 -30623737346535306664343463313035643435376136333664663333666631323836376664613261 -39373730346231343433346565356666393839393039613732303265313466353533666562636164 -66366462643035383562343432316361373936333432663864633961633961396632353238343834 -64306266656666646437623336623939393930646330393130326537363039303236383030323738 -32616137393339393632313263303438333739663865363331313838343161363734656362663437 -36663265386430633661623633323766316164396132303237613433393261346135313562353938 -35666262366338343232343161633635303439313166623631303236633435316464303532633039 -33623766656465366435626261626137386539333334333334356136373762613065613836623066 -66623531653664356633613933383138643862616435356436343865653837343832393536326338 -33383037613234303733376661333664656533376537306437313030306337626639626131323638 -61343535316164346133636233656138353962663563626635663037613866643533353663376230 -30396235613665356661663332313732363964323961373362356138323538353639333437313639 -36646365343737616234633533393563343363633633333035633130613338333663313437656235 -64383266366338333038346532666464623333343039306232373531373738303734643061326335 -39633237643465613431653461343537623465356139353835666661353537366263373866353531 -38336235623666393934396134313737616134386364363736356232633236336538323337393961 -31653131383464353066333634316535366433623863306538656663653130313861643437656461 -66653634393734333938383034323739323731306565376536653332366264666634353832386634 -34623564383065656633393561373138303264353932363666653965623465396365643361633730 -31353334366333306566303131653566626139336438623535663063633131383135613764623335 -65623062343863306135643333373262346435636663333637343162396439343664663561613736 -66636664663939326362383938306236333936393533373330363331623564306137613665323563 -37313536363363336235393039376234646163386364333564653333343066393433386366356338 -38383634383162626265303237633136383733386434636337636639336134373731663831383436 -39623362363731323631323861336664623131653761653239363966333734636437306266643534 -31623864343533366237356665613439616266363231353432616262393066303064313334316165 -38333130336663376639633365373561366365616639373035326465363934643265633464633166 -30653538303961336263656433623937643464643036366139356665383631613635343832653566 -37333939393964343137666335353032326134333061313462393362643731353939383163383830 -33303436353933616162393631653832303364633037643263303662376361303638353061633430 -63333132333363616631613764376361376231336239623266363938616364623637373563626333 -65623834663831323465356661623635316238323965653038383664633331383732323066396562 -37343438326362636562313261316436333862623062383838326430363735633033353436333038 -34343164656638373465656238613665313932326438666561396337323631633536326665653832 -36633336623162396462633864643566363937323165303139633963306563646137666332313462 -30333433316465613937643664633366383036633039643732333362613662396265333034306661 -65653963333935366537636631383466623734366330626662326661623230633939393537393965 -63383136323762303534386464343932316635626562323133633330383734643632613333653763 -64383132393764306166353462316465646531613365626235356239383665303665653839353663 -61326531623735383437616133376531633435633662333365376163323364383332356265386561 -62616634623464373265306139663233653366343130636333303232353236623832353335663839 -62396337663430313565303262373632663537313539303263373630653937663561333462366264 -64313634366530626361346535313234333539396537313863323466306331613333626561393264 -35653035383966356537363861386162396237336538333931396230663431313563666135333036 -61373566626331363938616436383766613331393161626263373032363732313239306161313865 -65386636633938656539386338366166653264643932373338376532636531386361396339646339 -37666136626465393737363831626361393263306162303734336630663936366563306632393736 -34623234656364393739343565316232613530386232626564383364326234633432343563656130 -33303362323264306166613763626336663137333436633934616132333834383364333534623961 -63343861353134666337353534373136656466366633376539383531316239343362343565393466 -66633034643139316166653038363364316133653534366565623063666263376538636163646164 -61376630353961373132303239353736303533396466323762383031373463383435306534383037 -38626234366363346234333961636434373137343062353334626334373165333433333239386333 -37303464396431353631353666346239316163373763393439643032303961333161346166353633 -38333532316134353132653637653734656337643635313332313539636364393030386130396633 -34336236306238396139613461343337323163613330363532616530636130333833326461643965 -65313532316132366431313838663338363534616432373334376635623562326666653661623639 -34313530636366613736303837633332313865383535623534353138633038663332336563356164 -32376465653439333263633734313434326332363734656435643438326261393966646465623934 -61623965363531383532663537366461663565313266313439623031336265313532363937653662 -39333733386463353932326534393665613863343639303764353966336438383133363837616262 -32356432646262376138613735653836323561313063643662373263623134656163393665633937 -37646438383665363863373531343534373039633962353730303033313335326561636431653062 -30336162376337326563363634663233323137316530386665643761623063616161353135396161 -66326238316561303366623562393363336231383731373038313461316564383736373435353966 -31636238333664623036333763346262393838613231613935323331356566313830383962363030 -39313766643833626230336634323636656530393432666166353465646133313930396365383265 -66333539303161356431306162303330396530333065316163666261636261363032666366343831 -35333438343438643839363936316431393338323838633363363134643632386462396535393632 -34353735386131376239363638613637616462643665343664626133623036343531326230313662 -61386336656262383034663762346433636630363466366239363961656265333234656536326535 -35366662393230343739626665663862333535326136376163613666326561336437626238313365 -65323861623532323666303538306132306631626534326131336265616139623362653633303863 -30303566366235316530663161633537626262383232656661353830343365616264326463303864 -66613433383063316233633063663839303838323132633837393762383164393662306165303465 -61343238346137303735346661656263323939353465343632346232623938636466383763643463 -30616236363939363163393465366432353431313936636362653262386464383231383438373830 -31613137643736353965633330623839323530393165393137326561373435353264306463316637 -32366433646333336264613165306234636537306331343335363633316435333533653737346637 -36613437376331343530366364393162636136353361393638636436343733306530663465333261 -35663433376266383363353535316266376433653334336235373562303535363639613631303236 -36663661386232383434306339333637316436633937313861363932393863386534303035373966 -62386538316563336166333430303930653735343436616431313534653030376532343734376530 -38366638356161386331333665616231376434653937613339303636386336363061643133363538 -66643765363964316239663439623964313533613738303931346136663165626462623037373831 -35613438666563666362336437353338643661366230613466386666373639323065333563353034 -61633833336534383838346461663238303938646563656261326430386462393366636334336361 -62326666656463303133353666353765376334383931343833373963386632356234346661626165 -31626438653737636231636237303964366436613736633865306630656135303637386666376666 -31393962646562363935323861326135343238333733626339653830383261323830373132613766 -33326532626331663566353566616131363261323861386436353363376365343166386537616665 -37343630393635303639653562616232303064643064643061623861643065303731623932663234 -30616531663462646338613464666536626339633538346163343761336163343731333739363536 -34343239613633366130643066353135613839613833326166393136313364623337616639333161 -31633938373362366334636666663262356366323136393534646237393333366532623335393334 -63386163346462663832343165656236346266663730373133323632366666303763626665396562 -32643166396464633864656430643766353064313139343931373165323564616430653536393961 -62383438656338373761323533336333383032313835613036366530613930633731323061666433 -39643434303832386631346466633835653733643939353139353530616162323265626238306130 -64323337643935623532633430323932363138313434636466636263396264633738316164313966 -34653233616533666361346664343730643739393462633763626263363632393335626332323364 -62373139353563323339643634316534333235333536363063663638373230616336383038643438 -32326364643237396636343732383333366437333465666162333537666233373564666334663361 -66633432373362626136623666613535343430323236306564353762636539313562353437666234 -36326633383236346565653937373631633232356134663035383339373565333239316266666433 -63326334373434646365336563303634363564353435306165393036663865323037383733386338 -39613466616161363131316430313062306136356431386231353862346163636362353036373365 -31323833333637346432303839613036353061656331623434633631653133626334316430656132 -36386630326162636537313639303563303363643037323732623332616566313566323566633335 -31663337303865336439333064343465393633373766666538633434653237663561386166653964 -32316165653538613465363936316538636431356365346565633332363764343165343539393961 -33663363306539636235363436663962616434343033356233353237643839396561343565386334 -64663737376238373761373139643636313333323434363936316534306162623639333933373861 -38353336646266656632663764343061373934393339313461313435356161626362383437333737 -35666663346261303138643036626264653131313937303663613261336639336161366234383661 -63616463306363306238653464376534633537326633623632333332333133353063626230383066 -31656133336465373532313732343166316662633336306532366463633238376635376435653730 -30323464316430303930323031663333643931616130626532353636326135313565643661346538 -37323063316438386236343265313738396665623862636265613733353136643665646234646633 -65383663363031336266623764353335623630383732646434653361643662366132343033393465 -31343936303033643332623532383233616561633538396232313135356466343535633462306238 -34616336326364333239363531356639393538376231383833303831323766343232333835633261 -61323436376234343539396135616334646563303433363139366132656664613436356234326430 -32306362376434316562313338333965393238336134366430636231316364373064636538653131 -34313764383334333161366262613030356634333833646134366530323638383039616562323636 -64616538396661656334663937666334386664336532353034623836376136313537313139623261 -31346262383934393138383235643266616166616161313234623735333738633538393030663961 -33643963346366623934376464333866343536653332653234336230636635303361356431386463 -32346130373538353232643238313963323665343964653266373234323935363938386531306462 -36303263393764306166623163323666653836633433316436303338623938353263336366333563 -39306136356533373366643839643832663661646161613035383061353333386232346565393933 -64326661663365373636346635383965656639336538366164633930383931333063386339336330 -33316433616336303032613766323466346333393833366532653861323032646630353333363564 -63643737376339376632356534363832616630356339363734346135343162666265346464613862 -63663964636662646266363462623232326637366432653032346439343866646464613763316332 -33366236643563363033623633343133363430626262323731316362376336633561323232323162 -32316632633430346265333730396430373466376632666430636437646630613262326663363233 -63396334613236363961333362663666666334633833346135353735656531653739623333323835 -31383164353436656438363165376136376162623532373962313466313831343261383236653632 -39613962646132333962616561656432626133353264326535653864383939626634376633643366 -33396563316330336663343737653162336234613536393561643337623036613436666166363661 -38393739346165613365376364383361646639343635393535643637376138313661336536383661 -30653038383065663334336466303163653936303936303332636630376131323338373363366339 -66636130626262323262653736623137366363666264343631323461633838316465323736616430 -65653839393232363136333331303235386161383131613461623537313333643732373936613064 -34353833666335643933313333313130383130326336646332636164323330393433633364616432 -63323330376365393333306335653131353130336166633932613135343831326137366364366238 -63663537636161626264393064633335326165393566363630653232653361376235623932633631 -63373636323739623436623439363162323030613435636635336332643934613163663064636339 -38646630633631626431653036656135643562633666333737363935306233623363323030383162 -30646430653433663665313631623031326364393061663961623962326436653365363261323164 -32626237646134336365383437323133353365343963376562653532656264303939343564396465 -33323934323565663261663836643865656634306338633134336434663632353135333030346436 -33313933646135633438336465613430343462353661613539343765656337356232623061356135 -3532336364366237303539336262646133366134363338666132 +61383166646564346162373431373532323332326462623763323561356531316162363662336331 +3064643338623533366562376231633135323566613630340a366333313266626135623333363937 +37343735663734316265656365363537346231363366356564333337623266353665653235656263 +6562653335393866360a356633626364643365303436386663316633616439323232393033636533 +32616630633364643538373331313366653230376165656137303434323166303363316165653365 +31393631363232336534633435623336343035376333633361383836663664383965363035613132 +35653233323065363332356338306661643835363134383535323130313335346539303561313064 +61376263663539616537353462306335623362373265373963623931643133663462643234376665 +35303731393032396366633738616161653237393662613765623733353866633539666237653137 +39313665613834376534303336376331383866323732376233396439333363343031623966323261 +31346264356339646364303266666665643930373766623562646236623134373163653138333237 +64306138303631326132363662666339303739376630306461386263666564623938393664623861 +36373433333432613235396461396134646638666661633462643839643164373632643032363038 +35613436376233626665663263383736363061623066616639323530313765643839633931316364 +61383830646563343934343861353637383136643033376431313333376331613063343832323533 +34386637643662626331356364613435643434623537663063316165323437613637613439313633 +64643035356436653062343233356435353566623962386266393261626161336238393366643339 +32353762646630663730626161353430393037363230313030343431666664393431383761643931 +30613031326563356665626432316534616530323566343065356366323433623432326536343930 +32656330666664366637313265636239383835616162356531356434623337346139353031353731 +31346265313061346462346433633562646636393061313434393530666239353238386334326536 +64306536383730313464313031313238666337303037616232353764613634663662623433636537 +33313466313663646537393837663766616638646530623830323934353661343431386663613435 +61333934356361376565653466663739366536633461323465653265353136623138653434653861 +64613065666639386663363830373333653931313631613264386461306266636637303864656562 +64626464326562623334306230333466383436303164653866303364633035656436633338333031 +32646336313465313630663636646639636537663431636638376462326561373965663630633637 +39383565353066633831633933656532633663326433316533373666373133333264303739646336 +39326335373337653034396431613431323032663635613739663238653861333238623131303137 +38666164363134306637613630396162623031663531363831663938623038343766343034303832 +34633636343261386237363230316161623735333133623161636136323636396132343739616263 +63646635306162373062393537356432363938333332373461356364366364636135326632616631 +62616466333361343264636663323938636434373566343161356566303466623439616439306639 +64336237323933343931323861373162646661306234633235313363646665326563663630613634 +62623933393366323130613734393236613638313334386661363964663263363838363965636631 +38343562326530653061656436346439636233333562656131303533626331346539343362613934 +61316134313664623862656430363863663531346139383938336630353263623132343961653438 +35333063336238663136303966663537623530613762373536393135656534643336303961663039 +37316234383437653762653230623066383135366131383161303766383965356238396535646465 +62316363383930376661666262623533386139306232663430323532303339396161353632393538 +61653666353162613632393933353064306665323931633965366435663461313838326234343339 +63383262313631383864383665623833343963393333393330323463313636343862346431653364 +35636562393131653136333930656436653965346131306335366464643734363365353233326162 +66303861376338393061663433643736396565363433356362303963333437636263373430373833 +63316663333736306431653463376263393939663565373839363834313233393761306430333966 +62386630316434656434396530623535336533303134313930663534626233653535313733613238 +66353465356233316463353364373736653262383236376635623962303432313337363634633134 +33316563303961363131643566613039666432323031363430633039656436333934656635633264 +63396239646262653761313233396338343731343463653435383830323130633334366365613065 +65303339653432653336363063363865303934343333386163316239643735653365333065363439 +34383433323961623138326435656132666131396536643931393762353934643035366463323632 +31316666366538393961396564366366646239643761303333353266643931316533303537396637 +39316365396535656439656436346437353837386263336434363164616166303262306335333464 +38343965623736346464636532633235343466323934663465656134393365353865616437353962 +62636433383765326461316534316134313638356237343739646437346566353737656633313334 +64383632626565626638376430646561383363336261653035333333306466396535633032353836 +63363639353931656361353131613361343135366538623864383863613235653965346464386430 +30623637653362363862396335343039656638343464616538306338356461333332383466326333 +35333036646437313164333764636565663364666334626135666437373664636562663239326534 +33653538373563313434386463613162363562623130653430613632633232373161383833623161 +39343735636638323732633062373839346336616635316465333034616433636231633465363235 +33353163366434393735643661623335623433646130383134383232616632343663623639323034 +31656163376666656462393736373334623632663432633762336137343761393335633730346662 +64333231633835363362353132346532333833663231316134376465363062326462333731353530 +64343965333963316566303730343136636164663234613962626434373732343038343833646530 +65326462313236653262386233303834373463323836363963653634363834636433363063623933 +32616263366131383666343366656237386130343933346339356336316562346632343766323531 +66333439376237326663386564623836626234383130353066353639326366323764323538653230 +30653936303866653266383331393435353834306136616633326631396234653663383931626230 +66643364613533356133626237353938313036633834343636643562383339383466626535393934 +31386337636564333763653762333531336662613464343137343365626465383632343564643830 +61616365656262386165306662353534363931616164363531376632376463306537396664376337 +37383733646262383331353437376532323466626261363337353633633834333862626361353331 +39383238346433636435666636383863356564633963623865636435303239353931326535353463 +30623861326137643036636630333231333038323064356561633031366135613830353265316465 +32663834343938343163383563303834616662303037646265366239396539336532346530316533 +65363636343664346433393337386533643162306238613666666235666234623833663639333738 +30393035396563396430396435663261396661663037653035626465623565303935653562326161 +30326139323963313037663736346461613063646462363338613836343162316235373637393263 +36366366663666633234613435313763353538353233613234613265373639313838356232363137 +31373930353138343530363034323930333465353137343461656465333233333563353265636531 +38386263633762633630636562306433366630313665623063366461333430313162643739313332 +30373939366561363037623133663566643762656433383162636361323563663934303661393532 +35373036646332353931346331646365356439653931623232373766373237653436363465306631 +34383539393562656565616636376661616639376666383564303239616639326138636235643963 +37616436313734663539383764623165643562356666616234616532666630666332616431313136 +62653134663332666230306232663265626361366566346430346533346531356363323830663439 +66626436616536623262363465323634623963393933613939343564326263626330353632623136 +65633265653462303730646666643161656538366433303366666466376162633363663636343164 +64363431666237356638383435313466353931633932376265636331353865323064396637613063 +30666139383230393835393136353461356331346335623061306532646165393239333238373230 +64333636366236343364396532323566666639376264626537353438333734353639666231373136 +62633432396537633862346463313664386634623532383235336263623137636638326531393665 +63623833313166323965353961323865633363633232636665333162623135316265366662313936 +66383438323062333662396463316333643231363464636130363266303537356538313039316136 +32323666666637376165313261366136343961383164336637366163366431633238316139636666 +61396139356238356531356339363066326165626332613162653730336333636636366232343163 +65626634326538333938313963623465643538356135303133313466646466353139666436343038 +34633236333533363964333861313538333463646563633161383336643634303630303831376336 +66616434356164303735623635363136656135653930616538666630333036626236323362333761 +63663738376637333762663361643663623538326634333065663639616336353236333531643133 +32353939386439336334333337303230333738363736343937353630613739363638666239333438 +38376162386564333364346335636135303134616164373434323432386632386638303632323739 +30633934333439303237366538343535666634323162666236633531373862633135383764373132 +35346263323032336234623164343032323234663132643837653763396261323463663736313565 +31626537356663323431306433616334313836363863656463623134333237653934616463666463 +62623334633966376132656334386233613836326334316639386538353333663234333833356537 +36383163666663333730383262616335616664343036393332393161356564653462306265643137 +64323166643838643361623032373661633561373661386365646337393863646434363939313461 +61666664346436323437626461613833623235323466653136303265333734373863666335346134 +33393362313734323165643430633265353135316138376435636436316339366538613032643931 +64626332396535636333663834353939336234346265323638343963666365653065323730386436 +32323238343532643738396165303561656332383361383463356564626132323132343738643562 +64663132613266356662333033663231343331393530343030386363383164663839643437346431 +62653738656434396130643965663739306134643938646361653463336662376631653039396338 +61666433356261383131353338643866336534663237306166333631356539303731316234616130 +65663336356638303765343838313963306530353933626432313563326135636339316339343234 +33313463616264396231303234383039386331363266643939333234663936313364383261656365 +65613764333533336366613062613430386632613030633964346438343766323034613937316562 +33633531326330663438383265373034373835643962653962636431623132366531353630653265 +63333130623531656365386331326139383465383738646266326265376263343037363537656263 +34303731353834353937393535396535636465333735323433633934333337353739306563313834 +33356263616262373839366634363731316464616366343934383330663766383238653762353230 +65663233626135303430613261323061383564306462336664313266626633396232633536356165 +37343466636165306236333034333333383135386463343462633337633430303166383138666333 +64613430633232376463633862333930633334336236383537336334316664323738626436613437 +31616138343461343235666430633430613463613066336331373238316131323439313166363937 +34643833396238616137633138373238636633356432666336383634346565653264633633616239 +37323439386435323632636534303532663837393834366238326265356336613965323032626566 +36633830666430303137623032636437643465393164303864633233636561396439623762396262 +36353336343166303862316333326636623661653334366332663639386665363462343630656238 +36336439633336633635326531653432386262393235613161646261363734373661316530653463 +62336361363262346637376666363164323663303238623565343431313237353131646332366639 +32343235303230373439333033396138326234623839646536373261613066663139656565316432 +37393633656531303161613937613364643462313661373038333937663765373839363432643062 +66306637316236646661333061636438373266663432643838383933333637306163353363656230 +30323632393565616261643139633662613133323839646431666236633365663134383265386339 +65306363613030623565363063313738626466623165326635383439643033343962333931393738 +35356535356539353265323235623833373132353135346230613964623465373339663034646133 +34313631346263323636346665636638663538633234393163353632343531613365346366366563 +30363463333232663439303738666162313036633334656334633031336165323664653539653335 +34306431366636663632643865303831353166656333386537386261653965623635623762303139 +39313063626264633235666437306161613465353031303837643564356461393765363338333339 +32323465323738643237616538393135386231396661623139633730636261346462346166386333 +65393464663662656432376532623662316434616561303435626664616366356531306666396532 +63373565616164646362383537653763643339646366613439323031306234346235313464633335 +35386239353730663930323933613766653930376465373530363635336462636437306434363439 +33623434666563303831656166323833623866366330633935656436333865303834633032646232 +66623731363430363836356661343931633465343661323866393366366661653030303934363863 +63376335373162353333326630646231653766643966353766303832393138663034623566333930 +30336434633735346539613031313839326434353335653538396162343030323762623861336435 +65326138613033366666366665633466626564343435386132306435396438646535653837333535 +61653034396163313232643130393832313961326263653633323638323739303935356364663236 +63373037333561643538313634353530656561363836313663336432366533653736663237393464 +30373135646539326439316266306439663332356436636436343163346436333661643561323831 +35393132623435383266383834326465633234303233396139396561376533346462353935643135 +36656663383165663635396666333331306163356335363039323462336264643636333964633461 +39333631343565386164656236363734396134303566333630336539326361323561316237653136 +31326239386133623766643636346662366530323034363363303431623738383363373935373935 +33653364333730336134326561333161383332356666653961303932356636343032363735326633 +62666439303431393738306661316364653964663362333665383833333037386633396665333932 +38646564623931623862306263306438346663373037343761373365373138653761333736336531 +32646537643463316466613033373236643366333563303963323931373730356139373935313365 +37633533646536646263316431653964663032383463373835326262346430326634643663616336 +35353939386130306633626464343439336662393961356338646134643130633838653064303566 +35613763303633626437313562363664646333646461303139326536393833613661653765663136 +30333532366136356465656131323239663333343862363832646531646465343162313266386665 +38653762333462363961303230366337653438336234366432343966376137353764333365656166 +31343833303364303761623564616362396230356363656332383535323061333331353465663066 +62393938613137313632653964336166326262346266396337353565323234306531313538383835 +64643431663737663637663966393833393735306663366134666366626665613430393834633331 +34386333303039633463626537646632633636346132636530306262666336353666633866336432 +63653539393431636138373161666333663936316165626566363737366261626164623364353165 +34316137383761363030623663626330646463366639333164623533303664323462333665663335 +66383738313237343630643231373233393531323239393864376638613638333663663930336139 +63396464633337333761643632646333313432383337346334633231643363633536313965626661 +37303937623063326330653430343435616533356239623137633036353735393666393861613138 +39336338356439356133396634336133626237326162396232386139323736316631333736663331 +35373261313363383135656336383937623662643236356434373936303031386135393862623136 +65306162623163383835646366323565313834613366353766393362636230666435313632333435 +32356435366261373064613162313764343361373534633734376164313138343162636435623162 +32346461306533363061386566663732343266616663656464646230656135306339356431613632 +66333235363966346330633363316135666634353536313762333030396635386139303734306130 +32303135666331396439373831656433303161373164383066623137336439333938663933353062 +61316461313363396264663662643366613530313139333865383538336630366332336465353461 +66303537326139343337343531373134306530343434666463363732326139346637353131666338 +36333065383339646538363661386563626461643533653634396136616466653232386566646166 +39346637376631313536623863663566636664613637623234623938323335613664386331323135 +36323133663665613138396261386334626561623736353830313336336263313263383531663564 +63323665326236623332336636323634336537393366326166336337373863366438396134653165 +32316232326631646135353163383233626235363538336331366163373564303931616661333666 +61353935313963386436636434616663303038613131386334383135613561313135333731393464 +38346632363133316237303464383361363936306337376263636536666533626261373665323166 +38326231306131303963636436333132333566363837653034356139663733383634313437666664 +62666137303735623033393432303430623935373366353761626635313565363030353736343231 +63353930326264353336373430303533333234333739623065643032336161306236643264363939 +64643763333637616636613262353933313162363862633462393033393337323535383639633739 +39393465666434653964616336373334393063663264383963383134326433663764396232656532 +62373364643039376664346163633461363537303737363965396265313261636465653039363337 +30613438376537666430363762343937346430653134373735643836333131383835386162343730 +30333433326562396638666237373237656638313036313161366637643761356465376135356265 +61303435653238306435356635323166616436366564616439376166343066366230303433656538 +35623538363733626635656165616265336431383764356665643730366335343333393235383338 +38313461623261393534646331303364383065623864316533333061323036383830323161613331 +34663839386634323333633035666637663038653334386534303865626665366236386165356232 +63336137643366626331363664666433393732633261623233653331653461396335613333363639 +31366261666638643435653065663564613839376461393537656165653935396664363565666632 +30353164313765306239396139383337626461333934663131653031303730373739333962663537 +30383965333634653934396534366163663534366639353336303365623430396131613062313334 +66303238646536653731643133313431386161653664303461653733366231613364613166643839 +65373164323737336435663332373539336136326135356530623362363738336135333361396166 +31653061643739616665373766643737343837613533656162333331613166356134313561313036 +65346638323234343664626265376166343330396565346266616530313938353665346434353135 +65646264623932303336343336393161623437353433623766356531643261663934303963386663 +32373936373839303730363730353035656163323132313535333765313166306133303039306334 +36666165336239376630663433326563646166643065363239323934373761656536663136383664 +63666330343534643437623965343265363061613965613437343932643230326230653533326135 +33316135666535333935303632303539663839343161656232643439363035316564396439323165 +35616137313636386363326435366566343338666336313364383136643532393635623130663833 +35313065373962613639393063373863353965626562653862633433666264616434376163363630 +32333862633863333335656538623130393662333238643034643534633233623836653430396536 +66316333383566363839353161343364373930613761643038396135623830363637633063633239 +65633132303334343362346664613430306435383931643535346530316663386638303133656332 +31373539343263653033666338666262366430333531393531373631613636323135636364656138 +32646666393532386336656233613736663664653763633930373132336432623161623764333563 +31386335343165333434663139386664613438393730323731303234373762633462636337626261 +31306236643364366264373263383630303361356434333631356538363830306537373263653364 +31666266636635316466336633613462633739303635306432356265633233323937623636313865 +38666235616231323636643035393164633164663637363931336363303435393130343361343736 +65313066396464313634353464383465306434356564653234363738363966643438333132373532 +65666263346130633064363437326333656438663835346534343437623238663964613564323131 +61656232383838643563386534306534316636643631616430666430343732323339626538363161 +61336338616664393065666561363964363365343266313636646161643166323035613561353766 +37626534636565396633313161613564376439653538346362366638363235623435656564363339 +61643034386232306663623363353632343936313637666239316631393938653766383033616162 +34626137323138353630646630383131303936323637383037653735636631306133643932336637 +35643261626463626139626637636539643737316231333466633731356631656461386333333035 +32343966313264363264643836386161393338383238643131396235333265393433376136393265 +66343633366163353462363063353133316165653031346633313436636364636364353165623039 +31623561373332363436393134313432396164666631376438323130653835343863653565626234 +66663764303730333564396438653639376333366362646363663561343065616433323361343934 +33343832366462373338613838666230333334616433303064316533643663343863313133356561 +33303339623039616461386533626330663736616436326336396637333665636465373261663533 +61376432363633353331626430663837323530376262333563616261376630383064623536653139 +36626232383130303734663763316536623336616261613962376132336235376635633161383734 +63356135636434326634653634643765313262663961356336383538653562366563343732353633 +36666431373064663535356632353264326139373032653563386239306436653138643837643538 +64386231383538313336323533373334376636326366623638323436616536303561353163633161 +37356531376330373837396235373338306161613730633735363461366663346561373930363662 +31656137333130373634663438343864643864373430386565303462323033343438386634636538 +65343965383462313866623439306133323736343365313139363738633135303935623964356132 +39623331363635633235366637353435623064363432623736333232653935623939616165303963 +65623536373036613137616364356166386130643536356238333833313631613332323664666134 +66313235666662366539323433643338623533383364663163323635363430633238663039366232 +35393635353235306537343566333462383434613262653931306134616563373431313763336439 +32373265383763303232333365346537346335366663663466356263333064383864303335666537 +65613536383930383239356633616563643632363134336633613632353563643434633562376635 +38373634356633353139323963633737633130316439313439373130333832303530643963343337 +33323764363639356131383030656336303264343438346465613635383430643332356265643163 +66636434306461666364363435323063346232363730303965343364376134613935613837323066 +66346162336533663330663831626165393765616337353165356637666230653531363437333536 +35666464353764363661636165343434306637613233366565636134633962343936663438303038 +31396265323831306664666232393136353533383461376561366238313933393037356232393564 +39313339343464303139653130653762626362616332363435653434636238393632333132396163 +35613935373733353833643065393266653165396166333463656334616531613232363065313262 +65343433636161386631396432303432336163356532643836313438383532636563366463386432 +37613936663765356562326263633630643737363061373834343865663865666138616231383463 +30353032316566313730626338636439613261386332666530623137633433643830393036306665 +38396166623232336238396166663734366137643637336163323334353630636331356533353264 +61646662393163626534396538623531383739343138313261383435383763363637633738363539 +66333534376532626431623866623933306364613833623739666534313965313736396539393335 +36623166336430616266323338613037366333336237656364373338633462613836393039373962 +63653565333461363833633939303536323964663533303962303131666339396165373236326533 +64613037313565613364303536633931383562666230346432323737363737326530393936396236 +63333764303361323838326664663864313965353835386161643064613361313264656164616361 +32303038373962373637373437303136386234626538313632623266396530313735623334363864 +35363639353461363836323033323233653966626630383636353732633632646666306162633363 +30366439343363666538386130366139336562376537386666396139323438646338303262383966 +30353762303266386664353238326238333133653835646131333431386637363335366238306437 +65646634353264663436396366636163386634326531303263376335306237636336383564353838 +64316661303131353164653136343537343336653033363037313733306563326164623262646230 +65393462373266323138363434316335353134646465363635643135316431306130303666373035 +33613933383539643061373965313663646132613636353130316130383365353234373762313231 +33333566316237373062393838326562303136346139343334316265636632383563643463653864 +39323536633530383432656234653066336565326163373736346330666262386637336662363238 +33646463306330353665383265326433643862613061303231303362643965366533323563326664 +30336131346333626464393130343631383836656230343863366231373262303665303735313536 +31363863376637633533626563656333313733663661653931363361393831333339613164613965 +30373137363562353438366330656338336133613661646538633735616638373231323331323036 +63323561613236646362333666313438666330623361353631363134643334646439393563626433 +36646464343836333830646635303339613635323031376366656430656666313434383261643435 +66616262356535666135303964323739626365623865646230636163613831646637313935316532 +65656633636162363664623433383766643261306434336132376663613131613032313237633463 +32346639313265306463383337653362363166303432313231363232383063353537646662336165 +30643836303337306231363637623035653333656437316533303533613333373761623366303265 +32653662386235336230323061343462623030663665613065363032366338396465386438636131 +62393937653966363762373439346639616339636536303134306234396334366436646365363630 +32326536663731313064383834376239323736656266656665343739633364396566343562393331 +33313230346138623564613337393863356239623431663363636331646536373436646231333931 +63303338333935666636316538313238663566313036386337343934666439626238356164316466 +63366561346234396366313164313131623433326165353861326639353831643135323233353336 +62333366396131353930303236633062623266656365316139356566363237393862326438376433 +37633366316232636265373236396433623266343134393032343662353765353339373561613162 +39306436636133623963653061343563313736656162653166393530376164663865623637626536 +66363063656338373865333139363539356232353837326435653666306266306130626662636639 +33613966646237343061396363666164653039646663353039626134343536336166353966343565 +31326434666233353633646635613131336434313630383539316337383764643934323238663635 +30643433656663343565636264353466366339646432376132393263323364653639653866626336 +31366433343162393865666233323438383164626233376361656465646330316565386535333766 +39366138343237363439626133383136623933353361626262353036323438303863333335346264 +34353838386636303835343166656565316134386431326164643438633133666266613230646164 +61313237313564323737393630366134623731313831643233643931303339373134383734633062 +65353666616633376162386638336663313663666432303536623765643064346437653931336239 +37636361353231646366346130373533636463346634356430626239303565353562623564313538 +33353634663137653934313135396661343034386362353139366131303863363039323830323237 +34613363303532306265323330353966316133663734616133366332666436383932326331376261 +31653263326163396630303334643965356137326434623438386462666163376666306161303461 +34373661653666636463613233643837383636313336663534303266336231323465396339346231 +66306664366461333138663730643834393864616364333730303866386337303232306139333864 +32323364343139336361393932653765303837616662616436313036666562393839356462663361 +34303231643135353263336137366166366538613232306538626464623839613731363431326266 +61626630336131363639633037653435333465666464333232313065633165613462383435306465 +30313264316338613139373961376130373262303765623032383432613465363934643931386633 +37663662323566336535613165346437346532616665643232323865326531353266653266646662 +31623566616636373666626338313564366565306232373533633734646131353436333065323864 +62663765333230633766666238616263333834383063376434343236376334366362313364653561 +62353436373566613538326636303830663164666531316566653339656566396561653035646637 +38316263313132326261316561633266633436616238313463373338653732643331623530393534 +38336336313739616133666435386538636231333163396338366337363564613330396230653738 +39326264306231316439666336303737373937653438373934343862393964363231313039336136 +66313634363266353534343065306139626330316535373464633232383063303865396435393337 +32643632646265313261376435353533383566386336383464633038623035616439643131306336 +32633439623432373437336166383332353338383861303736326466353661323561363135626265 +35393665636264393931376638643532356232633463396537373136363038336362316639643835 +37353133616130633135633335346534396130323332383134633838366166306666383366326536 +31386266313661396333313162633162383238313930336439306464643963326334623331623266 +65346138313965336164323534386439623164616638613061376238633462346663373238333639 +39623062376538336631353032643739356131346539353161323135393934363837643464393832 +62363030326435303165396232636465373934333039303034636632353163396364623632376632 +36646334306535643034373435653833663333376163393866316564313938376132643433353835 +32386332646631303635333531393636303862656362386236626330326566396366313537383264 +39653364393637663938643161653364386635343564333931643464316630343364313936626266 +35313731366639656532393336383566313737393162386565623232373533373436396662363561 +32386132666334303131636238333264363836653531323232643165623334623635653435343663 +62383963393630633235303638643832663664663066343735633338353261653435366463303835 +66333861613030633938653931663564663065656634396439633438626136623761343136346135 +33366466666238343231376537656166343864396361306130303134313830366333663064326434 +32333136323631623934646262336634326266363636343361353763393465643833656262653837 +32613065323365383230306334636639333266376137653763363666343665333533363564663961 +36623463636639333034303039646164646638393239323336306630366666333030656435353433 +38663161623838303235633337383265353366383439316265646661363430626363666361373134 +34653232633063306462366333653239306630626531623739666231346566323532366539383638 +32333534383264326637326463306538646438303938343531366135343263316534666565316134 +64643661333334346661636330623338363435396135366462336437386330313032396530346536 +65666363623864663738386665383138366365383538373830353765313036623066663135373836 +34363161313066313231623837363330316163366238656631616366616461643264373031306631 +38393565666430326639376562333637383834376634343137323136373930356233326666393137 +63353631646536363130363766643837383965356664373862343262616432616364646636376139 +63623662343231353939366432313335323261396365336636623333303337383937366531643364 +30633234373937316665373436623961646138623165643665643237376635346639363834663961 +62656431383166323961343836393537643338373965306463326266633335656231376564393330 +39613731383566666130646331653961626366366534636361613265663930643336646162646234 +35353236653733303731356132303462653066306533353231323931646236616338386438383664 +32346164666231636138633031626533316334633465326530323931386533303365666165363633 +35373032313631303262373335333963353731636166633836393830366536656462353161333762 +33383262663939326162396630346630346435383833343939633662333864616132666533623464 +35643130626636336130373431393830346537333331623131313032393364306337376438343561 +39393833313236623866366633656461386464623937383464383134653837313432363435623561 +36626238646563656161633239653463663666303334633835626564646138363733353237333535 +32393161636663643032646635373933633934653731393537393231393439636638613865376137 +65343138393234313432626336633862336133343033373963623635643739666266313634306562 +63333731393561316538333166343536613439653163653931326237383231303735373466306232 +33373137663032613561653736393330616161373635306230383038316334323437303733323631 +34653435303835306235386430663130363964663131373962616130303138326362363135613838 +63333565626531346230363039306139373866323364383265336266323432636139623038663537 +30633931366233326264333462393334336531626335306532386361373166363663323738363836 +65666161613336303634663631643266303831623338333665356231386434613733373864633739 +30636132323836623339386537666565646335643963343365626261663836646264323466366135 +62323138353638366530613632323564343762633864323638316336653963623761613233356664 +66646439373435656665333264316131336534623362363933333030646439623664313037333136 +64376535396434623562346634613865366437366162393339633238363562636339386562396166 +35336636343264323833623935303636313838643465346237653864373061663265656139306537 +63323736303362346230336430396363663265646331643563313333616261306362666437356538 +31316533353034613732316231336362373236616339643862616432393137616137313264623933 +38626230346563393833396366646365383138303831386431333432326161316632376339373337 +36633539616633393233623763313931643339323630396666623537656339616166396134353738 +64653837326666376538373435393436333366383462333761383761393130323837383762303233 +39323738653435376631613930306535333239653861366434306532316366373238373430383437 +61623436613834356663343239633938613435336232376239346364346435306333396237343361 +32303132633063343637303339333231343662316361633035303763356334393033643362386237 +62366135363032393936306133343666373034396134303838353639666562656663353434643533 +32333863323066303536646239643439383831386561373538313461396562333638666366353161 +31316435393436343539653837633532646234386339653732373030313366303538393464643239 +35323433353664326538386161343464643865656162623065656131396161306132313534663839 +35666434343831373338633362653861643962373434376530383835653764376634336635616366 +65333563333064353562346633376161383139623435323931623261326330636430663632346664 +39383762653863393334303063626230336164663136653630366536353531646464613831623136 +64333762336435343838616535356435333837316536333738316435353062383631333632346232 +39623566353038383635613961356636663461653930303766343837373062653533313838626235 +65663437303034366631373466383035646137316331636436396565313437376135393732646661 +38656463396237343861646664626562663934343936393061626534623635613633346163343130 +36343966326664306135306630613334333138646431343062313762303463613236303761383831 +39643936636331646237663437616564653337373439383063643431373964646538626539623766 +39333638306262373737386636363263613131306662616262363537633132343163336436643735 +64653336383865346636323031323531363232343436653434373763613865323633363566643434 +65323234383636666433356635336531663961396632366163376532373466356164653833636337 +39396530363863666330303066303437623361323865626362663531376261653236636539353365 +64663139383163633866333234303635376336313666366232646538623436336235636131316539 +63393333313039616436393661373031353835626433326438613664663261633661633363616232 +31383164303961653366316536376261303636333165613736306662636337343539346564323636 +39633836623462376438613939343331333865303034346261663233633734613433633764653532 +31353663363230643163653165383165653032323166383363343534643865373039623038373837 +62633331326536633966623232656263353831366163376161353436313634613132366537633365 +36376636666534373035353461363039653332636230366136663363643362383739366366623465 +35366361313163363034303232316265323733303535393965663335623735333733383063613034 +61316237376631366161616132626435663333393030376630646631323535613361306531353864 +35663138653763373031626532316534303339383939343639623465613430353038313237616335 +62353763343264356563643436663265383836316639383238396361643166623632373930343932 +62643935643563343935333263646635366330656533623935313862646132333462363638353366 +30626132316637633732363835346630666534656661343962303538383861623062663937366363 +34613239313764303965613062623937623963643234666534326332646538393133336439383063 +38303731666361633263363731613861376437623638356533376530613631366366343235326238 +63663136366664623965616539666531316431313430616262626638643933303539656661386461 +34666139613334636136353531303163313636306664303930346638393633326432313130323062 +38363162663930663461636331323133666636663334326233306363663738313466613431333766 +64373139326333643731376261323234663231376633373439313464353730336565633133356166 +62666165643039306161333430393964643334383465623132346265656138323533643363636433 +32393666383361373732366435656336303134346239646638306432623535346363363066303636 +35356264643938383530666435633366396363306532303363383438653531366638326535363963 +65363536353237356661663735383030623963396263346133303334633864303632343430623335 +39303866363733346566353862323535373164343637386339633433626438626139383261326330 +63363836616362316366336238363331383964626537356162646336633066326266636662363136 +33613161623138383436656434343964666165666332336330376636616334643833393862333761 +64666431313435373337386565303031356131643363366466623531333165303835643336333430 +35373834386131313634393765643536386463653163316161393566366539363365666263653634 +33353930393864666631336464393837323537373637363064313065653831663230623762376637 +30633264363838636437333765396565666531643962643764643965343537396538366366393330 +35303465613431653335353930653631383164313166656361313161623463626532323039303434 +39663366396435306465376661643238366538613237366537343236393565376362303563636437 +35393165643439393762616631636432306433643939623530613337633366656662393163393663 +36313238303436343436333537316431376432343736316333343332346332616263656565636639 +32353462643736316634623434336566633135383935373766373332613035383035333136373837 +62306230323734633764393034303430363435383632346337363164626561626661646265666335 +35306134313930373935363331633064646165363231646662356235646537386430333364303466 +35383835653264643534323530323666663836656566346565323734653434636464396235346539 +63373763323434366566353263363765303164303538646465336237336431656238316165356166 +61613038313134323430616639613662353236613334346531383339643536373935383366323630 +64313530613331623537303232323363623639306234303232343037373263383237303538663262 +61623937336336303233653236336331303533353538626330643137303866326264626532386564 +32326162656663643764666134346639386435613265383935653661626336393430653637336138 +36343561313731656231313637653436326230343065393561633137323830393366633335653834 +35643463643132386139626638653164376261393166306132393934326335613935326135653063 +32373436636432326462356563646335623532643764663433316232396233626636623937663336 +66313364616361396461336137336265663565623337393433393132356236613665373161393564 +36323439666365616435636534343439666166336166376435356563663332313762633862313964 +34353130663036353365653063356631633835363166356663613532613533343638626535663562 +63613964383364623033633030306532303138393238633331666666623839383233653465336534 +62386332393764623964376163613266633031323863343931306438616638613837326532666539 +38643834613239396266333537336333616633353565373664333639323730363731333266333133 +64653631326463663039383234363633646536616434393162326138313539616361623137636335 +33343834333033326136353038343331613434376332353865303565636337346163613265393837 +63363136393766313939373264393231616261623834303135656130396335666335316366333730 +37623062383831613734633730386632636232353361393839333336666533636331363065656565 +66663434376238623834653365336265323631376537356533303865663762346162376338643162 +37333265313437386132383637366633326164376261623766366537633139353938393463666332 +35346163363361363261373931383234373863613734356139623333333833346463366136393864 +35623138323037336332386432643761636464663238656161343131383766316338643764653264 +34373637366164646632626664363261633364333431333534333637613533323734646666613334 +32323339656134306261336537313762666634323961666638386333353834643638353231373035 +63366663313461353463306536643961633732643936626536623564653339623034326165356232 +66346636303362353062333166613630343264623365356364363431313366353461373639326536 +31616531313464616636333666336639326633333766353164346334303839313138323735373337 +37613164626433633433343334653734663861646433356466383933306439636131633063343466 +36646364353364323331303863323561396634306466326564386632366135366633326162353130 +37363435326237613730643965383739383635656433643931326534343338643131656562376565 +63643734323336323265613735386566313136346634343639303931396636626366313062663437 +30393138636466356535343132633836663531663037383963333430663232323261666436646630 +33666437633066363261383035326366666362303933653962616163663736666432323964633034 +36356466613435616133306566663531663837633538333830633964623264383464376437663634 +65333531333536626565343561366434396434316139396666326338656436623763326530306561 +35326131373931376362643134303763323930353536316161653065316332663731353939666537 +35626538626537393237316164666632613833656165346537636132376538343333653461333663 +65653330666239636661616434626163346161363663353330343432323735346231636632623232 +64313235333634323866626364333465626436373831656437636661376535633138613939333666 +61643564326232316239333732313536643031343335313231336533396130346131393165623030 +37643361333133346166336636363335633863643364383432306531623733633465663261663933 +30323339373333316463616630313534396564396564613936653932303065393534333533613761 +33366365323232393031343663356366393362623766336436343035663563316162366130633435 +34393635613631353836396339386134343032366161663764356633633430663331656631663766 +64393434383661346364303334333532323561363033613233356466346661373835636530623561 +65626230383431346232646235633033336435316130623236326437323861333037663339303563 +63613161396337316131363339616138393632313639323836346561336364626163316435626238 +65333837633131663034613132656130356235616237616239316265626337623236666462333530 +39393361356131376464386134393262373265353764316165636364616635306565656239613531 +36326266616365653035656666656139323164316233636661383431663763313866653438336632 +38623061633834646232353138326566656535326462326361303666656362646163383461653132 +30633433343861323864333736633832643566366461653962623435666533383866306539343534 +66316139343835623631626233376138326239366232636534616637613164613262613736613264 +30363632316536636437313631353761666464386633336531336530303131643935386233363034 +37353362323735383162623235643061633565363863333530316335613166656532626137616462 +31386161306563306661643365346231383330333764326435373835383062333330363336666262 +31356137326163313638383639623165663534313261616232623434393265333262633965393437 +33363165316234386231626235663261653764653035306534663838343236646432633564313666 +37623366663231356266333238643739333035623938363434666262626137383337626130613838 +37633537376133303932386436363238633162373239313962323861313539306331316337326461 +30663933353637383530306432616134383962346236376632373463396164363430346564373931 +63643161366434376362316661653264336466666333643033373530636237356330323938386630 +30646537306537363831386261653634613265663939333939323262316639323064393833616233 +63323665323730306534666231626635383366653536376438616262306533383039616534303964 +35646537646362656666323336396162653230363833656432336564616164373930663336306262 +65373937326332386537363666393333303335356336653164666334633764656666383539323935 +63613238343862666135353763306530393763336534326262343032356639323731376630383638 +62353665636231333862313264306662643137623832653863373164663233333663666132333662 +65356162633566633830613630616365636265376662316532303537643563643239333930663736 +37376335386564626330633564663735613233303937323437363436653038306138613966353930 +64313366623464366666613737386461356435366166643931353135653931376336303136643063 +37383638343262383765656661666334613630383239383765666531623539303237313363666636 +33386431626138306663646137353938623061636332666633323438333162613061643838623865 +62633137303231346632323431323832386633306538613039336331313935653837323461343464 +63333664623636396633653930396632306464653266623836346336376262343734343436346238 +61323430613834613362393638363233653136343835336637613530623866323866313837336235 +39363930336233303739386266376533306338373436663232386237326166623238353864666663 +66316161643336386133333563666264393339366534336331623563386565303862396335366566 +63333237306333313137356436343932633235633566343239633437366337323239646463323936 +32386334646138323236373063353464373135363166633730393264386635656435613130656532 +34646533313464333235343033636636643836346533666663326463306165636264623531383065 +66326237396431626433653339383531373137346233313039363864613730613365636137653034 +66363962353635653237636139623432346133366165623863353734663838323039323666316664 +66306665333861333933326461633733323939376633323137373764643730376238623063666561 +34393830636230346134306633306139666132323338383165316539353335333336626264346530 +35623530326639646334666437346161343362313331313161386536343231356461393161613135 +36613064626235333763383635663062323562626564376430373161333233383539303261343035 +61386236636530656337333336303330616133393361623061333161383065623864323163353064 +32303335366530303061646335333664303666656439336561333266613137663431336330343938 +62356566323563373664613465663263313166623739343536653664666236383039386539363365 +34346532313039323137383862633061363335653537626636396139343130323233636437656266 +61313562373836306336396634323839333763616164663937356535306333653738303564386565 +61343337393965363137316434333739326663636263633835393437303062373561363838663764 +31363636303333366537373261316265386463646563636233386461393231633132636235303165 +30373362353230343335326236613632653034303237363630613064316165383234386539303336 +65653931636232323734383762396661373638376664346531316639383237623638663462663965 +63306332346335396433376632316138636561316262376132313165643036353863393364663063 +37386266643065363331316239323939623634323138366363326439316238663231353130333965 +36313830363862643866363966326231663162366664303764313534643266343236343434306465 +66613764366561346165303735633866653738643230643063363432346262656135616363353039 +37386531666432316166653831623534373064326362306165663262353164646464396561636663 +35316139623961633535643836643730343432636466383434646365363239663638366664663033 +38393932646561323535333633663238333765653263393966613264313064396439366662316132 +37616163316335333161303532616631316132613438633665333037376164313439626630646466 +39626366626436336438333562393963383832643834346335656633343830333461613934616630 +37386166363563343764333133333834623838323438303161333034303466663865313463333237 +63626265333934326166643864356565646630626234356138356263613837616238336639393733 +31313538383633623962346330623664346637373361636233643030363031363231336331383036 +63653533373935363336643134383939303334366462353763376162626231333338653263313463 +33656130666232366463393433383662666636616439633765333538353064643838373639646235 +35653237366331336639643835303935326135323634663831303932326632383365346465303232 +63643138323232663066666366663030333132623162633364376464613265363865393263666166 +62646635326165356563383966646464333730343038623435636236323435333233383035633232 +63653732616664666533666630366161363736313836346238333464323666646536396132636134 +64666264323165386634303565656531653864323239396438316364306131363563623431346365 +64326433326264333861316432643738353065653234333061636265313564643437343763656134 +38613865363035653038666534666132306335643261636361636232316234383361393230643535 +63373534366332333066353863633363636162616134656237373066633337373762616534666663 +37396165373938346332353935333332613534366564636131353132333330666363653261666138 +62616564373062613735356365353539356165633839393463336331646536383061626636303436 +62316134643761623363346662376632356437343162306134613561393233626166666664376634 +61386434373664393066656230663230656335343561353664653565626566323232663733336363 +39626362363065306363313439383136346531313336376264393732343138343033373662613132 +63326361333764333332316266313765303162666137393865353931326530613735343462326538 +32613331303764663431346135663365656562393364613137323434373336353330623765623937 +35373836396666643464636338333062376235623664373932316361323262386165303264386631 +34656435653138366330313463643861616331633736346131383135646430303635363135376661 +61363832373734663164346533333032343532326631393165353930613538346635633832383962 +31646331303461303839376239343234393331323066353561313335636531336664633033323131 +62666664646139346535306532306162633266353539663761623238666231303763626137613939 +31343064393366376136663532633139343130653530663761633239323438316439626337616165 +31393134383336333266316439383231373933653137363232356464333632643130356330343962 +31646232633061653330363664323862376236393231376530336432623735393762393538333363 +65376632303233376230613366336432313966313835313165653464623938323334643832396135 +37343962633766373865363434363464356137343433666236333664666263383138306463376261 +65613132643062356238393134353735376166653434363133346437316439336636363562646634 +62343439373437646137353230383738363863613662326466363561386636353939333866373130 +35626264363261366630316235316232386235363039353238313132366139643063366230653361 +36623162643835363863326439303231313237393065363766303565616637643938666432376665 +64323434336134396432326263313235333465396336306162663134303237393736356461623131 +38636334353035373264656337376536653531373362633336306638366636666561376635326230 +32353730363266623762356166653566623663653263303231343238636133376133373365353233 +35336336353534633939303132353632386535623864396163353938613237366339323836353136 +36386565316662663936666434643236643766336262383664323162336561653934653434656365 +39356638363762366462393063343434373437656638343765623037313130646565646633656238 +33613931356136306537346536303961326361623439643536616139333437663130663239613230 +64346435636462343338386430633539323936373833393233393762306139333335306632346236 +33323261396163356236663361323163626133393837653536653562303564313862393334643963 +63323237383237643038336434303263386264336538336339363866303936613136376435343931 +62643937396261363737636161303661343030393339363831663937356430633066626531653439 +64313161613632613532376233383732313235643335303334616362626132633662616135346163 +61323161633161366332663733343566303134323234616632646130363439323063623061383038 +36353732356136623238306366313738353964333434653730663832653636353639303839666333 +64633038346464386237333635623739636666326566633466313562333766333332393333313735 +30336235396632616166623634663130666537303861613065393938616533343134616466386161 +61393332393363656435303531386438313839623634306566363132633062663063323934636131 +39646338656462343532393939303063333465313561663230346266393733656232646462326331 +61326235376138616539306133396236613564623236303539643336666630336265346361323431 +32343133636363376662366561316436323161393930306461666665663239613739663934636333 +34316636646237383462333839313761363032623039653535316238663438363533323435356263 +34373563323237393637613062346339653761626233383334626332656261333763653939646334 +33646165316436306235343130316462373432306233306337343861336562363565326661386132 +37383139653061353730326364646265633333656535633464356562633537616564353932623861 +62313638336362333539663230666363393039313335663738366665623736396631326165616264 +35386135363663343064656361666333653562346335623063323762363135613862613336363433 +64616338626161353065613366653464353934656263346534376532623035303465386436373435 +34313138336666653835356139626539306361366634386637316462373665613965346636313762 +38666538326365326633303432303039333137393465616433613661396664646237643735336564 +62626265376636383864626335626333363733346631373436313438313737643730643139313737 +30663032386635616465613033303732366563313534383135636434386164646332626439626432 +35303965633864326462393736633537366365663566326635303631633836616364653735643439 +31643365653162386337393637393138366134656239366630386563353035663163613235633937 +63623639313530636564363066656434316133326235643235396134336662653537643664323938 +35343561336135383738326364633530643031366661333363643239343631613066383238633665 +38663338386133363230323163313938663935633066336434623530353066343230663933643433 +61356438343837353665636563613565663165323865313735353434323634356334616337616463 +37323731666332313439326564353836653531326534343333623565646236396262626237363064 +33343736396234386436336334633832633633616134333436373563393762333163343861383031 +64623063636361633330313964343165666634383163663933393131666366313366343930343231 +66613363363835636234363162643664343365643434333832313063613864626531363930623232 +62386430396338366265323438613438373630666431633334313434373033666266323831653231 +65346636656338663438656361366335316631313963376133623366336134623136336331323565 +37336539636237373735336562396634636234356361613434313066383935343865633939313337 +31323363653466303635653139343131633962386239313939356235353534643561336532373862 +30633130383431343361623236656566636138306230383836663161643162653434343332333832 +32373863386239343165623164646632663330383263353531653763623931343532323034633864 +64393165366639656363663434323131643862333636643530336638643333326635633435663064 +33373664383231333436356532343761363264353830663531623935323366656635626265636432 +64373461336463396635653132333362326166613862383664643863323030313035323663636631 +34326230396438373461653831663561386561376663333664396638346639373330346530656138 +36346433363539303265633034396533633136383437356237356537343364643063636331373365 +32383063356162636336303635353533393064653036306633333030656131343635613734616137 +32323364363230636664303936353337626263626462353864323662363466663362643334396533 +37343930373564653465666130376464343236366331393864643033663862316366613864323266 +36613332363739353831396361383164643037376364626665623639663663363864613635386666 +66313039643430346536636663653633626534363363636435363766396466313131663362323663 +39303163336264646633373235376132653666303638363932323833636339616335646338666230 +36346137643636653039323534643062396662623732343730343064633764356561633364373861 +64396337353934373666643831626263326538383662386339633331323031643065386265343065 +65326130333362376562363066623630346138643064393662666434646530663338343639636636 +34306230363365366530626631353835336634396232646663663337653432356665373036336634 +38346263323136333736386465363063363861336236643339323238666138356364313162323331 +61313932643039336530613332643731313539333430633165396230306531373163613533623562 +38326631626232303939303063323962393139633239663664353238666336333961373463376537 +37333735393633666530356535323166306534356665653033386366643161333664623863303035 +65386465393338386132316465323766306537663734333130313534333035613566653738323664 +35333934353864336237396131323766383563373636326361663039663438396131326665366361 +35393834356661636166656133613161643632353965623138346365326533396265623866333963 +30366265306465376430616530363338373361363939353864376335623834663135343764373166 +32316137666335613932373634643663356465313536376233363961333762623637373737363863 +39633139656438386233333062393663396135366430346639623234373962643934373633383831 +32333437386535363630323766336465656635353835636465386362643637376630363038653366 +32316365633365373935643465383363323136623564626662626165306130306137343833333564 +34653562666536633334313231623931623461306265343062313765653163666539323434623334 +36316466393135346533363539343938346530303034366265386565663333376530616634396434 +32383462616462653535326336376432393164666262333061313839653535366238323030383735 +63313738623261353331313762393939366637613264353535376532646166386234663534663933 +33613664376230663736326532363030653930373838613235313437616436376437383235303537 +36313434393166613239623139323437656261623439393265333836666163633262633961316233 +62613065643962633639613263343263636637326339646233646636633665666537313638343336 +61656561656466353139356436636464613831666164376437373238363734323031313231613735 +65633639626366396237626138383039336338626437326365623564666533386336326263653530 +65373261336639393261343230656533643031643337643365303835383363356334646663363531 +66396635353339346136623934313230356236343437396465346262393134383265356365613766 +65656461333739356236616565313432366534646330633239336362303164333530373561666530 +31316637356366663161336465653762623036366464343233663061646236323663346266626365 +34666531313836393733663962616266323633373364663862366133623436326237656162626637 +37393962626161656235616631313732623963336662306636363963666233623366373263643037 +37336361303536363865363963363262336237393466396639663161626164333731623362336334 +64663639323736306636613130613363333933376665333362303236306433386365316435393638 +61646338646131646531353765346164343038373530373639343339376463336338336337616361 +31333537343965363335613732633934346338343265643765626532643332333961366562363630 +36643135313261616633616434336630376632633434373934313931363762303732623134383662 +30663563646534653033303037383237363733623534323834363663313430333965353163656534 +39626434386265653037663732616334326165313432666235306135656262663666353635313034 +63626232363463393834636664643061666331313063623935646132656333393338626637656437 +39346533616563333138353364613163393263363266633034623131613138663236336636346331 +33306535643166633932396636613738313561616462316530386130353062336633383566313333 +36643864383364363561643331666432633731313833646633356263356233303737613739356463 +61333031623566626330613135643664333137363863326632316231303633373165396234383933 +32323264613965656134616365303636663732663839376332323930316366316237643061366232 +35366233646565386261386562363231623164313632303832366166363066383938383736393062 +65633332643032613037623863373965316236633065303265316430333237646566336130373335 +34356562363463343662363331376134343237333466616237666133346165393733356364656164 +35373632646438393934343566383232303734666565343736343561326135383466636662613634 +36323736393434623230353164613034626561333364383363643166643438306439376135326332 +32366130626339316466303036316136323761663835356534346632366638383336613835616562 +33326466386434623663636162393135363632663763626535306139373432363632316631633361 +39663961383236353438343636346235656134373233643565643638653834636263623434646261 +35663739306231316432313636343066396663643465343865333436633938376335323538663537 +33346636313364346664353633343231613466663238376133313938663034626563626231643036 +39396566316239333435653232613266643134313039656132363031376230343464636435623539 +66343131616434646363643136653135316230383831353037366362386332636338623634643761 +35303764323663326364666232343561353633633034626363346333646466366434316636623436 +62313266316164636564643564313631323331643235373832353435326634316133623463323837 +30656363313437396434656330306363343366343930316133306134356138663463333561393761 +62643335306630303932633531356563393535636639623632666563636436363135346437666238 +62336330623430636439376266366635373839396461643535663563336133646439326230393735 +61623363383233383438323664633166393738363966396235633039656531333966333464393662 +36346530663262306237646137663932366434663165346233623737633363663730353738633062 +63386630313436373136306138353439633630363934633033623762626635386631646666303166 +65646234323766386631616236626166643330383431663565313838326436323833646338386135 +32303636326261646665623533383630323535333539353465663532386138316236353730336464 +64356138646430316434386662363964613936613262353163343133616335336166323563663439 +63386333623035376335333739366337346532326364326564663162356139303262316532373635 +62666636623431376664303432656163643331393631393865373330353639346435343565376365 +38373231363831353535383961343833636462303830373233323565306334643935376661666331 +38393132663637643765353265306131646138653935346239313664313062376130623637666463 +39633732623333313433363732363965366364663830393532376338376664376634313762643865 +34643361633032363833633861323534336339366631373061396337643839366561346537653536 +62653834323939373263333839633037353830306632383566333039306631663262626430346137 +65313332646332396663393237373564386536346236313733326130303766356166313535343864 +36336364363839383434383630323262633430363439396261353238616661393364333065633962 +33313337333039333130626663663538383630643534333936376138343832643638396334303733 +38373231646433303637643333323865303932646635396438623733643437663731366531363037 +33356534326437663632333332373236343932363532616132663463663132346365316561626530 +31653763313964373630633232656166353337623363626332653231393033616632616338343137 +66353033616130323566623866326337663764313834313934396366623530653534376235633066 +64663262626436636266323233313239313031333763393532316335333131383032386236333039 +38396463366561316664366535626534306661646362633333633430336538313530623761636564 +64323833653063393938356235383762653066373230333562353663643138643939303362646563 +66366466653932356434366430336335323935373937623938396338663462346362646466303038 +61353035633334363766356235376533383232393234386532363731623036353532303233613261 +37663530623364353833653630323063363235353137386663623636626461633731383033383263 +36383235393566353835313938303961303266633264396562633232346339666538373262353038 +33626433343463366331646539323464613637616164663833346638303265363864613438316263 +66343830323364656433356439646634626439646432373665386463643636633235336533646539 +37393535613566613438376237616566306366363339353233616664373432346432356434666632 +63343464666339383435646265633663663839623337666537653531336632393735356332316161 +32396231393232313434393039633735326662373463396434373661306337626430313665363866 +30333434626538666364393438363833383534666633633863633231653436666664346635633738 +61323935303534326638303363656138663330653966373131653861653430326366393965393033 +38333430656161653838393230656433373432316564373233383962646565306531353734316663 +65376335656239656163653538643935373433616532333732666162343335363137383534353335 +39326239633838366133343430313237303330363433636133333838383539316464316164646432 +36626532373535656533376635626262373332656239653732663063633338313466613564626563 +65323866386637386162643062656333343366656566653636303433353731663630336531333162 +66313531666163303534613964323530353164393163353536333766633230373237643438313966 +65363633366163653534363865643764303238383961623764653238316165336339333136306235 +39383633373736376565396132666533326666653961343361396634393232396165383362633533 +64323238393332356165653963633762386661353133336131666530656563323465636536306262 +34373661333131313834636362303264316363623563393330613739663730313233616166653236 +38663735633461373531306531306234333230303262376464646562633837613061646338306166 +61323738663166623162353430376465313932663230646562656561313466383538636435653464 +62303836313438626364353130613731393938393938313362353063653264363331336466393865 +35643336336635353466643836386332626165353034316335343965356564366130306138306336 +38386438366430346133383962316563633664396433343733363930383165613531313138666166 +62356662373666666635636332313330323738313539373763386537666136316164303461386161 +66353561333534373231653130373832353664353836343935333639653464396438393932373733 +39336136623637316462396566363935363536653061323834653433393733643663613036646563 +36353231396165323366643335663535366139623536666433306134623538386337636466653636 +38383930356261316639313163626565383130626565356334336364303635353262343264646664 +34363765636433306463383132666139646661366334313034633033316539336361363933306633 +61613132346362326137343330373735663165353131663661313464623537366361363632636161 +30313838323732323734633164326461393262643366663038346465333630383536653964326430 +35393262613438346630653261323263363565663364646435376533643063663233363663626133 +33356462653966353031393963353636316232353336613766343937313765333363313862623464 +33366566303638633963616631303562393834313064323538666138336332326266656231366665 +32393036393130323737613236633063653534373432633437653836366461333839386166313437 +65333235366234623135316633616261626238313665393764626464313465643636376663303930 +32626338663865646536663031303838633532633138626139626438626536646665623363343564 +38623435396130346439336539323939663432303736363532343862336364643866356633396333 +33396234346533623935353961383162643663303636613639613763643035343934323533366664 +65656130663530336432653636326561393064633836356165373661613366363762663635623863 +37653035306435386632356561393861396166303131333430396137336337656631626632646564 +64303435303263336331386138653363663364623164623032613734356362386537646432316633 +34616639333461343137643436343437343966633632363962363831636332393864646439366137 +32643536646336343337313833666138353439383162323432313062633262393139613734663939 +35333532353231346133643563346262323863376238353661353836656263613433653832356237 +31626533363935353236636364373265653164626264613032366137666632616261633466646661 +66613463373563393133303663616561383165653532353039653134386632366634353236383431 +65643135663132663963376135653735323537386133333261386662646439303465353036393038 +30356465363661303836323563613431306137363733346164313833386430386462666261636338 +36386530396163366439376338343633653664383661366666353035356664663236303166623531 +32383238346437633031666662363065383965313832386532303538643130393536366265376461 +62383932313962343133366633363361633933633039366532323239666561343662623231386538 +33656535323465393237623333663961613934646631643464393530366634323834666332663534 +31313739316131613435363139386139333035306332616234333064303666316438663436666137 +32376336613965306432353331316531323330613965636362303432336538353561623464666564 +36623665653439316166376436623330303061366134666630393035346139333262333262623939 +30346531616136663636343065323332663639656666323636356233333937303237383636613330 +62316134303739303465613262643066373235653230636537353862326537383161346637623439 +61376235663432343234656232633634343338373933356535633261656461343166393231653132 +38646437376666663864323066373738383238333030323333363038386634306639363766613637 +64613364663630326266613662653137353562306235396162326432653963336637336162633764 +35326236343062393364623233313437306263663333393238373134346632636437353462396437 +36386132303438363362306636326563663530643134376236343532363737346464313065633230 +30376662663263663865393939653437656235663235656366333934386632373132653337643737 +31386233363932663166616533373366623864616437623138323336363333353431303634373830 +63323930656538373563353565326430653436663830316163393563313761316137653262353437 +35613632643534376230306232393062333264333862653138343836386463623831386164343366 +37633465633563613163633533316133303137366565653130356366343862643831393964626439 +62326531313030353961376235383661336462663562666130346231646361316238396433343630 +36626435393162613038346561396366313565653131333435623131616132633331613862633462 +64356662616638393633616164373235343933653338633538653231356532663131633337356232 +31366266363736643761343061313666333963633665643338333863626336346538356566323463 +32376664623231623230646233646562373365376532353436393733623339346666623730643232 +36653635333634396264313065363039346261656362366430366366643934636338396431373837 +38346664373137343665373963623537386334663161343736656464636434633338613332363736 +65393838343338646161623933376564653966306266623232633433626136346561373638376630 +65316432616664336266346565353030303739313431656462376438623430356438383763316464 +63393936373366303630623732373439333334336538623035313932613162626533653637326336 +64653738366364656365623932666431343035366262363162396536626166346339376562373862 +30356363623461303536616530346632313435363931663666343866663663616337616366626363 +32346464666139313437313166383731323037633434373439613832383638313464396132663666 +35346630333861343466373539633638393362656239306339363839313763623836666231623639 +33333831383666336532363430366635613465343130356332343861366432393235653430383532 +37626661383439333238336634323465623335343435323932326637623630623135646536616239 +36323235633438386139353631343162306139316236343932636366353130666264656337616532 +38623433353461656361323233393932323466353931623231643936356238333638646435386630 +36363831363162666334663135643062303031313264353132333934363837366135643435656464 +39303734383232306236323133613534383433396436663063633762643537373764353231346236 +61663064386238653664326433366266633334333831383464653565666130356230633030343165 +31366664346634356133626532613737393532393332643438316635616437626637396634636265 +36306562346462356532396138613339663333346164346136316166363736303835613738623135 +34313639343265316165303031383237623239323337313562323062353361653265373938326665 +38666439306461313634343035393864656130356332343934383537386232363061666231393562 +34383562626339636433343632666564643834643035613964383535383033663733616433303431 +64633664313633363033363433363837323936353437373833343563353966316335633566666436 +66323061353839396264306239663237343033643131323334623538623961303362616163353266 +38353234393563323934323364386561326639353864343363623230323137323735316562333935 +33626663356232326237643634613562346531346633303063346339396338313431383464633762 +63643933353930623635636633333666613438646538376438623835623831633532303964373238 +64393634646365363433633132613334353337633537326534633364666630313134386265663136 +66313131633764626166323263343735393034333133333234313762326232653133366163353937 +39666261346437346165663139643133613864343536343736316437613465363630316434393932 +64313737653535333337306135633831346430363063363839303662623863303761333139633862 +39333333343635623934353463626639323131393234343232653963353865303661363463333061 +33326564313361616666313233343263366365373663326161333130316136326532303333313563 +63623138663332653235646665366263383531383034646131623735623165653535343130373265 +64303231393738346565623632323831613331363961313436383239316565323032386439336436 +34396531636233333066666538313033376239323935623764653539323964373633626634663063 +32303561633435656464633130356531383461363436313765643363326130383937656565346137 +65303137646566636462383937343638643063336663343966383531666630653431316461376439 +64646231323132316235656436363233613062393563326633346439303264366263393431313163 +38636236323363373134333562313836316239303165383665326661653665353031373733343964 +64326539646663303064353431396634303265623936643538663836383238393839643035623066 +33383037653236643364373164343365653230376263643164353033343839343561346563393632 +31653865333537373463336166333062366261633335343066653862326131386366666432663765 +39323161303363636238353165353134356536373434613332643030393639313464343564306363 +32616434336561326465343865623034623966323435386336313763613237343436643663376239 +35643663353962343765333335656132646465613232346636363432366139643333306565373336 +30386532623966353536633436643930383837633435636638336235393732323932316631626233 +33633733666662643334363263633962386162353837623731666131633136633264366630343038 +66393161303664333765656530616530633439613536626165666337666634386431313962313061 +30366333643837333235356362343038346430656166343636393366646433373033313135663631 +39653462633965363466353438643634306366643262653234313861316266306662303163313231 +37346362653239666466346433396464656663616333326536613362386239326130643236376138 +36383434623163663531316132396235623063303937353763323436353064353238323930333234 +62333461333365363232356633363934343061303536373666333437616436663765363531646562 +64393530623135386338646365343665643762643266666534356463616465393465306139336564 +66393062386234386261393736633461396661383564376533366237653933343639333739303962 +35633533623633353733326663353731343933353261626437666537336164346265613732613364 +33323063343835376236393434343334626162303438663934356131623732623561343964373935 +33646431373032353663666662353562353866346333396338393032306363323632636166653531 +36613036386330353331313230363231623331373937353663336538393162343762353066346534 +32343261353634616137396138363533363432386135663466373531366362636564616363623530 +64616165613035613565306664356332343437613839343137393635623861386461313665336566 +31326137653830316466633336396333313636306634316234333632363262396463313666633664 +63626430383064353864653966653737663536393362313066396335336363323062623037313039 +64313364616230333439323338663666346338656562316637633465613564376335353061343561 +32343664303036626134666466356566633436323835626362346536386137356332323132316630 +63656431646330353231636364383263383463643139643836363564396133303933643865336165 +37643636623933303134333364663831366330393664356364373461643830623137353939313965 +38323063613532353338396134396161393762353061643765343561653263363636353835346161 +30373334343862376664343334663836363063383466373738333433663435383762393837626430 +38643961386336653864306231636333613263346334303230346566303863313032386663376336 +33363762376331343162636332623131666337366331636562373661393461396532336164616134 +65646665663264636139616131306530353963323231346463616338613135623933643938626438 +35373664613134393833343138333962643933383038383535386431616336616637643463326166 +63646339633735663336393438383133343066636164653339633533306433393362356239346232 +31666636613964396364663839313039356433386161663536656533383064336638326539623235 +35643539376333616634386637626332323630306530613964343165656565323230626336623465 +61643536656563323431316161613065396230623337313663356538313438396432646139396362 +39383061303862303936313635363236326162356666386562656637636230623933386664336435 +61626332663131626632326235616262313363313463646165653861646562323935373065383464 +31363965373232333162363031343237303965353938306561323064653139616662303236326436 +63626638366135313936363534373834643361666664666361356635373534626263613336353835 +34343938356634613263643331313738333263633939666661643836353737616461313030356462 +37343261343164613036343137623832626165666465306265623464346435303738323532663161 +62623266326638626234353962383132663632323936326266613865346634363637383833633033 +30343765343465393132353337646234613062346431643935373839316431663637366466323037 +66656430663538313737333039313566303831616434343730636433663462373161306630326534 +39386638396337306564626464386531363038353736366431643030636363613861323431363932 +66626562613330343739383937656335326561343338316338626265363439393334623566393966 +64636161303438376235353436396132636334636234613132343231386231636439393263313537 +64653665303065303533383065653765356237326364376666336433363532366236636239366632 +35653934353435613134326339643831333962656638303563323662373336383436653864353333 +34323232663736343932366261353737333863656463376233653532383834613063656633303734 +62383432396534633337633339366165303833343966653765363334653031653235623437333534 +33636133383736323836383365336264616439353063356361383834333766316666323266323530 +38633138303732653762353363353963306633323666633139383365653762356538623436343166 +33623430646437393930643939346136656565666131303265303161366436663663656232316133 +37346464313134636665323935663764393731373462343137363136363134323864373564313731 +32323735393632313332353430323038353033323031386133313561363934616239396561656430 +61626334626436653133663731356532366334636338343231306631396336303263393661653164 +38616133373836626563366635663038666366386637663061383837333937636663303136643738 +31356664666530663166616535373965623835366539623939373065383065323236306136383338 +37646530313561363862383165613231326262303664323066343165646239376432633538316166 +39393338336535366362316636616136663331383236613464373863383265363433333264633432 +32653061623663626465396262346139303134393334346564393734336636376464633534363965 +39323261396638303337323466343462613136396164623430326131343835323131386463356161 +32356661636339643830666262326461373462376164336336366339323161323534613265343533 +66663733376461323332313730366563663036356162643565633031356639336237336265386335 +66353637383630666532633164336130323264323938396164653961366463646238303231366433 +35313063663063653637373562323137343031393266353535346461303264313633353337316432 +31353334386630316334336237336438653430653461623031386535313866663462616133616436 +66323938616333333838363937306466653064623766316436613562343362323832306237346230 +39626338313762363139383866666161623366623462326632386464343131643833353938336464 +37626631613435393333613634306365333262306134323739313432383930663732323661396235 +37363433653133396161363764653030636462343535373966336634643262396137356137303865 +32323465613239306537633562636137666537636238363231326334323539316538356136643536 +30373130663138666434343236333766656232383165643336323331343937653836333535636662 +34306137623333303666316134613565306635623030623066343235356532393765373561313861 +31656530333139346133316436306435633261303935333837346335356137376235343335666362 +61616665323335383364663765383735613034303631343061393535636661623662656434663134 +34623862356631383130643365616333346132373433613961616561366666353537316163646264 +38343336643337666562373566396164346634373535663366303634376432393135333665643262 +35326632306635633562643565323465396531366635356133303461646364313566303364646337 +34313935616539313335623730336365656130353464663634633139663839653965376636386661 +64333036646161653462343939323762383936333662333537353434343534623735653436393165 +64643766376361356234666666343734643638363732386435626533646331303839656439616337 +34623139626265393038626137353538313337323739633632643231393330376261383861326262 +36386139393131653165323835343338663138396130613335653636636661366135626131366439 +32373235653435356634376339343033646438386639353861326465333836326334656132376435 +32356134336432613631393064363034323663663466633633346165353165386564653463643832 +63656361333164373061653431666530346561616430643631326430623631343665366136346562 +64396339393931613533616431373931363461313266346162666562303432323061356336393632 +31393031616430346237656464613435613337626564613934353733313764376337316564333536 +39346231366466613736323334636564366133386536303030656437373635353163313962633836 +66326638383037373136366532303933636236663535363731663635303434306136353566383066 +30353362363430646436626236633230633866663165383239383637316133393362646366316461 +62333230656664363932396162333465323734636666366437623135653763633633616531663361 +35346165643830356334393765363836393735303861396539646665663732303136393663336335 +39626266363837613435653037303136343965313233383761373237306336336638623765393934 +38653338343338326631656334353530613731616162616238336335613066386261623133356661 +65333837373031393331306337373934323937393130643239383435646335343038313138306265 +61623533393130636665663962613438653936343930316162663832313435636230333933313261 +37376130633834333035353033613431326330316434343835353937643866656464333336626565 +36303166353063353234343639383762333961363363653062653634636130656131383961663331 +39313164323438313139656332313939656533376533353561393861346635663632633334323562 +63346161373939646136326337636236353461653761316430383937393732356238323564613332 +63323130633165313535613835396162323463633165616464356635326434633865646439333837 +31323030386665393737343734383031616562326437363462346132353361333462633733393431 +37346630656430313436613765393363346261306333326132323036366663353162616263323461 +61646434306463396435366531376636643866653538316565663564666136633533346434313835 +63636633363631383937333833396231333535306538343863623963346632326434333265666538 +62303463613462366562666639643132323964656362366339636136656435326330663739373861 +37393933333934643633616234356666356639366531396561326236356563373136303066343662 +32336238313634336531386165336138393233316335653463336663376461356136313037633839 +64323637343131656539616666666262666431303263346362636365623938663534633837386237 +66313964383835396637383030383562303730363664346232363432643861323132323534646331 +63613435376334363337346635336262343230663036313030333733653138643966613232666265 +31353535336339316637393838316363393539396266376336653434313263303138306664313236 +33373136333836653439383738393063653766663639303838323764633335373866356466326132 +30636664366663343338323331323361336363316134653761626635316265366337373936376566 +30333133343836336466373331303439633363316166366366613462653631313532656166393336 +32656563643438353239393266356163333038356431393935643762613537323831636230626538 +31343065316463376365336634306535366330343763356235306435633765653331353838386565 +30646264386337613963656461383839616537373861316462316232646162336139373333306331 +31643838333132376137373865383531313538663765353733343438376539303537303031306666 +35613931623263323162303730363434643038373239623762363731613963393238343333623961 +63303062656634303265393736316132336534663738666631623962633238626339663661303165 +64366635356537363736323961613837346632356636613662306264373364633332653534623364 +33623239343639663431333339376235373761653837323436666433303463353932313134306664 +39373666656637363231643736373462623934313732323063386631396133323733353565353763 +31393165616264616435393165666337646162616366613135626232363430376538313237313633 +63623461363166633738333239643035626437303061393565323564393738313966343433393063 +65316435353139333264646164383864313033343235323233393663356532646234663539333530 +32663732323839353936623665663936666534386464626530666436396236623035313936666138 +31666165346435383664613135336532323035376536653935643266346462396664633031326632 +63353231356131396436306564303732616639303730623364383734343061313135303137303461 +61626562363935353564316261313934393331373463306432613132623034613763303266323864 +39376537366432643135313463326632636638633733353565356430326238373662376333613038 +35633039626461663937656561366336623938646265316432396364323236376436313032623038 +35643761333935333463353432636637633364626230396538303931306436383765333439316464 +37376437353731663038656465343530343036663261373163616331616664653165666139363066 +34663539303934393730613738353739303864303433346262323930643266643134343766373137 +64666437643639623361326532313031323232313565653438336264386130646335613538313166 +30386636636333356566306533363636613638303139373937333530633866323765313833306138 +38346238616236306165396537353532623030373164633538353766336163303561363966393964 +63643837366666666464623537633133343437303566623665383462366634643339396663383530 +39646261623432633034333739636661376437306235306565333934313863636163623230323435 +33306632313335656633353562383832383365386334626366383035633263633766613036653938 +61346262383461666236303533303430363436346137343365376338313131323163323236303832 +61656162323664376331363430383437646136326461343763353063643665393539663064616134 +30336330326332303263373236646237383639626430313839626565303565643031646334383835 +30343763346561646263613765646539383763336333663430616537326238373039663565633038 +32353336316436613532383333333766356362626333643834333834383765363731656138306233 +35333561373566643563643935376562346434373838353334633430326430346638326461373664 +31313961613161653531656136613130313064316331373662393664356137393862323030333663 +37376132623736616431353532363966626462663439333236663836343435363330396531633734 +38363836373639643635316163633161613431356263346161356238383337323432363836613164 +36303831626637646633373063313831623231326564373962386237323166346138376433353131 +64323636326661613033393864393133323630393430346361646239653065653234663930326363 +32356663383035306337653935323233313830343731666235636336656262346535643332346161 +34376464336563646237383063303562373631323232333463626638366261316434613536636165 +32353337636264616631613639373563626533616566353432313962306266376630656262343861 +62386534633161366539616430616530613961333966653765646233303431316466356534333865 +64356166353364393263303666316433376461313561353033663466386263333332356462333631 +31653436303436363433613834626332383337643434303763623161356135363563366339626630 +66393731356563306435306330643831353831353164383832623166383431363236653536646665 +65353134616639666566653164396563623661393033353835333862663933346562663464303738 +62623631373837326332623966613735623366383262626531633636343363656438313334386466 +38336565663064316464656637643839396239303166386162396638343863653665336231656365 +35346536663563613861393138323665353036613037366463343537653066306364613035623136 +39653264366137613537393939333034303936633265656235346163386237613934623865306265 +61616563376565313161623532626131346262333833313563613634626531633865633137373035 +38343834653635313664616566663964333931346664663535396230373962383061303662653134 +61653339313334663262623230376436323638656332306266366236346636643835623630396162 +37323636616434306562623866386432306234656537373033353963613137353533656539353232 +30363331653539666434353630363934363363353237373163373931343865626335336234353264 +66613832373266636234346431633830353965393238313464653339333237343235363463663535 +64353533376361616530363139343735393361613466336565643165653938376563613436363931 +36363535666366646631633038333165393930313033653033623762376261383137663661323766 +32336161306166643138666132393834656335316366646334326265623964396338626532396262 +37343064623635303534323461623566303365303766613035323334333564313263623964396535 +62393935303965326431653333383030363938653064343537663333643562623538323864646437 +35633838663031663732636233326262333035373438336538623236613038343262613763653236 +35353363346234353833333434636237323733323937666261653663653565653133633035633535 +35336438353963366237613837363135623663656433663766316664306561666639613637396461 +31303761663366656165653639346332323632313237643536333332366335623138363466663036 +62663433366432383661313432633830663765653261306662616334323865633336373263343233 +30376636633762353363623764376362626131343562613566393265306566343963386637616639 +34373530326162363130313465313066376534326561626332323364386631353834396262393261 +64346461316330373237633565343536613161353266316663353738366235663562393039373466 +64613936376161636631363036643963613065623764333232386662393735363361363364393038 +33633464326666656233343838636433346537386639353966326437366437636363336563623065 +39636631346432646464323930613162376461363965326365363339386361613333303239333439 +37346662333163376164386161333131313136303631333663363833353838313065323838383666 +36366237613864613835366431323863316337346562316561343738653361366436343630393530 +31376565323738613431656239373637346536663539653166623561343262306165343366333836 +39636135313064383762396264623361353865303530306162356565313261623338343965666135 +32656132333934333535366463313336363134623862623730323966653731666531656138643765 +37376463303831303561633232343535323564373365303063333764393332373737626534366165 +61343865333530383730396135666130366636363166616463396533626434393031643466623161 +65336639636333343564643265366461373930333162346437343536353538353934663361663561 +63303133333165646263323137656131303762326264636664313861343462333031323465643134 +66313837313961333336623362323165613361633561626430346531353035326137643637336265 +36626165386166666337613333623436383763313839623334663664633831316435313766313863 +32396265393464366265633230346131366361356135306334326536363861316263386264613332 +36383237303965626366393062373035363838646630623839363330303638303565666663393938 +66616535623935386439343866323061313738616632626361643830343534643238386431626166 +32643030663136346163396665663835653232386532643439656238653332636365396132373166 +37386563626638356432653065396138393736623737316230623432653736303637646535383730 +65353930346365656562373539303234636230366563313665316532346136366565353832336265 +64636363373139633765643135373261316532633963343038616630323132376436386261366431 +39653662393234646662333065623537626235386363623730346566643563656536646565343535 +30333937396434613338366536643039303431623265316534656666383533306131333361623061 +36353363396261663337653563376139643032613362643136303061303361616634643131336532 +62396562346163343034376261633538633537333137366566666332333565666461663531653231 +39353635376462373934653036366538623963656463663430356238633038383563343137366132 +33643162303333376236333666653764643935343662646265373936356639323833373037323532 +37393338353163393831383765383434353638356466366630653939613463643530666666653938 +66346261383331323134373833396263623664313736363635623136653233303537613965626435 +36643932393865646134303664663936663766326631663234336634643162373662613031326664 +65313064356535653131356635333539393733313066306337656335396364613965626636616531 +64383630663237636364303931633033356464663632333231333430376635336237653364656631 +36383331393764643238326437396664613635623463396335626231643335333035303736613430 +32613738636136646135616433623665663165663764356666666664393432306362376238663162 +65346439346530613735313539656635346637393066663862333430653863326266636137633738 +36336235343733363563623661316632626364353832316362343832623566643836656535663339 +31376266353730343463323930646135306530346333346136613333613433626135386161663465 +33366564616162366333303463343636353932313136363538636130646331386265343266616363 +32346262303739663933303964613836343138613162336464643832616331366366613531326564 +63376366646436393434646364313261363138313065343730663962313565666466356563666332 +62636466663966616464663264623435323437313232643462646432653164613436626136366466 +32373863336635383961363565346261353235366235656237643538653236326164356432366631 +63366539323130656364393932383330396461393563323464623934653931656537313031623731 +64643134376664366436626264326261363138363438333564353732616232306634346630626132 +31653339376664353237306538613337623464326361363330356661363339316137646539626435 +62366661356535366538326633643763326165316231356537313362333761393136653339666239 +35653462653034643535333738623032313936313631636135373264313639663162653361663963 +35356361363061366334373163366135366538343237653535396261353764373937343161643234 +37343236643735616563366339336165616638663639646530326436303330613238343537636562 +37383734363434656465643830303735373964393435646166393231346430306462643538666463 +38653133303131393237623163643234393663643736393836356464656333356235656234663261 +65306335396533663735643662363766663231383264653562323135383163333633626631643365 +62326362656236653932323435613736633162633230663063306132663966313031333662653464 +65376336386363633337366335656436316166336264653436643430393465356464343564333265 +35323138636430326365646466636531643830376562643439656464653031353265323936336434 +32663666346237393261663066333661306338303065366238386233346466313538346635303064 +64616438653266356437303234373238346336636333363461363831633661323034663866633535 +39316132346166303365663861316137383264386663623964636362373666323935356266356365 +33346365633862386631323830663238626264393439626135343438666232613966353038313066 +32303131306165623630663535613535363164626131613663323266623632623238373561656563 +66393430613064336365356635313134666339633865386134326636336239393965356635363734 +37363433613366383631326366613334663365623932383065643962656438346231376264663464 +64396665336161303461386336663539663761333532353861646234373063393462343339306631 +37336231633535396431393530396636306332313938346531353562626361316561386464333537 +36666435653638316439326431383834313763623935373762396466393761356530633030333366 +62613533343264666561623935613738323234633864333133626535306636313335363439613036 +34306636343764653734356638376532646636386634346539363365313836313738373033666537 +36346633343231336434366536383461306239643337393839623236363935353430393839373631 +32366337613933656433393333353030393530626530393666373333393161386630386430633965 +39616438333734306433373164316463663938373037326330333766393661343564356532383435 +64343862616333323564313862353438636162303731383138363361313834346563313866376164 +31656464323138373564353033616530383061616536306131313730353036393538643032346363 +34653734373738646562303038396431653432633332363364626635343633333234346563623935 +62633166646161393963393131383338633138306438313331663930393261663536323063663635 +62346662386264383230316134363930393561346133323066333964623130366664373438656132 +63663538643162313064643765663530663034623834396634613039623064333233356466383933 +31323439353738623262613234656331343437336665343264646130356636346462613865653837 +34306439663433366334313465353335646530323231313265666637326465636366383365373666 +63396533323332386463626435396536333535346438333632346137663964613630653634616562 +35626438333036323138633933373235306565356636333834313830313031633430636163323366 +30373865343836353134666631306237353461363632353135386563336337303537393366323666 +39313465643538643632333330623635656137616561363939356238363936633635386232343935 +32393137613331383336376239346166396563633362613765383364323739626464343338333265 +61636439653734353338636166366366316132363938633338383433333936633461383061633132 +36323032303038346638633535656337366334343534343864626664386339323830303264363339 +62336635303363333162356238356533383562376639313335366530333733383237393465326239 +63386130353037653066616530623961656234383261666563336264643131343730376636653163 +37653932643931653932303164383836343161323466633061386431376537383565353030326536 +61333239353139346461356465323065346662326166303339346663303131633230396337626336 +37623061366161613232396435373566613738386339336638653536396233346535376537633536 +31343963363232363338653038393836363538623038636431663338626437396331623532346666 +61393661666231653364386635653638383334366664613235633266393639313666373434323065 +38313230383932383434393436653864376335346661303039613030343136643037393835393534 +31663361663864323535663337356133333637383338633466633631643539316264386264393731 +37386666343537383361356363663233366461313433616264323165643566646639336230646337 +66316161633134373564303736366635353530613632373862363261646638356561353232386537 +36343961616666636166333462666164386465383635343739306262633731633864336130663666 +62376431306161396434653730353530373063626562626661613764313365353432316333346434 +64373839383936326536343639343037346562303637663038396664376536656636626233643036 +32333132353636616561626236323434356431353863646464396439313964313264393435633132 +61363565316432643031343861383561383562663436343535373864386533633162306239333238 +65393731323061613830303863313865336562373763303836346430303265353632353930613530 +61343536616162353336636266636665636362393563373233316232336565633061303333643139 +30323566313663623936353163383537323334333761653737666635646337623636333137643861 +66343337643834616661396139636538363166643933653866356338333561396230336365333536 +36643437663066633661366234643436653631363630393366316163386139303337613865643961 +63396163343363323132626130653930653934633931396535326637353963396663313639366666 +37646662376161656565343835373762346461333732613337346566326364343132323532393564 +30356237353038643439623439383964636465313363343531623764623930646466366563656534 +37393735626566613837623632623939626138386362643163373062343933663934383237346236 +32343763373163366439633864383035613433306335386363363361633830336432386234323338 +31633634656535633330393332633132613930393037666266643133326136653862636665373661 +30353736343164613031323830626261646632613831303734616238326430303465343563663638 +31376465326365366236376638336364323839313466623331663833306339373261623436323266 +35346335386362353330666539633036653963613065616364303166653662393433353533303634 +61346234316639323131663031396131633038303064353833653064393139633737386163386131 +38656431643262386161346334376561633761346330326439616532393436663161343035666637 +30626661316431633263663536653364613461346462636631643332653131313435656365613462 +34396464386533373537393165376133666163346130663233356633633937663435353263303536 +66623663633435383434623833623334626266363730383862613261636365353336643336313030 +33313464366364666364376266333332316663663336393033396663386134633461326361356462 +63616666366139656135316239373930373737323633396163306464303265613534663564666136 +34346637383436333039316537343864646364323931363263653261633161633236353532616362 +33323766363632663434646431323662343637316236666461386162346636666539663265333362 +36363066616231343332346633303762633636643532343065656638386433356463623566616365 +38366135373336383363363637313565633466313862393463333862623661636539643839636566 +32653137383530663734613561626565613937376161613964616233653338306134653461366162 +65636661313338323738323335373739663238333230316133393437343530346265376661633637 +36643939613530646134663931376465323539333062356135376333373361643831643331396333 +36633431663630623563626639626336396363363632616536613264396631336339396661666661 +64303138323835336631353335336635373138613163383838373961663831663364393766613264 +32363064366365616561343635623634393434323435343165343137393639336362383537346632 +37656537396365363164366435653332623432623030653437626637613433636266343231323633 +31393963346164343631303162333739623335666566313230646666323964613733363637393637 +61626463306631323034643138373034356131306662653964663639363766346536353435363334 +34363565393061303236336134656433343533623233316230363461326264643862653639316266 +36396338336439653030313065626261626232643337306537616463326465643136363161393763 +62353236336331633236666634653933353665326435633463393566333966363163653037306437 +62336635666436623666636235303039393130373530613636353561623438663038313932383635 +32353133386233306334633735333231393363626631656339343939653737363035303461623834 +39653166616363373664643865316636646462343666326337336466616432323830316664646663 +38646635636631363232393062306635623530356237366237666134316631313336303838356130 +64663634643333366136373533633832623366316639376564376131623766613833366363623136 +62646637373539616662663462643164643665316366333532363633666536316332333035346237 +37623961616163396265303430366135366261333133393863666533323133653037633864613832 +61316466633764386430386632333337363432356564356531363938663966346563633435323032 +63363964623065633562613233616366346130633138646433366331323563643564346536306233 +61343966653065663533343534366334653738653566623434306130376336353766323935313938 +62656638346431363633633363666437343063306463366538653566323161333861663433613736 +62646564366563613630653737323961666435613031333961366138316633316463646464356238 +34366137316337633564656461356639386235303239613737306361373532313331633933303363 +33616130326230333636616161303063306134373837373838333031626338643833343737636365 +62366434613039393066336562373363373939623762306464643263343066376465653535636530 +62303464663661353835346439636666363264373461376135336465336665393362616437363139 +36653766363562333666363538656266393238306365653737616366626662316536356363356231 +66636665623565373938323535653337353937653330383935646465666163333736623236613934 +31363862346465646261313765623339616666393334333438336637383666333565373462303531 +34393437633134383338313331623362303962386438353566633338366633386638343931353965 +39336662633430633161303166653839373663326130333664383038373762616334373832306532 +63653336316238663336313239336565663362323665306465623066316331303330646263366331 +33333633646261356565326439366130303536386662653437326435313566626138323463303264 +30663832633637313035343162326164656531303062613836376438303734326335333035653439 +31333530613938646662663461386331363339383134666235663764626166383331316166626238 +31356430646262396430616365323638373364633135373536653965643433333834333036313961 +66386262663733653039313839633866613535313562303435653238306561383431346562323130 +66323662643633623033336138656131313061323837663336303961313064663962306634653238 +34386661343637616630383261383537373364323433343732653561393766356639643836326661 +62653431303539623261663563306165633837363937356630336261343331633833666434353337 +32643363623439623633386531613439383962663631313739356261333363326534393964376330 +34363039643161653366663734643739616638633062373734303831363933303432363163373538 +36626534356465626334333866366438323333336165623936613063343032363937653065663232 +35343839336331323031363534323165383065613264656634656561623962316537373261323565 +30666535363236346666343661643466633734636265643135623135626364616465303036386338 +37333036663635356337363837373539343738623738646262386338316134643566663062396236 +39383930393932343261616166363332643832383866353763663535626261373161663636333438 +32363062336434646365393465316632343834626239373763363636666134636230363661623231 +39383130343261636638326464643932303961653261326335383639653561333132393739383336 +62636435626363613864303939666636653036376563613564333633363237666231373762643735 +31353133383939613539303835376138626134333066393835303764663863613366326539393931 +35393934376136373937363065663938323731376530303565623034396435373831326165626661 +66656337326362386664366361366431353534663439356137623365613462643463396163343634 +31613336626634323566616537613730626532653362383363643232373965383937666438633866 +37383432343061313839373534343234303564666461366265366230386463643536643961626231 +30376637386439343337643030323337663532653662383132663562376133346162333239616231 +61313134303965623262346236326233363565383363623534613431353938326533343464396537 +39616334666162616139383937623862383664356264613630303465343061333266303763636234 +35336564633530383662323461623536373838613664303164653735373964373039626433613066 +37316666643563326335626332386164323035666161613630373334356136316364343536333533 +62653233363161626432383739386663386134636431363966653465633265623765343735393265 +63626634376131323762663632376136326664343238376265326130363837396230306630653735 +63643262666134383735633530316463613065303637643765386638396163366634613431636633 +63323666303530333834353739653239666464386632386235323361656164393130306236316531 +39343166616436363666303561333164616365303830653637613261386438663631653833333962 +62633939313239336161623338303731656661373365383461663261366639633630383161356132 +61383636353333643235316638373837663665653165666163393463356635326438326134336361 +66343433613531663764376130663235393136323765333033613336666164633263663735643865 +38383030343432316661643065313430386335356661396336343134383964663964313338653931 +31633861646430386366376130643935633965643464323135616261343131343433623936653938 +65633834663335666561656635316538313636633164313364613963333730333434303062316135 +66323761623364313030333339393465306339336263396231623035323664313463663138326536 +30313934613832326432373130613832316166646439616231636562303234313836333536313661 +32626161373735373964316565633239306534356530396366393232613064666164323634356161 +61326332666562336434353733616663303637643335363735366334343264316334313630383837 +38656434653562613164653564613664616239363530383735343164303438333433343737366166 +37336664393734633239663366326235643832663465393135373139373934363663353163326562 +33333763393431396466356537626465636464636132323538383363336264656135326463353537 +38353065366635656333356562363762306134393537373161656264326665643961366363366362 +36393635333939363838663133343161356235303065393561613766656365666639303563636531 +63656464343361383864636532343164373433666334343636626639633436626661363736316264 +66306439623365386365376538646430653131336632623839323033316533376636636630376663 +30333161643939363431343534643138656530336239653338343263663031633066313432333939 +61306164356461643466646232333332396161613463313935623231343466353163663061336264 +36636339633539323139373564623366323838356463663138356539326136383432393864383863 +64663635613562353233663164373565313562326361313438393562666336613433313363626431 +64653931633932353866356430343533633562643461353730663665323764393338343466353966 +64333839653135333338316161376432393738383334356566636432393535343630636161363737 +65333962653933326330333261306661343533363331656130323733643162383537353464356466 +35343736346562656537633161633233356662373837626435393139333337643732613236623335 +39396639353863393638353136653066356164326134393461633962663636316139386361633536 +61333765633631656438623334623562623637303061656333646365656635636266393363336662 +61663338396533363631643565353537373733316439386564393231663034333838323034316532 +62623361373233653430386366393662316362336539383764613361616136623838326134366136 +64303434623938356161323063643333343538386237373730363065383436653065653831373133 +63363239663333363562633538623664323161343233346139643530393964633065333336353930 +39623933613837343966353534323432333161386665336238353838373335333534616666616530 +63393538383031343530386666366238303635346662663333653637396530656635613931303862 +62383035353234653864623562363834663563656338666439623331393765626662626664633939 +30336435326265383036323037626665326539643863643464306434323639343839323864623738 +64643161646435326637323662393435646364323338323336316235373330363233383134343262 +61656262386462636430366165396634653730376132346339663962343434643032376431353236 +33333938636161373466376631613266646566643238663063393630336561643934616663366362 +66626536346437363566393866313639303935343362646332616265366139306263346235633864 +39333266383064336239643735363934636431366636333133653437313662633233653236386333 +63353838613636316264366239333830646631636463633131356437353465333062363464656234 +39303234303535616530343535633435376665663131646539303134653931633362626630656236 +63376133353637386262616437333639663961656565353038663365393362633966616430366539 +38353262633462616436303166333334346164656366313537343763313931303437326435613735 +32323361313264333532626563353466313939623932383239306666323463633531666639356164 +33393730626239313531633366303537343630343431323831386162343865633963666166333162 +62616235353063656564623161333933646339626336303530306236663966613436646266373033 +61393736376630626262383730663961663937346136633736333364626661643831313033366237 +38626662613837643566626231363739663339653264343162653135613937646533363238396165 +62666139656531333232656531316639613730633966613961393262393137626232393139396262 +62323338393265323239366439323133326530646530643138316339386236653262656635303465 +38623865646239353761313530323665663436663831636431373239653133393838353564353464 +61346133333434656366656465306566646363393533303334363065363931633933633566616433 +33316161646136383039336136666433303861643634393338323138363762356437623266393733 +30653039363831323336613364396561633566393261613764383533636237656630613536363062 +34623931303638303533653162363263396637326436346263663332353138323531653664303361 +30613438613231333563306431393363306562376538383233643463633937653966343265386533 +64663033333332646635313138366336623662613061333764336336366133613537373565663734 +36386239303463633537663031633033333561623530353361633462316336616264323364633362 +38386564383734613437623834343366623035653262353361656334666438623965353030376464 +34643632373637313532313433306632373835386531396438623666643839383337373035313262 +38313563323462373163656435303035306266303430343031663466623931373330383830363537 +66363532336430653831343737373766356439636537376365386565363536386431373933653666 +31353663323132366632303765343962343533373161313266613234373436383362666561376234 +32363664396265633039313464323433363331393062333831306230373161623230343730623734 +65306366383136643261653332343933353135656236633736323736656132303666613030326231 +33336630386638396665373939303133613438343230633063353861343836643434656466646638 +36353165653134623436373333303561393536363138353436356331613031373666323939306530 +39373865613961383937613666316362393832623234363463303861636265666332643462616232 +64353662663331363163303065623631313338386531366363386663666631643261646364613465 +62333134333163383163313833626265663033643635356364643465356565303966653335366330 +36636461346161663965373731666134306562303137363463646563643333343436663962633532 +66313538336562656334363437363263336232643734373339633130326632636536326233653135 +30336434353265343731616433366466643536343537643135626533303139303262383437386632 +64623031363961393835363332303039373665346366623766303339343631336239363639316665 +31656561383161643131373838613435626635386265623038303036366133356265303332363538 +37663863393439363236323437323233313364396230383635313336663961323633646539393030 +39336565643165633233643663326435313433323066376663633563633838306437363032656463 +63613765633830613964363038626137323464343932383736393335613636313764396635366363 +32313339656630396231626137313765323831313032323538616130326362346236663161633131 +66343739386565643138326366326132363732336464646564616165626636343738636236353230 +65393635353830303636343766336531643138643061626434353966356364343430333537313261 +62363537633266643438626631316636386664613961646636353066396266376430303836336538 +32393837323534626235393366383439303336643962643435386535376164323530346663656665 +32663563383834656665396339303337396238626630373761343730326431306138326664393464 +66353064333933373737643038623261616666303666333630393465623733306436323035356131 +66643639666234646334303433333065386436643833323435633039643161373361323964366135 +64613130633133356262623038326263326665653261366565333237316636316566653631303838 +35653639376136636539356438326363663265643233333530316435646163343335636463613434 +64343964313361646562376539373235613431613134356162373334623536613534613233623961 +38393733313265633730323338646337653434646339303231663166303261326537363231643434 +30353838343761343562653334363538623331353238303836653737396636663138383538333237 +39373435303364303838323132346366356433326163366162643931306639346663336662353563 +30306235626537646364353932396136323961313332643634316230366663373231383139336466 +32636636393737633666646466666563636137303662653131333132616430343334613562323131 +63326537633834613735313139613534643130326135653334316139303838343434353764613936 +64626130323063653261636439323035656364323765323036363636623863663036643135643463 +63396164656565313437383830363734353934313863643866623934616531653236613832653466 +37313735666135363965643339343037373235306631333130616230616337353731643339376165 +34613432393162623837373431353333303030623338613430356463323265333038663761313635 +32313962373461376531653139623033333136356663363234333266353039316431653031303864 +61373862376237663639643030323065396365313937656136323364613333353533393361646261 +39316636343961656664393631306235616634623762323364313137343535316432333761393466 +32643031373435346637393436313434323234383630613734346133323562316439396539336566 +65333366363963646361643735323461303039386338373732323264373566326533326538613866 +39393035303839333265346339316263356233393063323362323936646261643761646362626532 +32663430653365633361613632613464356637333436613762633434363434346239623234383931 +62623539646539353039306136616531663064613464306663656361626131333338343732623732 +33623030623533633139663663333436343330333566336233333230313763323239303365633232 +64303230306537353166306435393236303538386236313139323035313533366266333737666631 +39356634346335663262363066313932363132346365633536346363323337616563623566343461 +38366634393337303332356363366461363664663764653830653539616338333666313037343737 +65646464623264376263353265363831306264636566393039666134356336373562636639663130 +37636365366435336533313633333830613632356261636138626135636662633531303339303134 +63663365336539376634356666643164316531353634616361613139303465323730616438366433 +62313266396261396130626639313232376638633338343436623238396538373038656537333266 +36626462313736663937653063353036343230366333313065396535646637326462306538396666 +30643533653835343064373737393465366339373432333562663463666461316430663037376666 +31336631393832386634343338616632613566383364613731613038303837623837646563653736 +39616137353339366637393733386238626433363264373566346535386536393264356662303138 +64626438663934343266633362623564326366393037633364616664626165376462363664353635 +39653834393861626430383631313738303634373631623638396166656231346239353534363738 +39616566363437643537323837353366366330663836393734366535363530333265626134316335 +31643432383638383132616231343730633861353364626562386662343461663031663938653365 +34313034623032303339663736316238653530663362653936373035363063306137356539663865 +64376561343563393262376639643662393164636139343562363032323464653932633637343237 +31353630333262373237653062643637376439386662336262353836643034373832306266626239 +31633466326461306231303161353966656331336233363263663936343366653065623339643934 +30396530643538363664303166323832346230663733653839623530323465373639633862653965 +32303336336561653735343461333963666230373830333765303739383762663838363434633063 +35393236663932616237646138396532333830313837653832656137366463626534356664343261 +34623033333038313434633333303265653037346263313436656135396630626535623461333962 +33666236623134666332303833336261646237633437633731666238616465636134363932356536 +39356433396562633833333834306436663535653835343636613266316131386535653632356239 +30646337396463626263383334613362313530383133633763623230333633653632353930383031 +64363764386336363661396161656135313662356665643938363361366631333366663238646361 +37303031653566616361336334666336386230643539373363653363306565643762623963623130 +33343363623733396434376464303338343132383837363130626662646330653933313465303030 +33666665656338393330666535346338313834366339313331623036646334303866353433316332 +39623234306139616366653530303737316537666364623364396264643864356661643239313136 +66303964323561626537316330303737613638326138356333323439646233393039313432636463 +63306135366563656139643265663439633030306161313566613633626335633836633038373431 +33663866623338303534633536306461343030393837323834323337356533313733653736343937 +32613564373639353739306262623838306136393464626561303436366534376265393665383261 +31616362633933303332346238323639626138653638396231313962323566363135333633383561 +34366431643066633431653734393364626435326431383034613836323233373765623031653661 +63306537313066383831633461666234633466383332303066363537373862633238663666626237 +66616630613233616435333534656264366433383666333531333466343939643065363632363638 +34386336376532353661326137333938656366613937316536366539346164326339356631633432 +63643730636664663833326564653663656331643962306338346437663738663531313836633563 +30333831313933333238366438343532633136313132313534323739636563636531653138623433 +63663437636634653831386162653762313566376666646561623066336230383238333130323863 +65373936613036343230393064663561613765383038396466303236623833616462646362386531 +37343062613231386430303235396232666564383365393537653238666138376631633333633264 +62636433663866663532643338613931343731316531653166306132613366343434636364636463 +35316239613830396439623136373533363561373139353332623562393530613432306231383135 +30613530646339393032653865656637616634303861643237326233336461326131326333633337 +31393836363238656137383832353639323365633866326663316439663965323135396661646431 +32393764653330653634613966353731343832306136376630663431343939363336306461626564 +37616236656235306563343762663061663339333264386331666431623735336436656164313065 +34323163646466396364336361313730383636316636636231623438396165616435343336346265 +66623233346363333530643962613039623431376363313264613434666264616330326537646538 +62363533313965636537303462363839623561373463353232333730313633613637326534303532 +65393938353134646634363830333262353464376462653233663866653166336565393464613138 +37333736346238313132316564343636666564303934373361333931656538386162626562383362 +63326135626432313666386130663636653163323336623262656264383034663931383765393539 +64303264353130323337396663616164313434613632366537376164373937633462356561373239 +32626538653533663833653238626231616435336161353938366461633638396234626635636463 +65346561656562316332303037666266623062346565646232393435343638623361383237363535 +64353732313439653934336132336566313939336363326264633162656364646463616432343862 +65633265376536303432663431353132623434613861623463313338303632356266623933383864 +37316433393162326135353566363730373633623863383233303435633630393139343537363061 +39396534343534323637386432343039653761643262613130663234366661376238643062613732 +65376435343664343832613934383061326463386533323633343236613565316466653133336539 +36353334663866643038613931633531303937613362373938323638643633366562383962626431 +38393464613032646531306166616666646335333036663733363439363135373066363434633038 +39333562613531663536353639373937363634323834643432643165313931656635643838313939 +30646365353531636461653535393234326530376161373163616235346630393430326437613635 +30633039316635366530653432303839313230643031623664333338383139353333653734663330 +62363237626432366661616333663836646531346436346631633631333233663762663664343331 +65373738383135613437366536376262393835353763653032313438323365623365646362326633 +37326465323635616165616239353930353632396330633262323064316661626139653338633738 +61613133646164323734383362363066376637303431336239303165363734376134623039353565 +62613932643166626163653761643634666631626136373736343536383266636462666564396334 +63306332626165663062656231373661663433323739316136626665393632303066353866366665 +38323763383233623638303931396164393233633563383834373437336531363331323236303232 +63333035313936313430373263353761623637636137316336386239633362653236346163333566 +34636662366165313033316261303835323630376264646131383036633436323665353437626336 +65363965373464336138323032653461666132623966646365336162326634326636616566386465 +34613164376265643763366635353065313139363932636364353861366566326637643438333163 +30376635376138633738393764323765663739613365653466383033356139396163353234633734 +39356463386339646338626338616634633032663134626133323736366438316566616230373633 +39623738643464366431626262326336353735616631323534326332306331663036373662363239 +66313362653331393936656662623536356332343533393138316564633834336532323633316132 +35386230643431653138383138333232653239346536393937373434316632303939333662336639 +36306134643234306264646366643631383662383233393631653632373965333639396337633365 +34386637623636663266343137626261353366373831383630666635353835353137356636336338 +34363536336434313164303537356564333737643636613861323430643464356138646235333436 +32316631326464306633343736633862336363393062656434646332666630633863626265386434 +37633731653266316633313061346166396263633936346263316565616562636662363436646565 +32643266363838313334326163316665313763623635643937343538363934646338306464663239 +63326565656266393232656331313335313665363137363636646365336232393762633030656465 +37343034666563633763623861376464643861316637393366653766323735353734376131316165 +31303664653164383837343537626362613038613033333366303939376664353937303061623766 +34356263306436326364326439633662363163376364336539613061386361646361646331626566 +37653733333130643466383939373335316632303361636632386465613137306232653134313363 +61633837376165633262393537363839613361323563393961323764386639363739306364333638 +61306539663163376430643136303264663565343962633635363233336163633636326464613165 +31356234643436336336643361666539666333623238616635346539613233346638313536326164 +31623639303766623662356331363432306537623265316639343563626336626331643139616635 +62363038613230633365653631303461323031643761646361356338373034653736623063383563 +33393466616539313064316231393636623135333433336432316133383630666637366165373566 +65643836613464303534656364656135363965376236376235643564666134343763383133643730 +38316536336366626634383533313738303362613035316266356534363432333737306636326533 +63646266336433383565666634623464316233646232653865343164323631616132313833633463 +34613362306330313432396661343066336438306238356634653133376161613562383338333435 +35393437656261356361663733626335623038636233373233343437646433313332346465303435 +32313239373331393863636338626261646336383666373661336666373166376132616135386338 +33366664363037633735303536626364306539373564303431323033376365346635626434643234 +64353536323365343733376433323838646666336637616266303064383938646563306564366135 +36383063366137343031343836376237613062666639333964316339396437343131316537393161 +38343431613530393232303464333530343236393434663165303062343466373561663266333533 +62353634633837666237346562653864353730623265666232643139633032633335356363633166 +31626338343636613661653331636465383266616361393834333038653635373032366538633837 +35343936666230663431303530636538623761633964376261653133376666343437633731663464 +34663733303139663731623336356131386133376139323062616639613636346135633438653465 +36376164343861623133646663326165623236366661656265326130646432346530336362326463 +64373434366536386335363834653337643239396262313135353030316138633166633238653966 +62346435636530323932656636353262363335663135626338316266393463643766653166623232 +35306239383863636664653361303463653665613638386630663263313165306333343932333037 +36343635323263656161646430326639626631613132666634356561623830646136393666633965 +34623039373837383638313337363162353530313662396137346330316161303062613261383731 +64363733396130613432633662656337633631373764613861616561616135376230343362633739 +64353533353861303738393839366566313361623339396530323539663131313630663163383635 +61633733326463323232316234366534366664626564666339383134366233623264653437626136 +36306266626631386636303731626266383266323530356364646238613330313238613233363266 +33346631323663383434623362396530356637643763343836383739336235356665623463333131 +39376130373235353530303934323064623539646161643334373963663037346637373538313365 +66383733633635323662626661386464663365616563653337326232343966313962343835633961 +61313932633434623138376433346330653562336531333134396131336163383431306164646162 +63663464363537663765396237336166396137323161316366623439663334653338313939313866 +66343938376437393062666166343739366230633438356564633465366466346235373162313238 +64366232386439613330633966303663626537373664356262373164623734313238343765356538 +30386636373432356539613163646562303539643962313263353065626135663338373736306332 +63623639316236616565643538666264363365303838303637333839363435383739396464323532 +61373538626235646365396139353862383834326636323266643836353436633762396532333831 +64303563633634393736313361356433653764363333396133623834373362313439343530333438 +65316234376238303036663833373961353933656336383935643065306266656439656238656332 +38386662383364623663623037643536343832356636356231663165363233303030303731333261 +66303961373539363535323735326430633134383662656432383833613039613830663466613964 +66366133353466306633633536346463303230653232396261623832613935613665383962353564 +66306532643236656335396461636136383630333530326333356161366134316230333032376330 +38396363613938656633343862333235363461333762356633656530303434343663646163323238 +39646233356366633437343262626233623730323638363635663534383666653137353961306462 +34383534613261653433353530353963616630363834366238356134323962666663663932656130 +38333139306536633762643866336333633665373439633864316339356335313362323862373836 +61643132393738383734326637366334613038373962626661393239363634663635336239616462 +38356637323234323062313731666236313635316330356335333533326336363131613330626139 +63363666373734653062643032366638383035313539656335356665363836363363366365373635 +62343766623638393930373164666134326661373931323364656333616634383461646264353063 +36626132323632623963613233326436363830303565646662333739363033353766656263623537 +34623831393663363766323931633561616138376234303531356238396630643238623366613565 +66663636323333383931623633346466626162323336333634366439613932363064333535343336 +32393538636136376664633238346437633464393963623733613636313536666230313632346434 +65626238363661666664373833666164373862376134613461666132643534343930643739343662 +63666534616638373061346235653331656235613336666562623032313431366130636431333730 +31633130306631353233323634626332633639653963643831396437376539666137613336313337 +34336638633562353030626366643939366261633932623230663534306432616631363465396632 +30383539656538353365663038346663356236393639383739646238313366653536313131386431 +39303232633364376466356634343761326631396263393831356166303138336663623234636261 +64333639326539333466333833303734386332316164643130666231313535373832363735303565 +64376461366237663331343432656665356434653738306433306336343734363463643766663637 +34623032373731323332303763336638396563323839386330396532376165316137363564313438 +63656432346566363666666231383065376462633162616364626162363565373630303233376532 +31363565343263616466643139623865353732366536353930663632303164393238643161633738 +30613164326137303663353939356439363364623665653233656633366236313632333030373232 +32646637346536353736643132326463383036366138336661326534653731636366353634353263 +37393566393531626535336261353830653239613033616533613038353637656335373434353435 +33653835613831306461633766313230656661643639333564356466333130663563303061663030 +61326134376662323737613536663932393932633732306131323733623264343833623636666265 +36313035333336363334343835626162363761333038323366316433656263633161356163363962 +62383662313533613730616630623264396234376634663034353438633339653231646338313933 +34313566643730663363646461663037316230393231396430323135623239613736343839343238 +61613265653466346265333735633363656537333865623332393164663135306137383063643337 +31333065663031616131356538356637656137383763666265653933333465313863373734666538 +63323334333536353234303263653036643565643035646461323131363762366332393461326431 +35353366396433613562383132366563323062306138323038643038343364366233343663353235 +33666533663265336266313065363166366136653638613761383335346436336663396130653732 +62623265356363653732343635343237643265663663656433636139393739393635666236633233 +39633735313737383136366566653633633535363435636462633364316136313136653439396539 +63343431643666313837356363386638393366666137323163313634386639613032346233363537 +63306435613433646439633336386431366262363634663836323665316330653836656161316531 +38336533383934386138623866386532353536333861336661666638623766336264653331343331 +39656130353633363232356639633439636165383733636464353764653831653039666631313963 +66633964646631643137333165643835363831626130373437366334303234396361376261653037 +34313837363364613666336134663863356535666430393638633431336633306437356166616162 +37663134336530373235366361663465303166316665383630323862333039643361393934666136 +65626463633361666438326564633062363134623964636536636430373233646232326532636366 +32646437626135356132626533336537323030346334366666386334643233613931623535356238 +63356262633333326636636130393962636266323163353235336330653330623431643862346237 +61313965326136306263363161643465343436383539386163623462363333663062626133666134 +61396632636233373639613136376236626263653637396562333539383138666361326437346233 +39663661626166303539373666316361303064656638363965656136313635353532393539656532 +32666263323861376538343265653264626630353663623938336431663832646430343932313437 +64623766643032306530633063386131326134313239353463633139323436353238393434333038 +39336638663136366331633533343435623431643333643733323837363532666431303861623965 +34633361303336383632396161393932393933373030636639303532363135376338656162356637 +66633662356231643364306663333366306164663264636566643539376265663838393536623837 +30396538643939313532643663383132336532326632363638336433366161333835373736306337 +66386361613365343233363038303130663739653030663130313437333139363563306338366666 +38323037643035393433373135393232643435373431646131373261613561336138383937393837 +65633536323331363135353736636162353435393662396237306336666365326337616338633336 +39633665353635616138656337306165633232306265613737373739643766653331376163656637 +63656265623030316662643665326433633066303233306162383964363537393636646335363336 +39366133656264623865623162303230383139633337323132386338393835373936313733613934 +37353131646430333138326661313935386236303966633663383363336630343137376663643039 +65626631653436613235343133376563623531656137653636666361323834353930383861373764 +61306132366263636332643236646637346331643366386238336631656361343862653264633866 +63613462353032376563383232626665343837643932366334343736306435626262396634313366 +38323464393663626136356438303536303135643530303232356464326130363036343935636562 +31656138376239343265333062633130396561353535346562626564363464616231346531306538 +63383266356439616661316666356239383265393064646532383535656261336434316131396632 +64356136343630393263646539313834373166323439633336386666313065613036313131313236 +63663438323063373264393334306666356231323163343162306336646130386161343433323335 +30303333306362343439666266616562616237306263323437323462643966663662653631623235 +37336535346562323438333232313264643531383338666531636164376333313063333637656165 +30666364656238633265353531373832313739633534646332306165366533373136383734316336 +61623137303261643632356131633331393532336362323961363834613638363765303964326332 +38666363326136363238316432316363346335633934356464363434643661333064666430643333 +65373265333432393964613036306130636131623036666430343632323031663662303966613165 +63636564303038636564663935316533343539373430616238383737326132613938623739356436 +33303737633534386537613735633732633738316636636239626630393032353532383862646231 +30313933323638396464666433643434333661356434313838376532613062383464343765613434 +35356238613137313861656537396333656132313330383862363833616432306532633830383434 +32613133366263313136613735623233333465616635323736336264393634303065643834383334 +63656534313663383864303634333431616162643165336465346630376665383436376235346361 +64346561343730383837376463373561613066323133613338616534316361663664633432306632 +61623265343839653262386236623631623562343962363630386163656262306230643933306231 +39646465666236366365653333336363306535663261323730663735363534336639656436346430 +38386461663931313937396538633632396139616334346332623463626430396466363861346261 +36616266616363396166396536373538656265646531336663366565666233353434636135306233 +33363134383538663132343863663063333463326439383833633762623765613065323036353432 +61633636643938396464646664383261633735616531363761656335626261303465323166333938 +35396663333464653566656532656430303231663462663731333465653434306637353334663732 +31623933373531646234666330393538303833323437636264666266656237646535643133316137 +62373233393338383363306163346565393238613465646162633266383863643139323034636264 +61333939383466303830383337366333376263386665373536333235363236646636306234343136 +32653038656335643637363065646666396436346631613933343534666665363161623839353037 +39333632383066666665323834333834386439653134396134626131636165316638653166346638 +35636262626565643330336135323735616561643737323362666564613765633733353434613063 +32363332336337303665626664396366303539346335343335616438323138613536636335643739 +34313235316530366365303033393832633666643134336333343233336363323835343737303261 +61393665666439616362326637633863373364636137336334333762343631663662376536656232 +35386135333336386365303036646662613934616130303435383734653030663538336339383262 +373865646237313039383763646636336539 From 110c7aea9a0a6076d6695d0319333e01b9ee214a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Thu, 25 Jun 2026 15:36:15 +0200 Subject: [PATCH 17/49] fix gpg public key format --- environments/kolla/secrets.yml | 3158 ++++++++++++++++---------------- 1 file changed, 1579 insertions(+), 1579 deletions(-) diff --git a/environments/kolla/secrets.yml b/environments/kolla/secrets.yml index de3e29398..d66f89c32 100644 --- a/environments/kolla/secrets.yml +++ b/environments/kolla/secrets.yml @@ -1,1580 +1,1580 @@ $ANSIBLE_VAULT;1.1;AES256 -61383166646564346162373431373532323332326462623763323561356531316162363662336331 -3064643338623533366562376231633135323566613630340a366333313266626135623333363937 -37343735663734316265656365363537346231363366356564333337623266353665653235656263 -6562653335393866360a356633626364643365303436386663316633616439323232393033636533 -32616630633364643538373331313366653230376165656137303434323166303363316165653365 -31393631363232336534633435623336343035376333633361383836663664383965363035613132 -35653233323065363332356338306661643835363134383535323130313335346539303561313064 -61376263663539616537353462306335623362373265373963623931643133663462643234376665 -35303731393032396366633738616161653237393662613765623733353866633539666237653137 -39313665613834376534303336376331383866323732376233396439333363343031623966323261 -31346264356339646364303266666665643930373766623562646236623134373163653138333237 -64306138303631326132363662666339303739376630306461386263666564623938393664623861 -36373433333432613235396461396134646638666661633462643839643164373632643032363038 -35613436376233626665663263383736363061623066616639323530313765643839633931316364 -61383830646563343934343861353637383136643033376431313333376331613063343832323533 -34386637643662626331356364613435643434623537663063316165323437613637613439313633 -64643035356436653062343233356435353566623962386266393261626161336238393366643339 -32353762646630663730626161353430393037363230313030343431666664393431383761643931 -30613031326563356665626432316534616530323566343065356366323433623432326536343930 -32656330666664366637313265636239383835616162356531356434623337346139353031353731 -31346265313061346462346433633562646636393061313434393530666239353238386334326536 -64306536383730313464313031313238666337303037616232353764613634663662623433636537 -33313466313663646537393837663766616638646530623830323934353661343431386663613435 -61333934356361376565653466663739366536633461323465653265353136623138653434653861 -64613065666639386663363830373333653931313631613264386461306266636637303864656562 -64626464326562623334306230333466383436303164653866303364633035656436633338333031 -32646336313465313630663636646639636537663431636638376462326561373965663630633637 -39383565353066633831633933656532633663326433316533373666373133333264303739646336 -39326335373337653034396431613431323032663635613739663238653861333238623131303137 -38666164363134306637613630396162623031663531363831663938623038343766343034303832 -34633636343261386237363230316161623735333133623161636136323636396132343739616263 -63646635306162373062393537356432363938333332373461356364366364636135326632616631 -62616466333361343264636663323938636434373566343161356566303466623439616439306639 -64336237323933343931323861373162646661306234633235313363646665326563663630613634 -62623933393366323130613734393236613638313334386661363964663263363838363965636631 -38343562326530653061656436346439636233333562656131303533626331346539343362613934 -61316134313664623862656430363863663531346139383938336630353263623132343961653438 -35333063336238663136303966663537623530613762373536393135656534643336303961663039 -37316234383437653762653230623066383135366131383161303766383965356238396535646465 -62316363383930376661666262623533386139306232663430323532303339396161353632393538 -61653666353162613632393933353064306665323931633965366435663461313838326234343339 -63383262313631383864383665623833343963393333393330323463313636343862346431653364 -35636562393131653136333930656436653965346131306335366464643734363365353233326162 -66303861376338393061663433643736396565363433356362303963333437636263373430373833 -63316663333736306431653463376263393939663565373839363834313233393761306430333966 -62386630316434656434396530623535336533303134313930663534626233653535313733613238 -66353465356233316463353364373736653262383236376635623962303432313337363634633134 -33316563303961363131643566613039666432323031363430633039656436333934656635633264 -63396239646262653761313233396338343731343463653435383830323130633334366365613065 -65303339653432653336363063363865303934343333386163316239643735653365333065363439 -34383433323961623138326435656132666131396536643931393762353934643035366463323632 -31316666366538393961396564366366646239643761303333353266643931316533303537396637 -39316365396535656439656436346437353837386263336434363164616166303262306335333464 -38343965623736346464636532633235343466323934663465656134393365353865616437353962 -62636433383765326461316534316134313638356237343739646437346566353737656633313334 -64383632626565626638376430646561383363336261653035333333306466396535633032353836 -63363639353931656361353131613361343135366538623864383863613235653965346464386430 -30623637653362363862396335343039656638343464616538306338356461333332383466326333 -35333036646437313164333764636565663364666334626135666437373664636562663239326534 -33653538373563313434386463613162363562623130653430613632633232373161383833623161 -39343735636638323732633062373839346336616635316465333034616433636231633465363235 -33353163366434393735643661623335623433646130383134383232616632343663623639323034 -31656163376666656462393736373334623632663432633762336137343761393335633730346662 -64333231633835363362353132346532333833663231316134376465363062326462333731353530 -64343965333963316566303730343136636164663234613962626434373732343038343833646530 -65326462313236653262386233303834373463323836363963653634363834636433363063623933 -32616263366131383666343366656237386130343933346339356336316562346632343766323531 -66333439376237326663386564623836626234383130353066353639326366323764323538653230 -30653936303866653266383331393435353834306136616633326631396234653663383931626230 -66643364613533356133626237353938313036633834343636643562383339383466626535393934 -31386337636564333763653762333531336662613464343137343365626465383632343564643830 -61616365656262386165306662353534363931616164363531376632376463306537396664376337 -37383733646262383331353437376532323466626261363337353633633834333862626361353331 -39383238346433636435666636383863356564633963623865636435303239353931326535353463 -30623861326137643036636630333231333038323064356561633031366135613830353265316465 -32663834343938343163383563303834616662303037646265366239396539336532346530316533 -65363636343664346433393337386533643162306238613666666235666234623833663639333738 -30393035396563396430396435663261396661663037653035626465623565303935653562326161 -30326139323963313037663736346461613063646462363338613836343162316235373637393263 -36366366663666633234613435313763353538353233613234613265373639313838356232363137 -31373930353138343530363034323930333465353137343461656465333233333563353265636531 -38386263633762633630636562306433366630313665623063366461333430313162643739313332 -30373939366561363037623133663566643762656433383162636361323563663934303661393532 -35373036646332353931346331646365356439653931623232373766373237653436363465306631 -34383539393562656565616636376661616639376666383564303239616639326138636235643963 -37616436313734663539383764623165643562356666616234616532666630666332616431313136 -62653134663332666230306232663265626361366566346430346533346531356363323830663439 -66626436616536623262363465323634623963393933613939343564326263626330353632623136 -65633265653462303730646666643161656538366433303366666466376162633363663636343164 -64363431666237356638383435313466353931633932376265636331353865323064396637613063 -30666139383230393835393136353461356331346335623061306532646165393239333238373230 -64333636366236343364396532323566666639376264626537353438333734353639666231373136 -62633432396537633862346463313664386634623532383235336263623137636638326531393665 -63623833313166323965353961323865633363633232636665333162623135316265366662313936 -66383438323062333662396463316333643231363464636130363266303537356538313039316136 -32323666666637376165313261366136343961383164336637366163366431633238316139636666 -61396139356238356531356339363066326165626332613162653730336333636636366232343163 -65626634326538333938313963623465643538356135303133313466646466353139666436343038 -34633236333533363964333861313538333463646563633161383336643634303630303831376336 -66616434356164303735623635363136656135653930616538666630333036626236323362333761 -63663738376637333762663361643663623538326634333065663639616336353236333531643133 -32353939386439336334333337303230333738363736343937353630613739363638666239333438 -38376162386564333364346335636135303134616164373434323432386632386638303632323739 -30633934333439303237366538343535666634323162666236633531373862633135383764373132 -35346263323032336234623164343032323234663132643837653763396261323463663736313565 -31626537356663323431306433616334313836363863656463623134333237653934616463666463 -62623334633966376132656334386233613836326334316639386538353333663234333833356537 -36383163666663333730383262616335616664343036393332393161356564653462306265643137 -64323166643838643361623032373661633561373661386365646337393863646434363939313461 -61666664346436323437626461613833623235323466653136303265333734373863666335346134 -33393362313734323165643430633265353135316138376435636436316339366538613032643931 -64626332396535636333663834353939336234346265323638343963666365653065323730386436 -32323238343532643738396165303561656332383361383463356564626132323132343738643562 -64663132613266356662333033663231343331393530343030386363383164663839643437346431 -62653738656434396130643965663739306134643938646361653463336662376631653039396338 -61666433356261383131353338643866336534663237306166333631356539303731316234616130 -65663336356638303765343838313963306530353933626432313563326135636339316339343234 -33313463616264396231303234383039386331363266643939333234663936313364383261656365 -65613764333533336366613062613430386632613030633964346438343766323034613937316562 -33633531326330663438383265373034373835643962653962636431623132366531353630653265 -63333130623531656365386331326139383465383738646266326265376263343037363537656263 -34303731353834353937393535396535636465333735323433633934333337353739306563313834 -33356263616262373839366634363731316464616366343934383330663766383238653762353230 -65663233626135303430613261323061383564306462336664313266626633396232633536356165 -37343466636165306236333034333333383135386463343462633337633430303166383138666333 -64613430633232376463633862333930633334336236383537336334316664323738626436613437 -31616138343461343235666430633430613463613066336331373238316131323439313166363937 -34643833396238616137633138373238636633356432666336383634346565653264633633616239 -37323439386435323632636534303532663837393834366238326265356336613965323032626566 -36633830666430303137623032636437643465393164303864633233636561396439623762396262 -36353336343166303862316333326636623661653334366332663639386665363462343630656238 -36336439633336633635326531653432386262393235613161646261363734373661316530653463 -62336361363262346637376666363164323663303238623565343431313237353131646332366639 -32343235303230373439333033396138326234623839646536373261613066663139656565316432 -37393633656531303161613937613364643462313661373038333937663765373839363432643062 -66306637316236646661333061636438373266663432643838383933333637306163353363656230 -30323632393565616261643139633662613133323839646431666236633365663134383265386339 -65306363613030623565363063313738626466623165326635383439643033343962333931393738 -35356535356539353265323235623833373132353135346230613964623465373339663034646133 -34313631346263323636346665636638663538633234393163353632343531613365346366366563 -30363463333232663439303738666162313036633334656334633031336165323664653539653335 -34306431366636663632643865303831353166656333386537386261653965623635623762303139 -39313063626264633235666437306161613465353031303837643564356461393765363338333339 -32323465323738643237616538393135386231396661623139633730636261346462346166386333 -65393464663662656432376532623662316434616561303435626664616366356531306666396532 -63373565616164646362383537653763643339646366613439323031306234346235313464633335 -35386239353730663930323933613766653930376465373530363635336462636437306434363439 -33623434666563303831656166323833623866366330633935656436333865303834633032646232 -66623731363430363836356661343931633465343661323866393366366661653030303934363863 -63376335373162353333326630646231653766643966353766303832393138663034623566333930 -30336434633735346539613031313839326434353335653538396162343030323762623861336435 -65326138613033366666366665633466626564343435386132306435396438646535653837333535 -61653034396163313232643130393832313961326263653633323638323739303935356364663236 -63373037333561643538313634353530656561363836313663336432366533653736663237393464 -30373135646539326439316266306439663332356436636436343163346436333661643561323831 -35393132623435383266383834326465633234303233396139396561376533346462353935643135 -36656663383165663635396666333331306163356335363039323462336264643636333964633461 -39333631343565386164656236363734396134303566333630336539326361323561316237653136 -31326239386133623766643636346662366530323034363363303431623738383363373935373935 -33653364333730336134326561333161383332356666653961303932356636343032363735326633 -62666439303431393738306661316364653964663362333665383833333037386633396665333932 -38646564623931623862306263306438346663373037343761373365373138653761333736336531 -32646537643463316466613033373236643366333563303963323931373730356139373935313365 -37633533646536646263316431653964663032383463373835326262346430326634643663616336 -35353939386130306633626464343439336662393961356338646134643130633838653064303566 -35613763303633626437313562363664646333646461303139326536393833613661653765663136 -30333532366136356465656131323239663333343862363832646531646465343162313266386665 -38653762333462363961303230366337653438336234366432343966376137353764333365656166 -31343833303364303761623564616362396230356363656332383535323061333331353465663066 -62393938613137313632653964336166326262346266396337353565323234306531313538383835 -64643431663737663637663966393833393735306663366134666366626665613430393834633331 -34386333303039633463626537646632633636346132636530306262666336353666633866336432 -63653539393431636138373161666333663936316165626566363737366261626164623364353165 -34316137383761363030623663626330646463366639333164623533303664323462333665663335 -66383738313237343630643231373233393531323239393864376638613638333663663930336139 -63396464633337333761643632646333313432383337346334633231643363633536313965626661 -37303937623063326330653430343435616533356239623137633036353735393666393861613138 -39336338356439356133396634336133626237326162396232386139323736316631333736663331 -35373261313363383135656336383937623662643236356434373936303031386135393862623136 -65306162623163383835646366323565313834613366353766393362636230666435313632333435 -32356435366261373064613162313764343361373534633734376164313138343162636435623162 -32346461306533363061386566663732343266616663656464646230656135306339356431613632 -66333235363966346330633363316135666634353536313762333030396635386139303734306130 -32303135666331396439373831656433303161373164383066623137336439333938663933353062 -61316461313363396264663662643366613530313139333865383538336630366332336465353461 -66303537326139343337343531373134306530343434666463363732326139346637353131666338 -36333065383339646538363661386563626461643533653634396136616466653232386566646166 -39346637376631313536623863663566636664613637623234623938323335613664386331323135 -36323133663665613138396261386334626561623736353830313336336263313263383531663564 -63323665326236623332336636323634336537393366326166336337373863366438396134653165 -32316232326631646135353163383233626235363538336331366163373564303931616661333666 -61353935313963386436636434616663303038613131386334383135613561313135333731393464 -38346632363133316237303464383361363936306337376263636536666533626261373665323166 -38326231306131303963636436333132333566363837653034356139663733383634313437666664 -62666137303735623033393432303430623935373366353761626635313565363030353736343231 -63353930326264353336373430303533333234333739623065643032336161306236643264363939 -64643763333637616636613262353933313162363862633462393033393337323535383639633739 -39393465666434653964616336373334393063663264383963383134326433663764396232656532 -62373364643039376664346163633461363537303737363965396265313261636465653039363337 -30613438376537666430363762343937346430653134373735643836333131383835386162343730 -30333433326562396638666237373237656638313036313161366637643761356465376135356265 -61303435653238306435356635323166616436366564616439376166343066366230303433656538 -35623538363733626635656165616265336431383764356665643730366335343333393235383338 -38313461623261393534646331303364383065623864316533333061323036383830323161613331 -34663839386634323333633035666637663038653334386534303865626665366236386165356232 -63336137643366626331363664666433393732633261623233653331653461396335613333363639 -31366261666638643435653065663564613839376461393537656165653935396664363565666632 -30353164313765306239396139383337626461333934663131653031303730373739333962663537 -30383965333634653934396534366163663534366639353336303365623430396131613062313334 -66303238646536653731643133313431386161653664303461653733366231613364613166643839 -65373164323737336435663332373539336136326135356530623362363738336135333361396166 -31653061643739616665373766643737343837613533656162333331613166356134313561313036 -65346638323234343664626265376166343330396565346266616530313938353665346434353135 -65646264623932303336343336393161623437353433623766356531643261663934303963386663 -32373936373839303730363730353035656163323132313535333765313166306133303039306334 -36666165336239376630663433326563646166643065363239323934373761656536663136383664 -63666330343534643437623965343265363061613965613437343932643230326230653533326135 -33316135666535333935303632303539663839343161656232643439363035316564396439323165 -35616137313636386363326435366566343338666336313364383136643532393635623130663833 -35313065373962613639393063373863353965626562653862633433666264616434376163363630 -32333862633863333335656538623130393662333238643034643534633233623836653430396536 -66316333383566363839353161343364373930613761643038396135623830363637633063633239 -65633132303334343362346664613430306435383931643535346530316663386638303133656332 -31373539343263653033666338666262366430333531393531373631613636323135636364656138 -32646666393532386336656233613736663664653763633930373132336432623161623764333563 -31386335343165333434663139386664613438393730323731303234373762633462636337626261 -31306236643364366264373263383630303361356434333631356538363830306537373263653364 -31666266636635316466336633613462633739303635306432356265633233323937623636313865 -38666235616231323636643035393164633164663637363931336363303435393130343361343736 -65313066396464313634353464383465306434356564653234363738363966643438333132373532 -65666263346130633064363437326333656438663835346534343437623238663964613564323131 -61656232383838643563386534306534316636643631616430666430343732323339626538363161 -61336338616664393065666561363964363365343266313636646161643166323035613561353766 -37626534636565396633313161613564376439653538346362366638363235623435656564363339 -61643034386232306663623363353632343936313637666239316631393938653766383033616162 -34626137323138353630646630383131303936323637383037653735636631306133643932336637 -35643261626463626139626637636539643737316231333466633731356631656461386333333035 -32343966313264363264643836386161393338383238643131396235333265393433376136393265 -66343633366163353462363063353133316165653031346633313436636364636364353165623039 -31623561373332363436393134313432396164666631376438323130653835343863653565626234 -66663764303730333564396438653639376333366362646363663561343065616433323361343934 -33343832366462373338613838666230333334616433303064316533643663343863313133356561 -33303339623039616461386533626330663736616436326336396637333665636465373261663533 -61376432363633353331626430663837323530376262333563616261376630383064623536653139 -36626232383130303734663763316536623336616261613962376132336235376635633161383734 -63356135636434326634653634643765313262663961356336383538653562366563343732353633 -36666431373064663535356632353264326139373032653563386239306436653138643837643538 -64386231383538313336323533373334376636326366623638323436616536303561353163633161 -37356531376330373837396235373338306161613730633735363461366663346561373930363662 -31656137333130373634663438343864643864373430386565303462323033343438386634636538 -65343965383462313866623439306133323736343365313139363738633135303935623964356132 -39623331363635633235366637353435623064363432623736333232653935623939616165303963 -65623536373036613137616364356166386130643536356238333833313631613332323664666134 -66313235666662366539323433643338623533383364663163323635363430633238663039366232 -35393635353235306537343566333462383434613262653931306134616563373431313763336439 -32373265383763303232333365346537346335366663663466356263333064383864303335666537 -65613536383930383239356633616563643632363134336633613632353563643434633562376635 -38373634356633353139323963633737633130316439313439373130333832303530643963343337 -33323764363639356131383030656336303264343438346465613635383430643332356265643163 -66636434306461666364363435323063346232363730303965343364376134613935613837323066 -66346162336533663330663831626165393765616337353165356637666230653531363437333536 -35666464353764363661636165343434306637613233366565636134633962343936663438303038 -31396265323831306664666232393136353533383461376561366238313933393037356232393564 -39313339343464303139653130653762626362616332363435653434636238393632333132396163 -35613935373733353833643065393266653165396166333463656334616531613232363065313262 -65343433636161386631396432303432336163356532643836313438383532636563366463386432 -37613936663765356562326263633630643737363061373834343865663865666138616231383463 -30353032316566313730626338636439613261386332666530623137633433643830393036306665 -38396166623232336238396166663734366137643637336163323334353630636331356533353264 -61646662393163626534396538623531383739343138313261383435383763363637633738363539 -66333534376532626431623866623933306364613833623739666534313965313736396539393335 -36623166336430616266323338613037366333336237656364373338633462613836393039373962 -63653565333461363833633939303536323964663533303962303131666339396165373236326533 -64613037313565613364303536633931383562666230346432323737363737326530393936396236 -63333764303361323838326664663864313965353835386161643064613361313264656164616361 -32303038373962373637373437303136386234626538313632623266396530313735623334363864 -35363639353461363836323033323233653966626630383636353732633632646666306162633363 -30366439343363666538386130366139336562376537386666396139323438646338303262383966 -30353762303266386664353238326238333133653835646131333431386637363335366238306437 -65646634353264663436396366636163386634326531303263376335306237636336383564353838 -64316661303131353164653136343537343336653033363037313733306563326164623262646230 -65393462373266323138363434316335353134646465363635643135316431306130303666373035 -33613933383539643061373965313663646132613636353130316130383365353234373762313231 -33333566316237373062393838326562303136346139343334316265636632383563643463653864 -39323536633530383432656234653066336565326163373736346330666262386637336662363238 -33646463306330353665383265326433643862613061303231303362643965366533323563326664 -30336131346333626464393130343631383836656230343863366231373262303665303735313536 -31363863376637633533626563656333313733663661653931363361393831333339613164613965 -30373137363562353438366330656338336133613661646538633735616638373231323331323036 -63323561613236646362333666313438666330623361353631363134643334646439393563626433 -36646464343836333830646635303339613635323031376366656430656666313434383261643435 -66616262356535666135303964323739626365623865646230636163613831646637313935316532 -65656633636162363664623433383766643261306434336132376663613131613032313237633463 -32346639313265306463383337653362363166303432313231363232383063353537646662336165 -30643836303337306231363637623035653333656437316533303533613333373761623366303265 -32653662386235336230323061343462623030663665613065363032366338396465386438636131 -62393937653966363762373439346639616339636536303134306234396334366436646365363630 -32326536663731313064383834376239323736656266656665343739633364396566343562393331 -33313230346138623564613337393863356239623431663363636331646536373436646231333931 -63303338333935666636316538313238663566313036386337343934666439626238356164316466 -63366561346234396366313164313131623433326165353861326639353831643135323233353336 -62333366396131353930303236633062623266656365316139356566363237393862326438376433 -37633366316232636265373236396433623266343134393032343662353765353339373561613162 -39306436636133623963653061343563313736656162653166393530376164663865623637626536 -66363063656338373865333139363539356232353837326435653666306266306130626662636639 -33613966646237343061396363666164653039646663353039626134343536336166353966343565 -31326434666233353633646635613131336434313630383539316337383764643934323238663635 -30643433656663343565636264353466366339646432376132393263323364653639653866626336 -31366433343162393865666233323438383164626233376361656465646330316565386535333766 -39366138343237363439626133383136623933353361626262353036323438303863333335346264 -34353838386636303835343166656565316134386431326164643438633133666266613230646164 -61313237313564323737393630366134623731313831643233643931303339373134383734633062 -65353666616633376162386638336663313663666432303536623765643064346437653931336239 -37636361353231646366346130373533636463346634356430626239303565353562623564313538 -33353634663137653934313135396661343034386362353139366131303863363039323830323237 -34613363303532306265323330353966316133663734616133366332666436383932326331376261 -31653263326163396630303334643965356137326434623438386462666163376666306161303461 -34373661653666636463613233643837383636313336663534303266336231323465396339346231 -66306664366461333138663730643834393864616364333730303866386337303232306139333864 -32323364343139336361393932653765303837616662616436313036666562393839356462663361 -34303231643135353263336137366166366538613232306538626464623839613731363431326266 -61626630336131363639633037653435333465666464333232313065633165613462383435306465 -30313264316338613139373961376130373262303765623032383432613465363934643931386633 -37663662323566336535613165346437346532616665643232323865326531353266653266646662 -31623566616636373666626338313564366565306232373533633734646131353436333065323864 -62663765333230633766666238616263333834383063376434343236376334366362313364653561 -62353436373566613538326636303830663164666531316566653339656566396561653035646637 -38316263313132326261316561633266633436616238313463373338653732643331623530393534 -38336336313739616133666435386538636231333163396338366337363564613330396230653738 -39326264306231316439666336303737373937653438373934343862393964363231313039336136 -66313634363266353534343065306139626330316535373464633232383063303865396435393337 -32643632646265313261376435353533383566386336383464633038623035616439643131306336 -32633439623432373437336166383332353338383861303736326466353661323561363135626265 -35393665636264393931376638643532356232633463396537373136363038336362316639643835 -37353133616130633135633335346534396130323332383134633838366166306666383366326536 -31386266313661396333313162633162383238313930336439306464643963326334623331623266 -65346138313965336164323534386439623164616638613061376238633462346663373238333639 -39623062376538336631353032643739356131346539353161323135393934363837643464393832 -62363030326435303165396232636465373934333039303034636632353163396364623632376632 -36646334306535643034373435653833663333376163393866316564313938376132643433353835 -32386332646631303635333531393636303862656362386236626330326566396366313537383264 -39653364393637663938643161653364386635343564333931643464316630343364313936626266 -35313731366639656532393336383566313737393162386565623232373533373436396662363561 -32386132666334303131636238333264363836653531323232643165623334623635653435343663 -62383963393630633235303638643832663664663066343735633338353261653435366463303835 -66333861613030633938653931663564663065656634396439633438626136623761343136346135 -33366466666238343231376537656166343864396361306130303134313830366333663064326434 -32333136323631623934646262336634326266363636343361353763393465643833656262653837 -32613065323365383230306334636639333266376137653763363666343665333533363564663961 -36623463636639333034303039646164646638393239323336306630366666333030656435353433 -38663161623838303235633337383265353366383439316265646661363430626363666361373134 -34653232633063306462366333653239306630626531623739666231346566323532366539383638 -32333534383264326637326463306538646438303938343531366135343263316534666565316134 -64643661333334346661636330623338363435396135366462336437386330313032396530346536 -65666363623864663738386665383138366365383538373830353765313036623066663135373836 -34363161313066313231623837363330316163366238656631616366616461643264373031306631 -38393565666430326639376562333637383834376634343137323136373930356233326666393137 -63353631646536363130363766643837383965356664373862343262616432616364646636376139 -63623662343231353939366432313335323261396365336636623333303337383937366531643364 -30633234373937316665373436623961646138623165643665643237376635346639363834663961 -62656431383166323961343836393537643338373965306463326266633335656231376564393330 -39613731383566666130646331653961626366366534636361613265663930643336646162646234 -35353236653733303731356132303462653066306533353231323931646236616338386438383664 -32346164666231636138633031626533316334633465326530323931386533303365666165363633 -35373032313631303262373335333963353731636166633836393830366536656462353161333762 -33383262663939326162396630346630346435383833343939633662333864616132666533623464 -35643130626636336130373431393830346537333331623131313032393364306337376438343561 -39393833313236623866366633656461386464623937383464383134653837313432363435623561 -36626238646563656161633239653463663666303334633835626564646138363733353237333535 -32393161636663643032646635373933633934653731393537393231393439636638613865376137 -65343138393234313432626336633862336133343033373963623635643739666266313634306562 -63333731393561316538333166343536613439653163653931326237383231303735373466306232 -33373137663032613561653736393330616161373635306230383038316334323437303733323631 -34653435303835306235386430663130363964663131373962616130303138326362363135613838 -63333565626531346230363039306139373866323364383265336266323432636139623038663537 -30633931366233326264333462393334336531626335306532386361373166363663323738363836 -65666161613336303634663631643266303831623338333665356231386434613733373864633739 -30636132323836623339386537666565646335643963343365626261663836646264323466366135 -62323138353638366530613632323564343762633864323638316336653963623761613233356664 -66646439373435656665333264316131336534623362363933333030646439623664313037333136 -64376535396434623562346634613865366437366162393339633238363562636339386562396166 -35336636343264323833623935303636313838643465346237653864373061663265656139306537 -63323736303362346230336430396363663265646331643563313333616261306362666437356538 -31316533353034613732316231336362373236616339643862616432393137616137313264623933 -38626230346563393833396366646365383138303831386431333432326161316632376339373337 -36633539616633393233623763313931643339323630396666623537656339616166396134353738 -64653837326666376538373435393436333366383462333761383761393130323837383762303233 -39323738653435376631613930306535333239653861366434306532316366373238373430383437 -61623436613834356663343239633938613435336232376239346364346435306333396237343361 -32303132633063343637303339333231343662316361633035303763356334393033643362386237 -62366135363032393936306133343666373034396134303838353639666562656663353434643533 -32333863323066303536646239643439383831386561373538313461396562333638666366353161 -31316435393436343539653837633532646234386339653732373030313366303538393464643239 -35323433353664326538386161343464643865656162623065656131396161306132313534663839 -35666434343831373338633362653861643962373434376530383835653764376634336635616366 -65333563333064353562346633376161383139623435323931623261326330636430663632346664 -39383762653863393334303063626230336164663136653630366536353531646464613831623136 -64333762336435343838616535356435333837316536333738316435353062383631333632346232 -39623566353038383635613961356636663461653930303766343837373062653533313838626235 -65663437303034366631373466383035646137316331636436396565313437376135393732646661 -38656463396237343861646664626562663934343936393061626534623635613633346163343130 -36343966326664306135306630613334333138646431343062313762303463613236303761383831 -39643936636331646237663437616564653337373439383063643431373964646538626539623766 -39333638306262373737386636363263613131306662616262363537633132343163336436643735 -64653336383865346636323031323531363232343436653434373763613865323633363566643434 -65323234383636666433356635336531663961396632366163376532373466356164653833636337 -39396530363863666330303066303437623361323865626362663531376261653236636539353365 -64663139383163633866333234303635376336313666366232646538623436336235636131316539 -63393333313039616436393661373031353835626433326438613664663261633661633363616232 -31383164303961653366316536376261303636333165613736306662636337343539346564323636 -39633836623462376438613939343331333865303034346261663233633734613433633764653532 -31353663363230643163653165383165653032323166383363343534643865373039623038373837 -62633331326536633966623232656263353831366163376161353436313634613132366537633365 -36376636666534373035353461363039653332636230366136663363643362383739366366623465 -35366361313163363034303232316265323733303535393965663335623735333733383063613034 -61316237376631366161616132626435663333393030376630646631323535613361306531353864 -35663138653763373031626532316534303339383939343639623465613430353038313237616335 -62353763343264356563643436663265383836316639383238396361643166623632373930343932 -62643935643563343935333263646635366330656533623935313862646132333462363638353366 -30626132316637633732363835346630666534656661343962303538383861623062663937366363 -34613239313764303965613062623937623963643234666534326332646538393133336439383063 -38303731666361633263363731613861376437623638356533376530613631366366343235326238 -63663136366664623965616539666531316431313430616262626638643933303539656661386461 -34666139613334636136353531303163313636306664303930346638393633326432313130323062 -38363162663930663461636331323133666636663334326233306363663738313466613431333766 -64373139326333643731376261323234663231376633373439313464353730336565633133356166 -62666165643039306161333430393964643334383465623132346265656138323533643363636433 -32393666383361373732366435656336303134346239646638306432623535346363363066303636 -35356264643938383530666435633366396363306532303363383438653531366638326535363963 -65363536353237356661663735383030623963396263346133303334633864303632343430623335 -39303866363733346566353862323535373164343637386339633433626438626139383261326330 -63363836616362316366336238363331383964626537356162646336633066326266636662363136 -33613161623138383436656434343964666165666332336330376636616334643833393862333761 -64666431313435373337386565303031356131643363366466623531333165303835643336333430 -35373834386131313634393765643536386463653163316161393566366539363365666263653634 -33353930393864666631336464393837323537373637363064313065653831663230623762376637 -30633264363838636437333765396565666531643962643764643965343537396538366366393330 -35303465613431653335353930653631383164313166656361313161623463626532323039303434 -39663366396435306465376661643238366538613237366537343236393565376362303563636437 -35393165643439393762616631636432306433643939623530613337633366656662393163393663 -36313238303436343436333537316431376432343736316333343332346332616263656565636639 -32353462643736316634623434336566633135383935373766373332613035383035333136373837 -62306230323734633764393034303430363435383632346337363164626561626661646265666335 -35306134313930373935363331633064646165363231646662356235646537386430333364303466 -35383835653264643534323530323666663836656566346565323734653434636464396235346539 -63373763323434366566353263363765303164303538646465336237336431656238316165356166 -61613038313134323430616639613662353236613334346531383339643536373935383366323630 -64313530613331623537303232323363623639306234303232343037373263383237303538663262 -61623937336336303233653236336331303533353538626330643137303866326264626532386564 -32326162656663643764666134346639386435613265383935653661626336393430653637336138 -36343561313731656231313637653436326230343065393561633137323830393366633335653834 -35643463643132386139626638653164376261393166306132393934326335613935326135653063 -32373436636432326462356563646335623532643764663433316232396233626636623937663336 -66313364616361396461336137336265663565623337393433393132356236613665373161393564 -36323439666365616435636534343439666166336166376435356563663332313762633862313964 -34353130663036353365653063356631633835363166356663613532613533343638626535663562 -63613964383364623033633030306532303138393238633331666666623839383233653465336534 -62386332393764623964376163613266633031323863343931306438616638613837326532666539 -38643834613239396266333537336333616633353565373664333639323730363731333266333133 -64653631326463663039383234363633646536616434393162326138313539616361623137636335 -33343834333033326136353038343331613434376332353865303565636337346163613265393837 -63363136393766313939373264393231616261623834303135656130396335666335316366333730 -37623062383831613734633730386632636232353361393839333336666533636331363065656565 -66663434376238623834653365336265323631376537356533303865663762346162376338643162 -37333265313437386132383637366633326164376261623766366537633139353938393463666332 -35346163363361363261373931383234373863613734356139623333333833346463366136393864 -35623138323037336332386432643761636464663238656161343131383766316338643764653264 -34373637366164646632626664363261633364333431333534333637613533323734646666613334 -32323339656134306261336537313762666634323961666638386333353834643638353231373035 -63366663313461353463306536643961633732643936626536623564653339623034326165356232 -66346636303362353062333166613630343264623365356364363431313366353461373639326536 -31616531313464616636333666336639326633333766353164346334303839313138323735373337 -37613164626433633433343334653734663861646433356466383933306439636131633063343466 -36646364353364323331303863323561396634306466326564386632366135366633326162353130 -37363435326237613730643965383739383635656433643931326534343338643131656562376565 -63643734323336323265613735386566313136346634343639303931396636626366313062663437 -30393138636466356535343132633836663531663037383963333430663232323261666436646630 -33666437633066363261383035326366666362303933653962616163663736666432323964633034 -36356466613435616133306566663531663837633538333830633964623264383464376437663634 -65333531333536626565343561366434396434316139396666326338656436623763326530306561 -35326131373931376362643134303763323930353536316161653065316332663731353939666537 -35626538626537393237316164666632613833656165346537636132376538343333653461333663 -65653330666239636661616434626163346161363663353330343432323735346231636632623232 -64313235333634323866626364333465626436373831656437636661376535633138613939333666 -61643564326232316239333732313536643031343335313231336533396130346131393165623030 -37643361333133346166336636363335633863643364383432306531623733633465663261663933 -30323339373333316463616630313534396564396564613936653932303065393534333533613761 -33366365323232393031343663356366393362623766336436343035663563316162366130633435 -34393635613631353836396339386134343032366161663764356633633430663331656631663766 -64393434383661346364303334333532323561363033613233356466346661373835636530623561 -65626230383431346232646235633033336435316130623236326437323861333037663339303563 -63613161396337316131363339616138393632313639323836346561336364626163316435626238 -65333837633131663034613132656130356235616237616239316265626337623236666462333530 -39393361356131376464386134393262373265353764316165636364616635306565656239613531 -36326266616365653035656666656139323164316233636661383431663763313866653438336632 -38623061633834646232353138326566656535326462326361303666656362646163383461653132 -30633433343861323864333736633832643566366461653962623435666533383866306539343534 -66316139343835623631626233376138326239366232636534616637613164613262613736613264 -30363632316536636437313631353761666464386633336531336530303131643935386233363034 -37353362323735383162623235643061633565363863333530316335613166656532626137616462 -31386161306563306661643365346231383330333764326435373835383062333330363336666262 -31356137326163313638383639623165663534313261616232623434393265333262633965393437 -33363165316234386231626235663261653764653035306534663838343236646432633564313666 -37623366663231356266333238643739333035623938363434666262626137383337626130613838 -37633537376133303932386436363238633162373239313962323861313539306331316337326461 -30663933353637383530306432616134383962346236376632373463396164363430346564373931 -63643161366434376362316661653264336466666333643033373530636237356330323938386630 -30646537306537363831386261653634613265663939333939323262316639323064393833616233 -63323665323730306534666231626635383366653536376438616262306533383039616534303964 -35646537646362656666323336396162653230363833656432336564616164373930663336306262 -65373937326332386537363666393333303335356336653164666334633764656666383539323935 -63613238343862666135353763306530393763336534326262343032356639323731376630383638 -62353665636231333862313264306662643137623832653863373164663233333663666132333662 -65356162633566633830613630616365636265376662316532303537643563643239333930663736 -37376335386564626330633564663735613233303937323437363436653038306138613966353930 -64313366623464366666613737386461356435366166643931353135653931376336303136643063 -37383638343262383765656661666334613630383239383765666531623539303237313363666636 -33386431626138306663646137353938623061636332666633323438333162613061643838623865 -62633137303231346632323431323832386633306538613039336331313935653837323461343464 -63333664623636396633653930396632306464653266623836346336376262343734343436346238 -61323430613834613362393638363233653136343835336637613530623866323866313837336235 -39363930336233303739386266376533306338373436663232386237326166623238353864666663 -66316161643336386133333563666264393339366534336331623563386565303862396335366566 -63333237306333313137356436343932633235633566343239633437366337323239646463323936 -32386334646138323236373063353464373135363166633730393264386635656435613130656532 -34646533313464333235343033636636643836346533666663326463306165636264623531383065 -66326237396431626433653339383531373137346233313039363864613730613365636137653034 -66363962353635653237636139623432346133366165623863353734663838323039323666316664 -66306665333861333933326461633733323939376633323137373764643730376238623063666561 -34393830636230346134306633306139666132323338383165316539353335333336626264346530 -35623530326639646334666437346161343362313331313161386536343231356461393161613135 -36613064626235333763383635663062323562626564376430373161333233383539303261343035 -61386236636530656337333336303330616133393361623061333161383065623864323163353064 -32303335366530303061646335333664303666656439336561333266613137663431336330343938 -62356566323563373664613465663263313166623739343536653664666236383039386539363365 -34346532313039323137383862633061363335653537626636396139343130323233636437656266 -61313562373836306336396634323839333763616164663937356535306333653738303564386565 -61343337393965363137316434333739326663636263633835393437303062373561363838663764 -31363636303333366537373261316265386463646563636233386461393231633132636235303165 -30373362353230343335326236613632653034303237363630613064316165383234386539303336 -65653931636232323734383762396661373638376664346531316639383237623638663462663965 -63306332346335396433376632316138636561316262376132313165643036353863393364663063 -37386266643065363331316239323939623634323138366363326439316238663231353130333965 -36313830363862643866363966326231663162366664303764313534643266343236343434306465 -66613764366561346165303735633866653738643230643063363432346262656135616363353039 -37386531666432316166653831623534373064326362306165663262353164646464396561636663 -35316139623961633535643836643730343432636466383434646365363239663638366664663033 -38393932646561323535333633663238333765653263393966613264313064396439366662316132 -37616163316335333161303532616631316132613438633665333037376164313439626630646466 -39626366626436336438333562393963383832643834346335656633343830333461613934616630 -37386166363563343764333133333834623838323438303161333034303466663865313463333237 -63626265333934326166643864356565646630626234356138356263613837616238336639393733 -31313538383633623962346330623664346637373361636233643030363031363231336331383036 -63653533373935363336643134383939303334366462353763376162626231333338653263313463 -33656130666232366463393433383662666636616439633765333538353064643838373639646235 -35653237366331336639643835303935326135323634663831303932326632383365346465303232 -63643138323232663066666366663030333132623162633364376464613265363865393263666166 -62646635326165356563383966646464333730343038623435636236323435333233383035633232 -63653732616664666533666630366161363736313836346238333464323666646536396132636134 -64666264323165386634303565656531653864323239396438316364306131363563623431346365 -64326433326264333861316432643738353065653234333061636265313564643437343763656134 -38613865363035653038666534666132306335643261636361636232316234383361393230643535 -63373534366332333066353863633363636162616134656237373066633337373762616534666663 -37396165373938346332353935333332613534366564636131353132333330666363653261666138 -62616564373062613735356365353539356165633839393463336331646536383061626636303436 -62316134643761623363346662376632356437343162306134613561393233626166666664376634 -61386434373664393066656230663230656335343561353664653565626566323232663733336363 -39626362363065306363313439383136346531313336376264393732343138343033373662613132 -63326361333764333332316266313765303162666137393865353931326530613735343462326538 -32613331303764663431346135663365656562393364613137323434373336353330623765623937 -35373836396666643464636338333062376235623664373932316361323262386165303264386631 -34656435653138366330313463643861616331633736346131383135646430303635363135376661 -61363832373734663164346533333032343532326631393165353930613538346635633832383962 -31646331303461303839376239343234393331323066353561313335636531336664633033323131 -62666664646139346535306532306162633266353539663761623238666231303763626137613939 -31343064393366376136663532633139343130653530663761633239323438316439626337616165 -31393134383336333266316439383231373933653137363232356464333632643130356330343962 -31646232633061653330363664323862376236393231376530336432623735393762393538333363 -65376632303233376230613366336432313966313835313165653464623938323334643832396135 -37343962633766373865363434363464356137343433666236333664666263383138306463376261 -65613132643062356238393134353735376166653434363133346437316439336636363562646634 -62343439373437646137353230383738363863613662326466363561386636353939333866373130 -35626264363261366630316235316232386235363039353238313132366139643063366230653361 -36623162643835363863326439303231313237393065363766303565616637643938666432376665 -64323434336134396432326263313235333465396336306162663134303237393736356461623131 -38636334353035373264656337376536653531373362633336306638366636666561376635326230 -32353730363266623762356166653566623663653263303231343238636133376133373365353233 -35336336353534633939303132353632386535623864396163353938613237366339323836353136 -36386565316662663936666434643236643766336262383664323162336561653934653434656365 -39356638363762366462393063343434373437656638343765623037313130646565646633656238 -33613931356136306537346536303961326361623439643536616139333437663130663239613230 -64346435636462343338386430633539323936373833393233393762306139333335306632346236 -33323261396163356236663361323163626133393837653536653562303564313862393334643963 -63323237383237643038336434303263386264336538336339363866303936613136376435343931 -62643937396261363737636161303661343030393339363831663937356430633066626531653439 -64313161613632613532376233383732313235643335303334616362626132633662616135346163 -61323161633161366332663733343566303134323234616632646130363439323063623061383038 -36353732356136623238306366313738353964333434653730663832653636353639303839666333 -64633038346464386237333635623739636666326566633466313562333766333332393333313735 -30336235396632616166623634663130666537303861613065393938616533343134616466386161 -61393332393363656435303531386438313839623634306566363132633062663063323934636131 -39646338656462343532393939303063333465313561663230346266393733656232646462326331 -61326235376138616539306133396236613564623236303539643336666630336265346361323431 -32343133636363376662366561316436323161393930306461666665663239613739663934636333 -34316636646237383462333839313761363032623039653535316238663438363533323435356263 -34373563323237393637613062346339653761626233383334626332656261333763653939646334 -33646165316436306235343130316462373432306233306337343861336562363565326661386132 -37383139653061353730326364646265633333656535633464356562633537616564353932623861 -62313638336362333539663230666363393039313335663738366665623736396631326165616264 -35386135363663343064656361666333653562346335623063323762363135613862613336363433 -64616338626161353065613366653464353934656263346534376532623035303465386436373435 -34313138336666653835356139626539306361366634386637316462373665613965346636313762 -38666538326365326633303432303039333137393465616433613661396664646237643735336564 -62626265376636383864626335626333363733346631373436313438313737643730643139313737 -30663032386635616465613033303732366563313534383135636434386164646332626439626432 -35303965633864326462393736633537366365663566326635303631633836616364653735643439 -31643365653162386337393637393138366134656239366630386563353035663163613235633937 -63623639313530636564363066656434316133326235643235396134336662653537643664323938 -35343561336135383738326364633530643031366661333363643239343631613066383238633665 -38663338386133363230323163313938663935633066336434623530353066343230663933643433 -61356438343837353665636563613565663165323865313735353434323634356334616337616463 -37323731666332313439326564353836653531326534343333623565646236396262626237363064 -33343736396234386436336334633832633633616134333436373563393762333163343861383031 -64623063636361633330313964343165666634383163663933393131666366313366343930343231 -66613363363835636234363162643664343365643434333832313063613864626531363930623232 -62386430396338366265323438613438373630666431633334313434373033666266323831653231 -65346636656338663438656361366335316631313963376133623366336134623136336331323565 -37336539636237373735336562396634636234356361613434313066383935343865633939313337 -31323363653466303635653139343131633962386239313939356235353534643561336532373862 -30633130383431343361623236656566636138306230383836663161643162653434343332333832 -32373863386239343165623164646632663330383263353531653763623931343532323034633864 -64393165366639656363663434323131643862333636643530336638643333326635633435663064 -33373664383231333436356532343761363264353830663531623935323366656635626265636432 -64373461336463396635653132333362326166613862383664643863323030313035323663636631 -34326230396438373461653831663561386561376663333664396638346639373330346530656138 -36346433363539303265633034396533633136383437356237356537343364643063636331373365 -32383063356162636336303635353533393064653036306633333030656131343635613734616137 -32323364363230636664303936353337626263626462353864323662363466663362643334396533 -37343930373564653465666130376464343236366331393864643033663862316366613864323266 -36613332363739353831396361383164643037376364626665623639663663363864613635386666 -66313039643430346536636663653633626534363363636435363766396466313131663362323663 -39303163336264646633373235376132653666303638363932323833636339616335646338666230 -36346137643636653039323534643062396662623732343730343064633764356561633364373861 -64396337353934373666643831626263326538383662386339633331323031643065386265343065 -65326130333362376562363066623630346138643064393662666434646530663338343639636636 -34306230363365366530626631353835336634396232646663663337653432356665373036336634 -38346263323136333736386465363063363861336236643339323238666138356364313162323331 -61313932643039336530613332643731313539333430633165396230306531373163613533623562 -38326631626232303939303063323962393139633239663664353238666336333961373463376537 -37333735393633666530356535323166306534356665653033386366643161333664623863303035 -65386465393338386132316465323766306537663734333130313534333035613566653738323664 -35333934353864336237396131323766383563373636326361663039663438396131326665366361 -35393834356661636166656133613161643632353965623138346365326533396265623866333963 -30366265306465376430616530363338373361363939353864376335623834663135343764373166 -32316137666335613932373634643663356465313536376233363961333762623637373737363863 -39633139656438386233333062393663396135366430346639623234373962643934373633383831 -32333437386535363630323766336465656635353835636465386362643637376630363038653366 -32316365633365373935643465383363323136623564626662626165306130306137343833333564 -34653562666536633334313231623931623461306265343062313765653163666539323434623334 -36316466393135346533363539343938346530303034366265386565663333376530616634396434 -32383462616462653535326336376432393164666262333061313839653535366238323030383735 -63313738623261353331313762393939366637613264353535376532646166386234663534663933 -33613664376230663736326532363030653930373838613235313437616436376437383235303537 -36313434393166613239623139323437656261623439393265333836666163633262633961316233 -62613065643962633639613263343263636637326339646233646636633665666537313638343336 -61656561656466353139356436636464613831666164376437373238363734323031313231613735 -65633639626366396237626138383039336338626437326365623564666533386336326263653530 -65373261336639393261343230656533643031643337643365303835383363356334646663363531 -66396635353339346136623934313230356236343437396465346262393134383265356365613766 -65656461333739356236616565313432366534646330633239336362303164333530373561666530 -31316637356366663161336465653762623036366464343233663061646236323663346266626365 -34666531313836393733663962616266323633373364663862366133623436326237656162626637 -37393962626161656235616631313732623963336662306636363963666233623366373263643037 -37336361303536363865363963363262336237393466396639663161626164333731623362336334 -64663639323736306636613130613363333933376665333362303236306433386365316435393638 -61646338646131646531353765346164343038373530373639343339376463336338336337616361 -31333537343965363335613732633934346338343265643765626532643332333961366562363630 -36643135313261616633616434336630376632633434373934313931363762303732623134383662 -30663563646534653033303037383237363733623534323834363663313430333965353163656534 -39626434386265653037663732616334326165313432666235306135656262663666353635313034 -63626232363463393834636664643061666331313063623935646132656333393338626637656437 -39346533616563333138353364613163393263363266633034623131613138663236336636346331 -33306535643166633932396636613738313561616462316530386130353062336633383566313333 -36643864383364363561643331666432633731313833646633356263356233303737613739356463 -61333031623566626330613135643664333137363863326632316231303633373165396234383933 -32323264613965656134616365303636663732663839376332323930316366316237643061366232 -35366233646565386261386562363231623164313632303832366166363066383938383736393062 -65633332643032613037623863373965316236633065303265316430333237646566336130373335 -34356562363463343662363331376134343237333466616237666133346165393733356364656164 -35373632646438393934343566383232303734666565343736343561326135383466636662613634 -36323736393434623230353164613034626561333364383363643166643438306439376135326332 -32366130626339316466303036316136323761663835356534346632366638383336613835616562 -33326466386434623663636162393135363632663763626535306139373432363632316631633361 -39663961383236353438343636346235656134373233643565643638653834636263623434646261 -35663739306231316432313636343066396663643465343865333436633938376335323538663537 -33346636313364346664353633343231613466663238376133313938663034626563626231643036 -39396566316239333435653232613266643134313039656132363031376230343464636435623539 -66343131616434646363643136653135316230383831353037366362386332636338623634643761 -35303764323663326364666232343561353633633034626363346333646466366434316636623436 -62313266316164636564643564313631323331643235373832353435326634316133623463323837 -30656363313437396434656330306363343366343930316133306134356138663463333561393761 -62643335306630303932633531356563393535636639623632666563636436363135346437666238 -62336330623430636439376266366635373839396461643535663563336133646439326230393735 -61623363383233383438323664633166393738363966396235633039656531333966333464393662 -36346530663262306237646137663932366434663165346233623737633363663730353738633062 -63386630313436373136306138353439633630363934633033623762626635386631646666303166 -65646234323766386631616236626166643330383431663565313838326436323833646338386135 -32303636326261646665623533383630323535333539353465663532386138316236353730336464 -64356138646430316434386662363964613936613262353163343133616335336166323563663439 -63386333623035376335333739366337346532326364326564663162356139303262316532373635 -62666636623431376664303432656163643331393631393865373330353639346435343565376365 -38373231363831353535383961343833636462303830373233323565306334643935376661666331 -38393132663637643765353265306131646138653935346239313664313062376130623637666463 -39633732623333313433363732363965366364663830393532376338376664376634313762643865 -34643361633032363833633861323534336339366631373061396337643839366561346537653536 -62653834323939373263333839633037353830306632383566333039306631663262626430346137 -65313332646332396663393237373564386536346236313733326130303766356166313535343864 -36336364363839383434383630323262633430363439396261353238616661393364333065633962 -33313337333039333130626663663538383630643534333936376138343832643638396334303733 -38373231646433303637643333323865303932646635396438623733643437663731366531363037 -33356534326437663632333332373236343932363532616132663463663132346365316561626530 -31653763313964373630633232656166353337623363626332653231393033616632616338343137 -66353033616130323566623866326337663764313834313934396366623530653534376235633066 -64663262626436636266323233313239313031333763393532316335333131383032386236333039 -38396463366561316664366535626534306661646362633333633430336538313530623761636564 -64323833653063393938356235383762653066373230333562353663643138643939303362646563 -66366466653932356434366430336335323935373937623938396338663462346362646466303038 -61353035633334363766356235376533383232393234386532363731623036353532303233613261 -37663530623364353833653630323063363235353137386663623636626461633731383033383263 -36383235393566353835313938303961303266633264396562633232346339666538373262353038 -33626433343463366331646539323464613637616164663833346638303265363864613438316263 -66343830323364656433356439646634626439646432373665386463643636633235336533646539 -37393535613566613438376237616566306366363339353233616664373432346432356434666632 -63343464666339383435646265633663663839623337666537653531336632393735356332316161 -32396231393232313434393039633735326662373463396434373661306337626430313665363866 -30333434626538666364393438363833383534666633633863633231653436666664346635633738 -61323935303534326638303363656138663330653966373131653861653430326366393965393033 -38333430656161653838393230656433373432316564373233383962646565306531353734316663 -65376335656239656163653538643935373433616532333732666162343335363137383534353335 -39326239633838366133343430313237303330363433636133333838383539316464316164646432 -36626532373535656533376635626262373332656239653732663063633338313466613564626563 -65323866386637386162643062656333343366656566653636303433353731663630336531333162 -66313531666163303534613964323530353164393163353536333766633230373237643438313966 -65363633366163653534363865643764303238383961623764653238316165336339333136306235 -39383633373736376565396132666533326666653961343361396634393232396165383362633533 -64323238393332356165653963633762386661353133336131666530656563323465636536306262 -34373661333131313834636362303264316363623563393330613739663730313233616166653236 -38663735633461373531306531306234333230303262376464646562633837613061646338306166 -61323738663166623162353430376465313932663230646562656561313466383538636435653464 -62303836313438626364353130613731393938393938313362353063653264363331336466393865 -35643336336635353466643836386332626165353034316335343965356564366130306138306336 -38386438366430346133383962316563633664396433343733363930383165613531313138666166 -62356662373666666635636332313330323738313539373763386537666136316164303461386161 -66353561333534373231653130373832353664353836343935333639653464396438393932373733 -39336136623637316462396566363935363536653061323834653433393733643663613036646563 -36353231396165323366643335663535366139623536666433306134623538386337636466653636 -38383930356261316639313163626565383130626565356334336364303635353262343264646664 -34363765636433306463383132666139646661366334313034633033316539336361363933306633 -61613132346362326137343330373735663165353131663661313464623537366361363632636161 -30313838323732323734633164326461393262643366663038346465333630383536653964326430 -35393262613438346630653261323263363565663364646435376533643063663233363663626133 -33356462653966353031393963353636316232353336613766343937313765333363313862623464 -33366566303638633963616631303562393834313064323538666138336332326266656231366665 -32393036393130323737613236633063653534373432633437653836366461333839386166313437 -65333235366234623135316633616261626238313665393764626464313465643636376663303930 -32626338663865646536663031303838633532633138626139626438626536646665623363343564 -38623435396130346439336539323939663432303736363532343862336364643866356633396333 -33396234346533623935353961383162643663303636613639613763643035343934323533366664 -65656130663530336432653636326561393064633836356165373661613366363762663635623863 -37653035306435386632356561393861396166303131333430396137336337656631626632646564 -64303435303263336331386138653363663364623164623032613734356362386537646432316633 -34616639333461343137643436343437343966633632363962363831636332393864646439366137 -32643536646336343337313833666138353439383162323432313062633262393139613734663939 -35333532353231346133643563346262323863376238353661353836656263613433653832356237 -31626533363935353236636364373265653164626264613032366137666632616261633466646661 -66613463373563393133303663616561383165653532353039653134386632366634353236383431 -65643135663132663963376135653735323537386133333261386662646439303465353036393038 -30356465363661303836323563613431306137363733346164313833386430386462666261636338 -36386530396163366439376338343633653664383661366666353035356664663236303166623531 -32383238346437633031666662363065383965313832386532303538643130393536366265376461 -62383932313962343133366633363361633933633039366532323239666561343662623231386538 -33656535323465393237623333663961613934646631643464393530366634323834666332663534 -31313739316131613435363139386139333035306332616234333064303666316438663436666137 -32376336613965306432353331316531323330613965636362303432336538353561623464666564 -36623665653439316166376436623330303061366134666630393035346139333262333262623939 -30346531616136663636343065323332663639656666323636356233333937303237383636613330 -62316134303739303465613262643066373235653230636537353862326537383161346637623439 -61376235663432343234656232633634343338373933356535633261656461343166393231653132 -38646437376666663864323066373738383238333030323333363038386634306639363766613637 -64613364663630326266613662653137353562306235396162326432653963336637336162633764 -35326236343062393364623233313437306263663333393238373134346632636437353462396437 -36386132303438363362306636326563663530643134376236343532363737346464313065633230 -30376662663263663865393939653437656235663235656366333934386632373132653337643737 -31386233363932663166616533373366623864616437623138323336363333353431303634373830 -63323930656538373563353565326430653436663830316163393563313761316137653262353437 -35613632643534376230306232393062333264333862653138343836386463623831386164343366 -37633465633563613163633533316133303137366565653130356366343862643831393964626439 -62326531313030353961376235383661336462663562666130346231646361316238396433343630 -36626435393162613038346561396366313565653131333435623131616132633331613862633462 -64356662616638393633616164373235343933653338633538653231356532663131633337356232 -31366266363736643761343061313666333963633665643338333863626336346538356566323463 -32376664623231623230646233646562373365376532353436393733623339346666623730643232 -36653635333634396264313065363039346261656362366430366366643934636338396431373837 -38346664373137343665373963623537386334663161343736656464636434633338613332363736 -65393838343338646161623933376564653966306266623232633433626136346561373638376630 -65316432616664336266346565353030303739313431656462376438623430356438383763316464 -63393936373366303630623732373439333334336538623035313932613162626533653637326336 -64653738366364656365623932666431343035366262363162396536626166346339376562373862 -30356363623461303536616530346632313435363931663666343866663663616337616366626363 -32346464666139313437313166383731323037633434373439613832383638313464396132663666 -35346630333861343466373539633638393362656239306339363839313763623836666231623639 -33333831383666336532363430366635613465343130356332343861366432393235653430383532 -37626661383439333238336634323465623335343435323932326637623630623135646536616239 -36323235633438386139353631343162306139316236343932636366353130666264656337616532 -38623433353461656361323233393932323466353931623231643936356238333638646435386630 -36363831363162666334663135643062303031313264353132333934363837366135643435656464 -39303734383232306236323133613534383433396436663063633762643537373764353231346236 -61663064386238653664326433366266633334333831383464653565666130356230633030343165 -31366664346634356133626532613737393532393332643438316635616437626637396634636265 -36306562346462356532396138613339663333346164346136316166363736303835613738623135 -34313639343265316165303031383237623239323337313562323062353361653265373938326665 -38666439306461313634343035393864656130356332343934383537386232363061666231393562 -34383562626339636433343632666564643834643035613964383535383033663733616433303431 -64633664313633363033363433363837323936353437373833343563353966316335633566666436 -66323061353839396264306239663237343033643131323334623538623961303362616163353266 -38353234393563323934323364386561326639353864343363623230323137323735316562333935 -33626663356232326237643634613562346531346633303063346339396338313431383464633762 -63643933353930623635636633333666613438646538376438623835623831633532303964373238 -64393634646365363433633132613334353337633537326534633364666630313134386265663136 -66313131633764626166323263343735393034333133333234313762326232653133366163353937 -39666261346437346165663139643133613864343536343736316437613465363630316434393932 -64313737653535333337306135633831346430363063363839303662623863303761333139633862 -39333333343635623934353463626639323131393234343232653963353865303661363463333061 -33326564313361616666313233343263366365373663326161333130316136326532303333313563 -63623138663332653235646665366263383531383034646131623735623165653535343130373265 -64303231393738346565623632323831613331363961313436383239316565323032386439336436 -34396531636233333066666538313033376239323935623764653539323964373633626634663063 -32303561633435656464633130356531383461363436313765643363326130383937656565346137 -65303137646566636462383937343638643063336663343966383531666630653431316461376439 -64646231323132316235656436363233613062393563326633346439303264366263393431313163 -38636236323363373134333562313836316239303165383665326661653665353031373733343964 -64326539646663303064353431396634303265623936643538663836383238393839643035623066 -33383037653236643364373164343365653230376263643164353033343839343561346563393632 -31653865333537373463336166333062366261633335343066653862326131386366666432663765 -39323161303363636238353165353134356536373434613332643030393639313464343564306363 -32616434336561326465343865623034623966323435386336313763613237343436643663376239 -35643663353962343765333335656132646465613232346636363432366139643333306565373336 -30386532623966353536633436643930383837633435636638336235393732323932316631626233 -33633733666662643334363263633962386162353837623731666131633136633264366630343038 -66393161303664333765656530616530633439613536626165666337666634386431313962313061 -30366333643837333235356362343038346430656166343636393366646433373033313135663631 -39653462633965363466353438643634306366643262653234313861316266306662303163313231 -37346362653239666466346433396464656663616333326536613362386239326130643236376138 -36383434623163663531316132396235623063303937353763323436353064353238323930333234 -62333461333365363232356633363934343061303536373666333437616436663765363531646562 -64393530623135386338646365343665643762643266666534356463616465393465306139336564 -66393062386234386261393736633461396661383564376533366237653933343639333739303962 -35633533623633353733326663353731343933353261626437666537336164346265613732613364 -33323063343835376236393434343334626162303438663934356131623732623561343964373935 -33646431373032353663666662353562353866346333396338393032306363323632636166653531 -36613036386330353331313230363231623331373937353663336538393162343762353066346534 -32343261353634616137396138363533363432386135663466373531366362636564616363623530 -64616165613035613565306664356332343437613839343137393635623861386461313665336566 -31326137653830316466633336396333313636306634316234333632363262396463313666633664 -63626430383064353864653966653737663536393362313066396335336363323062623037313039 -64313364616230333439323338663666346338656562316637633465613564376335353061343561 -32343664303036626134666466356566633436323835626362346536386137356332323132316630 -63656431646330353231636364383263383463643139643836363564396133303933643865336165 -37643636623933303134333364663831366330393664356364373461643830623137353939313965 -38323063613532353338396134396161393762353061643765343561653263363636353835346161 -30373334343862376664343334663836363063383466373738333433663435383762393837626430 -38643961386336653864306231636333613263346334303230346566303863313032386663376336 -33363762376331343162636332623131666337366331636562373661393461396532336164616134 -65646665663264636139616131306530353963323231346463616338613135623933643938626438 -35373664613134393833343138333962643933383038383535386431616336616637643463326166 -63646339633735663336393438383133343066636164653339633533306433393362356239346232 -31666636613964396364663839313039356433386161663536656533383064336638326539623235 -35643539376333616634386637626332323630306530613964343165656565323230626336623465 -61643536656563323431316161613065396230623337313663356538313438396432646139396362 -39383061303862303936313635363236326162356666386562656637636230623933386664336435 -61626332663131626632326235616262313363313463646165653861646562323935373065383464 -31363965373232333162363031343237303965353938306561323064653139616662303236326436 -63626638366135313936363534373834643361666664666361356635373534626263613336353835 -34343938356634613263643331313738333263633939666661643836353737616461313030356462 -37343261343164613036343137623832626165666465306265623464346435303738323532663161 -62623266326638626234353962383132663632323936326266613865346634363637383833633033 -30343765343465393132353337646234613062346431643935373839316431663637366466323037 -66656430663538313737333039313566303831616434343730636433663462373161306630326534 -39386638396337306564626464386531363038353736366431643030636363613861323431363932 -66626562613330343739383937656335326561343338316338626265363439393334623566393966 -64636161303438376235353436396132636334636234613132343231386231636439393263313537 -64653665303065303533383065653765356237326364376666336433363532366236636239366632 -35653934353435613134326339643831333962656638303563323662373336383436653864353333 -34323232663736343932366261353737333863656463376233653532383834613063656633303734 -62383432396534633337633339366165303833343966653765363334653031653235623437333534 -33636133383736323836383365336264616439353063356361383834333766316666323266323530 -38633138303732653762353363353963306633323666633139383365653762356538623436343166 -33623430646437393930643939346136656565666131303265303161366436663663656232316133 -37346464313134636665323935663764393731373462343137363136363134323864373564313731 -32323735393632313332353430323038353033323031386133313561363934616239396561656430 -61626334626436653133663731356532366334636338343231306631396336303263393661653164 -38616133373836626563366635663038666366386637663061383837333937636663303136643738 -31356664666530663166616535373965623835366539623939373065383065323236306136383338 -37646530313561363862383165613231326262303664323066343165646239376432633538316166 -39393338336535366362316636616136663331383236613464373863383265363433333264633432 -32653061623663626465396262346139303134393334346564393734336636376464633534363965 -39323261396638303337323466343462613136396164623430326131343835323131386463356161 -32356661636339643830666262326461373462376164336336366339323161323534613265343533 -66663733376461323332313730366563663036356162643565633031356639336237336265386335 -66353637383630666532633164336130323264323938396164653961366463646238303231366433 -35313063663063653637373562323137343031393266353535346461303264313633353337316432 -31353334386630316334336237336438653430653461623031386535313866663462616133616436 -66323938616333333838363937306466653064623766316436613562343362323832306237346230 -39626338313762363139383866666161623366623462326632386464343131643833353938336464 -37626631613435393333613634306365333262306134323739313432383930663732323661396235 -37363433653133396161363764653030636462343535373966336634643262396137356137303865 -32323465613239306537633562636137666537636238363231326334323539316538356136643536 -30373130663138666434343236333766656232383165643336323331343937653836333535636662 -34306137623333303666316134613565306635623030623066343235356532393765373561313861 -31656530333139346133316436306435633261303935333837346335356137376235343335666362 -61616665323335383364663765383735613034303631343061393535636661623662656434663134 -34623862356631383130643365616333346132373433613961616561366666353537316163646264 -38343336643337666562373566396164346634373535663366303634376432393135333665643262 -35326632306635633562643565323465396531366635356133303461646364313566303364646337 -34313935616539313335623730336365656130353464663634633139663839653965376636386661 -64333036646161653462343939323762383936333662333537353434343534623735653436393165 -64643766376361356234666666343734643638363732386435626533646331303839656439616337 -34623139626265393038626137353538313337323739633632643231393330376261383861326262 -36386139393131653165323835343338663138396130613335653636636661366135626131366439 -32373235653435356634376339343033646438386639353861326465333836326334656132376435 -32356134336432613631393064363034323663663466633633346165353165386564653463643832 -63656361333164373061653431666530346561616430643631326430623631343665366136346562 -64396339393931613533616431373931363461313266346162666562303432323061356336393632 -31393031616430346237656464613435613337626564613934353733313764376337316564333536 -39346231366466613736323334636564366133386536303030656437373635353163313962633836 -66326638383037373136366532303933636236663535363731663635303434306136353566383066 -30353362363430646436626236633230633866663165383239383637316133393362646366316461 -62333230656664363932396162333465323734636666366437623135653763633633616531663361 -35346165643830356334393765363836393735303861396539646665663732303136393663336335 -39626266363837613435653037303136343965313233383761373237306336336638623765393934 -38653338343338326631656334353530613731616162616238336335613066386261623133356661 -65333837373031393331306337373934323937393130643239383435646335343038313138306265 -61623533393130636665663962613438653936343930316162663832313435636230333933313261 -37376130633834333035353033613431326330316434343835353937643866656464333336626565 -36303166353063353234343639383762333961363363653062653634636130656131383961663331 -39313164323438313139656332313939656533376533353561393861346635663632633334323562 -63346161373939646136326337636236353461653761316430383937393732356238323564613332 -63323130633165313535613835396162323463633165616464356635326434633865646439333837 -31323030386665393737343734383031616562326437363462346132353361333462633733393431 -37346630656430313436613765393363346261306333326132323036366663353162616263323461 -61646434306463396435366531376636643866653538316565663564666136633533346434313835 -63636633363631383937333833396231333535306538343863623963346632326434333265666538 -62303463613462366562666639643132323964656362366339636136656435326330663739373861 -37393933333934643633616234356666356639366531396561326236356563373136303066343662 -32336238313634336531386165336138393233316335653463336663376461356136313037633839 -64323637343131656539616666666262666431303263346362636365623938663534633837386237 -66313964383835396637383030383562303730363664346232363432643861323132323534646331 -63613435376334363337346635336262343230663036313030333733653138643966613232666265 -31353535336339316637393838316363393539396266376336653434313263303138306664313236 -33373136333836653439383738393063653766663639303838323764633335373866356466326132 -30636664366663343338323331323361336363316134653761626635316265366337373936376566 -30333133343836336466373331303439633363316166366366613462653631313532656166393336 -32656563643438353239393266356163333038356431393935643762613537323831636230626538 -31343065316463376365336634306535366330343763356235306435633765653331353838386565 -30646264386337613963656461383839616537373861316462316232646162336139373333306331 -31643838333132376137373865383531313538663765353733343438376539303537303031306666 -35613931623263323162303730363434643038373239623762363731613963393238343333623961 -63303062656634303265393736316132336534663738666631623962633238626339663661303165 -64366635356537363736323961613837346632356636613662306264373364633332653534623364 -33623239343639663431333339376235373761653837323436666433303463353932313134306664 -39373666656637363231643736373462623934313732323063386631396133323733353565353763 -31393165616264616435393165666337646162616366613135626232363430376538313237313633 -63623461363166633738333239643035626437303061393565323564393738313966343433393063 -65316435353139333264646164383864313033343235323233393663356532646234663539333530 -32663732323839353936623665663936666534386464626530666436396236623035313936666138 -31666165346435383664613135336532323035376536653935643266346462396664633031326632 -63353231356131396436306564303732616639303730623364383734343061313135303137303461 -61626562363935353564316261313934393331373463306432613132623034613763303266323864 -39376537366432643135313463326632636638633733353565356430326238373662376333613038 -35633039626461663937656561366336623938646265316432396364323236376436313032623038 -35643761333935333463353432636637633364626230396538303931306436383765333439316464 -37376437353731663038656465343530343036663261373163616331616664653165666139363066 -34663539303934393730613738353739303864303433346262323930643266643134343766373137 -64666437643639623361326532313031323232313565653438336264386130646335613538313166 -30386636636333356566306533363636613638303139373937333530633866323765313833306138 -38346238616236306165396537353532623030373164633538353766336163303561363966393964 -63643837366666666464623537633133343437303566623665383462366634643339396663383530 -39646261623432633034333739636661376437306235306565333934313863636163623230323435 -33306632313335656633353562383832383365386334626366383035633263633766613036653938 -61346262383461666236303533303430363436346137343365376338313131323163323236303832 -61656162323664376331363430383437646136326461343763353063643665393539663064616134 -30336330326332303263373236646237383639626430313839626565303565643031646334383835 -30343763346561646263613765646539383763336333663430616537326238373039663565633038 -32353336316436613532383333333766356362626333643834333834383765363731656138306233 -35333561373566643563643935376562346434373838353334633430326430346638326461373664 -31313961613161653531656136613130313064316331373662393664356137393862323030333663 -37376132623736616431353532363966626462663439333236663836343435363330396531633734 -38363836373639643635316163633161613431356263346161356238383337323432363836613164 -36303831626637646633373063313831623231326564373962386237323166346138376433353131 -64323636326661613033393864393133323630393430346361646239653065653234663930326363 -32356663383035306337653935323233313830343731666235636336656262346535643332346161 -34376464336563646237383063303562373631323232333463626638366261316434613536636165 -32353337636264616631613639373563626533616566353432313962306266376630656262343861 -62386534633161366539616430616530613961333966653765646233303431316466356534333865 -64356166353364393263303666316433376461313561353033663466386263333332356462333631 -31653436303436363433613834626332383337643434303763623161356135363563366339626630 -66393731356563306435306330643831353831353164383832623166383431363236653536646665 -65353134616639666566653164396563623661393033353835333862663933346562663464303738 -62623631373837326332623966613735623366383262626531633636343363656438313334386466 -38336565663064316464656637643839396239303166386162396638343863653665336231656365 -35346536663563613861393138323665353036613037366463343537653066306364613035623136 -39653264366137613537393939333034303936633265656235346163386237613934623865306265 -61616563376565313161623532626131346262333833313563613634626531633865633137373035 -38343834653635313664616566663964333931346664663535396230373962383061303662653134 -61653339313334663262623230376436323638656332306266366236346636643835623630396162 -37323636616434306562623866386432306234656537373033353963613137353533656539353232 -30363331653539666434353630363934363363353237373163373931343865626335336234353264 -66613832373266636234346431633830353965393238313464653339333237343235363463663535 -64353533376361616530363139343735393361613466336565643165653938376563613436363931 -36363535666366646631633038333165393930313033653033623762376261383137663661323766 -32336161306166643138666132393834656335316366646334326265623964396338626532396262 -37343064623635303534323461623566303365303766613035323334333564313263623964396535 -62393935303965326431653333383030363938653064343537663333643562623538323864646437 -35633838663031663732636233326262333035373438336538623236613038343262613763653236 -35353363346234353833333434636237323733323937666261653663653565653133633035633535 -35336438353963366237613837363135623663656433663766316664306561666639613637396461 -31303761663366656165653639346332323632313237643536333332366335623138363466663036 -62663433366432383661313432633830663765653261306662616334323865633336373263343233 -30376636633762353363623764376362626131343562613566393265306566343963386637616639 -34373530326162363130313465313066376534326561626332323364386631353834396262393261 -64346461316330373237633565343536613161353266316663353738366235663562393039373466 -64613936376161636631363036643963613065623764333232386662393735363361363364393038 -33633464326666656233343838636433346537386639353966326437366437636363336563623065 -39636631346432646464323930613162376461363965326365363339386361613333303239333439 -37346662333163376164386161333131313136303631333663363833353838313065323838383666 -36366237613864613835366431323863316337346562316561343738653361366436343630393530 -31376565323738613431656239373637346536663539653166623561343262306165343366333836 -39636135313064383762396264623361353865303530306162356565313261623338343965666135 -32656132333934333535366463313336363134623862623730323966653731666531656138643765 -37376463303831303561633232343535323564373365303063333764393332373737626534366165 -61343865333530383730396135666130366636363166616463396533626434393031643466623161 -65336639636333343564643265366461373930333162346437343536353538353934663361663561 -63303133333165646263323137656131303762326264636664313861343462333031323465643134 -66313837313961333336623362323165613361633561626430346531353035326137643637336265 -36626165386166666337613333623436383763313839623334663664633831316435313766313863 -32396265393464366265633230346131366361356135306334326536363861316263386264613332 -36383237303965626366393062373035363838646630623839363330303638303565666663393938 -66616535623935386439343866323061313738616632626361643830343534643238386431626166 -32643030663136346163396665663835653232386532643439656238653332636365396132373166 -37386563626638356432653065396138393736623737316230623432653736303637646535383730 -65353930346365656562373539303234636230366563313665316532346136366565353832336265 -64636363373139633765643135373261316532633963343038616630323132376436386261366431 -39653662393234646662333065623537626235386363623730346566643563656536646565343535 -30333937396434613338366536643039303431623265316534656666383533306131333361623061 -36353363396261663337653563376139643032613362643136303061303361616634643131336532 -62396562346163343034376261633538633537333137366566666332333565666461663531653231 -39353635376462373934653036366538623963656463663430356238633038383563343137366132 -33643162303333376236333666653764643935343662646265373936356639323833373037323532 -37393338353163393831383765383434353638356466366630653939613463643530666666653938 -66346261383331323134373833396263623664313736363635623136653233303537613965626435 -36643932393865646134303664663936663766326631663234336634643162373662613031326664 -65313064356535653131356635333539393733313066306337656335396364613965626636616531 -64383630663237636364303931633033356464663632333231333430376635336237653364656631 -36383331393764643238326437396664613635623463396335626231643335333035303736613430 -32613738636136646135616433623665663165663764356666666664393432306362376238663162 -65346439346530613735313539656635346637393066663862333430653863326266636137633738 -36336235343733363563623661316632626364353832316362343832623566643836656535663339 -31376266353730343463323930646135306530346333346136613333613433626135386161663465 -33366564616162366333303463343636353932313136363538636130646331386265343266616363 -32346262303739663933303964613836343138613162336464643832616331366366613531326564 -63376366646436393434646364313261363138313065343730663962313565666466356563666332 -62636466663966616464663264623435323437313232643462646432653164613436626136366466 -32373863336635383961363565346261353235366235656237643538653236326164356432366631 -63366539323130656364393932383330396461393563323464623934653931656537313031623731 -64643134376664366436626264326261363138363438333564353732616232306634346630626132 -31653339376664353237306538613337623464326361363330356661363339316137646539626435 -62366661356535366538326633643763326165316231356537313362333761393136653339666239 -35653462653034643535333738623032313936313631636135373264313639663162653361663963 -35356361363061366334373163366135366538343237653535396261353764373937343161643234 -37343236643735616563366339336165616638663639646530326436303330613238343537636562 -37383734363434656465643830303735373964393435646166393231346430306462643538666463 -38653133303131393237623163643234393663643736393836356464656333356235656234663261 -65306335396533663735643662363766663231383264653562323135383163333633626631643365 -62326362656236653932323435613736633162633230663063306132663966313031333662653464 -65376336386363633337366335656436316166336264653436643430393465356464343564333265 -35323138636430326365646466636531643830376562643439656464653031353265323936336434 -32663666346237393261663066333661306338303065366238386233346466313538346635303064 -64616438653266356437303234373238346336636333363461363831633661323034663866633535 -39316132346166303365663861316137383264386663623964636362373666323935356266356365 -33346365633862386631323830663238626264393439626135343438666232613966353038313066 -32303131306165623630663535613535363164626131613663323266623632623238373561656563 -66393430613064336365356635313134666339633865386134326636336239393965356635363734 -37363433613366383631326366613334663365623932383065643962656438346231376264663464 -64396665336161303461386336663539663761333532353861646234373063393462343339306631 -37336231633535396431393530396636306332313938346531353562626361316561386464333537 -36666435653638316439326431383834313763623935373762396466393761356530633030333366 -62613533343264666561623935613738323234633864333133626535306636313335363439613036 -34306636343764653734356638376532646636386634346539363365313836313738373033666537 -36346633343231336434366536383461306239643337393839623236363935353430393839373631 -32366337613933656433393333353030393530626530393666373333393161386630386430633965 -39616438333734306433373164316463663938373037326330333766393661343564356532383435 -64343862616333323564313862353438636162303731383138363361313834346563313866376164 -31656464323138373564353033616530383061616536306131313730353036393538643032346363 -34653734373738646562303038396431653432633332363364626635343633333234346563623935 -62633166646161393963393131383338633138306438313331663930393261663536323063663635 -62346662386264383230316134363930393561346133323066333964623130366664373438656132 -63663538643162313064643765663530663034623834396634613039623064333233356466383933 -31323439353738623262613234656331343437336665343264646130356636346462613865653837 -34306439663433366334313465353335646530323231313265666637326465636366383365373666 -63396533323332386463626435396536333535346438333632346137663964613630653634616562 -35626438333036323138633933373235306565356636333834313830313031633430636163323366 -30373865343836353134666631306237353461363632353135386563336337303537393366323666 -39313465643538643632333330623635656137616561363939356238363936633635386232343935 -32393137613331383336376239346166396563633362613765383364323739626464343338333265 -61636439653734353338636166366366316132363938633338383433333936633461383061633132 -36323032303038346638633535656337366334343534343864626664386339323830303264363339 -62336635303363333162356238356533383562376639313335366530333733383237393465326239 -63386130353037653066616530623961656234383261666563336264643131343730376636653163 -37653932643931653932303164383836343161323466633061386431376537383565353030326536 -61333239353139346461356465323065346662326166303339346663303131633230396337626336 -37623061366161613232396435373566613738386339336638653536396233346535376537633536 -31343963363232363338653038393836363538623038636431663338626437396331623532346666 -61393661666231653364386635653638383334366664613235633266393639313666373434323065 -38313230383932383434393436653864376335346661303039613030343136643037393835393534 -31663361663864323535663337356133333637383338633466633631643539316264386264393731 -37386666343537383361356363663233366461313433616264323165643566646639336230646337 -66316161633134373564303736366635353530613632373862363261646638356561353232386537 -36343961616666636166333462666164386465383635343739306262633731633864336130663666 -62376431306161396434653730353530373063626562626661613764313365353432316333346434 -64373839383936326536343639343037346562303637663038396664376536656636626233643036 -32333132353636616561626236323434356431353863646464396439313964313264393435633132 -61363565316432643031343861383561383562663436343535373864386533633162306239333238 -65393731323061613830303863313865336562373763303836346430303265353632353930613530 -61343536616162353336636266636665636362393563373233316232336565633061303333643139 -30323566313663623936353163383537323334333761653737666635646337623636333137643861 -66343337643834616661396139636538363166643933653866356338333561396230336365333536 -36643437663066633661366234643436653631363630393366316163386139303337613865643961 -63396163343363323132626130653930653934633931396535326637353963396663313639366666 -37646662376161656565343835373762346461333732613337346566326364343132323532393564 -30356237353038643439623439383964636465313363343531623764623930646466366563656534 -37393735626566613837623632623939626138386362643163373062343933663934383237346236 -32343763373163366439633864383035613433306335386363363361633830336432386234323338 -31633634656535633330393332633132613930393037666266643133326136653862636665373661 -30353736343164613031323830626261646632613831303734616238326430303465343563663638 -31376465326365366236376638336364323839313466623331663833306339373261623436323266 -35346335386362353330666539633036653963613065616364303166653662393433353533303634 -61346234316639323131663031396131633038303064353833653064393139633737386163386131 -38656431643262386161346334376561633761346330326439616532393436663161343035666637 -30626661316431633263663536653364613461346462636631643332653131313435656365613462 -34396464386533373537393165376133666163346130663233356633633937663435353263303536 -66623663633435383434623833623334626266363730383862613261636365353336643336313030 -33313464366364666364376266333332316663663336393033396663386134633461326361356462 -63616666366139656135316239373930373737323633396163306464303265613534663564666136 -34346637383436333039316537343864646364323931363263653261633161633236353532616362 -33323766363632663434646431323662343637316236666461386162346636666539663265333362 -36363066616231343332346633303762633636643532343065656638386433356463623566616365 -38366135373336383363363637313565633466313862393463333862623661636539643839636566 -32653137383530663734613561626565613937376161613964616233653338306134653461366162 -65636661313338323738323335373739663238333230316133393437343530346265376661633637 -36643939613530646134663931376465323539333062356135376333373361643831643331396333 -36633431663630623563626639626336396363363632616536613264396631336339396661666661 -64303138323835336631353335336635373138613163383838373961663831663364393766613264 -32363064366365616561343635623634393434323435343165343137393639336362383537346632 -37656537396365363164366435653332623432623030653437626637613433636266343231323633 -31393963346164343631303162333739623335666566313230646666323964613733363637393637 -61626463306631323034643138373034356131306662653964663639363766346536353435363334 -34363565393061303236336134656433343533623233316230363461326264643862653639316266 -36396338336439653030313065626261626232643337306537616463326465643136363161393763 -62353236336331633236666634653933353665326435633463393566333966363163653037306437 -62336635666436623666636235303039393130373530613636353561623438663038313932383635 -32353133386233306334633735333231393363626631656339343939653737363035303461623834 -39653166616363373664643865316636646462343666326337336466616432323830316664646663 -38646635636631363232393062306635623530356237366237666134316631313336303838356130 -64663634643333366136373533633832623366316639376564376131623766613833366363623136 -62646637373539616662663462643164643665316366333532363633666536316332333035346237 -37623961616163396265303430366135366261333133393863666533323133653037633864613832 -61316466633764386430386632333337363432356564356531363938663966346563633435323032 -63363964623065633562613233616366346130633138646433366331323563643564346536306233 -61343966653065663533343534366334653738653566623434306130376336353766323935313938 -62656638346431363633633363666437343063306463366538653566323161333861663433613736 -62646564366563613630653737323961666435613031333961366138316633316463646464356238 -34366137316337633564656461356639386235303239613737306361373532313331633933303363 -33616130326230333636616161303063306134373837373838333031626338643833343737636365 -62366434613039393066336562373363373939623762306464643263343066376465653535636530 -62303464663661353835346439636666363264373461376135336465336665393362616437363139 -36653766363562333666363538656266393238306365653737616366626662316536356363356231 -66636665623565373938323535653337353937653330383935646465666163333736623236613934 -31363862346465646261313765623339616666393334333438336637383666333565373462303531 -34393437633134383338313331623362303962386438353566633338366633386638343931353965 -39336662633430633161303166653839373663326130333664383038373762616334373832306532 -63653336316238663336313239336565663362323665306465623066316331303330646263366331 -33333633646261356565326439366130303536386662653437326435313566626138323463303264 -30663832633637313035343162326164656531303062613836376438303734326335333035653439 -31333530613938646662663461386331363339383134666235663764626166383331316166626238 -31356430646262396430616365323638373364633135373536653965643433333834333036313961 -66386262663733653039313839633866613535313562303435653238306561383431346562323130 -66323662643633623033336138656131313061323837663336303961313064663962306634653238 -34386661343637616630383261383537373364323433343732653561393766356639643836326661 -62653431303539623261663563306165633837363937356630336261343331633833666434353337 -32643363623439623633386531613439383962663631313739356261333363326534393964376330 -34363039643161653366663734643739616638633062373734303831363933303432363163373538 -36626534356465626334333866366438323333336165623936613063343032363937653065663232 -35343839336331323031363534323165383065613264656634656561623962316537373261323565 -30666535363236346666343661643466633734636265643135623135626364616465303036386338 -37333036663635356337363837373539343738623738646262386338316134643566663062396236 -39383930393932343261616166363332643832383866353763663535626261373161663636333438 -32363062336434646365393465316632343834626239373763363636666134636230363661623231 -39383130343261636638326464643932303961653261326335383639653561333132393739383336 -62636435626363613864303939666636653036376563613564333633363237666231373762643735 -31353133383939613539303835376138626134333066393835303764663863613366326539393931 -35393934376136373937363065663938323731376530303565623034396435373831326165626661 -66656337326362386664366361366431353534663439356137623365613462643463396163343634 -31613336626634323566616537613730626532653362383363643232373965383937666438633866 -37383432343061313839373534343234303564666461366265366230386463643536643961626231 -30376637386439343337643030323337663532653662383132663562376133346162333239616231 -61313134303965623262346236326233363565383363623534613431353938326533343464396537 -39616334666162616139383937623862383664356264613630303465343061333266303763636234 -35336564633530383662323461623536373838613664303164653735373964373039626433613066 -37316666643563326335626332386164323035666161613630373334356136316364343536333533 -62653233363161626432383739386663386134636431363966653465633265623765343735393265 -63626634376131323762663632376136326664343238376265326130363837396230306630653735 -63643262666134383735633530316463613065303637643765386638396163366634613431636633 -63323666303530333834353739653239666464386632386235323361656164393130306236316531 -39343166616436363666303561333164616365303830653637613261386438663631653833333962 -62633939313239336161623338303731656661373365383461663261366639633630383161356132 -61383636353333643235316638373837663665653165666163393463356635326438326134336361 -66343433613531663764376130663235393136323765333033613336666164633263663735643865 -38383030343432316661643065313430386335356661396336343134383964663964313338653931 -31633861646430386366376130643935633965643464323135616261343131343433623936653938 -65633834663335666561656635316538313636633164313364613963333730333434303062316135 -66323761623364313030333339393465306339336263396231623035323664313463663138326536 -30313934613832326432373130613832316166646439616231636562303234313836333536313661 -32626161373735373964316565633239306534356530396366393232613064666164323634356161 -61326332666562336434353733616663303637643335363735366334343264316334313630383837 -38656434653562613164653564613664616239363530383735343164303438333433343737366166 -37336664393734633239663366326235643832663465393135373139373934363663353163326562 -33333763393431396466356537626465636464636132323538383363336264656135326463353537 -38353065366635656333356562363762306134393537373161656264326665643961366363366362 -36393635333939363838663133343161356235303065393561613766656365666639303563636531 -63656464343361383864636532343164373433666334343636626639633436626661363736316264 -66306439623365386365376538646430653131336632623839323033316533376636636630376663 -30333161643939363431343534643138656530336239653338343263663031633066313432333939 -61306164356461643466646232333332396161613463313935623231343466353163663061336264 -36636339633539323139373564623366323838356463663138356539326136383432393864383863 -64663635613562353233663164373565313562326361313438393562666336613433313363626431 -64653931633932353866356430343533633562643461353730663665323764393338343466353966 -64333839653135333338316161376432393738383334356566636432393535343630636161363737 -65333962653933326330333261306661343533363331656130323733643162383537353464356466 -35343736346562656537633161633233356662373837626435393139333337643732613236623335 -39396639353863393638353136653066356164326134393461633962663636316139386361633536 -61333765633631656438623334623562623637303061656333646365656635636266393363336662 -61663338396533363631643565353537373733316439386564393231663034333838323034316532 -62623361373233653430386366393662316362336539383764613361616136623838326134366136 -64303434623938356161323063643333343538386237373730363065383436653065653831373133 -63363239663333363562633538623664323161343233346139643530393964633065333336353930 -39623933613837343966353534323432333161386665336238353838373335333534616666616530 -63393538383031343530386666366238303635346662663333653637396530656635613931303862 -62383035353234653864623562363834663563656338666439623331393765626662626664633939 -30336435326265383036323037626665326539643863643464306434323639343839323864623738 -64643161646435326637323662393435646364323338323336316235373330363233383134343262 -61656262386462636430366165396634653730376132346339663962343434643032376431353236 -33333938636161373466376631613266646566643238663063393630336561643934616663366362 -66626536346437363566393866313639303935343362646332616265366139306263346235633864 -39333266383064336239643735363934636431366636333133653437313662633233653236386333 -63353838613636316264366239333830646631636463633131356437353465333062363464656234 -39303234303535616530343535633435376665663131646539303134653931633362626630656236 -63376133353637386262616437333639663961656565353038663365393362633966616430366539 -38353262633462616436303166333334346164656366313537343763313931303437326435613735 -32323361313264333532626563353466313939623932383239306666323463633531666639356164 -33393730626239313531633366303537343630343431323831386162343865633963666166333162 -62616235353063656564623161333933646339626336303530306236663966613436646266373033 -61393736376630626262383730663961663937346136633736333364626661643831313033366237 -38626662613837643566626231363739663339653264343162653135613937646533363238396165 -62666139656531333232656531316639613730633966613961393262393137626232393139396262 -62323338393265323239366439323133326530646530643138316339386236653262656635303465 -38623865646239353761313530323665663436663831636431373239653133393838353564353464 -61346133333434656366656465306566646363393533303334363065363931633933633566616433 -33316161646136383039336136666433303861643634393338323138363762356437623266393733 -30653039363831323336613364396561633566393261613764383533636237656630613536363062 -34623931303638303533653162363263396637326436346263663332353138323531653664303361 -30613438613231333563306431393363306562376538383233643463633937653966343265386533 -64663033333332646635313138366336623662613061333764336336366133613537373565663734 -36386239303463633537663031633033333561623530353361633462316336616264323364633362 -38386564383734613437623834343366623035653262353361656334666438623965353030376464 -34643632373637313532313433306632373835386531396438623666643839383337373035313262 -38313563323462373163656435303035306266303430343031663466623931373330383830363537 -66363532336430653831343737373766356439636537376365386565363536386431373933653666 -31353663323132366632303765343962343533373161313266613234373436383362666561376234 -32363664396265633039313464323433363331393062333831306230373161623230343730623734 -65306366383136643261653332343933353135656236633736323736656132303666613030326231 -33336630386638396665373939303133613438343230633063353861343836643434656466646638 -36353165653134623436373333303561393536363138353436356331613031373666323939306530 -39373865613961383937613666316362393832623234363463303861636265666332643462616232 -64353662663331363163303065623631313338386531366363386663666631643261646364613465 -62333134333163383163313833626265663033643635356364643465356565303966653335366330 -36636461346161663965373731666134306562303137363463646563643333343436663962633532 -66313538336562656334363437363263336232643734373339633130326632636536326233653135 -30336434353265343731616433366466643536343537643135626533303139303262383437386632 -64623031363961393835363332303039373665346366623766303339343631336239363639316665 -31656561383161643131373838613435626635386265623038303036366133356265303332363538 -37663863393439363236323437323233313364396230383635313336663961323633646539393030 -39336565643165633233643663326435313433323066376663633563633838306437363032656463 -63613765633830613964363038626137323464343932383736393335613636313764396635366363 -32313339656630396231626137313765323831313032323538616130326362346236663161633131 -66343739386565643138326366326132363732336464646564616165626636343738636236353230 -65393635353830303636343766336531643138643061626434353966356364343430333537313261 -62363537633266643438626631316636386664613961646636353066396266376430303836336538 -32393837323534626235393366383439303336643962643435386535376164323530346663656665 -32663563383834656665396339303337396238626630373761343730326431306138326664393464 -66353064333933373737643038623261616666303666333630393465623733306436323035356131 -66643639666234646334303433333065386436643833323435633039643161373361323964366135 -64613130633133356262623038326263326665653261366565333237316636316566653631303838 -35653639376136636539356438326363663265643233333530316435646163343335636463613434 -64343964313361646562376539373235613431613134356162373334623536613534613233623961 -38393733313265633730323338646337653434646339303231663166303261326537363231643434 -30353838343761343562653334363538623331353238303836653737396636663138383538333237 -39373435303364303838323132346366356433326163366162643931306639346663336662353563 -30306235626537646364353932396136323961313332643634316230366663373231383139336466 -32636636393737633666646466666563636137303662653131333132616430343334613562323131 -63326537633834613735313139613534643130326135653334316139303838343434353764613936 -64626130323063653261636439323035656364323765323036363636623863663036643135643463 -63396164656565313437383830363734353934313863643866623934616531653236613832653466 -37313735666135363965643339343037373235306631333130616230616337353731643339376165 -34613432393162623837373431353333303030623338613430356463323265333038663761313635 -32313962373461376531653139623033333136356663363234333266353039316431653031303864 -61373862376237663639643030323065396365313937656136323364613333353533393361646261 -39316636343961656664393631306235616634623762323364313137343535316432333761393466 -32643031373435346637393436313434323234383630613734346133323562316439396539336566 -65333366363963646361643735323461303039386338373732323264373566326533326538613866 -39393035303839333265346339316263356233393063323362323936646261643761646362626532 -32663430653365633361613632613464356637333436613762633434363434346239623234383931 -62623539646539353039306136616531663064613464306663656361626131333338343732623732 -33623030623533633139663663333436343330333566336233333230313763323239303365633232 -64303230306537353166306435393236303538386236313139323035313533366266333737666631 -39356634346335663262363066313932363132346365633536346363323337616563623566343461 -38366634393337303332356363366461363664663764653830653539616338333666313037343737 -65646464623264376263353265363831306264636566393039666134356336373562636639663130 -37636365366435336533313633333830613632356261636138626135636662633531303339303134 -63663365336539376634356666643164316531353634616361613139303465323730616438366433 -62313266396261396130626639313232376638633338343436623238396538373038656537333266 -36626462313736663937653063353036343230366333313065396535646637326462306538396666 -30643533653835343064373737393465366339373432333562663463666461316430663037376666 -31336631393832386634343338616632613566383364613731613038303837623837646563653736 -39616137353339366637393733386238626433363264373566346535386536393264356662303138 -64626438663934343266633362623564326366393037633364616664626165376462363664353635 -39653834393861626430383631313738303634373631623638396166656231346239353534363738 -39616566363437643537323837353366366330663836393734366535363530333265626134316335 -31643432383638383132616231343730633861353364626562386662343461663031663938653365 -34313034623032303339663736316238653530663362653936373035363063306137356539663865 -64376561343563393262376639643662393164636139343562363032323464653932633637343237 -31353630333262373237653062643637376439386662336262353836643034373832306266626239 -31633466326461306231303161353966656331336233363263663936343366653065623339643934 -30396530643538363664303166323832346230663733653839623530323465373639633862653965 -32303336336561653735343461333963666230373830333765303739383762663838363434633063 -35393236663932616237646138396532333830313837653832656137366463626534356664343261 -34623033333038313434633333303265653037346263313436656135396630626535623461333962 -33666236623134666332303833336261646237633437633731666238616465636134363932356536 -39356433396562633833333834306436663535653835343636613266316131386535653632356239 -30646337396463626263383334613362313530383133633763623230333633653632353930383031 -64363764386336363661396161656135313662356665643938363361366631333366663238646361 -37303031653566616361336334666336386230643539373363653363306565643762623963623130 -33343363623733396434376464303338343132383837363130626662646330653933313465303030 -33666665656338393330666535346338313834366339313331623036646334303866353433316332 -39623234306139616366653530303737316537666364623364396264643864356661643239313136 -66303964323561626537316330303737613638326138356333323439646233393039313432636463 -63306135366563656139643265663439633030306161313566613633626335633836633038373431 -33663866623338303534633536306461343030393837323834323337356533313733653736343937 -32613564373639353739306262623838306136393464626561303436366534376265393665383261 -31616362633933303332346238323639626138653638396231313962323566363135333633383561 -34366431643066633431653734393364626435326431383034613836323233373765623031653661 -63306537313066383831633461666234633466383332303066363537373862633238663666626237 -66616630613233616435333534656264366433383666333531333466343939643065363632363638 -34386336376532353661326137333938656366613937316536366539346164326339356631633432 -63643730636664663833326564653663656331643962306338346437663738663531313836633563 -30333831313933333238366438343532633136313132313534323739636563636531653138623433 -63663437636634653831386162653762313566376666646561623066336230383238333130323863 -65373936613036343230393064663561613765383038396466303236623833616462646362386531 -37343062613231386430303235396232666564383365393537653238666138376631633333633264 -62636433663866663532643338613931343731316531653166306132613366343434636364636463 -35316239613830396439623136373533363561373139353332623562393530613432306231383135 -30613530646339393032653865656637616634303861643237326233336461326131326333633337 -31393836363238656137383832353639323365633866326663316439663965323135396661646431 -32393764653330653634613966353731343832306136376630663431343939363336306461626564 -37616236656235306563343762663061663339333264386331666431623735336436656164313065 -34323163646466396364336361313730383636316636636231623438396165616435343336346265 -66623233346363333530643962613039623431376363313264613434666264616330326537646538 -62363533313965636537303462363839623561373463353232333730313633613637326534303532 -65393938353134646634363830333262353464376462653233663866653166336565393464613138 -37333736346238313132316564343636666564303934373361333931656538386162626562383362 -63326135626432313666386130663636653163323336623262656264383034663931383765393539 -64303264353130323337396663616164313434613632366537376164373937633462356561373239 -32626538653533663833653238626231616435336161353938366461633638396234626635636463 -65346561656562316332303037666266623062346565646232393435343638623361383237363535 -64353732313439653934336132336566313939336363326264633162656364646463616432343862 -65633265376536303432663431353132623434613861623463313338303632356266623933383864 -37316433393162326135353566363730373633623863383233303435633630393139343537363061 -39396534343534323637386432343039653761643262613130663234366661376238643062613732 -65376435343664343832613934383061326463386533323633343236613565316466653133336539 -36353334663866643038613931633531303937613362373938323638643633366562383962626431 -38393464613032646531306166616666646335333036663733363439363135373066363434633038 -39333562613531663536353639373937363634323834643432643165313931656635643838313939 -30646365353531636461653535393234326530376161373163616235346630393430326437613635 -30633039316635366530653432303839313230643031623664333338383139353333653734663330 -62363237626432366661616333663836646531346436346631633631333233663762663664343331 -65373738383135613437366536376262393835353763653032313438323365623365646362326633 -37326465323635616165616239353930353632396330633262323064316661626139653338633738 -61613133646164323734383362363066376637303431336239303165363734376134623039353565 -62613932643166626163653761643634666631626136373736343536383266636462666564396334 -63306332626165663062656231373661663433323739316136626665393632303066353866366665 -38323763383233623638303931396164393233633563383834373437336531363331323236303232 -63333035313936313430373263353761623637636137316336386239633362653236346163333566 -34636662366165313033316261303835323630376264646131383036633436323665353437626336 -65363965373464336138323032653461666132623966646365336162326634326636616566386465 -34613164376265643763366635353065313139363932636364353861366566326637643438333163 -30376635376138633738393764323765663739613365653466383033356139396163353234633734 -39356463386339646338626338616634633032663134626133323736366438316566616230373633 -39623738643464366431626262326336353735616631323534326332306331663036373662363239 -66313362653331393936656662623536356332343533393138316564633834336532323633316132 -35386230643431653138383138333232653239346536393937373434316632303939333662336639 -36306134643234306264646366643631383662383233393631653632373965333639396337633365 -34386637623636663266343137626261353366373831383630666635353835353137356636336338 -34363536336434313164303537356564333737643636613861323430643464356138646235333436 -32316631326464306633343736633862336363393062656434646332666630633863626265386434 -37633731653266316633313061346166396263633936346263316565616562636662363436646565 -32643266363838313334326163316665313763623635643937343538363934646338306464663239 -63326565656266393232656331313335313665363137363636646365336232393762633030656465 -37343034666563633763623861376464643861316637393366653766323735353734376131316165 -31303664653164383837343537626362613038613033333366303939376664353937303061623766 -34356263306436326364326439633662363163376364336539613061386361646361646331626566 -37653733333130643466383939373335316632303361636632386465613137306232653134313363 -61633837376165633262393537363839613361323563393961323764386639363739306364333638 -61306539663163376430643136303264663565343962633635363233336163633636326464613165 -31356234643436336336643361666539666333623238616635346539613233346638313536326164 -31623639303766623662356331363432306537623265316639343563626336626331643139616635 -62363038613230633365653631303461323031643761646361356338373034653736623063383563 -33393466616539313064316231393636623135333433336432316133383630666637366165373566 -65643836613464303534656364656135363965376236376235643564666134343763383133643730 -38316536336366626634383533313738303362613035316266356534363432333737306636326533 -63646266336433383565666634623464316233646232653865343164323631616132313833633463 -34613362306330313432396661343066336438306238356634653133376161613562383338333435 -35393437656261356361663733626335623038636233373233343437646433313332346465303435 -32313239373331393863636338626261646336383666373661336666373166376132616135386338 -33366664363037633735303536626364306539373564303431323033376365346635626434643234 -64353536323365343733376433323838646666336637616266303064383938646563306564366135 -36383063366137343031343836376237613062666639333964316339396437343131316537393161 -38343431613530393232303464333530343236393434663165303062343466373561663266333533 -62353634633837666237346562653864353730623265666232643139633032633335356363633166 -31626338343636613661653331636465383266616361393834333038653635373032366538633837 -35343936666230663431303530636538623761633964376261653133376666343437633731663464 -34663733303139663731623336356131386133376139323062616639613636346135633438653465 -36376164343861623133646663326165623236366661656265326130646432346530336362326463 -64373434366536386335363834653337643239396262313135353030316138633166633238653966 -62346435636530323932656636353262363335663135626338316266393463643766653166623232 -35306239383863636664653361303463653665613638386630663263313165306333343932333037 -36343635323263656161646430326639626631613132666634356561623830646136393666633965 -34623039373837383638313337363162353530313662396137346330316161303062613261383731 -64363733396130613432633662656337633631373764613861616561616135376230343362633739 -64353533353861303738393839366566313361623339396530323539663131313630663163383635 -61633733326463323232316234366534366664626564666339383134366233623264653437626136 -36306266626631386636303731626266383266323530356364646238613330313238613233363266 -33346631323663383434623362396530356637643763343836383739336235356665623463333131 -39376130373235353530303934323064623539646161643334373963663037346637373538313365 -66383733633635323662626661386464663365616563653337326232343966313962343835633961 -61313932633434623138376433346330653562336531333134396131336163383431306164646162 -63663464363537663765396237336166396137323161316366623439663334653338313939313866 -66343938376437393062666166343739366230633438356564633465366466346235373162313238 -64366232386439613330633966303663626537373664356262373164623734313238343765356538 -30386636373432356539613163646562303539643962313263353065626135663338373736306332 -63623639316236616565643538666264363365303838303637333839363435383739396464323532 -61373538626235646365396139353862383834326636323266643836353436633762396532333831 -64303563633634393736313361356433653764363333396133623834373362313439343530333438 -65316234376238303036663833373961353933656336383935643065306266656439656238656332 -38386662383364623663623037643536343832356636356231663165363233303030303731333261 -66303961373539363535323735326430633134383662656432383833613039613830663466613964 -66366133353466306633633536346463303230653232396261623832613935613665383962353564 -66306532643236656335396461636136383630333530326333356161366134316230333032376330 -38396363613938656633343862333235363461333762356633656530303434343663646163323238 -39646233356366633437343262626233623730323638363635663534383666653137353961306462 -34383534613261653433353530353963616630363834366238356134323962666663663932656130 -38333139306536633762643866336333633665373439633864316339356335313362323862373836 -61643132393738383734326637366334613038373962626661393239363634663635336239616462 -38356637323234323062313731666236313635316330356335333533326336363131613330626139 -63363666373734653062643032366638383035313539656335356665363836363363366365373635 -62343766623638393930373164666134326661373931323364656333616634383461646264353063 -36626132323632623963613233326436363830303565646662333739363033353766656263623537 -34623831393663363766323931633561616138376234303531356238396630643238623366613565 -66663636323333383931623633346466626162323336333634366439613932363064333535343336 -32393538636136376664633238346437633464393963623733613636313536666230313632346434 -65626238363661666664373833666164373862376134613461666132643534343930643739343662 -63666534616638373061346235653331656235613336666562623032313431366130636431333730 -31633130306631353233323634626332633639653963643831396437376539666137613336313337 -34336638633562353030626366643939366261633932623230663534306432616631363465396632 -30383539656538353365663038346663356236393639383739646238313366653536313131386431 -39303232633364376466356634343761326631396263393831356166303138336663623234636261 -64333639326539333466333833303734386332316164643130666231313535373832363735303565 -64376461366237663331343432656665356434653738306433306336343734363463643766663637 -34623032373731323332303763336638396563323839386330396532376165316137363564313438 -63656432346566363666666231383065376462633162616364626162363565373630303233376532 -31363565343263616466643139623865353732366536353930663632303164393238643161633738 -30613164326137303663353939356439363364623665653233656633366236313632333030373232 -32646637346536353736643132326463383036366138336661326534653731636366353634353263 -37393566393531626535336261353830653239613033616533613038353637656335373434353435 -33653835613831306461633766313230656661643639333564356466333130663563303061663030 -61326134376662323737613536663932393932633732306131323733623264343833623636666265 -36313035333336363334343835626162363761333038323366316433656263633161356163363962 -62383662313533613730616630623264396234376634663034353438633339653231646338313933 -34313566643730663363646461663037316230393231396430323135623239613736343839343238 -61613265653466346265333735633363656537333865623332393164663135306137383063643337 -31333065663031616131356538356637656137383763666265653933333465313863373734666538 -63323334333536353234303263653036643565643035646461323131363762366332393461326431 -35353366396433613562383132366563323062306138323038643038343364366233343663353235 -33666533663265336266313065363166366136653638613761383335346436336663396130653732 -62623265356363653732343635343237643265663663656433636139393739393635666236633233 -39633735313737383136366566653633633535363435636462633364316136313136653439396539 -63343431643666313837356363386638393366666137323163313634386639613032346233363537 -63306435613433646439633336386431366262363634663836323665316330653836656161316531 -38336533383934386138623866386532353536333861336661666638623766336264653331343331 -39656130353633363232356639633439636165383733636464353764653831653039666631313963 -66633964646631643137333165643835363831626130373437366334303234396361376261653037 -34313837363364613666336134663863356535666430393638633431336633306437356166616162 -37663134336530373235366361663465303166316665383630323862333039643361393934666136 -65626463633361666438326564633062363134623964636536636430373233646232326532636366 -32646437626135356132626533336537323030346334366666386334643233613931623535356238 -63356262633333326636636130393962636266323163353235336330653330623431643862346237 -61313965326136306263363161643465343436383539386163623462363333663062626133666134 -61396632636233373639613136376236626263653637396562333539383138666361326437346233 -39663661626166303539373666316361303064656638363965656136313635353532393539656532 -32666263323861376538343265653264626630353663623938336431663832646430343932313437 -64623766643032306530633063386131326134313239353463633139323436353238393434333038 -39336638663136366331633533343435623431643333643733323837363532666431303861623965 -34633361303336383632396161393932393933373030636639303532363135376338656162356637 -66633662356231643364306663333366306164663264636566643539376265663838393536623837 -30396538643939313532643663383132336532326632363638336433366161333835373736306337 -66386361613365343233363038303130663739653030663130313437333139363563306338366666 -38323037643035393433373135393232643435373431646131373261613561336138383937393837 -65633536323331363135353736636162353435393662396237306336666365326337616338633336 -39633665353635616138656337306165633232306265613737373739643766653331376163656637 -63656265623030316662643665326433633066303233306162383964363537393636646335363336 -39366133656264623865623162303230383139633337323132386338393835373936313733613934 -37353131646430333138326661313935386236303966633663383363336630343137376663643039 -65626631653436613235343133376563623531656137653636666361323834353930383861373764 -61306132366263636332643236646637346331643366386238336631656361343862653264633866 -63613462353032376563383232626665343837643932366334343736306435626262396634313366 -38323464393663626136356438303536303135643530303232356464326130363036343935636562 -31656138376239343265333062633130396561353535346562626564363464616231346531306538 -63383266356439616661316666356239383265393064646532383535656261336434316131396632 -64356136343630393263646539313834373166323439633336386666313065613036313131313236 -63663438323063373264393334306666356231323163343162306336646130386161343433323335 -30303333306362343439666266616562616237306263323437323462643966663662653631623235 -37336535346562323438333232313264643531383338666531636164376333313063333637656165 -30666364656238633265353531373832313739633534646332306165366533373136383734316336 -61623137303261643632356131633331393532336362323961363834613638363765303964326332 -38666363326136363238316432316363346335633934356464363434643661333064666430643333 -65373265333432393964613036306130636131623036666430343632323031663662303966613165 -63636564303038636564663935316533343539373430616238383737326132613938623739356436 -33303737633534386537613735633732633738316636636239626630393032353532383862646231 -30313933323638396464666433643434333661356434313838376532613062383464343765613434 -35356238613137313861656537396333656132313330383862363833616432306532633830383434 -32613133366263313136613735623233333465616635323736336264393634303065643834383334 -63656534313663383864303634333431616162643165336465346630376665383436376235346361 -64346561343730383837376463373561613066323133613338616534316361663664633432306632 -61623265343839653262386236623631623562343962363630386163656262306230643933306231 -39646465666236366365653333336363306535663261323730663735363534336639656436346430 -38386461663931313937396538633632396139616334346332623463626430396466363861346261 -36616266616363396166396536373538656265646531336663366565666233353434636135306233 -33363134383538663132343863663063333463326439383833633762623765613065323036353432 -61633636643938396464646664383261633735616531363761656335626261303465323166333938 -35396663333464653566656532656430303231663462663731333465653434306637353334663732 -31623933373531646234666330393538303833323437636264666266656237646535643133316137 -62373233393338383363306163346565393238613465646162633266383863643139323034636264 -61333939383466303830383337366333376263386665373536333235363236646636306234343136 -32653038656335643637363065646666396436346631613933343534666665363161623839353037 -39333632383066666665323834333834386439653134396134626131636165316638653166346638 -35636262626565643330336135323735616561643737323362666564613765633733353434613063 -32363332336337303665626664396366303539346335343335616438323138613536636335643739 -34313235316530366365303033393832633666643134336333343233336363323835343737303261 -61393665666439616362326637633863373364636137336334333762343631663662376536656232 -35386135333336386365303036646662613934616130303435383734653030663538336339383262 -373865646237313039383763646636336539 +65333232613738343765663363303837636130303638363638646266663330613263373362643437 +6332626231636536333062333438386564383236623634360a353434613530353338633431386664 +64633434316166313630316363323930386264636530356131366362303134303162376631643264 +6334656436356338380a623238623964393363353531306536343462346130656665326139633864 +66376334393162616261663263323437313237616164656330306236656636613762313234306638 +30346561373363333831613765633032363561393333663131663438393333343630633064343835 +66336665326437643430656234393736373262376232616261646135393132626331373930653530 +30383765323863656137313436366662373532613861383638383561663830393439613533306462 +65333236623238666335313730663262623134303163363533343363313935613031633239303665 +65383537343864393761303461636264643061646466666335393763616630373039383635376638 +63333334643539616363326330393734333839393662336132366530623463393364623532306462 +64623535373166336561643633633236313132316438636332616161653130653766623637626338 +39396637333563363037646632373463363662353165333666613539656239366636333135643730 +37646136343337353335313865663039393365623934343839313530313037623062316138613730 +65353437616539393036326232366662616636643632656638613730356664366161376238356366 +61656633636238383562623136643862613136643439363036643965346634646432626431343234 +37396537653536383933666333353236376362666463643865663937376438393630653566636534 +34353633636435383961356434623331376134393065353265303664326238333530323263333162 +64373130636361306438323538353330316231356333613064666632653766633662373262373833 +33346136336132653631396633393834663735643666303866313039646630643432656339623563 +64313530366561363332316330636633623431383535316462653238663237663139396334346564 +62646631656463616466353836393430636334333939613165383539383037303238626262656134 +32353034666338363066613136316331323163353663643366326166383231336264373865643863 +61343637623037313033623338313262326338306131373361363131353935623861653261313865 +35656432613135313161663434323937353061383231626330663739396435666565316232353466 +31303137333064386565366439376637653563393035393761333531376663663939393530323535 +34353362323861663466336566386236303263653935396232376361613964393237313935376566 +61313730366335323431316261623661653462343131306534636465643136643132323038333530 +39376134313834646334633632323464393666313561336635353338386466663530313161343338 +31333731623137626335326266653965616431343165633934373630306437336236333364343236 +34343033643031333734383236656637303864653839303931633134656230643034373939396162 +34643564653666366465653532376439343438303332346135373432303465626166656230326432 +66636439353839306465373736396639666439393132646436363061343839633430653766396335 +35636637666165656336303135343135313561616437393738663736386262613862396266643432 +34353033356635633439306230663962636630393664343037333139313532373065383836396537 +33366236396363326431373438353166623330376631333164626236613130333938363638663262 +35373861326165643137383266643137663231393364646137356234323838613365383539353234 +33333931353732323765643162653362313431613163343563663066336466623365343032636565 +36663866326338363963613531643131306631393837366335343435356236313562643934353039 +31663761366538633932646334323831356131353162373264636565643264366631653831666663 +36653130353263343538656230396361633631623139333964633362326537393734376166383438 +39383134383234373338363363653632313037303736636230373266363761353732366361303536 +33393638366231613737616366306638313932646539383734386437373064343163366635616261 +31336135363564323762336431643463306433636561343333343532636334393536656332356262 +66316639336538303861316365316137643464633266353066353237323364346337616630353235 +38646630393537646364663963366465653335613664343833363766326534656331306235343136 +63326464393935663433343933376333346535356162373338353433633838373433643936643562 +32653438626536633233323161313236613931616566663664626235333737346231633961343337 +36626334343766306262366662623665613662303265653164623638383165333130366164303031 +35353838386362326166323963343366343333393031346266656531623337386165323638303532 +35663861636263346134613138353063643462623637373530653865323564303463643637343965 +64306665333532396466616437656439633539653365333339626662386530383834656337303538 +61363131323061303033303535333164386566343236653364396332623363376265333931313563 +32316130356333656266356235636464376131643261656231633736346264393934636263643366 +64643163376365393435313565343865613162326230626136613836386337353038323066623736 +39643539333936323365396132613561323331396330343338316138336637646465616136636535 +38383634373331633832343965643435386231343665643438333237646337343937643762396165 +35663961366533313839666539326134353362653766313564376338396165396361393764643166 +61653265663965333835613238383662643737336263306638343036616137653434353364303936 +33393536626363616537326434363131393835666332353264636662613734656130343262613935 +65326262396561633835303830353739316161363133623436653939396536666438613763373436 +38326339626561613761666437383139303830343265626532386332363961316564333962393834 +33356230356565363465373339653939363066623164383235623732343961383161383034376333 +34626536373039383934323331386537343239306563613061336138613666636634353462633365 +65613964616137626461353031383534306465343239373530623532373631633364643739663331 +64336361613433323235633964373331373033386562323231333631656665373130343965323539 +36333563613637353539333464643565663964363163373438363336383937313466656430313966 +37366236313263653137346137643631613265343766333565633932343732626565376266623332 +38316662386363663535613462383866326430373231386232353839323130303633343766636235 +62333032393533366664613632636462663739333763323162326232353835666232616337363665 +66643564306333636436653964613230333862316562313734353830356139353162326632663336 +35616634326166633130613832616138633161343131336439626437326330303364633834376237 +62656665323539373662653339613332643965653531663833353738376438313362353634343663 +31626634333630303935633835343239653266343331393563366165616532373763306336326238 +30656364626631666137333033656436623036333038666462353330373663363938356163366132 +33303866363563343764626362393163336632633231646436383438333235343732653135623137 +63386262326639323538316634643632353233663037616665393339666135656466653262376663 +65303865636464643738626235343964323531643332626438386634663330326435323166386331 +36363036316433616261323364646537336533313933613764376463333734316534613761663362 +30323037333430376239316430626661646535373034656331663835323066613930383934356230 +63663161623362616539656561653865363033373637656339663062636264643864626361333430 +32353961363135326133636437336565666331373763613032366237333565666364333738636532 +63326465333861376633316634393566656432663938326432323037326238323364336330653764 +32303935303964643135376335653536353162353432366537633431663137373336623766663737 +34366138383231623966666465326338353437303432326439613030356638383132633537613066 +30636666346334393037336666666364306239656138613438353463306230383161323364623661 +35353532353261376631643861303739366265333537393138366231303066336631633831303764 +34633835303738633861313763363563353730636334663938383265373165363639333038363939 +64323334613032336565303036306163613032343631326562363263636266356638393033323636 +61633865323430356639356638356462313937363034663633353630633266653061333664353362 +35616663633763656436373666383133316132356135323438353933386431386537316637386265 +36336338313039626464653130623662623563313330353761626537646630373731306230353430 +37326334613830313165373466366664653936343230616632353165356163356666303931306130 +37353639323864616138643038366431386235336633623362613930366530303566383030643936 +34663766633135323238633664343131633131333838613365646363616331663332383931653531 +33306363373866343432363265303565333164653932633837363331396235333939626364353465 +34356236326435666464333636336532633730643966633034613661333036333965333463313639 +31333566666237363262363937323833383134623364663461393631303439646134616561366361 +37393832656437633038393637313236666438366463363164326233343266616439306530306335 +66306361636539356465393963336434383235383736313261663464303239313632633030313064 +36366365613430633531626430376336646532633263333963343666623161666530653039326236 +34393764353331366663383066386135643334313631316261646265333133353464346533313063 +30633830616565323937316537633731613266366236646338663863343662303366376430363334 +37366435663563643735373366333139323239373461616237323936396338636363316365653933 +31613636623565393331643038336666656233306165346130303330393534353530643964643137 +35636236373662633761353564353766656135646564393863396662373635316665323937653730 +61353833393831343364646330663364353932363337663265333237653836326564646363333931 +32306563646161336631613065323563333866623365376361313431343961663034363562313063 +38373965333131336438356633393330333837303332303433383031346536626135343937323031 +32306462376638326633353237373636303833353831653562633966386233643638333439336265 +32303938353832346337366465613363323466303636333565616338653832316432363632336231 +35353962633364303063323564653338353836393463306638623663616434313462356435613632 +61336333383061323335346639376339653531643665313665343062333665623831653065643933 +66636535366161336432393236633436333530376662336434306631343263656339616562356130 +32313637383731366538386235663739363635363666653538363335333965663165343531656130 +30333465343939623066373432646139303131363735313630653838306363316338303963363766 +33633262633730363433396137656464303865613839373437336266326463356137626430383665 +63316230353962633364313533633166376534316434303733646130333337336336316431626561 +35333363363161633633626363323062356131326237653964326663636364363435333365383834 +64376132353136333665383839396630333333653261343133373634323066323064376334386639 +38343366646434363231383162613466373433653833323934346139343064633938336366313632 +61366137636238316662343765343262303331373163306337623132336663363036366634666234 +32336363613666343166663231393765636134386431646334646130343431323964373536386561 +33663032616361613332633063353762643738383531616130613133363836373934373631363930 +61666532393338623839306165316134613733303238316565353537373930386235643236343034 +63323439633937393437396265303035333630303836396164373232376466353534613365626535 +37373762366165336432663935373764643731386637323861316465666363653934386439353862 +64613738386262373330313831373533613963393334646639653237613936343161313534643861 +35653635666532393965326438383363316663663232396130363461623565623939303534653332 +64353233376138653436646332626235643335306165353032666333303635346234333139346535 +36636231313161313962326436386239613266613264613666353537303262336536633334613734 +64313436616336373664353435323462346439393538373364383539653432356331326335303661 +34643663343633396161343061383661383263333034313861363466646532376338333838396139 +30396131613337356339353061303465316564656662373337396566303939373133363266633831 +62316239666330613538393965316665633336313230643533616361616364636666383038323964 +35646532646665326531663335323765653837386362353134666362363231396332303664303537 +31346233333530326365663666316563643166373363343937363633366130613863656633393536 +62656463386138613136356235363666623434383361306431653566313235346133633662626361 +37643566663135366465376138343634343938643462313737373336316433393834663632653739 +65666335306564636237393839346265343737363532643139353833336161356132623235353838 +34623537396366666463626433316363623238616464353133333133666338316566363263396165 +64353438326562613636353034623661663066313437346565313535633131383237613161353831 +64663735323230386531313839303535636532653264343066633439303830396232613836616232 +30303636623864666165366161356561353065666561343630316436653738383163333639633236 +36363535316436383236306363313163633464613566336437653439633262316439343161663330 +33636630663639333435613465376139366530616530643863346137323036366663343838643839 +62663763623436313537613538363031376364346136373866396264313162643239383261343935 +35386632323031666533373137343663633865653065646461636663343465626565646663343666 +38626439306633313531353738363230353062346636666136666331316437346261326336623237 +30313633616264376561656466346530663034646262386139666165363864326666663132636165 +37643164626434653865633038303462373361643132346433646238376430323866613132353038 +30613432626131656465656164373135323166346436316230323931636664366161353636313563 +65396436663533303132633935303535343565636565326637306436393537373965306466663364 +37366633306439326431623836343665306233663037303539386630636463333131336434303461 +32666632353333633737383565393665326637646636363333356366326564333137343564373939 +64383337623161346564306330313634333336396263376562373238373764356438663433656266 +65323561386661343331363831616433303533623362613334303836313037333235636165343237 +36613764386635346635663462373133653566376331613032616235313536386531333531633732 +36663030383566633032646531353339663063366566633165383331616633633739353034346263 +39396166376435633431306566616439383535616464643637323764623361666636323866363833 +32356138323833353936313934386136363030363433346466633135636134613666613235636436 +32653964306531316663353131383135393539306331386132393765623136643337306434383164 +32333537383732313363313038386161653639363833656139653937353138376234336566326262 +64353762306235666131366436666533356133383630363834366265646535326563323066306664 +31643962323335663564636235366330363138336331643535326333393163333361303035623161 +39656531323461356361346239613530326338613935383331323931653966383263303036326434 +39383966353061313138316532346636393962396565346535396330363235396430643237386630 +35626666616265656263316334353939336436313361363462323935663066663863323130383537 +38663435313737613833623364386166313939323731313734386138383837643162303531626563 +31653461383037623231623032393361373737313063653365613365383966646361383434393339 +32333764386437383337333438383566336138383234303537666238653261393966373038346564 +30646566616662633538663163663435323737646363376139613530373866363037623035323332 +64636462666538636163613135643562366134373661653864663539333635303564653037336265 +65383039346262343134303535303430393232656433313737376365623166346434393036316439 +30653631616637643964613831333962306562306536306131303463383937386361666262636333 +35663335323163356362663837306532303561386532343261393764653636333164366231353831 +37633433366463313739366261323133626436333835393665343033653430306333303639653833 +32316630353833336166633737353439666533666237626335616537353766356362373762613437 +35643932386563643765313837346163373664393134663636623639353963336534326564633630 +66363635663134323336356131363061386566643964633135613737323861613934613664663162 +30346263323936616364393534616532346361363438313232653339613534663965663963313762 +37646432346365386336393339313336643437306264383231383765613932626464313865623962 +32353833666335663137613133303761316263316664653935393031366566386166376133623964 +37313732366333333535313663623136393038623266396637326661303732623965616235383163 +35336662613231616236313835653664663731663162323736636635656464376466326361376263 +63656630613136643062656138316638626539636461376230613437363035656263643032326464 +38393039653436616461316132383834653237396238356538393037376134356536643763343464 +33346332313564613339376634663139376637316565373732393533393062616334343537316137 +35313964333738326138323665383133643061626236363662363636363332326331323033366131 +62383838643139343232653561663237623062323136346238333264653838633666343066306538 +30373034646334666338393766383464653961383733386261373731333465616435366135303861 +38313331393639333134376531363132356431366639353238386364313633636135353138323435 +33616437313139343439306163396264313766353562396261613137643032383037396635393533 +62343939636366313561653862623361613336646438363563346435626263333465646566633264 +31353937353031363662366335353165313865386633396362623931383432306461373834623438 +39363938326462633134393066616335346436393639663031636639303465393762316437346235 +36643062393533333566396563396262383837356633393835353630326531336262666264663435 +35653462643538353561336330643236393037643962376536346661366530376332653336393865 +30373830633439346533353038656365343532663731623563343232306630346635383139633562 +66333661323132613430613038643735383639363361653638643265633166383634353739303766 +64616461393264313762636137363030353332376633663437613038363765653535666363346535 +39383838343631313636306163636433313061396462353633346264356137616531666166643239 +34633063623938303864363366316165386636316639313131626232343130316636336430326636 +62353738643761323962396362343261636138613732303330323839346435303637343337376362 +64326463313037313161396632346135626333383730333334303235323931303964323561626466 +30313163383865383165376661383063353932646337623063393763333634646135636639326465 +37666364363766393239303436396439646461323465666336393336343565386661343736326464 +63663564313838653836663437386235316563366530393234636130323465333561666133313431 +37646364623735386232626539636638376436396436363538343136633236626439336332353430 +35326364323665623432653437306564646166653336613462323532636331653866616439386436 +36356133316530613032313731623539656532336365383763373839626565613234396261366462 +39396436373162313465663532396538356431396237626262376632653237383563633135643737 +35666136353536323434313136363736303933643630633339326263303061363738373061373134 +30363531646630356433613038386565353433666136323532363963313065333936323535633334 +35663365623931353235386666656432633332386636613530356135613331383864653633366266 +35346361353264616365336565353338383839613930653662306130393232623732663766643162 +37643264626432323937353965386231613038613964623137376563323338336236336238353638 +33306537373739613134316537313765616334356134623639363462633136373834616362393861 +39343039313138333763343534393638616263393832383066326238343762633035376135376337 +65363762663662663032306263343662623134646663303136656261396535376461653033303161 +64613631366430343130643835343638383237663233663537303238393639373431323461623564 +65626232633439616164623737616338366638343365346335376532323336313338353465356431 +61343962353738666237663363346162646235343637336165663433666465346237663333626366 +61376565616336616238393838376432333162336539333934323930353538393532376435646163 +64326637626261383265323634336434643262643264393433343638396432626638363461323230 +65646463376132663231313661653236626635343731356238626334663831373464356661366630 +33613264376564303035316666333434636636633861343633646136623931373934653833383839 +38353137653531343136316664636361663032383030643334313532623663373830353932376432 +37336333653436303834326135326133653835336639313264353463636231633663656464643065 +35343666646664356633373237356263396138383435323432656662623236363631396430656533 +33306530386434616536316666666562346239323266353165383239636134646332613466353336 +34366137616432616661646565343666356538656266636337626631653035643436373538613661 +30343964616234363738353462353363636363633166376130363030363662613738356238316664 +32393935313738623339383862653033363432366338363638336266323764316163393335353435 +64653235613566333963313564396237643439346563306566646662383365396531656165343531 +61383838656636616463353366353766643066353734343839393864323937333963663233633761 +30643933323339653263646634323064623732303532616132363334326137323363323330646235 +36376566326438346538356632346330346536356161623538363030326532613262343463353239 +30323732376663643561643733346139323465636564333335356361363833313866356165393635 +30616263656135346663636365666362376139303066303661653337333737633831376332653335 +33623634373834633434346461373631633363363633313264663639376336633337616437373766 +38633534323935353862303536623463373164373466353038366565343639393438373930303532 +35626532363936323466666561656363613861363132613532623234626135366666343264653134 +34653835636532326535323137633930333832393466303334623563396432326433306537623738 +34623936303766333739326337623264333737373061343339613732373363356537396464313638 +34323338366431376137336132363332376562636239613734646337386161383631386137633335 +66326433656264343763363931366632643136653631633530626239633338363565343738623965 +32643835393238353031666664636435623763393331346533663539383065323133366666613834 +31616163333339333536656165326634653265366633386333666264653037646235643663373630 +35353235396163313733643838363836316230363432356636396632663164396164376166663136 +32363562626239646565626636353462383465653230633664653335343662323566333135646137 +32653539363239356430313735386432396631636330376236656430656138653730353362333164 +30653165663061393964373836346637633964393033383465663030313366353832366237386635 +38653336383735333361643137643838613230386337616361623039643761653338336234343766 +34336231313637353239356532663833333930356138336232303963316532653734333539363039 +65636336316562356430313036353232666263626662363931663665363738353030633236303130 +32363832316664646130376234306533643836373664623539663165363261346365326163333932 +62663137393834306333633563306464366636626332616631323563626361396364656438613562 +65643862316232633163653938633037613331363230386231303566366136623664656631643933 +62373763323062663632316361666539386533336166626364333634643362646334663266316666 +36636231343665323732313434363033613235626363646231646433386163666366393133636632 +66306536663035316631616634346463376233333262616664656339663563663564623431633032 +61383638393234313431646132333836343537626335353630373331353630363333303966373961 +61323739353762386465336633336430643861313361313937626438303462656333376163666531 +39373734636362383061633936643937633035613937343636303266323434343231356466653864 +38656530666563623731366638376338626466353065343761646631386665643131386237616131 +34376562363865636265316161376262393763316463376437353238633964636662636332313662 +37646439343735646137623231353666646434653864653237393435616539353064666362336339 +61306231366666356639663465346231303364653037386666656238363633326536343439323030 +32653164366639393135383331623863666236643435356538363434396430663933346234386231 +34363063623630343338343166626361356334373933363037363033653933633236366239653561 +36303737323663393965646537666230636539343932633230656632323136386666396338373635 +65626561323330343536353563346439646261663563373735376261343763653032343838616531 +63613936646330393634303066636436353331326161373831383839643331326261656634636164 +65623464643834393238663333346133633262396433396432323565633737386463323962383430 +65616163363161666366343132383261343464323766393966613365346261383966353338303765 +34376139336536376333656537303461346138353337366639336339656164636261393334613431 +66336365336564633861396663666638386464393439373166336531636332383134663030376339 +61343966316232663236366239303535393439353666313730633664373363346364333234343764 +62636132663837303965346632303436653433346534636638346234393463643332346364363638 +33643830386238303433393463393033653165313663613062646532356266306534396463663234 +34616639646363386639356431633063343633343832613533623266643163636166663536336237 +35656635303037643033343430363637383564373234646363653963666432646331623764323030 +35663736386661333332653964316265663136383931623834323134383565326631653566353863 +66356664393134343934646635633035373536363435366462623762303134656334623932323131 +66376135393439623832653037633766376235333238383437326136353462636238343231643130 +39613566323331363337363638356339346437333837623764666438626330653963313062633631 +39653433646537353566393532366236623236356536383261326439636233366564656562383339 +32386465373931363763363064336164333763356466323836376331376334313966366331306133 +30393238393366323633343135393463613836386636353963666331643430633062306137646333 +36616232373263343236613463633336383338626438333934313433303132393361613937646137 +38336639393436633561323532353962636564393035346637613036343230316333303133633764 +36663335303530393261613336393235623839393638323234306236313735343861306265313839 +37643661613339633561366532663138393838333137626432363666366266346538653162366233 +38373937643863663034333133386238343764613438663062303938313237616337626239363933 +62616535376338353331316630343662653434633761393334386332326563636430323335623239 +61303832663664343566656662313263363261383434633266383432633039373864396231396539 +31383164383166616637396639313562613534633738343263633234366264343136303732356466 +34393434363662313236613636653362616537326433626530306235323661346261343461353263 +31613734636234643036643066333265343236653165616332353263616133633231363265383362 +37346632643338316565366130323338356535306461383261323666343939303531373263373632 +33323661613732346638623664623937646463383133366137323639373134353638323437306137 +63323537653036643630656465363732323131393831336331653734343034636438613135313564 +39613466656232613438616131666236383130323164643635653765643832613261343535663365 +37636361626165316231356563626231373036356462653262643532663639643933316439626136 +30333735313162636236366162316561303137306435346161663730316365393930643665303632 +37656633666239356265363964393839616239303161306131623731396534613533343931343265 +63623234366461373631343636346331643437393035623031323037343835323961383139646561 +62653733346366346466366562666230643966663139646134363462303963386364356230613264 +36353035323931636431366565366534333939653830613663643539343338323533663261633564 +37383462393731336361356334303339326130363265353030303363363965643934363062356165 +61303765393136633635336639366265383666666161303436633462383936313737346563623666 +61613231393738363066353563383066663864393935666635373636366461663762666261616639 +65653039633361303436356336383632646230653039366434336237383565616136626430366234 +33366232313636393063353264333636613535316661613032383638393632366338346432353461 +31633766643634653366393663643235383731373061373066623736303666386430666262636434 +39343436626338363264376234356336336534393638326332303731633134323337646430653735 +30383337373532326433626661333663636136363238646332303464613662623538346262343466 +38313439623233333365666433343138326138643031363339356631646631356565323363666233 +35663565313530323533353731333933633863616331333136646266316266353933636564616536 +37643436626337333533653763323865346263346431313935653066623133356334623863313136 +65643730373533373663383464663830303936333037376265336135626535306439636635353465 +34383838643763643064383635333234363939363634366237393864366563316232353537386231 +37646266313936346231393937373533306263383633383933346631633236666364326330366335 +31336433636235626534613262626139666363376430663737316461353863383161386566656232 +66653737373033633262623333313364666434303437386430633138363163393563373865346439 +31633634333764636365346230616466626338366436323361363166363034323766303635353130 +62386363336165373237333534663732346634333533363835653063303364303539313261616465 +65656539373134313835376566346133623839393162396562663339646331653164643764633836 +38353663663034653934373161653538366231643433303332363439333965623939663230323436 +32613736353130303336313466383634383638336361396466326439653532356566316139316563 +35343666323431323737663865653635333163666439313664373261656239363265333163636536 +32396262303735316162356436346664353631626230656464646435373161373666643130326564 +66646436396338623635353639663133346361346439663132393838396330336162333431616636 +35663030363961623062383964376636303337366664396133636335636638343830333033616566 +31323138353030663766653665343161323432623432303834313636666432636233393932356333 +33393537626262616634646563633138333835386539313264386338323431346564306632643530 +30326131623766343961323564316236646134363766663833313538666439376434623465616361 +33636638303037636664623163663562616162373661313063653463393566366332613432383164 +33616533366337313939373166373234343838333032343161626633363333333938336464396634 +64626430633335623137316432316566343537313762633831326533663838663937643534303462 +33383062383664363233623232643738616439323937393239313536343937663031303666393838 +36633230346332356537643366323030613634356461653865333332336561636232343030326334 +35343738343031656132643433653966343738616561333836393833383866623861346566363964 +61643165366466336464313139356666623366323636376138323130343436313738653633663934 +31353664306661373636333964656566646137383436666336616238316435613233633836303163 +61326439343131656536616339326565383834646235326135343233313862623435393062626337 +31643266343663336137363331653132303934323161646232396233346663663966366165636131 +62363632663362646336383465646136653066313130663238383738353233373563333462393763 +30306330373838656139363332393362663565303462643538646464333039316231663835313166 +32333663626131616539343938343832616665336237653863666261383638383466623036363330 +64623636316438343938643231363137313136303135626131313532646231353138336330663936 +64343632353535656434646333363135343966623039333138636435656631393239396234316661 +64613038626233323131663037363964353162356662393366646663653236633566643164316566 +65396662363232323534326361323763643938636136386265363863303533626430663666386463 +30316436363530343538666539316134356532623739393638396564306564633463633334386634 +66336334396233353361636434656562303166643933666438643166653232636132313234376462 +31646461666432663163366236626237666630666234373130623135643265323233373734333733 +30613338363263353763346434633830326463336236373861343866353331663137666537646638 +64323763656266323535333132356332626562616538623066353737656234376436626638343936 +62383432316637363763393866326665366161383133646366356632303933313534623636643766 +33616238323134613465623265323438323530623565613530656137326236366261343864313533 +39303737656636353932386466353063623933333263333062643837333562396563653934356634 +33653530613433313738366232343336613334376639306235393433313735373033646461363838 +34626261333237636662353731613661633831663936643033393135366530613230666333343333 +32633962643538323534366539616132373239366534376136653765646361316466663336656662 +37333164633537613763313031623734356234353639323630623634663835623034373831303731 +66353766636234363935663461313635656463646630626339323061663166393832383430636530 +37666637366361333431623132373163313631343339326661323763326363303538663233313861 +62613032353638393236363631643763383165373139643063326332323937383338633537396266 +35376263303937663333646635653732333136636634303731343533333531353538313262613062 +62623363633366396430633061666334333130623962393435383435623164363437643830393733 +36393232383531653566346536613663663030653934326335646535626430376664653537346363 +31333530663033363234633065333536313763343535653132326433386663303964663364656436 +32333839326536623034646332643130373338356662396537636266326264653733363130353431 +35633237366636313361366531343536366232663133616264396663646466343733366638613966 +35373732373139663133363265323432616262653236653236306564646433336437323964376261 +66306433326337653661653638643230373635356632333561303138643536323632636335633161 +63653063323965383639376132323064313264666564613836653430633537353132356164653861 +62303565643236663364643235643330386232336536616431306163613065643432633338663861 +34663432353365323630393566306137313332626364333738646435333537373861653339333863 +34633762313736363066336434656161363136653762343063383139633936633164353466356137 +33306666616264636663333336383765326332396361383736646330386533336233383363316533 +32313436633234336439346631356432643839353638303066656235656230366665623938383166 +34636662383739653735313337336237346138356431353939616165376661616237393232343830 +37646536653837386164313132376133643138356134346139383335646434373538376465393637 +33373938613237363565616261633834623833356265633339343932393036323139626336633434 +62333266326133366439663834613332373136653631636139646463663534396233343232333864 +64633238346366383730656465356637313266333430616534616638373339303031333038643734 +31303262616337646339346236333239353131383763306432353164616339303361653865323338 +35346335303738346562396237613963363035383235393439323733363762306439363735393962 +62303465653138666265366130353133353235386361303564306131626262653065346530393464 +31636563363561653331363236616464626562343965623033656131646632363531666664346531 +66613237633463373532653639626263646339373864366363666563396437633035626461343934 +62316466386464306632653835313037363934643936643332316437636364623536376261333264 +33353439366432666537643166653263653166323537666565396237373661323235316365613664 +37316538306461316166666432376232356465376662613562626537363638636163393537616430 +39343833646334653737373832626465656638343135633366633461303734303162303336386538 +65323464363636613964313337636532363863663663373532643864666533626133356664633936 +66303864633632386166613436366132386339346631346566346663626265646435326161386431 +35623662636263623836346566653733613635663239343039383230316466313732303038376366 +64323030313631316634366338326233316661326562633534656330636664653166656266646632 +31316136366333396262366365366162343639303335316130306137313363656331656432656162 +33613832396163356239333137626537323531383763633037303637323866656361303938393835 +64343735386431326638356461353165373062313537636138626434343561383133356161633462 +35623861313366623630626238373935393534376633336464636361353764636537333836376365 +35386634656461616461373065343637356364323037383966613364363932613438383265353761 +35666264373738353730646331343838323762386130353062383434366565663539623439326431 +35363534336539346534356664306438613139326233383235616263326639323465383065393862 +35303463373065303665363133366433346139383831323764613061336639383865396463346431 +37376162613536653232646663656536343831316435303136353165366633383261343764623737 +65653137326334396231633165643961396534656635623332353736393664376261653466613034 +37346533303065396135636439363939653264313932336130353835663932333263373236343531 +35306636643232313938303665393266633235626265643832396230396630303731643337306138 +39393464623638613362353664336664343566323965396537323265363434386535656432616564 +35616463336233343962336533313030343632366135393664373064353662643966383439616364 +33646566323763386436366366386263376663393231363835653331363632626238373332356336 +63396164373966343537303137316631383830363762653963383561313234613638656431613931 +34353761363030313734326439383339616138646363656532623363356363633731306133616535 +35383433313832386239326565633932613333653337376663383131353231383862356539306439 +65653432313238373430633831363066383665303261363061366237636532316633326533643135 +36396634613932383630663033613161333932383966366430636531336366316533393435356366 +63396465356264663461636433333336343461326566323465643738336434343134376433396336 +33613265346662363037306439333665373861393636653164326234363839306335383666653737 +30323836366662393830376266343063303066363738653632303934313633343835386235373338 +66646362653330343965343963373162666537633038366362633539636664623861656435343032 +32373065643834386532326637326638643163303763613464323937633436343233373732363636 +32623135646534356334393031376633313962636630393430623333616135663238653235333738 +63313563616238396134656237346164333333323661393465353135633631656636626439663933 +34353330303331323539346433356235386566366665663731346164333232363862623431393166 +37396437626331616233306634353432376338306531373238333830653733383262666337323636 +33663663623661313963626339346264303365346366343763616630303462346237663732666365 +39326238346632393064613739396434373930306665653139376234346237343261333661666332 +30343361333339356438653263346638336163376238343435653933393265333862343861383431 +35386632323638343639613631356439643766356632343434666262396337616633303632613134 +33373934393864633537356561346531643466363464333032613862383061393732653761313639 +35346334373730346366636461616332646534323839653366396539323863383838646335313861 +34323933336138306331623431356138396236623531376566383864383766373430626235363838 +30363361633365623933363965393330323738303634626262306632383630326234306332373535 +64623331313361366365323132383231373435343363643563383435336438643738376130646330 +63383166306239623134613863346632323936646462386436373964376662316235653666396664 +62323063623338643933373061313365333935383437666162313535366530353237656630613365 +31663063356534343235623939306330613230626363663535326264393939313261643437366430 +32373834346434346239393764306330326461366632626263333739633332373266643033383964 +66643263613663373661636234393134373436376136333665313762313332373937303939323366 +31383361313433396238306464623835326131663762336637643339326132663963343565366137 +33616231666332313561643330383961646162336535363738666466616636303164613833613230 +62393331393437653934396266633565626261636263363163313638663165656238313561386530 +36313633373663336531383665336263643637343735653237656664623064353735386164323433 +64373938643735373466313262666362326661353436346664663432643962666261336362356531 +30383139313263343762316535653234613730306263343865393435353164636538393931306164 +31336137643333663163383063333732656530336230663730663037623364336334373930363238 +66666335393436333438623931396236343939313331303230393761383434346562333833363062 +66656137633331376235356434373136616334366463623739396661303739643635323564366639 +37336533343535616262356465353532313536396261303763616637393836396139373631633564 +38373532306539373931366463336534303739343132366435333831616339353031643733616138 +37333866633335666563323863333539313639633532666430393036393035346566313939653235 +31396138393532646665356438613337366463663566616639633638316265623134636666633938 +38623666336163313330316663666336363532356435366233363435393563323231643037393031 +62653666333431373663333263656363666439663466633131306331663339376135653638306465 +34633666626666306236356330306434666463323663316534343135643063393435326136646435 +39323333363034663562656164336137303136666335616334363032653930396263386563393138 +32616461333936626563393934333835333839613835313635633733376365653533656233663462 +38346365353363376336656533393130643236353632323230383036343365626330323833363061 +62393738303836383363366262366630613566643737626661656166653539643334616231343232 +32636131376134633962316530343961393036343861613630643565326532363236303737386265 +32383463623734393138313639333135633634656538656563353439623936376433343236363163 +37323539653632303233383731636430363064393661666630386136396532333433656135653161 +32633766663661343130353937333130343562316137366162396161383463616661643265333664 +61343631336135316536393131333937343231613636303635656236643331623736633265636433 +32336137633335623938326334306165623466393436663336366163323039376236353364646637 +39653566343932626562363334306164353464373430343363343031373734316239373338636561 +33373334353838623030633535613939616634663464663163653130633665656163343666333839 +39313035643664653834663032616639396262343363313237373264323836333533316532616631 +62366332663238326135653832353334383862386536376531663764353037656436643130323566 +64333935366132386531653839636233666465623665333230623433376436313937313533653561 +63323433353931386331303135323766303831396638323331343734613835363236613639353862 +61383638323462333664393864376432333833663763353130313064356665396335346564373664 +35663533633937313765336431653834396430383331663162626333316563663061636337623436 +31373366373834613236346635376533323039363964626633353264316333636464636664623932 +33636464623462326633663739306533616237636263663063663663633031363130353332373863 +63396565323638666665353933636366343666316661306161613261313638326130373233353431 +64616161613066613737323132366136303031636164346366353765393334396130663161323539 +66636134656166313563393631623438353062303134643732363666383934353363663337356262 +39376631306535343733366634346134643561653764333031303038633837663566656666366239 +31396630633935653264613463633332616363303735383036336533613333373064363062393635 +65616466306462343763343631316633643136386130613433643066323430376564333839636235 +31383137326230643366656137623434646362653137366337323935383432343839613431616236 +34616631633863396661303962306661353835383235663765633333393137636330376233383433 +63303632633731303030653132666632326434623430623464633866626332613436626434613966 +62303337343965613061393165386661323635363131623134613534663330333239313932316139 +39336136353731366234303130616566336462383439326330653737646436313130303432323635 +66333062336363376466326539336361643038373262616331656239313064306161373630393461 +66393062326363623331656434343066346339333063333032346335643130636531383933343832 +34346664316437636564636132323862333339343838363636343030313038643039663139343663 +39366562663266656263653466383435663431323163303961333030383438323164363935376235 +66343130323336663335323530363463633336343339306134316239326466343836343965376536 +62303337366638373534663661313138323065393136636263316239326366306139353735333432 +64623362396164313261363563303766313537393264663562386637346266383136666564353263 +31353830363365323430376538666463626337623731666665613666376139333463303864363636 +33353364623438303632353035336332353133306564386134643665363036383836633332356631 +33346136633663343764636363613137313336363031306438343666613932336632666533396535 +36356163373530323937343536313331336232346436313238643239316365373263323039303262 +34363039306662373864633464316630666630346430396266393566323162613633363064336531 +38633036356264363364633062333634323834643233356464613434666466663663346230353830 +35636238373665333563636662316165323934363730633334613433636366653630396365373337 +61303133356630613366313234666139653934363932396538303661326134313638316238316632 +30636262363663316136313664323138353230646635383066626237356365663866633965383737 +39636464363033343838626361383831666266616664623833626365656530326539316161636435 +38396634383162366461633934383333613531316639303533613538613632623232663465383563 +38353230633936646664646131376431616631326234373434373633366566633330323861356433 +31653465346261643233666139316235373132383239303939613432646139323630633239623534 +35333333636163356438613362633030336163633565623161353062343934393639323538333662 +33616263313961363136663739643864656163613034396562396562333336383932363335393538 +34653738656432303932613866613833326366613739353264626338303136343632656461656137 +65653338303733613732666236613765373663326637396134393038623239383531353931323539 +34393336366235646233383633663264656530653834633033323163333866313465383139353338 +64323162616134303737313135353939303437626166663263613166386331333063316265306463 +36663233353962663565623465373436316235323330333738303933363164386133636436333336 +63613563326631313163653064616639306266383637313461633230666238323863356265396431 +64653362313039303361386430636165373137316236316437343838316261353466306430326430 +66326235393532626362336339646531393730376230363066333566343564303361633633653433 +63303934646166343533626633643462636331336333383836303730636330613830373863343761 +34373231366136653231623566646631656363653234316161656564393233313739313634303031 +61616635373837643265636662306665623230393363663334613965373165656138633132313162 +65396437386663306665363262646265326261396166396465656166303533643365306139356663 +33626635623563636137376364313834353465363966343166663064316132343436323638393564 +30303866623038333231376334356363366536353961646235313533356530336539663130336166 +62613363633061333963373037666166303833623839663433613631396664613839343965633332 +31353065633262333862633633383562653237326263303563393133333266646465393665323266 +66666131653963653332616261393832663834386636613634653963653564666662313233663835 +61323331643236646132393731643832376564633439633332316332643738333537656635353665 +63303466323566663965363332656562643430386366346639663930376638653230303962646262 +65383138633166316566333131353234613936333366633361383062323938613933333330663661 +34383839396538353066336236313334326332363965616539323837626431343530326537656435 +38313065643533346338396361373066366436383864663239633233303832333663323962353337 +35643164396363613963393039626237333063666139333130643834303837613337366234333433 +37643031333562326264363837366137653536613635646266363661326438373838663735386439 +66363237663338303332633931613638363735653230386363333933393734383865303130653765 +33653435303831323766313130626361356631376265663663336162396363636230616230323536 +36366136383861666261613462646164366566633335643565643732343562313461396139306235 +66333939636636376661366438663366376166313532343437623330353738616265373635623239 +39386536386463343031373765616565366264633338653339323665623965343435643764316465 +36316432316166386564313535343233643338306364666231323565396631373961386437613139 +34663739643130363261366261643639363136373032383135356566323735646566336363353535 +39393835363038346666643139306133616539613536386364373566656237336264393166383538 +62356364386562643666666538613335643466313831663937636565663035303966653030356266 +64333935653635373731623235623330333739366162313831336531323339303030663430393139 +62386530353065656530363561663336373838613061313263656236626535353762646561633765 +31663138643832393165376234376164613461383630633634316164653731376330383166623431 +65653865363238353238636431383262616636643964633533353030356665386266653033346430 +35373836643865353738663763313062666661323835373739356337323137636630653231353866 +37616565353936333565313938663730633639623032633562393666313262373238323361373236 +62313361386361633330303765633164393664653866343161663736343637646461626539336661 +34663062633739666138363837343261373366626331333833353838653862643335363966323136 +63383838316231303965363736666535303335346333623238343331613964396639626266316339 +65666162353264643139353935373834636165326231616366663738393335393262383031646334 +64623637363037306635333530333963396330633536633038386665356131623031306566656664 +37313232326436353332616338626137336463613964373561336139373232326530323766663731 +65336163323834313861633238313462616233393836636535626537306534346161346264623330 +30383332303166393433353736656162383238343037616465326261363838653566313266306465 +64313534643536326531373337663532396639333531323033663531343137663732643436623437 +62363434373162666631663863356431313666666138623362646261343136303062386232643838 +36353636646333313633386364313663646364656165656466323932383466396532356238333937 +33383461653163396136373666663665663866643931393439363534616231643863373065633766 +61376265376537353631393438663735323039666361383631363132393636373363353934303032 +31303031323332376236643233323733306432363130613463373330643732653939363131346336 +61663161643163366630363136613835356531306562346335323436626538353631336531623435 +33613936326432663937376433353234386435316631313065663231343431303231373031353733 +37633562323932653030323164616339353337353366646266363862323036353836376339393831 +36326133303963633639623961376436653932303762343034393230353535386538373535303337 +65663133386563306463626235323539396337373234643732333738373432643532313563313438 +36373238623238643364373564363632616134356235366530353534376163343566653532616262 +66623038306562326131633562353234616335386539656366326531666637316139633130383430 +63323137613438653630653339636139373062333635303464316162363134656631373233396638 +31633265356138663833646531383635396638343439663836383336623036396133366635336537 +66656365323265653433323637383162313338623463323462356364663434613638373830303266 +37313735626435376366356466633437363161653733623232343466616361396231343064353165 +35323130633361623961373132663836396233373135623733356330356466646364316161626161 +65653763366430346132303161653134313063346435623335323562303931363162363231613765 +64633331363339636562633137383830323764393065373237383533646261666235323366303834 +39643361626563396139313363356430343137393034633635643036393236633963386363353365 +39333633326235633963383263386431636635303439636630323064313231626366623739626237 +62363637303433326263643631623961666639616431366164633662383064373661393135626635 +38336461653733346634313331383830336238373764393339343530303339356232343362396664 +36383836366136663734633435353835323066613661366234313538353230623337396230396664 +33393161613035353737363462656135376661316234343730653334616138616535353036383938 +63346236303963613633666635663463353238366131653533373361383562633839313734373434 +38343033313463376234393839626535396232623438356436316162643531353463666238373866 +63326466363932633739363865396231386361356165313334616134366635656563386135373861 +36663063336536383663373837366636316137626465646437643038333261636666666562663431 +38383336626637363333376263653032313265626235633637363563373236396538333861393961 +33323066333464343239323838313834636562343532613634303264303937626331383830643336 +65383133383739353238393039616264343266373361323562633330623938363964653930393265 +63386139363639636336396337633862356364363834626539613033363566363635386232333534 +36303632303830323831323462613937626666663561646434376232393230643462323737336536 +30383931646431353062343736373135356563356637323662393632303362646266363433393338 +36313863653630646138396366646335346433623439653636616438323161623635356134326438 +37323635383638626663616661363839653863643663333034353333323137633237363435353963 +32663239646163393731343735636166663066353266303634656461646237303537363133653534 +61333735376232633130666431613232656262373634353837326662646261303361366133393665 +33656164303134386362363739643865376665343865356534653034633034613563393734303361 +65653734393262373534323534633438666663366334653464303739333532623864376539636162 +35333138313266663766363136626135336231356136643239383931326632616133633139336263 +32663439333930323530663933366361363964616533616532336534363133666466373333383036 +36363066663564663030386263343832313835326339366230626436363931313433386432663664 +64316563373239306664366164643339613434363536396237326533663063333566396433323761 +32313262623932636336623931653233396665353333633436373736643262346135356133623764 +39386131333239353332343234623863633833323261343932306632376463353631336634396337 +33663761313466336435386362613837333130383465646337373831343837646339366334323637 +64626339336561623232323834386631636637336330393939356333323737653063353932376333 +38316165383432303839366165666366343162616662373536653537656463313738356561306137 +30626362373239313236626365336262633838626630323563303166346138623431316535636662 +64323436623132626335316139383962333362346235393534393332356637623434323830303934 +30646232306265373234653366363561623137316437613962323834633230376634323363383535 +39356133626264353534353365366531646530333138636639633137363261346362386561623935 +39623366366463366165373335613031663832346563623133666466373434313738303832643865 +35626130306365396262376131646232363536303734333864313565303039383135306637313233 +36626166303335336333636538316165316334656531616263393463653833623735343437303161 +62666137383530663861393333646439663633326532303838636132353732323434303833396565 +33306564626130343338613435396232323139336331613865653833636663313632383736343263 +61356465363763633261366432613934383135386436643737343331393839343062616464356636 +37653962623930663161303230353764303532306133383261643065346630653465623734386264 +64666161653539636537366161663233323235346435356639373535626561663233626264623865 +39316662353739613736643932666534326434303835323436373863333663623138333936363134 +64326262363130393838623165323939373338376464653634363333343266646536333662623231 +30393533646436323032316438363639346439303064616337393638343365643666643635326461 +31623863343532613239366539366563643233313336663236656537323763343639666637353964 +35633065396334646239653938386163366332313263346531316634633436646132633636653439 +31363133623964303736373734313439333437316339333137333134626465343434646334373432 +36646130303635633565653833306362373135393432633464386338663332313863663362656632 +63393564366436613431636138613461376531353364613338343463613236363164326664623264 +63333430616238383039363337363034376432353534383266643761643131396637643863636134 +35323132303131343435393634396435306263366266396138383163623633613361373335336638 +33363039613861353162323661303966326661653335306639313133383335663431616535363033 +39393433623730316439643436623833353934613038303062343931366662343136303037656662 +66316539316261343330306538353334623435333535613131333936376266343263633138633030 +66393432623766653832353163616364383232353136336661363031396466336366316562373962 +32626664633064306164396562336235396138346632666164383533323065356238393139303064 +32656336383465376363346139626630643537346265623366313461333230613736343631303033 +64333030616463623765336563646465343834643938623638383336313535366562383133623330 +39643434653334623832626339633638333166333230643265333534646338626136303434333239 +61613634376436306264333036383863646232306334303966346361636263386665343763333462 +34336463653530613232363434633530333961623932623436393365333665633430633862376264 +64373133613135653666376636303262623566383337653931613432396431313535663864386337 +65646632613066623934383037323838373961306531393266366566343332336562623938633866 +35306134626565646165643939303435326562383133663738326231376232663630363034303339 +34313564636337376534393362363266663234653438656262653137646536356238626339353337 +37346563646430326436326666626661333163306239636530613863613335376537313563643234 +32633561336163356234303765346163356132373235343031323661363035336134336431303936 +32343165333730626565313335653963326639623362633830346531636639643430626536306364 +33373935623935326531653134326533323438666231376366633432396431303730373363393237 +63363036373864636339616164313934616266326435316361326633626661613532623063366362 +32633061666164326162323963353736363766636162306538326636323034333863643963313136 +30373337376232323532313633353239343761336336323765656338313430386262386336313864 +34393238646535363737353665626465663731333830303635613334623333396233323461306338 +39616363373438303030333935373939623261373362316565663562346636383334336139623465 +36333532653864613539356531643562323537633661363062383539653733356163316636666261 +33323461303934363137616562313162633830636536613636376339626439643231353435306564 +32336666386566636538363762353366363866633931663831336536393862363265653337396536 +30356230353230333462633632623436643336316662356163636134356339336665393562666636 +30656636656430623135636430636636653530653264643433356639326536626135323231663839 +66666239326530313563613064633065356138363362366261366230343965653637333861363165 +66663531633339626532386533313564383833656561646164393039636334633136663132373365 +35623430346238346637663666346431303632636262383236326364663638353463353436643566 +61613561636239353035636333356362343431393132613832643536633932643837353262656335 +62356639393639666435633737313762393839323133663965353661366465393365306239636531 +34623438343236393666353139373966396434663135333166653136643133356432663261633930 +39643233353663376139393037623736353232646339626331666461643338623165393135326366 +63643161643939393066623366346432366265346539663936356662353838323038303732323637 +34626365376532373462356162393562656638623735363130346362376330303534633662613932 +62656263353664383637376331366330626330376262353533356263376437656136636338323233 +36326561373334383030666664323864366565333633633932306536623063663231623964323333 +39363963306239663435623663666564313335306239323534353162353732363963613864623261 +61636439313464613530306434333436396461366365306231346663393030653737363634346636 +38363665373232393766356663656163363735396630656636363664393635646435363665663131 +31303632643738646531306534626261303135343039643233663361313239613432306332623439 +30626430343434343434393836313331376464653635666432303836303237323230656231393732 +38393639363666393037623837333961303934656266323863633334386633393933363933316366 +37366136666166336665356436636366643231373462343036353730373837653263623034663531 +33653865333734313534656532326662323136323165386333393136396361383931376165356365 +61663930633234646465303439303635393135396239653433626330626635653961396664653635 +62346333363463613832313932666531393366363535613664636665356238643936616635613430 +34646664386630643137626661646336363361353165643066386231663034346133383137333332 +62393839393864393534666131376439616539323830663232653630613666663565646266306633 +62373162643738346366306462643966623562366638313436326562386166653164363333663366 +37316239643164653536396533623639653138333366313264626237323239663737656339363736 +30633063373037333861323266306137316463353062393831366432663066363165333631346436 +64623533336133313931323262616361666566643861336666333939366362633238633539613766 +34396466663737656330373434663334626339396665306661616638653462303839343136316562 +32343539633032383432343563313737306262303635323539393066376133616337313064646137 +62336133363033323430356366366333653033323362646165636238326163616637383465303766 +63343633383231663462343635326631326437646436383761663561653666363938653238353762 +62316534653265303765613564616636663366653531393830306535663138386162343734613239 +65613435386363313635636335626165373064373664626530313738633363636237313466656430 +62626565343935343031316434306264623835366365333562613937303332643637333862326432 +66616166366332376135313566666461386634663631343339376162376538643230363438333361 +35303362393835666438366332626537373731333136316538666432323632363363303233613433 +39346635303765613531353462623739306230373937363262373233366430323137633438646438 +37343533636338636635343837623030643731316263383532313634613365636139313435376332 +62353835623961376236396136626630383566616436656166393039366562373932313539373434 +63643131643061373131656139346466656532323837396434613964666565346234313233313566 +34316564396238303237323062656365656336643838303066656332323665363764663335353161 +66336633396631336439343161396431646561643830386432396562313464643864376639313635 +61643561653934663765666132353230633237656264636438636438363366393832396134376435 +65613733383464333632366435623361653436383565383462663032336639306166376434333932 +30643437636462636639343838633762663064633937333332373439653932353438623030333566 +63323532613731643264646366336535643533353539646665623639323137316432353466323235 +36303335386535343135343437343761356430323731663233633563383339616365666437626262 +38303638313131343965646636386536313166326633666636646265346138396566616236633532 +30663566343866343730326533333661303932323430653362643131373538646362336235343832 +33636261373631613232393637623338626361326134393466663632356131393965376230636635 +65313131386432643835303463306662346532373731366633333338393434323031613962303737 +34316338623065613364336630373333323838363161636165653931386466313765323963393733 +61346535613666333166616434376262653331323161303865306333376635613933613239643331 +63616335353961376636306537313166376230666435373731616330303632336366376535376164 +33623132636363333937636537333564306466613565663865626331316565356230343331616635 +33363035353633346439313039316539303961306165663963346637356231646662383964613763 +34663761616339383536366639323933393561346233336438363164383665323966636538373530 +31313737636130386362373534663964343333623965373138393432393935366231303765623462 +38373732646435633461636533666539313862623761323638363366323365386366663866616637 +30656162353064666366613066623233386238636132316432396532366666346235616135373063 +38366435396464633136326564373339393662353834363865373638666639316536383866373466 +30363833306235356334383837316638376635633835396331333136663437336132623865383634 +64333532396466363963653263336661383365363266336535656630346163336331343032383732 +31643430623339353264663738316463366138396632376665323865353839646661623738623032 +33613035613237393639643463363330393136306431653330363965326331396639383635643139 +34346266613537666633633062333534353166353137626134646461383134386564393334633532 +39653037623935653163643365353031643938346462633861353634376331396333623031343566 +64623539613065356432633335333535393632643465363439666539643433353363326330323738 +65393865633561656631663466636530343339623136636534336235373363343131326166393131 +61316361663536656537313533343834373764626435663233623432623130663237653234363133 +32373062303237633566653963386439303264336233626138626439663738666366633161663634 +61306639383930363536623265353035633438336164623936626534303466373138653533616666 +31343738663066653134326335363861393163313861626566303162326134653131636336346134 +65393435613237343533623834386433633662616430613463616566616337396132343736633163 +33613166396661623163323937653265333238626436313265323934653461303833626235353730 +39633336363435653265313038656230313436356661643431636536336534626639303339343962 +31626565373961376335636234623364636463666161386566336639353639366331343937643637 +63623733353061373731623864313634623433326638386561366239336538373131313664636636 +38633865333432653934626131366461663932373935653462646230636337623535386664303866 +39343766643366626531613034353966393436616237616162643734653865393338663339386530 +30323232366532666639373239333237313633633139656366356366393835313336633161336434 +33353439306263643939346631626162613162313538356130376364353138633031353031336365 +32306435636537313735316137643061373465653730333032303737616536363862326461316137 +38616161613364663063653034396464313634383637623537313537336132316563303961646664 +35653936616539343133623464336532306137366564346261343064326565623063316362346332 +35383964333862626438626333636431383033323533663262396465666630646631396465343931 +62383436613332353466613531393331393434306233363461326631663831323335613361636535 +39653165306564363964633035646264313063316462613631656561343531353932386264333464 +32636439636364613430393531306130623364393833306132306339666536353538623938373836 +65626535373965316666353163646632323961363762393632653265303234653932633436363663 +66396439393431393934373332623963623832643764346264346639656164353961343764313461 +61343433353137626336613165656634643164643530343366333633633839666532366530316163 +36636465383235383930643931346434613864353133346665366233303338343962343361613866 +63633436393365346664316365626433373063396136653066303335346162313635373938356332 +66336634623165636465633636356263326664306266663936343930316139333330373865386236 +38383732663932383366363737373235633565636363346137336138313934623630396563663339 +66336562323434396636303263333737396562336638313437336564346430333038633037393035 +30656539366338626262666339623334336632643639326432613439343238393738386536303966 +31393832326262353035376237323732366162653936326238666232396237356163323035643864 +32336462613237333866616233303565333461396463383665343734646536626264636132313930 +62323938373361393335386231373932646332333735663830323361386164353461333366383637 +33343166636238363236636534303362316164393937613031306333633336626463356365393636 +66356430643533383731353535303931613862636532666665646461383236333434623831303539 +62326562663932383935383439333835333435646338323338613466343339623163313933343463 +62323363643538616637343166323730366465373138643434636431333034356630616663613261 +62393130386436393032623430623131643133656662616137623063373032343331366162646565 +66326435303739303932646564313262663363633036373839636634356137343332336633346333 +34643833643562383431333263656532316439373862366634643865306135393730353234646635 +33353561313732393266323131663630306135616537626636383535313830636339633565376437 +31613463653033363632393339333036316139323665343765333331613039333338363138393537 +32666433336439346164316661633132623331313762316336663530333637343761663532623733 +65393861383763663930343133313362346236663266353536366563383162363036356466656165 +32623137643730336361353232356334333464396566666630386463656265326139333661383633 +62613935356234393636643130383665656134313032333838363537646462363835363962303462 +37666136353966353133386638383563613863313666333132313264316536613130396238363066 +65643261343531613566663037613133633361393064373430393536346261373132626431376432 +37303431306139353932343262613232653539333138323966313562346265383235333433623532 +62636434336164303731616639313537633738623031623934386362353235383730646664663130 +39383262373235376263633561646538336361616439393330373665336237366664353134356234 +36636636363739363664626263373335666662653665356164623835376665663233356533653766 +63363639366233633434616330376463323161353965366638343264636437383765653431616536 +31623832643136343861306666306239343766373738303031373736396230613838393135336332 +35656638313732663962356136366165663536633036313730613139643465393735653437313039 +66333465356435393663373633633436333135393238666633626237393663643835363334663633 +64663762626531636339663637326363343037633961386430636230626334646232636336633030 +37316263663933633537313138623131643861353539343065346138326232666433343462373764 +33313237636131333666623238393135336261303338303539376165653933383633363339393431 +61313532313030633330656636663462616562383263626165363366653664303935656663313631 +35366136363462616663663736346566366337373933303135643434363631653561343661363632 +65636636343734666230383465313939393934656665303932366332363331333234393832383938 +32636634323164613066643533616661323336343164633739323834356637366166373061323133 +62626134626631663832623831613638633837383633636533393339393430323534353131633362 +61396563393136303639396361633564393061353731386439333730376562623665343436373832 +66323964646265326161376335633437393461323264373663633139303236636663313263346334 +30653338626564643331356436316539316263663735386361623333396666343463666533376365 +35633136623934656463366333663535373462653334633264663338656630373135376166356464 +30646437353834616563623062346438663836393034303361383763646461343530646565346665 +33613562643536363539373732393563336238393430653833336266306134623639333861333636 +36376263666330366166663436663634393231366366623135323535323064313265336461373365 +32343739376237383039313331356336653132643165666165303763643931636664396366663338 +31666635313634663864663566323235383635353865616565353837343563316236623631383465 +34626632306661306463373264666134376636396261633263353933326563393737626134343338 +33666531656139663732326638666139373934396131663130336133393333393131386564653136 +39636633353663363461386538646464663438666564383566313664343535373364663633646530 +61663762656234383839326362613264373031303062663939363837356337386336326661326533 +62346164326637613532386634643561393336326532376335636135386564663337313365643138 +66386361343637666237363530653332353636333034666563643235303835383336346534623964 +63373166663733383666383338653261313065306339373030626338636563623132386635376564 +32356263326362656635313531666434363465316131653166636465366366623664363437636164 +37353766303534636439666139303535326439383638383334633537323666396135363639353762 +32323666396337656563383064643965613238323938383062323333356232616265363462336162 +34336166666663313761616564626630623031613635323063393063663435346236323966633936 +31363839396436383666663863613233626565356232373039303566363432346661666135653965 +63346438663363323764326563313134353239336231396536633930343939353336313863373330 +32366235356164356566363536353632643664663533393634353837653737326135643761613837 +65336437646235303735646138336539383665393436323235393437626439386364343634373064 +34323861343836396639373862643965393462343638626366653433356265363036366431316637 +61363636316161306264313066326662626663633464653934653865363236646639616331313738 +36396564643033613030616363313636376163323461656533373632643231396463646436343239 +62343362613931393433333539363065623266616166663436383266336338356666373262613961 +36333562383361633865313165393461636439343265373233303437373730636663306262633239 +38636365326537643366363538633230653163643163373566393232303463386461316539386364 +32366338316238343935333465623038323337343337366466666531376363316438633566633061 +35336130306330376566396162393933393932303266636462326133306262376565613437336561 +33313764653331663132663430383832656232363536366232626137396130393764356464346136 +61333431366536663666643832393362366330643734333962373262666165663066306438646336 +38653532643734373066346230313364316130623262646130353061333035353436343237623161 +62303264376537656238326638333134636635386463643633313431383430666233356662646634 +38323932666533353138323034323861333637343363376664356561623337346562646439373834 +66626138316432616463303130363039356161386437333266656131623433376463663932653965 +39333663363666353538393230383365323565373636366533623234303336353437376536323464 +39386136633131393931633662363462643834303166396563323738373638336630386137326238 +32323361346364376163623231653565326665633438396665643166373732613331613665623335 +63333761623239326232663936306639383635646432333861333566393666396236343963613663 +39623936623833313136376361393063613162333965353930656362363235353033376265356331 +36323164616339313265656566623835333032646333613737636662356332623564643661393430 +38303939393833633639393062666262373539323332636530303838396465343761346230343439 +64396466386662383733326636346438336666343432356463656434313835303832346536636533 +31363863333139303563333438343331306465633563393530356537306561396639363632653861 +31333966313838333638366230383639616464383561393963656363653465613662613834613330 +64383833363166616362306132613661343332363466366636656334343761316530386563666664 +35666163633731363261363638626439373037363238333164366565643530393162613962663635 +35353331353263613739646539633561323564623439303862313365383031653635333137383963 +65633037333633316133656536636637346233616232306261373631303263383739643634306633 +63323031656335353335353363626566666265333235353037396235306265613031333639306431 +33393636626561663834346163643338316461383538666337346463383231383033633434646437 +37326331613930316139326636626635376465663438303936383364643631346464366165393963 +34313532333334626632376638346162656130386131316366663165323631336634393034373266 +62386434353333383161633562636632653662396464323733356333303736326464333762653261 +36323538336365316637336366343535626262626531303734633966653335373039343837363261 +61306334326466623962643739346636373234633961356330616632343061336335346633643837 +64623364386539653334303332386433386139313033663464356335626531623935396332356661 +39326631623865323937653939303563383738376165653464623964383234353362376261396664 +34383331396565333564623634336131333861666565366533323963626137343733656665346165 +34396339383262326562353938663538343166396465653766373833313930376538386362373631 +35643935326666353962386133643165313865303761373730363638373831643532306134323536 +33613865633538343166333332313364323736386533376232343037386634663665653266636232 +61646561346638336535393837346231666564323838323639613439323338356464386137636366 +63616461393536386166363834363362313032373830373631353334373662363666623831643934 +35323932363130333261303361303137366339373164306432636461613433363736333439653363 +35366635646630383562336461636338303635643361316362376664383536336330336462616661 +33393166353031613434303134646537326461333765316365616266623664363336353665313531 +32666336633265313632306334303634636231643835666466623464663331633463353132316334 +33303262623763656461383365373131653563306466376131643663616362623964313735316332 +33333962313537366638636461306566643632643737373932303233376630666639393134373232 +33616333316464663562386235323632323034333534623062313736353231373631636365316566 +37656337626262313163383361353362316361356433646164623433326239666335633865633634 +32313163353437396532356562383463353036633566323763336134396464363336373364356230 +66353962393232366535353165366138666439623839303439646533386263356266346264663633 +66353839366262313639663536393438353863616638383339323866653866663864333435306164 +66616364623236626138353966313931363938323239303162386366383662306635366665373931 +36313835366431646439366265353431633237363533623765663236613539653734363232633135 +65643937393266326232633330303761613036626331656363643837663138306139306436336237 +66653962353632613763393730383735396638626232396136393039346361646336316663373765 +35396464373630343563303766396135336365633232363565626638323231313961356164386233 +66336139363464336462303339323635663764316130643430616563663735616266343463363838 +35613364626138643764306433613830303264333562383630393965353139666164663137636565 +32636465626365643533303634353063383531663539333630633139363666383038393630353262 +65666532376333626261336266303831306134353666336139396366623565333139386139356365 +34303131323665623534313136333961333034343763313663383362383766326237646331316438 +61336639363063643933646137373932336633343034613530376130363839353138323537393364 +33343232393738613833363030653631343235663737643635323835333264373663336432336333 +35353262376137303132326131383230613666356161386266313939313266663764623330353365 +65303135616162303561396237663664623366663166356234653263326432653633383135646339 +35666662373164383938373632643461343863313365626432353532656237343435376138306138 +65376135393431653866653263383733393661616239386439336434386336363965633936346534 +66653264626262306461383366326636613831356133666164643336303730636666633666376162 +33616633663038383338633738383432373335383034623135326237313731366363653031343335 +66623264353561613761363239646534323034636131653335333164373964666434373838613564 +37366239353531626563386665643962396537326230613364303430623133356666333435313437 +34666631626465386234646561616330356439343066343465613261333361363235613335363631 +34303431386463396533633730373732343337643361653532663961346566616139313764356339 +36646362633732613365373133386437323038363430363930333335316131346339666631623837 +32656431373432643737356566376535326236366236653762633162303662623733316137363532 +64386332383839656264373535643366616531306334643431636261633161313164323238626264 +37343661386339636539346333626338346530366531386437366632633238613138353730323636 +62386237666461386563343931663732373037386361356130306163316566366365636237356263 +30353033393732396134663839616130373465653030383831666165653066373937376131643433 +63363031323638396336663739663238646436613263373466313531363631333832303465343530 +30393038313733396338626364666337616431343639616133633365643533366634383533323565 +65373538643437393466363231323634616335306166653934323331646632373838643338326366 +39363537336262336261383437656136386133633236643965336162333965396639333862343331 +62643462663236363837343139333038373437653632666135323837303536623330643037366137 +66633033383936313839333535386638313663633231376437653130393434333933613035613935 +61313736313233383330646530313939343061633732396539313162343434353365336331323062 +37383732366235336438393033323763393432393738636438326439336165366466306336353366 +39636461626263633334336365643263636561646430306463373366333763333438383832346138 +39636339346435386438366537373739353232373833626637353432396162346466313735383965 +32323764356633353238646530636464366234646634313430396537323164343439663933633539 +65373363313231373438386163663632633963343935643262363638653436386166393065326535 +64333466333734663662306136643533336433323434616331653530613635356432353466653666 +36373235653839383530623833386632393566333064623139613461636530623165353535333566 +30313031623165306262653934396138363333343430373062633966326639306239663165643435 +64623964353336353439393639363266356635646439663534336364373365633434353663383832 +62343339376634646635613736616631636366653533393038353234373462376338643133393431 +32396438643263343436353034346263303163333034303930646132616139333163396164613334 +64636161623561353034326465646634383162316363303865343837326330346164386634393735 +37653239383063356630323639323138333838346638366162376639646663303132313338393863 +39333634613862386463626430303137376339363564303432373437613030343937306437613233 +31303462336339663062663561363063333036643738656639353232396333653938386663623935 +30663733303732356566336662643338623263353065386339363463393135303933383161346335 +38663630646565343832613230393230656134646136646437376433303665366131643133376263 +37623839303966313031376434316338353764323963333130333036623561313065653832303161 +30306335613066663531326661326537613465363434393964666362313638393564636637363061 +36393031353531326134616236313836636533323436353530303062636630323536346139383238 +33376632363566313164633330643466383134623933663338383964373239326431356538346530 +39333831623736636166316537353834643535313138326461383763616333656231373262313164 +30366666663231313464613863303165316537656361623033303336663263346161373861393730 +62316631373962376237376433343330333934356664316439316431393862336434616133633264 +30626232373732643266383732323037613832373632663633643839343739666333616635666561 +30653561383266393330616633623962356233303534656533653535343932626333363234303233 +34653033666137326338646632633863343237366561636265386630366138636465356362316565 +61326633663039653233326564356533303432373835323034636662656166323533623133656333 +34306461633736343435346639393438666236393164653266633066346661343465376132336431 +35376534356565666363663431306231386463376662313031643633633363333639633531656163 +62386165353063363338306536333265326433653565623365373863383332386336316631303665 +39313165383261656264366533376138353736366363313566633739393761373463393164666633 +32313037303431313234393661626434613762336334616432303365353861353965616538356632 +63353735613035613337616661616137663038303561393762636563343263313863333333666132 +30353861343635313235303964353333353866306262363836306265336631646131613738363466 +34386664326165383838343433336463393464356363313765653938663937376631386639303762 +65613435656234366666336265653634326639383837646662343361373732363165626630306336 +33333731323036366230363363656433356536656266363432373533333534613966386233636133 +33333236633263656165333963346532346335366635353431313464613766363930373164386337 +63323435336161616261653863393932363837366139313162356163356537656330326437396461 +33663933303036363166666462623166306461663733623332633561396561363066386139663530 +36343035383932643663616432643464613234373466333733363233386339336539333966346565 +35363636383738643265323536326133373833623737666135343862656463396166326563653063 +34306362383037366537383138643461626335346236326632613930346662633230656666323361 +34323464336566356138626237363564356633613866376662613465356630653632316162343030 +65393064626638393334666662613434383738383264306566316434373139323939663232646562 +39353538373531303066323035396435393661336131353438396161636235353130383364323939 +65663639306332333738633931303232333531636363396366306163356439303935643238306362 +63326666643433303765333733663266653965353737376334663438636438303265343835313738 +34303833393966316339646562386235343365663633313132336239653739633164646130613334 +64633766353136363132666631386435303538393433613763336630336339336163366538636135 +39626565323461366365626661636565613230663566613935323435376235353366353331396338 +30386162623862656239386635666362306565323538396662396536323735393761376337633030 +37366463623966336439386131393538343638663561303566353830373263336562356466346430 +64613661353464633236333561633735613862323632316361623062306333313763346562376365 +31383534393866653563623065353736643966316264653934303139376561633265346533646637 +39313161383232366634336161356133663061386464613339386535616636313763303339313364 +63373833313664666637363635636132316662393338656433346339306334393361393765663137 +64643033376335376439623031353565643034663239636463383737633661393333323064646164 +66656364336235383266663466363263396264326239313438323132373865336337656362306439 +37323633396430323663316533313831373638306131303132306662393030323334666635636533 +30333031623031633236343538633034323339303661323566326435373664636466663061366137 +30336533393634616433386636393263323332353961376134633636376465393638396235616162 +39656261646434643538616536643531643336636431323762656138383166656632303837643366 +30353863636535306233346665643264316533346231656637623237653934303530333335383535 +39316264663263356539343934383338353137653135323365656263613434633761616335383235 +37393139333566346162623066313734386239336633653962363330363830383264343835363761 +37623738396563313738313730393837346263343530316665626432633834653430643362663137 +65396238396134643464386132623664666630653063326461623366333430316237643764386239 +31316461323232313135666135356530363334316161653832303561363930336464316564653866 +38613230623139326564623932373035363534663765616462366263363334626136333161303766 +65383064313038623738643331616538353739643064376537646435653831373035613633373430 +36666139636364666430393730633261326534353730386234663934653034373262303431363734 +66616363323330333234653365366338376465636539346637313935656431613530316134633462 +30306166343165653539323138393465616161643838626331623066323465633731386639626335 +33653839366334626139303166396232383231643562643333636263353730396238646532646236 +31633732306433353630656632346366613462663566356135646263396631623862306131306662 +30333332636264613033633362643238616332656630653036373666643133316562636432653332 +65373163303731663165313735386630363139383433393662376436353832663661343034653930 +38353261633366326530316133353630376435316535333265376538643536646638633932353930 +62626266396232663738353639333732663738326430613135633635383532383533653839353861 +62633965383639323932616239393737323632356363366338376362643138336636633737616434 +61353064323436656364626430333732346639613539656563633534323631643133313035383262 +39363435383064646336356362666164323837313739646361333661616161653461366661363935 +36633432363963313936643162306462353634653031316265313630326234333832383432643061 +37373663333333633135653432353633366135656664663363366466373639633463626232343034 +36643235373938333037643535653636626566346630386534393064613535613136306162373537 +36636233656262663239643830366664303138633762646433663533316634376263383935373739 +34393630353765306236316465363165386163653035303433363264356261373634363165393837 +36663261323233396132356461633235363066343538343665663361383837366134323531326663 +36313636643836663765366537666437626436343939323666323335343031393033653739383032 +66386464376432333131396664326135646638343339663563643632373433643563613865376433 +62343564343735383765663165613663326134366365333861356639373063333063303361633630 +37383732326263346634633564373665653862313132373636643239346364643335353964376362 +32656539663132383430656134376437656232306363306462366539656238656438643265376266 +62393237613238663833386233663338323539646635646535356137666237366365383664633861 +33313362366364333266306365386636303536373863633463653166356333623637323533323761 +34373566396534373136643737396636336530653736383263353661363965353938393037383265 +37643739663763623739336265303838363162353335313732643533616666343561363862313730 +33306232323864363363643762316435386637396465666639393661636565623861623762623233 +33383330393130356461336136653234396161646166323238343431613539666466306238373231 +32663734356162346635363937396161643732626366623331383461386535303866356663663332 +64656164646366643630343663383961323331383963323765663534636232653137663662373437 +36383733373835363262343431353664373764323736356464643230323134376262663762333833 +64663965646463353261623732366139393361626265323538313366396564386162623737653330 +39353764336633323131636266376663326639326133326666626335366637356438643564383263 +31313339616664323332653237343062616232343638663565353131653139336437313837663030 +34393836623230653239343130346638383464333037303130633739396666623535326266306234 +64396363633830333635653838343263376264336337623866313166616435646161396663633631 +63343037636361316235396563396166356161326138333736643337376162393639383730363335 +63653966663661393439333130346563313930346665373136386335646262643032636165373466 +39356361303732363035646264363537613564373331383362666337356663303264343735353931 +37366664303337656238626637663837656335646164666562366138336431373234623262633837 +66383432656137646233336435613865373163623734633331393463333361353365333163323562 +39646136376331346165326132353861666561626361656563663036616563333961616638646131 +35623636663136646166663064663733663334326464656463643936666630663332656533383730 +62313930343664303862343563336263313238646332316436363766663934383461653036613136 +32336433383163323334346361303862373735613036343466366263326437373430333765306663 +34326563316335346364373666613535323565626133326230643932396630633462643538326364 +34303462303436363334626466376263333662366133376562623965303366396237373363643934 +34313464373561643836323730656632373066613239306436353665326432323438666566396666 +37653763386337313262623136323537316534663062643561373739393331653866306537343339 +36633334633762313236313234636363663761303765623265323739383336653935353035633633 +61306439383436643463646431333439376532643866373034343339623030633539396336633833 +65636664316361653538623865623331663761396234343037313438343937636161613433666164 +36386439363138323330616633643532376632326666336531613261396633346264666465643239 +30383635646238646136653538386163393136633731323739636132323431663436373064363165 +31306636306534393931623036643038633638633930613063613936313631313563613230633238 +37623636323837333237666131653762643061366438323363623438383161663834656661363436 +30363366616630633536303230383239323565643331643061343864633762616135666232343966 +36356337613239363166333835383639656432336333373966313361646436656134323134363032 +37326366663235353035663530656337306465633236666266666234663366366636646638353662 +63356236336364353964363538346231643363643961306365336464336633336664366530333332 +30636565633365653637613566346362363430333963616333383938646331343162323536333131 +38316535333138336335316230643432616236383162303762353662633966616337343364333230 +32333936613831663061393830313137316333313433383931626234313233663330653266633738 +38623939636130653163623737303039626666613066356131383939363732306234393165663262 +64333438316536303830613233396361653664356266666365363164333634363764663532646439 +35383935663063336566666438633739613864363735626436366537323734633962356539373232 +62323861306662346336343434376562613438363362363635666464663266326162373861353330 +65633937613166643264313761316465316565343431613536326462346162666564393265376239 +36633664313539343866353135633336363265336532343739643437343165333539393230646130 +37396231626132393631326333333363646337616333663232663233353737636335373065643837 +35343731336130383064623630323834643266303233396366313137343132616336313962396635 +33333862373130393432356531663838343137333237643539656466363733316635336661383336 +34313966616361373862353738306431353532336534666238656262663535383164303039336662 +66356339653334396161663166626262326537306434633036333631663264353364643130346165 +62646336353162613266343938316366333165383231313731643033356166613163663638626531 +63346539353932656332343832386538333364373961636432356230646236613434376263376337 +38613836303761313861323566353837386666313830363461383433643034326265653062373235 +33386361383432303061366137333465373238633466383930653166363730666163373361613434 +32646634366330346634343165353663346565306462323035303466343031363931323533636266 +30336565313434316335313464373665316531306362613736613237326332653663633232373237 +35323531313264653831356235303637653637646162366265643838666239313166383837666130 +65313338393237656462363739663064666331343765313339396432646366616433336164383264 +35316463313231366533313530303033396134366664653334363334613536303231633332366562 +38343161646162313464666661306635643432393866363766623637363332363663616365383330 +63306633393336626463636566623062386438613966393839656231633736656262383737393864 +64623535303561346538376265313631653037646364306437306530633530336132663938346238 +31306338396134663361393562316433353939623032643164353130653936626538633635633231 +33316634333866663732373639613663326563363366333530633533653762363265323161373466 +64376464393438336133376537666437383561633734343663636336333939373539396431376230 +39653234323963636438643336383365633266656132643231663638336365343632343035363765 +38666535303161626666613939376261343334353239653034623834393064623534373537343765 +64346230396463623039613739656234613135373034363936633466373533306362393332336462 +35353937653731323962386433663265386235646633663637353535316366613063613632643063 +30343139336530333865386563363736653731306536343737363763633435383637323831373563 +61643830636263346162383333306364343765303563626463393463633561313132346161663130 +31633963383438386335383762346634643931623664386166306633303031363732636536643135 +33316332396636353838383833353962623332383431313633386365373431623961383633383031 +32306335656561373238646562383065316665366530633937306539303238393533633165363264 +35376539336562323662616336663061653464616665616337363266653366626265623232343036 +32393734383832613931386534353731666236326335323532346136356531323236373265623433 +62346633376362343339346665656335313533323230333630333139306431636563616438356332 +65643937366631643165653463393062663463633563643163323462366334643164393339396164 +63363839373831353435343963343465656433303166373562616461303735346339346534643664 +65306261366637396464336430383465663061356161653732663537363162333165343337633737 +34346266323339333966613137356536653261613831353436303661343739663833323133343062 +30323965613262663636633634666162316533643333363264393264383061323738363265643463 +30373538623730313361323235646166343463353434653466643766313962373433386163636562 +38343337346566393363333739626266313161396561663532396633393430616364663338336138 +65646264356162383233393462393933353630613134666538313837633964333232373430343132 +32636462383963343066373465343538626435386466326234396533393536303436653165626537 +64366433383033646334343164376532613839326530613535633632653732636237353763653539 +36393762623264313635623561326537306537643733653535653339386663373137386236356633 +31613138326264356531316637653266366531393062353535313961386164656663306130363936 +31323536643662333139653336336438623038666135643564323939353164653762343839616335 +38346131326366306261626538313435386239343361653939363435636164396331613532326238 +33323731636436306462306132633034373537353363323032396636663439383666636361393031 +61303466383862333863333236626337316539393662396533656238633631643662643730343734 +64386131386633366666643234303839306334656662353165663161643438643363383030383464 +33336139643034386261383063633166653065356634623131333431376336393266363132646636 +36303031353635366463653561363231636435656334303031643832393465386633343338383963 +37343264623764653563623238393139313039316538346539636230656230303961353232303938 +63303736666330343765356431316531646166646538383836333035373264633065646134313764 +37616161656664346261386363336164303830613830383739363137666362663831383739613662 +65633331323838626361666131666264343335303462623863383439393635333962623632346138 +38303036653564346437656632313064306366393934316562393534643063633339386139643730 +62363139363466616439396430663563356539653536643836656438393362326431333964306664 +35353762303338643563646139306435333965363539336462306539373061633035326662383131 +61363930323031623638396537623964333234616166316533623261396230386464383733666534 +36393864303532326663313034323934326130396330393133613933636439643633323438656233 +35613036316536373665336466663962343437393236363439366532386436316639656461303135 +32663439633061343236303762363464353462343363303338336532373937623364323533623930 +36636665306638353030633764366232326234333239353934373130613864396439636662663139 +62306563396662633839666366316166353530396266663965333462353965653333386130323837 +30316438353639663738303636353131393037656136363461396137666534663361376364343465 +39343737633732373336323961613236333164323430646137333666393832386335333839613434 +37613432623936613134323839396331393935336335623430646335386233303766313030393061 +35643934313563336462633331346332623361333439666266303937353936373735626563343662 +34663839383235343764326364373764646663326137666132393234303166363237646337333161 +61396666613434313138626437666235306465373366353864633632646634326166626138356561 +33306663643339626466386137306634626164616365336530333034366165613437623233646465 +31333531626238333734386435626661393061393639346662633339643364343864646463656134 +34343436373534336663613530663135623631336136343336663737363531366137653965346361 +33353566663031326563376637666330353833316538326534366164663837356135373032313838 +66623135336131626665333662663030356664636131353563396438396439366230646237656164 +37633136323761346234396161643533396634363136353632646463613566616138303834393839 +37623135656565643135316532363338323139376332343431333662643961656137636438386666 +65633065623933396134353833323636393434616139626233623464386234663236643031336164 +65363365303634666163326262633438636363383939306461303134363965306537653831653031 +31383435393964353832666635633637613264386439643635393436313564396431666339643462 +36313332636264383965643937313836303139333061656436626362656262623361386336373464 +62356164383165323931346363636561663661656337303365343165313365653234623338343938 +32643737313536373962316534643035376133306330336539383731313262663034306462333031 +30373464373861633436633331656562313334336565353639643964383435623263636236356164 +38663261336138656464633239316161303635366162303861393039303335656566356536366265 +65316664633235643533633531336461346365646634636532613262626665336436633661663931 +64373935333739646539316434373730373038656564303862303732306532633166376231653030 +65366663663363303938613430353664353861653665333333336637343135383334613766333738 +36356166313233313862366564376564633834653032666335356639646465383539323538303834 +31646338326338366636363837643162623736633161663734623233386261343832663535306635 +66333332626435623330653061313866643961663663623663306431313566363066633763386362 +39623563613937633462333932363762623664383064633031653563636437313066653461343031 +32386335343638363532303933333664376462663762393032373532366235633166396566323436 +32333733393161636637326431356331303930633632333839333063353963313662346433646438 +33336263666164343630666130313035373230333531353030613437643463623137376239313231 +61366661633562356265313738383866623261363938653334613266626536626265626232376134 +62613133643136613737666136663864366638373061353532613561386432323061613937623838 +66316162666365313064336138393338356237346337323962363664303563626238313031616366 +61383037343530646434353730633839366566313461393862393037373333363037616339336334 +31313937656234303133303062303532653534336133373634343436613435323238633234336133 +61376131393764336230306633336332333239356638343431623431633063613632393061613961 +30613234383038303132356139656535343135646365656462326261666663323239356665396635 +65653362336231633261373562376437646635383264643530323630313839343632373039643130 +38646534316331303035623536636136343735363864656461623636316539343231383261636233 +64313263353865363030653566303035356162666337363934643739383436313162383665386633 +33313966656232653730306564323237616538323661623432633331663166623833393733393731 +66393661646666366532323865616262366237383531316462316166636538633039306232333231 +35353335303763373535393639666339306231386333333836363132323730393034633763653333 +38316662633038363236353766653533343661336233663937323335663030613735373834386363 +66626438626434616336356665373038303232663031646235396531386336336630353861303634 +33316161316539373133393339336465323462303061633939613131303361303862313734386666 +33366335653832363963613132333363326238323235663061356366303165636465636537343763 +61306231663938626139376631643365626332343137393564343462373430613733346164643235 +38376637396165336630313137333137616235376630316263333434326363653930616538326432 +36383737323764623234396639643539373737643931323136646531666436373766353833626636 +33326131636337363332366537663434393239656565393432623936326261633863383637383538 +35396434633764613939383534303935663862336666386363393037323532336632643633356533 +33626138633864376365383063306161626235623765336633656631343433373565633038333937 +65643838313430383061326432386638643864323263313332396338383661623536353932613464 +64646533306237353335386433316230666235343464323338383136343534316666646561636537 +64636134653939336431393231353532373832336131336337353233656339313233613032636432 +31383166346631366336343131353965323838356435356531353364633335323537366264323139 +38656562353138383931653566383330346233616233376537633133373165316461643366646138 +36663163653838616161653364316631316533386235626565363639643765336164633437663236 +30633536323332356663643634313166633632323964323930353531373761366364636637333866 +35643139303739356336343965366461333261623732396666363534376339393463636130373634 +32366232656535613538623437346562343834616331663364393263653439666539633538383266 +35643364623135363861313735393135363065393231386362626236353732333366343232326536 +32353065313264316430623538363431346564303239306136363163653832366635333161363730 +31653164346336613030616465326230623861343262393163666263303336373863326431333766 +64613639633737643665623430616635393835373762316138363261343434376434326465383237 +30363735316564643964363732333535636239616462316365373735356333646635613761383463 +34396539633836626265353965623136313731663162623931636436666462653831373363323432 +65383230306438393865383763356538653631396131343537626332323135356162346139623365 +31313762393063633739356535336531356439646139633735343630393063643961383936363466 +63666664626463643832613862343064313331636333666537396134336164363862316238323534 +39663566663866376265616435663330613537316663353261383262366334616466343562366335 +63653234633939366365643764363132636531306531386665396234353133373939333838373533 +35666166316338316235613532303163326139623566653861323263383964376165393435303530 +61383564353038306235666434363166326239333233633832386465646533623866613462643538 +30333164623566383266363261366261663339633463643736303530343937333235616561623466 +66663236343762353338356534613733376534386633306239653033363735366630613931393934 +66626163326134363737313732383561323263643632316435303063393531336161313063653138 +36323537613735316364323863633836373038393834663030393035653831636565333363313437 +62373033616462303034373131613864316436623932323263326362386336653465326234313439 +66323261383734653862323330396133633735336639386365613839353239636331636535633464 +37306662313861653438613938666432353863343035316366663234383132646438353637373939 +36613732626662623637353536303764316139313331656537333237353264313966623264306330 +38633634376132316132376538633236383362306138653361393930386633333732663365633731 +30383366343564353663383836353735386334353838326131383833346634313838656330633661 +36663638393835633466343461383364313835326262346339633363626666373238616434616265 +36313163616363656163653234313962333565383466613139363534353265663034663739396532 +36343162313234646566383036316131383437383961643539383931373035363863383037333033 +65663339613163666139323663633638626661306338316436643130323964663866313338316239 +31623163663235316162623633393962613139663339306136303766656164353731333538656539 +65633263653435393239323261356636336635303462346136653837663832363564383735383538 +63633664626661646435316633616239636339343733353634336639346163383835326365306661 +38623631663064303434313261393063313133313136623864363336613130633737313535653133 +63346162343631333939316663623238373735353362373236383738383630623533643161613066 +63333664633363623966636130633166656434653165316564666633356662393666333339386336 +34353935326138393231333462636665373564373335616536383062313464623135613964613063 +33363266353762616631343435316562383332313537366665356132393334393330373131303163 +36373937353562303330333831353865346335616239313161303261636664666430353764373966 +62656537343962336231363236343964333261653363363930363862336163376337626337666233 +63373234306262633834646163636338323864323032363836653631343939303362613263613563 +37636135623033626265646130313037396332356363386231623730353437616634623066323361 +34366435366666633063343866656461366533656538333131366135376264373264353466393533 +36623132303064393835626338626462316633663364303538363861363764333966383333343738 +33383936656534313864646337356438333862303038323633613831663235366435613366316431 +65306131363835343537383435323137646337373465623736396263616565616639626639333531 +63363137643463333664303564323665353631623230363336366165393461613638366230363832 +32306263306264386236373763616264666366376231656333343864393736333034366535353638 +66303466363131636236343533343661363535646439653533346631613635333233363332313537 +62336237396437626237346432386262353561353335316231306565336237636630623133373338 +32386633633933646235353234666234373939646539623762333163343861326239333265323564 +30353439633265326334333435323232653562363666343961306165393864353363346666363534 +32663531353038663461623232646234333230303436396434323137386334353036643936643739 +34666366636137636234646566613232303330313530356339343936363136356136393230663864 +62393965306163303465646636643433336535613861663635653131356335646235303436623634 +33373862666131373932353665336266633130343361366562623366656163323835666330346135 +33643331353163376163643033663236353763333636633939313936653564396138656336326663 +63323562333235383762636236313861373837653736323533396265616530633836356262363337 +61353231626232306130636166363164353939653966666131636332653434313461303236333436 +34646538323835356264393663303261306361613263646362333433653936336161343666366338 +37333838643830363733626537343031333430663138646239616131333139303332643037343033 +34613832353932363065316435343863356464376539303732663630333833383431663732356137 +31326261313135323131323661393134656237366564393362333930313733643031626132306130 +65316136623237306635376235373239353932333637363035353636653261386262626532343530 +33636134353134303861616461666634653361653230383331333737383265646637613262666161 +38643939613536323138653032636636383461323137633133626361363139636231383166383234 +32623735616439356231356434363636366130386137386566363036626461326439313863356437 +66623465386233613962643239643230316362616635623336373733626439633037373531386431 +35373263343637633330613838323439616438353966653662313832313235393138353365343533 +30323430303833633131663637636231636166663834646330653133323032343737646437333633 +31653036663763613631393466323433613066623132313332363565376562383134653735323837 +61373063643434653933636261636366333161633930336664366238356364313632306537623065 +66666564643763663030353237393731663733623434633232613561366565323336303730376230 +36653937343561366635623432663134303037373137376135393530623634306434303835353264 +62346431366232366138333730623030383639663030393530633537643438386334356637303666 +63393930323530373337646433326534633862616631353531666438373236326463366630656263 +33323937663137616233376466663634633564316137353132646531656562663364383430663230 +63333132396265666635333431356332623864323664373231353636623866616637336434636433 +31326462376337333564313936356236313938613864613465656336616130386636356436666132 +30633664306261626635663062376334656666633531623664646133653831656435396330663763 +64333966633035386238323233313661366661343663663035383134343166653630393064363339 +39396562666638323230666433303438313238313433663230663165383863633930623439623363 +62376261333933323262653631323365623266653530343434396334343231313937333039356136 +63616366623532356437356434346433616432316134643062633433653630663864636333393933 +61353832313734653934663332326539356462643932623261343430613739346132633262313639 +65363831373435363934643736626565323864386366303761306634353966383437383734623839 +32663162646232343639373565336264633363383137633334623434383461653861643838366437 +64343766633936653963653732653237633564343462303432343039653366303766336637313439 +61663834616364333036313636376337346165323865626438643735653136653037363064383131 +30626164303630366333386365666364396235393330376338333338306435383633383831643136 +66386562636433303166626434663130616232396430616234363566666131353065326133646663 +63383737646662366138656366333132333336363735636436663437326363396336373635336639 +39356264636633626539636162613662636330373165616532343064313039303561636130663263 +65333663333461633131613763376430343038333034653861653062626432613963623166313633 +65353233653861653330376331653965663361636465396261326331366332356136396130353231 +66663734376230373030653764393835303464306133353337633338653439363139346562643235 +65313265376564323930643131666565633235393739663965343532346236393862643130383132 +61313836353234643039613462653936323064313539326261353063333638616133356633333135 +36376439336265373835336530633465336330663366656463363261353636376564326137623636 +35386536333533616432396333313237313133613662326461636535373861323166316631386632 +62376364333136633937643935636138653162333362663035396664323632643962343061383561 +33346432653162333064646139663134336434333365326438383231363638636165383863323037 +61333831313030336533333964663539633037666237623265356636393766333739623961366566 +34613963376561393765613764353531613934636564653562353463343735343766303336663263 +38386537356430623964633037336435373463373635663433616362383530613338636330313237 +38613232643664343461663430313262336662633039376638336330346239313039303966323934 +36316564313039383561303339303663313830633837316261353834373532323938393134356630 +30383833653036323834316261393737623339643032383864326462313131373564373466356337 +34346565636265623765323237333936393865306463363134336437363135373932393966613637 +65656334323631353432393237366439613062393532326363393366616330306365663962383265 +63306536353135623961366230636432353830646435643762366130356362393435366430663266 +32313161643034646639306662656463623935616530346535663663623932613861356530653337 +62666134383536333163383731343735313966643739343134393461323431366637366633643035 +34366561633061363438636562663266386637633736343235656339353762343136623935346530 +32326438323161333361363136663961343864356136333763373130623061346239616232396439 +31363966313561613762306436376233366562653961393738376632383538613866323236643935 +39633739346431386563346638363665623735363930636338653463366565393632316131663763 +36396565383863666666346537626661656465653334326363336532363366633366633333336234 +30343633306235633364323633663462346563353736383632303365353931623662626630663135 +33623239653430666330326539653864316663386634656164376563653338376464306337306562 +39663032353763626166346235623066353463353061343631626462653266623430623133353463 +65326237613332636264353732616162643533333361373138396235386536316633353230326335 +65303133316131386239646365623964663537306632633131646563333264323835643037613833 +36616336363136356333336639323539356161333965626335343931636338373835643536616332 +66663438303665386661643136626239663932373738636330653238653361646463616238313332 +36613962393866306334376366636337663631613462343635646538376564656432386163633835 +63383466623162313034343138366362363035656231316331303562303963616364356433396431 +65353439383130313535353432323964396264386333333936633265653830646136313431306232 +63383338376330306665396434633265613634613338313866623130336138653464393339633733 +38373437646130663037363964383664646435633034326234653432373364386466613533616162 +38303235636464323635303436366433633766306439363466306435333661333237323830376661 +38656232613538623064343033623237326266613364653032653862316630393234376432623734 +30303763653066316265386136633837346437623265396336613666303837653337623239383636 +39313034363931336331636437383764353332366637666532326533323436643633393366316362 +65303165316231343864616332383763656336663735613366623237303535616461313664356462 +65646365343833633139623639643432613461623937333537633635386462626238656639373037 +32633332356236623932336436373666623633336439393964356630326536376137646630363232 +30386233386432323765313734353735316337326361643438646664363031396633333865376264 +36376332356663616437313231356631383132386432303361383636623062663561396636323061 +39373533353062363330336535323338383964646230656533376166376136653762363130343462 +34646366356232316265636230653066653331363266303334653764326164653766346337623461 +37383938383131323539626566663330613363616162663534396333366333636433336531303839 +63386538323136636339363539383764363237346636616337646136623565306535373333393966 +36313939356162643966623438353932343063666433383336363039316666366562613134643031 +65373366623136653537333261333631373835373135623662363066666563313165386132653831 +35376235373932393336353439656637663462316237316333623539336235316366616361613138 +31396331356439323939336135333432643034386266666430623765393465346539656339336233 +34636265376461653133643835636561306231363565386232393562363437653237636639613335 +66353534303037323164356237363537646537393932623331303837313832353862613137303361 +62323966303532363763353136356561633963366561313637656164613531393433656665336639 +62393462396266666331623636323936323162666661663839303537333233313731383861356566 +63313061613561306138666466623864626635353861323564313266646662336238623536613637 +31353264636633376366386332303738313738346134356532386432316534343637333730323634 +64656365363234613232646435333231663935383766666262313735393864313363323835666364 +39386265393637313930313939613963353465653435626139616534383462326334316537623130 +65616161663564366266666431306130383330383962626238346461633666363832373534373935 +31616330646635336366666662306537373363353334346432333837373363623638643234656266 +37343966366535616638643530663266313561626537313030613862363233613939313734353861 +64663461626463313036616565623063333338633136653464376537306366363966303965623534 +62633338313864656631373861336264333063346563303337663861623631396265393035303965 +37306435356438633263653238383566363266366235633539356335333531303965346231303438 +33393964316630633764653835363966313334383031656235313437353333616561333539623339 +33343832383564386537613232386330616464303132356634663064633931313263616631636237 +61623530613139623264353432383361373361366131383936643961363136633038666238396466 +38646531363436653438393333363436386664656561313166363965346631396438363638626530 +38653036346533393739626132656134616535646232623837653863666537386535643837313231 +31393833636565613332626339313336653665373265393839376539653734386331313864376137 +63316436356261363434336238663864316266356239643730653034336662363435663861343432 +36396265313563306665653633336361303331306137356235333238306235333566383939316663 +33623632393637393366343830616539313937313436663338306532393466353936383963356334 +31376235666565656139646662323437616439633937336131373130656262613761383664303363 +34323234383933356163323764323531373335626262383661333839326233393666643937396633 +34663731393161343830363663363136666363353837356236376665326164343163386436326263 +35333162383464623435333431333364353166356261373439363164373232313136353832366666 +64366537336235646561613731396233393265396235346564386539666131633133663466643337 +39313531303663663062656339316161626134313833313761396437343838383436663936663932 +36356261646636666636643064646462376164306536646336636264663666336239343538303462 +30336266393939643833353538333165376537643537303030643263346634616161613730363265 +34653931313966326264383831313632616462373036663336316366666263326263623034306137 +66336536376466653661616337656465343931316461333830313539613132333134343033663237 +65373337316262373836373036386134386637323435613334636436343834323765343138316534 +32343739613566383837663165393763323035316339343536363935363938386632313137363966 +36633136643530356434306135313334386362343361316566356136393364636636616631643964 +38373533663734326530303433306635363336356436343039323463653538333630306564323436 +38363461613561643661636338653462663832393339373061623965303533373265666437393866 +65373931383036356162653230613532343463383338343165666438653961336261336666326164 +61353631336361653538646463333435333232633462323536623166646536333536613363383364 +35643066323730663831336533666565616361626664363838353038653161663533636232363035 +33643831363036373735636366373839316636323235326138306465353935663630343432303038 +32613331356136313466303035336334383363626631346132363939313830383566653835343930 +61363835303332613932613836343963393234636337353833383135656466343036353232653233 +31656130373965316530663764656331313939363761613833643739613164663036323032326264 +61373463646162636661396137313563396662663835336630633133326435343635326339616162 +31373464666263653565383732333266666236306564306666373862386165333434356237633961 +30643030643736393330303439633637366462343865333935636637393461646337363561353861 +64653039333839663637623261616238353335326432316661623937326234343536346230353364 +66373532373765666238356661623561393139613833363933613130303730396165393934373636 +39646566356333396364623133333262373564313462643633646166616237333035616133326532 +31666333656464623530666530313533636431316261326566353539333331376364323162393634 +30653465366230333763303337653862393231643635643563663763333137376632303666373739 +61616133303432626631623066323436396464383235393832623533666430303762346135353736 +64633233376231626539626163313237636132613438346434626231336463323564333264663462 +66653435303037376565356363386136623330636630303331303362316362613666333862366437 +61633737363431656233343934303932303166663064376561643739383264643166323437323165 +32386236646638343332643732643431656363616536636130366336366665636561643464376462 +65313039323830353434366437656233656136393464333435303032393635643337393737666431 +64653332616436323830353261646534343461633464303637666336626335303532613461363535 +39353336313938393064323436343564383739366665633037303933386261343430353332313938 +64666230333036666436326164376335633339373763353531353366343931383537623530323965 +31343939383634666436633232656465623936633336323237313738326664393763623430313062 +65323333663766653763653033306165666365636466633232666431386135313737373733623335 +36656634316138396436633530366334636434333461623838396237636163333531643835623731 +66613066663461316463336464653336343534626338626437316236326666393338613562333666 +37643633623834363966383034343936643163336566633634666136616237376563303735303438 +63336533663330616565666262316666343136326430313031656435386234623231346638336435 +62353336353833623534646132393138666632316638636539656138393362366265633863366439 +64336163366662666663373066366337353037393161613835373439356532316664663336353633 +62303661666633363336356537386166386637396533666135626465633135643532343430666138 +65643534343763383330393261306635616338626339666138646536623932653231626264303831 +30663435376635363332343534383366396262316135353261666635363133323464663562336433 +32313733633737383636336362343731386439613833663166643831666136353234336535663963 +34666165333463373030663861336430656237353661663964646235353933393337323837613838 +36353135323239636262346166363038336263326434343061343133346235306637376539653163 +34373633343039663632653036303632623062373630343238653939313733313063626136323231 +64636565653363393437346232666239653237333832616432623933623466643233653230353530 +36363537626663306639303536363139316338343132353334346134626235366462653462616330 +32393963656563616139326237343261623364623136323561636564633734663731666435623464 +32396664343962306465653833353637383631333466613663653735666130643161643665616462 +61366365333730613336623165316138653864346531613332623866356261643863313266623161 +30653638333937656232616262643531306662393162383463633965316235383030346333373763 +65373235613664346639373436643064326661346131656263363930373931346637663534313562 +30373561333233616366376139376264613533666664653335353265366364613837383531313431 +65343064343036316165313737626632366339363430373737333164646336363735336661393436 +61666335393364396334653436386335386564306436323962613833396466653832656336666136 +35343466353330653833653735306632333130653136623937373530656530336562346536656466 +31643838666665363733336439383439373133653464376232306230633566333032386439353132 +34383735323332643330393361633963363064646563646436646138326337636334653765323830 +63303364343865303135313966653566383433393038333131336539623133386139393866356636 +62363762373332313562346530313135316532653665653839316136643031386133323739393164 +32623762353838356437626633363461393561343233643534666162363139396339363538643337 +37336661353132643430303634376634323762646636613765316333653534386561623364613365 +33303030363235643965613062643538326633643065326637613463396235636531633636623038 +33373131653339383166373935343738343537366262306631633332393132343837626534643534 +61383666643961323134626339373161633838326463646435616266663138643132366133646331 +66316239663238353238386537373564613035336536656139323637356637393838656230373562 +39346365656437633765653536623332636231636537623466353234653035323764306634653434 +39386234356338303466393765646362643435313734323634613231613730356438376664366633 +31643335336530313837343465633132333739323734383261643730316565613663613261376465 +36346335393539303238323335313336353961323132323364376264316530336539306139613331 +32373935393734396530373931303362363636366163636133303238326238623635373061663134 +30616233356139326130333837346564666666306435613835646461663536333038616430333638 +61356661363164613337623963306630366234363735316363366337663334363034383938653733 +63616162353666616332616135306365343865613030303830383265633165373638393530646166 +32646238306462666664646364336361353035383235623837613963333733333562636538323638 +35313531333139616362383062303733303035363236316438623135353134396465653934336166 +66323830386632646662663631643731633039643465353832306133636331633136623536633166 +36636533663166363431363231653238343836616536393635616331656265376231393531383731 +64393736643035373366316163343333643634623665656235613462313837613832646263303164 +30613366353131363533353434663862303039643331653135323938663865373865636161393538 +32316665623530316435336433383165643530643339353937643932396231316535326333656335 +37373861356335646535666162316133633663336238643961623839376632633364353436633539 +32663261353933613234353961363264386534636361303738313334633937346666633533363137 +63343235316331316335656361633031333133306338363065663738663838313861396239626335 +38636633393139656637303337393539653961623836643233633933643064393732336635383233 +64326366623637666630303761633836396537623034623839356439633032343039323439636336 +62613031346635343335333764613038313866613334623865323863326231353563373962663363 +61303037326361376439366531373064323832303365663066316230386262303163373933623639 +39643033313435303731636634393032353764626561383032306631646538663638323661663534 +33396161623434646666663762333764636231666133663030326666313866623262313339336338 +62393131393936393163646533373566353839646235323965663164373839326235656237313532 +65343635656230306536666330356531633933666437356230623161616534343261303933323164 +37616365393362366530383131383863626664353436396533653835303732613631626439333664 +37666162633036393935383438343839623136613130363636316566336237353839383864376332 +36376166616234373731363864316436336430653439623837383161613339343139393536623165 +39313164623132373362386638393832333032343932303165363832313262373633323532343630 +62363935653532333066613234336663646263356331366662303961353361356562613332306434 +34653066636236313164623430343531383464646265393131363733303266336336393036323561 +61366465393639666639383733313762346538353539313939383765616234313431613763313231 +35636663666430373137396139333761373363663738323035363037303239663165396436313538 +31303939336236343531336533346561366232326232613264396232373537346161666338623964 +37316432623133353965303062613064656530376634353264393339646366626336356436386538 +33313166653430383834303933393065376161383737346361346133303830323936666235376431 +61393330393864353332376463386138613738383636313766636438343735346563313936643838 +39666331643836326161613132326537633539336632363038343664373238383766633430386437 +36623130626561626537666339653034333431333637313831613031366535653639313961323865 +66633737613331363663363436666337663031386435346563643334616365636534393163663633 +66383963666336656239346566643336643535653563373531356634633564303832316534663663 +35623866336163366464616365613663636337643664656230323965326563656564653031643231 +62333331323232613830333135353031616166326365326366623434633533303261353532623137 +34336534353135653965356332303664393966363266313634323531613730333934336535326530 +65333261383435376364626463313434316431643232613431343162393064363633313039326662 +34326134623262363761363230313664656535336364343039383061663565656633313136363061 +66313835306264663338393032646634653731623464373363336430663661333532316431313330 +66306535333638326265396531376164343534656336363839393236313639323965356330623462 +33303130653930373736346666303234646234373136366339643633616231613566666331333364 +62316231333130316435656561626536303835663739323038613732613639343337343731656434 +65633865633462333966373832636636623634313735363964313565356639646632643863346433 +37663766636536326366343066653366633163613435636133323161306237613032316633353464 +39636663623261316239636334393537653866633230306330326133323537383334373361623862 +36656132613933353361363765656633613936333562303330653030313962343864363561386537 +34656135333363363263383463376235353136393531346130373266626136386134366535326536 +31343035623066343933346639353132343734373934653937633830333230353733653537646338 +62656162646236353436303963616161366565363935313433386436393132336437353865333033 +65363462346639353364613361353635383637343039303036373534653166343966386337346330 +36323834343232346334663838323064343130343230303238616630646530653164646333633565 +61643566646130643732626433616535623935653338356333643432366563613736626535646431 +62633135613430363131326537653766306136666630386161653137336563323162353133626632 +66343162373332656462663537653538343635663530343330356435393336633264303139623563 +32333334333239656362653265333163626339623730363431306464663833323463323762313332 +61346237323539356564653234653730393062306430336662323730666638353564333566666631 +36656438393237386634663837366638643332323761636431366236376238303630366562646565 +31313333303338626435636437616136626634613437656565383662633036326139316664613565 +65616536643461623764393236386666303964386233643162653138393034343565643335393931 +33343639613261623130356235336362623134336163376638373565353562356139316364336664 +64633662663864306465646135353636336632336166383065373831363137386539353161393765 +33313431396364393134353939633465613735316261616339343331303062363737303339623165 +35383431306337613237613762643130653165663235316565616566396632316361346166663962 +31646139373764346336343164616165363632336464376362343731363565353266376164323666 +62636665623265343664353630653733313935306161303264316436376662386132656236623763 +61323865326139386464316335356339636334623535623835306461616438343932366438383336 +31323335646637613030353566643433313530343330383362633363653339393933316663353362 +38376231646461333762333435613337643162303934623033373738663037313430366566613532 +31663437623230386134623732383364393562633439663633306135356165376164343936623965 +30653464393937316361346630653365633139343332626333396130633534353232393234666535 +61363838653737333062653135653834383162343335643063613361636435323434623335373133 +38323062323236666466303334376133336631653533386261613536633536353766346630643361 +36356365336434373936393933346434623232613965653139613338313365643234346537613033 +38356562353932356261303035633332373766623436656264343831636165303634316235613762 +30613064616164313665613535623836356638343062346438363339333033613062653763336238 +63666631356463646332373961643262653064646162396531333035343436626365333439316262 +64623037316163636163633531346336663564333563623331666639343337353834356338393565 +64386630623139326138396439386537316530623134633135346561633766616464666439336636 +65646430326563303036366437313262333039333934316264383135383333356336363134353636 +62343137326163623630363865363632326333636330303738313030656466363261323030386162 +35653438313833383966656435373534336536323233343662376137306165383335333332323639 +38633865316136643135633461373334336433353263306632636536363539623731343631363530 +38363363646530633237633032383130333336333962633732306461383033366262363737373435 +66343563663435353364373332313636326336323031323766383866373939363937396539313438 +38646463393264613234316563633032623565313034306362666531356131643532373131633833 +36616431393366633535356139613662396535383661313336386663393261353063346330663139 +35356365393437356564613538323837353338613936363533633432316230343766373632376461 +63323364343438333637613533656132386464663439303666393934303063373334666437363262 +36393163653830333262373966626562393734343738346630323930333738653833356362656331 +64303731373761633139326539646264643034626235653237313365333431386566333036616538 +66396363306331376332313339316361613466396665326661323931656439663632353161656232 +65326235336134666634353162663763346464666661333139323733303563346139316163306335 +65376136333563656234336231356365376663666536323732373630636635653762656232343435 +62613337393538336138666533363861363764323262646464616337616665646636393831316239 +65383266386532643231386130633138356436373065323166616133333532393831656436346436 +31396430373030653664373566613239323166623039666135373937633663303234346662313363 +37323538343632303039623439386266303162623239386238323062343930346566613031633931 +33383863623033313033666334623061313365303536633437376331393133636264653862663132 +63333234623663643134646635323333333131653730313264373436373333333434383533643237 +61363061313838623661633837393935623138633836306432336165353333386666666636383437 +30373831343935666263343165316230303230646232386261326633666639613865326663383332 +64623133313335393838376230346135363935326363616131656637376535393063333433663763 +39636166323936666364393533636262333964653163366233316334333165336361303737653936 +65326133393535626532386666333062393037643536333135313765636366393535366534623866 +34383934636162346636393562653431363930663333663434303430633837663662346566386131 +33333863336537336638343963663931663662383062656338666536663836613164646436353861 +32663931386139306466393363663463333230386538646466393937303634663937626434663636 +38613565323135323133333539613763666638303866666630636433643439373761663962356637 +61633761666636643633373533333064653235636539383964396162393764323865313137623836 +36396139643637303961323339306432623963396239626439613265333561373938333133656438 +32366330626161643662633366323834643031656139353932356330396566383630646231336633 +37303038373334306665666534353433623235326239313434313335643166303133396263336363 +33373463346663643038326235353133623235653264626363306533376363383164323139393935 +31366365383337326432333038383331366433656234613938623933613638313634303763646564 +35386634333466366134303333396264333162326663646539383861373535663963336364393362 +63353764646630616135383134623031663464653537313731316663623037626633353832373865 +36343637306631353062323437626265376236333034386332363862373236336165306433626165 +66343366623838306330343938316438366361333136616535383034326333336435343461343830 +37613439363933356665303363353239636262323462333934613739383332633738633663386336 +35653037373662663264393365306330376238346465396634383461633339353061373635386638 +61376332326663393363616534353433383561356261663537303535656261356535623636396331 +35373564383334343430643564363133323966323537643762616232306633316564326566386661 +36336665313663666430366639316635393138316538353237373838363334376661653366313430 +36383761333064326466633862363238373862303434366364373066663531653664313361653461 +38616561373963323031323831666139383566366130353232623534323438626565363134616334 +64626337636635636262303637643761393266326638363365376264656630336262623066623735 +35353539393265366436343033333636653438316262393162633261623439616566633935663266 +37373462303165363438343238313036346539636134343665656563313961613437616461333464 +36663531383533333634386165326430666235646338653133623936303366316439356138323262 +38313132363234646431366335396537313632363166623965663631313865666662323239636663 +63326437633736653562303664666530393062316633313039633334626238626562633731383365 +62643564613733396661353664353134383430353164383964333134653238343233343534623637 +63386132353133656231636539656234663062356237643166623538313339656130393465653036 +33326235623732316436333039366365613763306632346666626636623938313233623930383632 +36306666323435653037636163353637393734306434623162333231393163326139346262663238 +37303638366666623534656337656532326633663736303536303665653233323034356238363330 +38616332316130633939666135626333373538396533643262613734623862343336616363373733 +34636563333934333361316261353066353031663265383935316565393063663963626231313133 +32316233643035323063626337623963643232336434366333303762326463363662356366333634 +64306362383538643135396262616531393730333330613038366336396533383037353931323334 +37663134346335323337356565373235343536383933336637343434323932643537386135353661 +38373763323038646239316366346565386634663664333636653731623631313061636332633765 +36646539343337663935636338306431326266336161376534353930613665666135663863373839 +30393432343834393064613334333334663235343064333737303866373463663564353033623565 +61666638636237393333343939306434623838616264323464346632666137366239396365353361 +66636665633431366633636165633739343635616532383531636162323863656436323461306161 +62346132333731366362313163613638396162376236616162346164613863666138333930373061 +30333635623035343266396232353764613932383830363862663135663438613931386137313639 +61313030306236643430386136386435363133396265316263346561663930356238633639666637 +62363331646161346132336661386530626164613764653735303735613364366237353164383134 +33653863356533346664306130333434656139356230623663376335646163353562356536633366 +363035336564363231643164613831386661 From 7bf65a80b6045af84fa72ea2c521a0b74ce3886e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Thu, 25 Jun 2026 15:37:53 +0200 Subject: [PATCH 18/49] fix typo --- .../kolla/roles/mariadb_backup/templates/rclone.conf.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/environments/kolla/roles/mariadb_backup/templates/rclone.conf.j2 b/environments/kolla/roles/mariadb_backup/templates/rclone.conf.j2 index e8f667b6a..8d110d501 100644 --- a/environments/kolla/roles/mariadb_backup/templates/rclone.conf.j2 +++ b/environments/kolla/roles/mariadb_backup/templates/rclone.conf.j2 @@ -10,7 +10,7 @@ shell_type = unix [{{ mariadb_backup_s3_remote }}] type = s3 -provider = {{ mariadb_backup_rclone_s3_provider }} +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 }} From b8fbadb30e62a67b5975c221320057ea8360ea6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Thu, 25 Jun 2026 16:03:28 +0200 Subject: [PATCH 19/49] fix typoes --- environments/kolla/configuration.yml | 2 +- .../kolla/roles/mariadb_backup/tasks/mariadb.yml | 12 ++++++------ .../mariadb_backup/templates/mariadb-extract.sh.j2 | 5 +---- 3 files changed, 8 insertions(+), 11 deletions(-) diff --git a/environments/kolla/configuration.yml b/environments/kolla/configuration.yml index 9d844973a..1e519736e 100644 --- a/environments/kolla/configuration.yml +++ b/environments/kolla/configuration.yml @@ -125,5 +125,5 @@ om_enable_rabbitmq_quorum_queues: false mariadb_s3_backup_s3_bucket: backup-testbed mariadb_backup_gpg_recipient: backup@testbed.osism.xyz -mariadb_backup_node: "testbed-node-1" +mariadb_backup_node: "testbed-node-0" mariadb_backup_s3_hostname: "api.bfe2.teutostack.de" diff --git a/environments/kolla/roles/mariadb_backup/tasks/mariadb.yml b/environments/kolla/roles/mariadb_backup/tasks/mariadb.yml index 87c214c2b..17bf69137 100644 --- a/environments/kolla/roles/mariadb_backup/tasks/mariadb.yml +++ b/environments/kolla/roles/mariadb_backup/tasks/mariadb.yml @@ -1,14 +1,14 @@ --- - name: Create directories on mariadb node ansible.builtin.file: - path: "{{ item }}" + path: "{{ item.path }}" state: directory - owner: root - group: root + owner: "{{ item.owner }}" + group: "{{ item.owner }}" mode: "0750" loop: - - "{{ mariadb_backup_destination_dir_mariadb }}" - - "{{ mariadb_backup_config_dir }}" + - { path: mariadb_backup_destination_dir_mariadb, owner: "dragon" } + - { path: mariadb_backup_config_dir, owner: "root" } - name: Deploy GPG public key (from controller file) ansible.builtin.copy: @@ -31,4 +31,4 @@ dest: "{{ mariadb_backup_extract_script }}" owner: root group: root - mode: "0750" + mode: "0755" diff --git a/environments/kolla/roles/mariadb_backup/templates/mariadb-extract.sh.j2 b/environments/kolla/roles/mariadb_backup/templates/mariadb-extract.sh.j2 index 5dc635d5a..12d714ac4 100644 --- a/environments/kolla/roles/mariadb_backup/templates/mariadb-extract.sh.j2 +++ b/environments/kolla/roles/mariadb_backup/templates/mariadb-extract.sh.j2 @@ -9,8 +9,6 @@ set -euo pipefail TYPE="${1:?usage: $(basename "$0") full|incremental|weekly|monthly}" read -r NOW_Y NOW_m NOW_d ISOY ISOW NOW_H <<<"$(date -u +'%Y %m %d %G %V %H')" -[ -d "{{ mariadb_backup_destination_dir_mariadb }}" ] || mkdir -p "{{ mariadb_backup_destination_dir_mariadb }}" - # --- locate the source backup directory in the volume ------------------------ current_full_dir() { # Prefer the kolla 'last_full_file' marker; fall back to newest full-* dir. @@ -53,7 +51,6 @@ 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") - echo "k: $k | f1: $f1 | f2: $f2 | f3: $f3 | f4: $f4 | f5: $f5 | f6: $f6 | rest: $rest" if [[ "$k" == "full" && "$f3" =~ ^[0-9]{4}$ ]]; then printf 'daily/%s/%s/%s' "$f3" "$f2" "$f1" elif [[ "$k" == "incremental" && "$f6" =~ ^[0-9]{4}$ ]]; then @@ -73,7 +70,7 @@ case "$TYPE" in *) echo "unknown type: $TYPE" >&2; exit 2 ;; esac -if [[ -z "${srcdir:-}" || ! -d "$srcdir" ]]; then +if [[ -z "${srcdir:-}" ]]; then echo "srcdir var empty. Couldn't determine source directory for backup" >&2; exit 1 fi From 19b0bac656a56de00c3d8c2064015f6896104035 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Thu, 25 Jun 2026 17:08:49 +0200 Subject: [PATCH 20/49] fix bugs --- environments/kolla/configuration.yml | 2 +- .../roles/mariadb_backup/templates/mariadb-backup.sh.j2 | 9 +++++---- .../kolla/roles/mariadb_backup/templates/rclone.conf.j2 | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/environments/kolla/configuration.yml b/environments/kolla/configuration.yml index 1e519736e..804eb328d 100644 --- a/environments/kolla/configuration.yml +++ b/environments/kolla/configuration.yml @@ -123,7 +123,7 @@ om_enable_rabbitmq_quorum_queues: false ########################################################## # mariadb backup -mariadb_s3_backup_s3_bucket: backup-testbed +mariadb_backup_s3_bucket: backup-testbed mariadb_backup_gpg_recipient: backup@testbed.osism.xyz mariadb_backup_node: "testbed-node-0" mariadb_backup_s3_hostname: "api.bfe2.teutostack.de" diff --git a/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 b/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 index 0f1b9295a..b9c4e13c0 100644 --- a/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 +++ b/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 @@ -13,10 +13,11 @@ TYPE="${1:?usage: $(basename "$0") full|incremental|weekly|monthly}" rclone_run() { # usage: rclone_run docker run --rm \ --name mariadb_backup_rclone \ - -v {{ mariadb_backup_rclone_config_file }}:/config/rclone.conf:ro \ - -v { mariadb_backup_ssh_key }}:{{ mariadb_backup_ssh_key }}:ro \ + -e RCLONE_CONFIG=/kolla/rclone.conf \ + -v {{ mariadb_backup_rclone_config_file }}:/kolla/rclone.conf:ro \ + -v {{ mariadb_backup_ssh_key }}:{{ mariadb_backup_ssh_key }}:ro \ -v "{{ mariadb_backup_destination_dir_manager }}:{{ mariadb_backup_destination_dir_manager }}" \ - {{ mariadb_backup_rclone_image_full }} --config /config/rclone.conf "$@" + {{ mariadb_backup_rclone_image_full }} $* } case "$TYPE" in @@ -38,7 +39,7 @@ esac {{ mariadb_backup_remote_exec }} {{ mariadb_backup_extract_script }} "$TYPE" # 4. pull encrypted subtree from control node to manager disk (Copy 1) -rclone_run copy +rclone_run copy \ "{{ mariadb_backup_sftp_remote }}:{{ mariadb_backup_destination_dir_mariadb }}/${sub}" \ "{{ mariadb_backup_local_s3_union_remote }}:${sub}" \ --s3-object-lock-mode {{ mariadb_backup_object_lock_mode }} \ diff --git a/environments/kolla/roles/mariadb_backup/templates/rclone.conf.j2 b/environments/kolla/roles/mariadb_backup/templates/rclone.conf.j2 index 8d110d501..dc9e8d81c 100644 --- a/environments/kolla/roles/mariadb_backup/templates/rclone.conf.j2 +++ b/environments/kolla/roles/mariadb_backup/templates/rclone.conf.j2 @@ -27,7 +27,7 @@ type = local [{{ mariadb_backup_local_s3_union_remote }}] type = union -upstreams = {{ mariadb_backup_s3_remote }}:{{ mariadb_backup_s3_bucket }}{% if mariadb_backup_s3_path %}{{ mariadb_backup_s3_path }}{% endif %} {{ mariadb_backup_local_remote }}:{{ mariadb_backup_destination_dir_manager }} +upstreams = {{ mariadb_backup_local_remote }}:{{ mariadb_backup_destination_dir_manager }} {{ mariadb_backup_s3_remote }}:{{ mariadb_backup_s3_bucket }}{% if mariadb_backup_s3_path %}{{ mariadb_backup_s3_path }}{% endif %} action_policy = epall create_policy = epall search_policy = epall From c62dbb744d83579b089f01af5887c831495c311f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Fri, 26 Jun 2026 09:50:44 +0200 Subject: [PATCH 21/49] fix bug --- .../mariadb_backup/templates/mariadb-extract.sh.j2 | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/environments/kolla/roles/mariadb_backup/templates/mariadb-extract.sh.j2 b/environments/kolla/roles/mariadb_backup/templates/mariadb-extract.sh.j2 index 12d714ac4..0397de31c 100644 --- a/environments/kolla/roles/mariadb_backup/templates/mariadb-extract.sh.j2 +++ b/environments/kolla/roles/mariadb_backup/templates/mariadb-extract.sh.j2 @@ -25,7 +25,6 @@ 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 volume="${1:-.}" local path name h mi s d mo y key best_key="" best_dir="" while IFS= read -r path; do @@ -38,7 +37,7 @@ latest_incr_dir() { best_key=$key best_dir=$path fi - done < <(find "$volume" -mindepth 1 -maxdepth 1 -type d -name 'incr-*') + done < <(sudo find {{ mariadb_backup_backup_volume_dir }} -mindepth 1 -maxdepth 1 -type d -name 'incr-*') [[ -n "$best_dir" ]] && printf '%s\n' "$best_dir" } @@ -53,8 +52,8 @@ parse_daily_rel() { f6=$(cut -d"." -f1 <<<"$rest") if [[ "$k" == "full" && "$f3" =~ ^[0-9]{4}$ ]]; then printf 'daily/%s/%s/%s' "$f3" "$f2" "$f1" - elif [[ "$k" == "incremental" && "$f6" =~ ^[0-9]{4}$ ]]; then - printf 'hourly/%s/%s/%s/%s' "$f6" "$f5" "$f4" "$f1" + elif [[ "$base" == "incr" && "$f5" =~ ^[0-9]{4}$ ]]; then + printf 'hourly/%s/%s/%s/%s' "$f5" "$f4" "$f3" "$fk" 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" @@ -64,7 +63,7 @@ parse_daily_rel() { case "$TYPE" in full) srcdir=$(current_full_dir); rel=$(parse_daily_rel "$(basename "${srcdir:-x}")") ;; - incremental) srcdir=$(newest_incr_dir); rel=$(parse_daily_rel "$(basename "${srcdir:-x}")") ;; + incremental) 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 ;; @@ -85,7 +84,7 @@ fi # for incrementals, the 'since-' linkage needed to restore the chain. name=$(basename "$srcdir") dst="{{ mariadb_backup_destination_dir_mariadb }}/${rel}" -mkdir -p "$dst" +[ -d "$dst"] || mkdir -p "$dst" sudo cat $srcfile | gpg --batch --yes --encrypt \ --recipient "{{ mariadb_backup_gpg_recipient }}" --trust-model always \ From 169e54b571e6c186d449a97c3f97361e32e2c80a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Fri, 26 Jun 2026 09:54:53 +0200 Subject: [PATCH 22/49] fix typo --- .../kolla/roles/mariadb_backup/templates/mariadb-extract.sh.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/environments/kolla/roles/mariadb_backup/templates/mariadb-extract.sh.j2 b/environments/kolla/roles/mariadb_backup/templates/mariadb-extract.sh.j2 index 0397de31c..66ea27c2b 100644 --- a/environments/kolla/roles/mariadb_backup/templates/mariadb-extract.sh.j2 +++ b/environments/kolla/roles/mariadb_backup/templates/mariadb-extract.sh.j2 @@ -53,7 +53,7 @@ parse_daily_rel() { 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" "$fk" + 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" From 1cb1b73b12215c293992a422d927d9480b08e782 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Fri, 26 Jun 2026 11:04:24 +0200 Subject: [PATCH 23/49] split s3 and sftp rclone operations --- .../kolla/roles/mariadb_backup/defaults/main.yml | 2 -- .../mariadb_backup/templates/mariadb-backup.sh.j2 | 7 ++++++- .../roles/mariadb_backup/templates/rclone.conf.j2 | 10 ---------- 3 files changed, 6 insertions(+), 13 deletions(-) diff --git a/environments/kolla/roles/mariadb_backup/defaults/main.yml b/environments/kolla/roles/mariadb_backup/defaults/main.yml index 8619a76bd..16cfc6d43 100644 --- a/environments/kolla/roles/mariadb_backup/defaults/main.yml +++ b/environments/kolla/roles/mariadb_backup/defaults/main.yml @@ -40,8 +40,6 @@ mariadb_backup_rclone_config_file: "{{ mariadb_backup_config_dir }}/rclone.conf" # --- rclone remotes --------------------------------------------------------- mariadb_backup_sftp_remote: "sftp-mariadb" mariadb_backup_s3_remote: "s3offsite" -mariadb_backup_local_remote: "manager-local" -mariadb_backup_local_s3_union_remote: "backup" # Off-site S3 remote mariadb_backup_s3_hostname: "" diff --git a/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 b/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 index b9c4e13c0..6786e4d61 100644 --- a/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 +++ b/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 @@ -41,7 +41,12 @@ esac # 4. pull encrypted subtree from control node to manager disk (Copy 1) rclone_run copy \ "{{ mariadb_backup_sftp_remote }}:{{ mariadb_backup_destination_dir_mariadb }}/${sub}" \ - "{{ mariadb_backup_local_s3_union_remote }}:${sub}" \ + "{{ mariadb_backup_destination_dir_manager }}/${sub}" + +# 5. upload encrypted subtree from manager disk to offsite S3 (Copy 2) +rclone_run copy \ + "{{ mariadb_backup_local_remote }}:${sub}" \ + "{{ mariadb_backup_s3_remote }}:{{ mariadb_backup_destination_dir_manager }} {{ mariadb_backup_s3_remote }}:{{ mariadb_backup_s3_bucket }}{% if mariadb_backup_s3_path %}{{ mariadb_backup_s3_path }}{% endif %}/${sub}" \ --s3-object-lock-mode {{ mariadb_backup_object_lock_mode }} \ --s3-object-lock-retain-until-date "${ret}d" diff --git a/environments/kolla/roles/mariadb_backup/templates/rclone.conf.j2 b/environments/kolla/roles/mariadb_backup/templates/rclone.conf.j2 index dc9e8d81c..f904b5c1d 100644 --- a/environments/kolla/roles/mariadb_backup/templates/rclone.conf.j2 +++ b/environments/kolla/roles/mariadb_backup/templates/rclone.conf.j2 @@ -21,13 +21,3 @@ list_version = 2 force_path_style = {{ (not mariadb_backup_s3_virtual_hosted_style_bucket | bool) | lower }} # Don't try to create a bucket no_check_bucket = true - -[{{ mariadb_backup_local_remote }}] -type = local - -[{{ mariadb_backup_local_s3_union_remote }}] -type = union -upstreams = {{ mariadb_backup_local_remote }}:{{ mariadb_backup_destination_dir_manager }} {{ mariadb_backup_s3_remote }}:{{ mariadb_backup_s3_bucket }}{% if mariadb_backup_s3_path %}{{ mariadb_backup_s3_path }}{% endif %} -action_policy = epall -create_policy = epall -search_policy = epall From fac7e544ddc6814fc5d8ca9e89166da599f73b04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Fri, 26 Jun 2026 11:06:50 +0200 Subject: [PATCH 24/49] fix typo --- .../kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 b/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 index 6786e4d61..2e8856aca 100644 --- a/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 +++ b/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 @@ -45,7 +45,7 @@ rclone_run copy \ # 5. upload encrypted subtree from manager disk to offsite S3 (Copy 2) rclone_run copy \ - "{{ mariadb_backup_local_remote }}:${sub}" \ + "{{ mariadb_backup_destination_dir_manager }}/${sub}" \ "{{ mariadb_backup_s3_remote }}:{{ mariadb_backup_destination_dir_manager }} {{ mariadb_backup_s3_remote }}:{{ mariadb_backup_s3_bucket }}{% if mariadb_backup_s3_path %}{{ mariadb_backup_s3_path }}{% endif %}/${sub}" \ --s3-object-lock-mode {{ mariadb_backup_object_lock_mode }} \ --s3-object-lock-retain-until-date "${ret}d" From eafed27bfd7b210bacf566df616b6bdc7604efa8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Fri, 26 Jun 2026 11:11:35 +0200 Subject: [PATCH 25/49] fix typo --- .../kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 b/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 index 2e8856aca..48be52765 100644 --- a/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 +++ b/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 @@ -46,7 +46,7 @@ rclone_run copy \ # 5. upload encrypted subtree from manager disk to offsite S3 (Copy 2) rclone_run copy \ "{{ mariadb_backup_destination_dir_manager }}/${sub}" \ - "{{ mariadb_backup_s3_remote }}:{{ mariadb_backup_destination_dir_manager }} {{ mariadb_backup_s3_remote }}:{{ mariadb_backup_s3_bucket }}{% if mariadb_backup_s3_path %}{{ mariadb_backup_s3_path }}{% endif %}/${sub}" \ + "{{ mariadb_backup_s3_remote }}:{{ mariadb_backup_s3_bucket }}{% if mariadb_backup_s3_path %}{{ mariadb_backup_s3_path }}{% endif %}/${sub}" \ --s3-object-lock-mode {{ mariadb_backup_object_lock_mode }} \ --s3-object-lock-retain-until-date "${ret}d" From c1bd0af7698f704ab2f32974a5cb64d5e0bf29d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Fri, 26 Jun 2026 11:19:45 +0200 Subject: [PATCH 26/49] fix typo --- .../kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 | 4 ++-- .../roles/mariadb_backup/templates/mariadb-extract.sh.j2 | 2 +- .../kolla/roles/mariadb_backup/templates/rclone.conf.j2 | 2 ++ 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 b/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 index 48be52765..646125f6d 100644 --- a/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 +++ b/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 @@ -13,8 +13,8 @@ TYPE="${1:?usage: $(basename "$0") full|incremental|weekly|monthly}" rclone_run() { # usage: rclone_run docker run --rm \ --name mariadb_backup_rclone \ - -e RCLONE_CONFIG=/kolla/rclone.conf \ - -v {{ mariadb_backup_rclone_config_file }}:/kolla/rclone.conf:ro \ + -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 "{{ mariadb_backup_destination_dir_manager }}:{{ mariadb_backup_destination_dir_manager }}" \ {{ mariadb_backup_rclone_image_full }} $* diff --git a/environments/kolla/roles/mariadb_backup/templates/mariadb-extract.sh.j2 b/environments/kolla/roles/mariadb_backup/templates/mariadb-extract.sh.j2 index 66ea27c2b..56f32f121 100644 --- a/environments/kolla/roles/mariadb_backup/templates/mariadb-extract.sh.j2 +++ b/environments/kolla/roles/mariadb_backup/templates/mariadb-extract.sh.j2 @@ -84,7 +84,7 @@ fi # 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" +[ -d "$dst" ] || mkdir -p "$dst" sudo cat $srcfile | gpg --batch --yes --encrypt \ --recipient "{{ mariadb_backup_gpg_recipient }}" --trust-model always \ diff --git a/environments/kolla/roles/mariadb_backup/templates/rclone.conf.j2 b/environments/kolla/roles/mariadb_backup/templates/rclone.conf.j2 index f904b5c1d..fdbdfbb67 100644 --- a/environments/kolla/roles/mariadb_backup/templates/rclone.conf.j2 +++ b/environments/kolla/roles/mariadb_backup/templates/rclone.conf.j2 @@ -7,6 +7,8 @@ user = dragon key_file = {{ mariadb_backup_ssh_key }} {% endif %} shell_type = unix +md5sum_command = md5sum +sha1sum_command = sha1sum [{{ mariadb_backup_s3_remote }}] type = s3 From e3af90e668b3ba3d7398bbb401e2871434e85cc1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Mon, 29 Jun 2026 11:48:18 +0200 Subject: [PATCH 27/49] fix GC --- .../templates/mariadb-backup.sh.j2 | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 b/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 index 646125f6d..b291ad4b1 100644 --- a/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 +++ b/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 @@ -56,14 +56,20 @@ echo "mariadb-backup: ${TYPE} complete" GC_COMMON_FILTER="-type f -name '*.mbs.gz.gpg'" case "$TYPE" in full) - find "{{ mariadb_backup_destination_dir_manager }}/daily" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_daily }} -delete 2>/dev/null || true - {{ mariadb_backup_remote_exec }} "{{ mariadb_backup_destination_dir_mariadb }}/daily" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_daily }} -delete 2>/dev/null || true;; + sudo find "{{ mariadb_backup_destination_dir_manager }}/daily" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_daily }} -delete 2>/dev/null || true + {{ mariadb_backup_remote_exec }} find "{{ mariadb_backup_destination_dir_mariadb }}/daily" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_daily }} -delete 2>/dev/null || true;; incremental) - find "{{ mariadb_backup_destination_dir_manager }}/hourly" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_hourly }} -delete 2>/dev/null || true ;; + sudo find "{{ mariadb_backup_destination_dir_manager }}/hourly" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_hourly }} -delete 2>/dev/null || true ;; + {{ mariadb_backup_remote_exec }} find "{{ mariadb_backup_destination_dir_mariadb }}/hourly" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_hourly }} -delete 2>/dev/null || true;; weekly) - find "{{ mariadb_backup_destination_dir_manager }}/weekly" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_weekly }} -delete 2>/dev/null || true ;; + sudo find "{{ mariadb_backup_destination_dir_manager }}/weekly" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_weekly }} -delete 2>/dev/null || true ;; + {{ mariadb_backup_remote_exec }} find "{{ mariadb_backup_destination_dir_mariadb }}/weekly" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_weekly }} -delete 2>/dev/null || true;; monthly) - find "{{ mariadb_backup_destination_dir_manager }}/monthly" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_monthly }} -delete 2>/dev/null || true ;; + sudo find "{{ mariadb_backup_destination_dir_manager }}/monthly" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_monthly }} -delete 2>/dev/null || true ;; + {{ mariadb_backup_remote_exec }} find "{{ mariadb_backup_destination_dir_mariadb }}/monthly" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_monthly }} -delete 2>/dev/null || true;; *) echo "unknown type: $TYPE" >&2; exit 2 ;; esac +# Delete empty folders +sudo find "{{ mariadb_backup_destination_dir_manager }}" -type d -empty -delete 2>/dev/null || true +{{ mariadb_backup_remote_exec }} "{{ mariadb_backup_destination_dir_mariadb }}" -type d -empty -delete 2>/dev/null || true echo "mariadb-backup: GC complete" From 13fb8459cb0d582fbf0b5fdaa18621cb7916c82f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Mon, 29 Jun 2026 13:59:48 +0200 Subject: [PATCH 28/49] fix switch statement --- .../roles/mariadb_backup/templates/mariadb-backup.sh.j2 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 b/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 index b291ad4b1..fe83f28ec 100644 --- a/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 +++ b/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 @@ -59,13 +59,13 @@ case "$TYPE" in sudo find "{{ mariadb_backup_destination_dir_manager }}/daily" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_daily }} -delete 2>/dev/null || true {{ mariadb_backup_remote_exec }} find "{{ mariadb_backup_destination_dir_mariadb }}/daily" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_daily }} -delete 2>/dev/null || true;; incremental) - sudo find "{{ mariadb_backup_destination_dir_manager }}/hourly" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_hourly }} -delete 2>/dev/null || true ;; + sudo find "{{ mariadb_backup_destination_dir_manager }}/hourly" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_hourly }} -delete 2>/dev/null || true {{ mariadb_backup_remote_exec }} find "{{ mariadb_backup_destination_dir_mariadb }}/hourly" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_hourly }} -delete 2>/dev/null || true;; weekly) - sudo find "{{ mariadb_backup_destination_dir_manager }}/weekly" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_weekly }} -delete 2>/dev/null || true ;; + sudo find "{{ mariadb_backup_destination_dir_manager }}/weekly" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_weekly }} -delete 2>/dev/null || true {{ mariadb_backup_remote_exec }} find "{{ mariadb_backup_destination_dir_mariadb }}/weekly" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_weekly }} -delete 2>/dev/null || true;; monthly) - sudo find "{{ mariadb_backup_destination_dir_manager }}/monthly" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_monthly }} -delete 2>/dev/null || true ;; + sudo find "{{ mariadb_backup_destination_dir_manager }}/monthly" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_monthly }} -delete 2>/dev/null || true {{ mariadb_backup_remote_exec }} find "{{ mariadb_backup_destination_dir_mariadb }}/monthly" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_monthly }} -delete 2>/dev/null || true;; *) echo "unknown type: $TYPE" >&2; exit 2 ;; esac From 1a0840df9b571ef01f425cf75c6debf53a5afb91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Mon, 29 Jun 2026 14:01:39 +0200 Subject: [PATCH 29/49] automatically deploy backup mechanism when deploying testbed --- scripts/deploy/200-infrastructure.sh | 1 + 1 file changed, 1 insertion(+) 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 From eb61444569321429b0be9b3cb20af85911eba62e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Tue, 30 Jun 2026 16:24:10 +0200 Subject: [PATCH 30/49] add documentation for vars and change user of systemd service --- environments/kolla/configuration.yml | 2 + .../roles/mariadb_backup/defaults/main.yml | 71 ++++++++++++++----- .../templates/mariadb-backup.sh.j2 | 30 ++++---- .../templates/mariadb-extract.sh.j2 | 4 +- .../templates/systemd-service.j2 | 2 - 5 files changed, 76 insertions(+), 33 deletions(-) diff --git a/environments/kolla/configuration.yml b/environments/kolla/configuration.yml index 804eb328d..5a5142081 100644 --- a/environments/kolla/configuration.yml +++ b/environments/kolla/configuration.yml @@ -127,3 +127,5 @@ mariadb_backup_s3_bucket: backup-testbed mariadb_backup_gpg_recipient: backup@testbed.osism.xyz mariadb_backup_node: "testbed-node-0" mariadb_backup_s3_hostname: "api.bfe2.teutostack.de" +mariadb_backup_s3_port: 6780 +mariadb_backup_s3_path: ffm3 diff --git a/environments/kolla/roles/mariadb_backup/defaults/main.yml b/environments/kolla/roles/mariadb_backup/defaults/main.yml index 16cfc6d43..31c9182d7 100644 --- a/environments/kolla/roles/mariadb_backup/defaults/main.yml +++ b/environments/kolla/roles/mariadb_backup/defaults/main.yml @@ -4,68 +4,105 @@ # Lowest precedence — override anything via group_vars / host_vars / -e. # ============================================================================= -# --- Inventory targeting (also referenced by the playbook's hosts:) --------- -# backup_control_pattern: "control[0]" -# backup_manager_pattern: "manager" - -# --- Manager -> control remote execution ------------------------------------ +# --- Manager -> mariadb remote execution ------------------------------------ +# On which mariadb node should the backup be triggered mariadb_backup_node: "" +# Location of the SSH key to access the mariadb node mariadb_backup_ssh_key: "/opt/ansible/secrets/id_rsa.operator" -mariadb_backup_node_address: "{{ hostvars[mariadb_backup_node]['internal_address'] }}" # REQUIRED: mgmt hostname/IP of control[0] +# 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" -mariadb_backup_destination_dir: "/srv/mariadb-backup" # control node +# 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: "/var/lib/docker/volumes/{{ mariadb_backup_volume }}/_data" + # --- GPG (asymmetric; control node holds the PUBLIC key only) --------------- +# Email address of the gpg public key mariadb_backup_gpg_recipient: "" -mariadb_backup_gpg_public_key: "" # path to .asc on the Ansible controller +# 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.3" +# 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: "" -mariadb_backup_s3_port: "6780" +# 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 +# Prefix to add before all s3 path mariadb_backup_s3_path: "" +# 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) --------------------------------------- -mariadb_backup_object_lock_mode: "GOVERNANCE" # GOVERNANCE | COMPLIANCE | "" (disable) -mariadb_backup_retention_hourly: "3" -mariadb_backup_retention_daily: "7" -mariadb_backup_retention_weekly: "28" # 4 weeks -mariadb_backup_retention_monthly: "365" # 12 months +# 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_full: "*-*-* 00:00:00" +# systemd timer schedule for hourly backups mariadb_backup_schedule_incremental: "*-*-* 01..23:00:00" -mariadb_backup_schedule_weekly: "Mon *-*-* 03:00:00" -mariadb_backup_schedule_monthly: "*-*-01 04:00:00" -mariadb_backup_timer_persistent: false +# 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: "full", schedule: "{{ mariadb_backup_schedule_full }}" } diff --git a/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 b/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 index fe83f28ec..d31e72090 100644 --- a/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 +++ b/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 @@ -22,54 +22,60 @@ rclone_run() { # usage: rclone_run case "$TYPE" in full) - osism apply facts - osism apply mariadb_backup -e mariadb_backup_host={{ mariadb_backup_node }} + sudo -u dragon sism 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 }} sub="daily"; ret="{{ mariadb_backup_retention_daily }}" ;; incremental) - osism apply mariadb_backup -e mariadb_backup_type=incremental -e mariadb_backup_host={{ mariadb_backup_node }} + sudo -u dragon osism apply mariadb_backup -e mariadb_backup_type=incremental -e mariadb_backup_host={{ mariadb_backup_node }} sub="hourly"; ret="{{ mariadb_backup_retention_hourly }}" ;; weekly) + # promote last full backup to weekly backup sub="weekly"; ret="{{ mariadb_backup_retention_weekly }}" ;; monthly) + # promote last full backup to weekly backup sub="monthly"; ret="{{ mariadb_backup_retention_monthly }}" ;; *) echo "unknown type: $TYPE" >&2; exit 2 ;; esac -# 2+3. extract/encrypt (full/incr) or promote (weekly/monthly) on control node +# extract/encrypt (full/incr) or promote (weekly/monthly) on mariadb node {{ mariadb_backup_remote_exec }} {{ mariadb_backup_extract_script }} "$TYPE" -# 4. pull encrypted subtree from control node to manager disk (Copy 1) +# pull encrypted subtree from control node to manager disk (Copy 1) rclone_run copy \ "{{ mariadb_backup_sftp_remote }}:{{ mariadb_backup_destination_dir_mariadb }}/${sub}" \ "{{ mariadb_backup_destination_dir_manager }}/${sub}" -# 5. upload encrypted subtree from manager disk to offsite S3 (Copy 2) +# upload encrypted subtree from manager disk to offsite S3 (Copy 2) rclone_run copy \ "{{ mariadb_backup_destination_dir_manager }}/${sub}" \ "{{ mariadb_backup_s3_remote }}:{{ mariadb_backup_s3_bucket }}{% if mariadb_backup_s3_path %}{{ mariadb_backup_s3_path }}{% endif %}/${sub}" \ +{% 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" -# 5. GC the manager disk copy (non-WORM); S3 is governed by Object Lock + lifecycle +# GC the disk copies (non-WORM); S3 is governed by Object Lock + lifecycle GC_COMMON_FILTER="-type f -name '*.mbs.gz.gpg'" case "$TYPE" in full) - sudo find "{{ mariadb_backup_destination_dir_manager }}/daily" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_daily }} -delete 2>/dev/null || true + find "{{ mariadb_backup_destination_dir_manager }}/daily" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_daily }} -delete 2>/dev/null || true {{ mariadb_backup_remote_exec }} find "{{ mariadb_backup_destination_dir_mariadb }}/daily" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_daily }} -delete 2>/dev/null || true;; incremental) - sudo find "{{ mariadb_backup_destination_dir_manager }}/hourly" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_hourly }} -delete 2>/dev/null || true + find "{{ mariadb_backup_destination_dir_manager }}/hourly" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_hourly }} -delete 2>/dev/null || true {{ mariadb_backup_remote_exec }} find "{{ mariadb_backup_destination_dir_mariadb }}/hourly" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_hourly }} -delete 2>/dev/null || true;; weekly) - sudo find "{{ mariadb_backup_destination_dir_manager }}/weekly" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_weekly }} -delete 2>/dev/null || true + find "{{ mariadb_backup_destination_dir_manager }}/weekly" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_weekly }} -delete 2>/dev/null || true {{ mariadb_backup_remote_exec }} find "{{ mariadb_backup_destination_dir_mariadb }}/weekly" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_weekly }} -delete 2>/dev/null || true;; monthly) - sudo find "{{ mariadb_backup_destination_dir_manager }}/monthly" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_monthly }} -delete 2>/dev/null || true + find "{{ mariadb_backup_destination_dir_manager }}/monthly" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_monthly }} -delete 2>/dev/null || true {{ mariadb_backup_remote_exec }} find "{{ mariadb_backup_destination_dir_mariadb }}/monthly" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_monthly }} -delete 2>/dev/null || true;; *) echo "unknown type: $TYPE" >&2; exit 2 ;; esac + # Delete empty folders -sudo find "{{ mariadb_backup_destination_dir_manager }}" -type d -empty -delete 2>/dev/null || true +find "{{ mariadb_backup_destination_dir_manager }}" -type d -empty -delete 2>/dev/null || true {{ mariadb_backup_remote_exec }} "{{ mariadb_backup_destination_dir_mariadb }}" -type d -empty -delete 2>/dev/null || 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 index 56f32f121..a19f6efeb 100644 --- a/environments/kolla/roles/mariadb_backup/templates/mariadb-extract.sh.j2 +++ b/environments/kolla/roles/mariadb_backup/templates/mariadb-extract.sh.j2 @@ -42,7 +42,7 @@ latest_incr_dir() { [[ -n "$best_dir" ]] && printf '%s\n' "$best_dir" } -# Build the staging-relative path from the source directory name, so the +# 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 @@ -94,6 +94,6 @@ 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 2>/dev/null || true +sudo find "{{ mariadb_backup_backup_volume_dir }}" -mindepth 1 -name "*.mbs.gz" -type f -mtime 2 -delete 2>/dev/null || true # Delete empty directories sudo find "{{ mariadb_backup_backup_volume_dir }}" -type d -empty -delete 2>/dev/null || true diff --git a/environments/kolla/roles/mariadb_backup/templates/systemd-service.j2 b/environments/kolla/roles/mariadb_backup/templates/systemd-service.j2 index 340f18574..23684d781 100644 --- a/environments/kolla/roles/mariadb_backup/templates/systemd-service.j2 +++ b/environments/kolla/roles/mariadb_backup/templates/systemd-service.j2 @@ -6,6 +6,4 @@ Requires=docker.service [Service] Type=oneshot -User=dragon -Group=dragon ExecStart={{ mariadb_backup_orchestrate_script }} {{ item.type }} From 9131eaec375922790e610759796607bfbee832ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Tue, 30 Jun 2026 16:29:30 +0200 Subject: [PATCH 31/49] fix bug with s3 prefix --- .../roles/mariadb_backup/templates/mariadb-backup.sh.j2 | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 b/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 index d31e72090..0914b63ef 100644 --- a/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 +++ b/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 @@ -48,9 +48,8 @@ rclone_run copy \ # upload encrypted subtree from manager disk to offsite S3 (Copy 2) rclone_run copy \ "{{ mariadb_backup_destination_dir_manager }}/${sub}" \ - "{{ mariadb_backup_s3_remote }}:{{ mariadb_backup_s3_bucket }}{% if mariadb_backup_s3_path %}{{ mariadb_backup_s3_path }}{% endif %}/${sub}" \ -{% if mariadb_backup_object_lock_mode +%} - --s3-object-lock-mode {{ mariadb_backup_object_lock_mode }} \ + "{{ mariadb_backup_s3_remote }}:{{ mariadb_backup_s3_bucket }}{% if mariadb_backup_s3_path %}/{{ mariadb_backup_s3_path }}{% endif %}/${sub}" \ +{% if mariadb_backup_object_lock_mode +%} --s3-object-lock-mode {{ mariadb_backup_object_lock_mode }} \ --s3-object-lock-retain-until-date "${ret}d" {% endif %} From 867fa82d44ddef232a403391721cc2755158bd4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Wed, 1 Jul 2026 08:30:42 +0200 Subject: [PATCH 32/49] Fix typo --- .../kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 b/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 index 0914b63ef..eea5d0d25 100644 --- a/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 +++ b/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 @@ -22,7 +22,7 @@ rclone_run() { # usage: rclone_run case "$TYPE" in full) - sudo -u dragon sism apply facts # gather facts, use daily schedules because facts have a 24h TTL + 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 }} sub="daily"; ret="{{ mariadb_backup_retention_daily }}" ;; incremental) From c3adb2aaa22b13e125cca1f612a01873a36a5fb2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Wed, 1 Jul 2026 08:40:58 +0200 Subject: [PATCH 33/49] Fix unescaped variables --- environments/kolla/roles/mariadb_backup/tasks/manager.yml | 4 ++-- environments/kolla/roles/mariadb_backup/tasks/mariadb.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/environments/kolla/roles/mariadb_backup/tasks/manager.yml b/environments/kolla/roles/mariadb_backup/tasks/manager.yml index 4e9a1b2d4..d2c9eafa6 100644 --- a/environments/kolla/roles/mariadb_backup/tasks/manager.yml +++ b/environments/kolla/roles/mariadb_backup/tasks/manager.yml @@ -7,8 +7,8 @@ ansible.builtin.file: path: "{{ item }}" state: directory - owner: "dragon" - group: "dragon" + owner: "root" + group: "root" mode: "0750" loop: - "{{ mariadb_backup_destination_dir_manager }}" diff --git a/environments/kolla/roles/mariadb_backup/tasks/mariadb.yml b/environments/kolla/roles/mariadb_backup/tasks/mariadb.yml index 17bf69137..6f54792b9 100644 --- a/environments/kolla/roles/mariadb_backup/tasks/mariadb.yml +++ b/environments/kolla/roles/mariadb_backup/tasks/mariadb.yml @@ -7,8 +7,8 @@ group: "{{ item.owner }}" mode: "0750" loop: - - { path: mariadb_backup_destination_dir_mariadb, owner: "dragon" } - - { path: mariadb_backup_config_dir, owner: "root" } + - { path: "{{ mariadb_backup_destination_dir_mariadb }}", owner: "dragon" } + - { path: "{{ mariadb_backup_config_dir }}", owner: "root" } - name: Deploy GPG public key (from controller file) ansible.builtin.copy: From ea342c618cae30207925fa5678af74e2dd5b82b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Wed, 1 Jul 2026 08:57:32 +0200 Subject: [PATCH 34/49] Fix permission error --- environments/kolla/roles/mariadb_backup/tasks/mariadb.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/environments/kolla/roles/mariadb_backup/tasks/mariadb.yml b/environments/kolla/roles/mariadb_backup/tasks/mariadb.yml index 6f54792b9..932e89883 100644 --- a/environments/kolla/roles/mariadb_backup/tasks/mariadb.yml +++ b/environments/kolla/roles/mariadb_backup/tasks/mariadb.yml @@ -5,7 +5,7 @@ state: directory owner: "{{ item.owner }}" group: "{{ item.owner }}" - mode: "0750" + mode: "0755" loop: - { path: "{{ mariadb_backup_destination_dir_mariadb }}", owner: "dragon" } - { path: "{{ mariadb_backup_config_dir }}", owner: "root" } @@ -19,11 +19,12 @@ mode: "0644" - name: Import GPG public key + become: false ansible.builtin.command: cmd: "gpg --import {{ mariadb_backup_config_dir }}/backup-pub.asc" register: _gpg_import changed_when: "'imported' in _gpg_import.stderr" - failed_when: _gpg_import.rc != 0 and 'unchanged' not in _gpg_import.stderr + failed_when: _gpg_import.rc != 0 - name: Deploy control-node extract/encrypt/promote script ansible.builtin.template: From 8c5704bf86f68e7a383599a3f4c83552c6b49c13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Wed, 1 Jul 2026 09:00:56 +0200 Subject: [PATCH 35/49] Fix permission issue --- .../kolla/roles/mariadb_backup/tasks/mariadb.yml | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/environments/kolla/roles/mariadb_backup/tasks/mariadb.yml b/environments/kolla/roles/mariadb_backup/tasks/mariadb.yml index 932e89883..df59733f6 100644 --- a/environments/kolla/roles/mariadb_backup/tasks/mariadb.yml +++ b/environments/kolla/roles/mariadb_backup/tasks/mariadb.yml @@ -1,19 +1,16 @@ --- - name: Create directories on mariadb node ansible.builtin.file: - path: "{{ item.path }}" + path: "{{ mariadb_backup_destination_dir_mariadb }}" state: directory - owner: "{{ item.owner }}" - group: "{{ item.owner }}" - mode: "0755" - loop: - - { path: "{{ mariadb_backup_destination_dir_mariadb }}", owner: "dragon" } - - { path: "{{ mariadb_backup_config_dir }}", owner: "root" } + owner: "dragon" + group: "dragon" + mode: "0750" - name: Deploy GPG public key (from controller file) ansible.builtin.copy: content: "{{ mariadb_backup_gpg_public_key }}" - dest: "{{ mariadb_backup_config_dir }}/backup-pub.asc" + dest: "/home/dragon/backup-pub.asc" owner: root group: root mode: "0644" @@ -21,7 +18,7 @@ - name: Import GPG public key become: false ansible.builtin.command: - cmd: "gpg --import {{ mariadb_backup_config_dir }}/backup-pub.asc" + cmd: "gpg --import /home/dragon/backup-pub.asc" register: _gpg_import changed_when: "'imported' in _gpg_import.stderr" failed_when: _gpg_import.rc != 0 From 523266a47e312eddc195baf45fb20d7c38cf9c46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Wed, 1 Jul 2026 09:05:51 +0200 Subject: [PATCH 36/49] Fix gpg import error --- environments/kolla/roles/mariadb_backup/tasks/mariadb.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/environments/kolla/roles/mariadb_backup/tasks/mariadb.yml b/environments/kolla/roles/mariadb_backup/tasks/mariadb.yml index df59733f6..170cb62a7 100644 --- a/environments/kolla/roles/mariadb_backup/tasks/mariadb.yml +++ b/environments/kolla/roles/mariadb_backup/tasks/mariadb.yml @@ -21,7 +21,7 @@ cmd: "gpg --import /home/dragon/backup-pub.asc" register: _gpg_import changed_when: "'imported' in _gpg_import.stderr" - failed_when: _gpg_import.rc != 0 + failed_when: _gpg_import.rc != 0 and ('unchanged' not in _gpg_import.stderr or 'imported' not in _gpg_import.stderr) - name: Deploy control-node extract/encrypt/promote script ansible.builtin.template: From 553c58ad84061b5f835d282ab69efb9ddcbe2d77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Wed, 1 Jul 2026 09:13:18 +0200 Subject: [PATCH 37/49] Fix gpg import error --- environments/kolla/roles/mariadb_backup/tasks/mariadb.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/environments/kolla/roles/mariadb_backup/tasks/mariadb.yml b/environments/kolla/roles/mariadb_backup/tasks/mariadb.yml index 170cb62a7..3f6689322 100644 --- a/environments/kolla/roles/mariadb_backup/tasks/mariadb.yml +++ b/environments/kolla/roles/mariadb_backup/tasks/mariadb.yml @@ -21,7 +21,7 @@ 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 ('unchanged' not in _gpg_import.stderr or 'imported' not 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: From 6006ad234f1bf660d264f6c19a6574dec03fe534 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Fri, 3 Jul 2026 11:19:06 +0200 Subject: [PATCH 38/49] Update role variable --- environments/kolla/roles/mariadb_backup/defaults/main.yml | 2 +- .../kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/environments/kolla/roles/mariadb_backup/defaults/main.yml b/environments/kolla/roles/mariadb_backup/defaults/main.yml index 31c9182d7..183420876 100644 --- a/environments/kolla/roles/mariadb_backup/defaults/main.yml +++ b/environments/kolla/roles/mariadb_backup/defaults/main.yml @@ -74,7 +74,7 @@ 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 # Prefix to add before all s3 path -mariadb_backup_s3_path: "" +mariadb_backup_s3_prefix: "" # S3 region for bucket, not necessary for ceph mariadb_backup_s3_region: "" # S3 access key id diff --git a/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 b/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 index eea5d0d25..4329d53d4 100644 --- a/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 +++ b/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 @@ -48,7 +48,7 @@ rclone_run copy \ # upload encrypted subtree from manager disk to offsite S3 (Copy 2) rclone_run copy \ "{{ mariadb_backup_destination_dir_manager }}/${sub}" \ - "{{ mariadb_backup_s3_remote }}:{{ mariadb_backup_s3_bucket }}{% if mariadb_backup_s3_path %}/{{ mariadb_backup_s3_path }}{% endif %}/${sub}" \ + "{{ mariadb_backup_s3_remote }}:{{ mariadb_backup_s3_bucket }}/{{ mariadb_backup_s3_prefix }}${sub}" \ {% if mariadb_backup_object_lock_mode +%} --s3-object-lock-mode {{ mariadb_backup_object_lock_mode }} \ --s3-object-lock-retain-until-date "${ret}d" {% endif %} From 88d8b2ac625998aea039ee8923710327c19a546e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Fri, 3 Jul 2026 11:19:20 +0200 Subject: [PATCH 39/49] Update config and s3 keys --- environments/kolla/configuration.yml | 15 +- environments/kolla/secrets.yml | 3158 +++++++++++++------------- 2 files changed, 1588 insertions(+), 1585 deletions(-) diff --git a/environments/kolla/configuration.yml b/environments/kolla/configuration.yml index 5a5142081..529470fa8 100644 --- a/environments/kolla/configuration.yml +++ b/environments/kolla/configuration.yml @@ -123,9 +123,12 @@ om_enable_rabbitmq_quorum_queues: false ########################################################## # mariadb backup -mariadb_backup_s3_bucket: backup-testbed -mariadb_backup_gpg_recipient: backup@testbed.osism.xyz -mariadb_backup_node: "testbed-node-0" -mariadb_backup_s3_hostname: "api.bfe2.teutostack.de" -mariadb_backup_s3_port: 6780 -mariadb_backup_s3_path: ffm3 +mariadb_backup_s3_endpoint: "https://api.bfe2.teutostack.de:6780" +mariadb_backup_s3_bucket: "backup-testbed" +mariadb_backup_s3_prefix: "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/secrets.yml b/environments/kolla/secrets.yml index d66f89c32..4cb72f952 100644 --- a/environments/kolla/secrets.yml +++ b/environments/kolla/secrets.yml @@ -1,1580 +1,1580 @@ $ANSIBLE_VAULT;1.1;AES256 -65333232613738343765663363303837636130303638363638646266663330613263373362643437 -6332626231636536333062333438386564383236623634360a353434613530353338633431386664 -64633434316166313630316363323930386264636530356131366362303134303162376631643264 -6334656436356338380a623238623964393363353531306536343462346130656665326139633864 -66376334393162616261663263323437313237616164656330306236656636613762313234306638 -30346561373363333831613765633032363561393333663131663438393333343630633064343835 -66336665326437643430656234393736373262376232616261646135393132626331373930653530 -30383765323863656137313436366662373532613861383638383561663830393439613533306462 -65333236623238666335313730663262623134303163363533343363313935613031633239303665 -65383537343864393761303461636264643061646466666335393763616630373039383635376638 -63333334643539616363326330393734333839393662336132366530623463393364623532306462 -64623535373166336561643633633236313132316438636332616161653130653766623637626338 -39396637333563363037646632373463363662353165333666613539656239366636333135643730 -37646136343337353335313865663039393365623934343839313530313037623062316138613730 -65353437616539393036326232366662616636643632656638613730356664366161376238356366 -61656633636238383562623136643862613136643439363036643965346634646432626431343234 -37396537653536383933666333353236376362666463643865663937376438393630653566636534 -34353633636435383961356434623331376134393065353265303664326238333530323263333162 -64373130636361306438323538353330316231356333613064666632653766633662373262373833 -33346136336132653631396633393834663735643666303866313039646630643432656339623563 -64313530366561363332316330636633623431383535316462653238663237663139396334346564 -62646631656463616466353836393430636334333939613165383539383037303238626262656134 -32353034666338363066613136316331323163353663643366326166383231336264373865643863 -61343637623037313033623338313262326338306131373361363131353935623861653261313865 -35656432613135313161663434323937353061383231626330663739396435666565316232353466 -31303137333064386565366439376637653563393035393761333531376663663939393530323535 -34353362323861663466336566386236303263653935396232376361613964393237313935376566 -61313730366335323431316261623661653462343131306534636465643136643132323038333530 -39376134313834646334633632323464393666313561336635353338386466663530313161343338 -31333731623137626335326266653965616431343165633934373630306437336236333364343236 -34343033643031333734383236656637303864653839303931633134656230643034373939396162 -34643564653666366465653532376439343438303332346135373432303465626166656230326432 -66636439353839306465373736396639666439393132646436363061343839633430653766396335 -35636637666165656336303135343135313561616437393738663736386262613862396266643432 -34353033356635633439306230663962636630393664343037333139313532373065383836396537 -33366236396363326431373438353166623330376631333164626236613130333938363638663262 -35373861326165643137383266643137663231393364646137356234323838613365383539353234 -33333931353732323765643162653362313431613163343563663066336466623365343032636565 -36663866326338363963613531643131306631393837366335343435356236313562643934353039 -31663761366538633932646334323831356131353162373264636565643264366631653831666663 -36653130353263343538656230396361633631623139333964633362326537393734376166383438 -39383134383234373338363363653632313037303736636230373266363761353732366361303536 -33393638366231613737616366306638313932646539383734386437373064343163366635616261 -31336135363564323762336431643463306433636561343333343532636334393536656332356262 -66316639336538303861316365316137643464633266353066353237323364346337616630353235 -38646630393537646364663963366465653335613664343833363766326534656331306235343136 -63326464393935663433343933376333346535356162373338353433633838373433643936643562 -32653438626536633233323161313236613931616566663664626235333737346231633961343337 -36626334343766306262366662623665613662303265653164623638383165333130366164303031 -35353838386362326166323963343366343333393031346266656531623337386165323638303532 -35663861636263346134613138353063643462623637373530653865323564303463643637343965 -64306665333532396466616437656439633539653365333339626662386530383834656337303538 -61363131323061303033303535333164386566343236653364396332623363376265333931313563 -32316130356333656266356235636464376131643261656231633736346264393934636263643366 -64643163376365393435313565343865613162326230626136613836386337353038323066623736 -39643539333936323365396132613561323331396330343338316138336637646465616136636535 -38383634373331633832343965643435386231343665643438333237646337343937643762396165 -35663961366533313839666539326134353362653766313564376338396165396361393764643166 -61653265663965333835613238383662643737336263306638343036616137653434353364303936 -33393536626363616537326434363131393835666332353264636662613734656130343262613935 -65326262396561633835303830353739316161363133623436653939396536666438613763373436 -38326339626561613761666437383139303830343265626532386332363961316564333962393834 -33356230356565363465373339653939363066623164383235623732343961383161383034376333 -34626536373039383934323331386537343239306563613061336138613666636634353462633365 -65613964616137626461353031383534306465343239373530623532373631633364643739663331 -64336361613433323235633964373331373033386562323231333631656665373130343965323539 -36333563613637353539333464643565663964363163373438363336383937313466656430313966 -37366236313263653137346137643631613265343766333565633932343732626565376266623332 -38316662386363663535613462383866326430373231386232353839323130303633343766636235 -62333032393533366664613632636462663739333763323162326232353835666232616337363665 -66643564306333636436653964613230333862316562313734353830356139353162326632663336 -35616634326166633130613832616138633161343131336439626437326330303364633834376237 -62656665323539373662653339613332643965653531663833353738376438313362353634343663 -31626634333630303935633835343239653266343331393563366165616532373763306336326238 -30656364626631666137333033656436623036333038666462353330373663363938356163366132 -33303866363563343764626362393163336632633231646436383438333235343732653135623137 -63386262326639323538316634643632353233663037616665393339666135656466653262376663 -65303865636464643738626235343964323531643332626438386634663330326435323166386331 -36363036316433616261323364646537336533313933613764376463333734316534613761663362 -30323037333430376239316430626661646535373034656331663835323066613930383934356230 -63663161623362616539656561653865363033373637656339663062636264643864626361333430 -32353961363135326133636437336565666331373763613032366237333565666364333738636532 -63326465333861376633316634393566656432663938326432323037326238323364336330653764 -32303935303964643135376335653536353162353432366537633431663137373336623766663737 -34366138383231623966666465326338353437303432326439613030356638383132633537613066 -30636666346334393037336666666364306239656138613438353463306230383161323364623661 -35353532353261376631643861303739366265333537393138366231303066336631633831303764 -34633835303738633861313763363563353730636334663938383265373165363639333038363939 -64323334613032336565303036306163613032343631326562363263636266356638393033323636 -61633865323430356639356638356462313937363034663633353630633266653061333664353362 -35616663633763656436373666383133316132356135323438353933386431386537316637386265 -36336338313039626464653130623662623563313330353761626537646630373731306230353430 -37326334613830313165373466366664653936343230616632353165356163356666303931306130 -37353639323864616138643038366431386235336633623362613930366530303566383030643936 -34663766633135323238633664343131633131333838613365646363616331663332383931653531 -33306363373866343432363265303565333164653932633837363331396235333939626364353465 -34356236326435666464333636336532633730643966633034613661333036333965333463313639 -31333566666237363262363937323833383134623364663461393631303439646134616561366361 -37393832656437633038393637313236666438366463363164326233343266616439306530306335 -66306361636539356465393963336434383235383736313261663464303239313632633030313064 -36366365613430633531626430376336646532633263333963343666623161666530653039326236 -34393764353331366663383066386135643334313631316261646265333133353464346533313063 -30633830616565323937316537633731613266366236646338663863343662303366376430363334 -37366435663563643735373366333139323239373461616237323936396338636363316365653933 -31613636623565393331643038336666656233306165346130303330393534353530643964643137 -35636236373662633761353564353766656135646564393863396662373635316665323937653730 -61353833393831343364646330663364353932363337663265333237653836326564646363333931 -32306563646161336631613065323563333866623365376361313431343961663034363562313063 -38373965333131336438356633393330333837303332303433383031346536626135343937323031 -32306462376638326633353237373636303833353831653562633966386233643638333439336265 -32303938353832346337366465613363323466303636333565616338653832316432363632336231 -35353962633364303063323564653338353836393463306638623663616434313462356435613632 -61336333383061323335346639376339653531643665313665343062333665623831653065643933 -66636535366161336432393236633436333530376662336434306631343263656339616562356130 -32313637383731366538386235663739363635363666653538363335333965663165343531656130 -30333465343939623066373432646139303131363735313630653838306363316338303963363766 -33633262633730363433396137656464303865613839373437336266326463356137626430383665 -63316230353962633364313533633166376534316434303733646130333337336336316431626561 -35333363363161633633626363323062356131326237653964326663636364363435333365383834 -64376132353136333665383839396630333333653261343133373634323066323064376334386639 -38343366646434363231383162613466373433653833323934346139343064633938336366313632 -61366137636238316662343765343262303331373163306337623132336663363036366634666234 -32336363613666343166663231393765636134386431646334646130343431323964373536386561 -33663032616361613332633063353762643738383531616130613133363836373934373631363930 -61666532393338623839306165316134613733303238316565353537373930386235643236343034 -63323439633937393437396265303035333630303836396164373232376466353534613365626535 -37373762366165336432663935373764643731386637323861316465666363653934386439353862 -64613738386262373330313831373533613963393334646639653237613936343161313534643861 -35653635666532393965326438383363316663663232396130363461623565623939303534653332 -64353233376138653436646332626235643335306165353032666333303635346234333139346535 -36636231313161313962326436386239613266613264613666353537303262336536633334613734 -64313436616336373664353435323462346439393538373364383539653432356331326335303661 -34643663343633396161343061383661383263333034313861363466646532376338333838396139 -30396131613337356339353061303465316564656662373337396566303939373133363266633831 -62316239666330613538393965316665633336313230643533616361616364636666383038323964 -35646532646665326531663335323765653837386362353134666362363231396332303664303537 -31346233333530326365663666316563643166373363343937363633366130613863656633393536 -62656463386138613136356235363666623434383361306431653566313235346133633662626361 -37643566663135366465376138343634343938643462313737373336316433393834663632653739 -65666335306564636237393839346265343737363532643139353833336161356132623235353838 -34623537396366666463626433316363623238616464353133333133666338316566363263396165 -64353438326562613636353034623661663066313437346565313535633131383237613161353831 -64663735323230386531313839303535636532653264343066633439303830396232613836616232 -30303636623864666165366161356561353065666561343630316436653738383163333639633236 -36363535316436383236306363313163633464613566336437653439633262316439343161663330 -33636630663639333435613465376139366530616530643863346137323036366663343838643839 -62663763623436313537613538363031376364346136373866396264313162643239383261343935 -35386632323031666533373137343663633865653065646461636663343465626565646663343666 -38626439306633313531353738363230353062346636666136666331316437346261326336623237 -30313633616264376561656466346530663034646262386139666165363864326666663132636165 -37643164626434653865633038303462373361643132346433646238376430323866613132353038 -30613432626131656465656164373135323166346436316230323931636664366161353636313563 -65396436663533303132633935303535343565636565326637306436393537373965306466663364 -37366633306439326431623836343665306233663037303539386630636463333131336434303461 -32666632353333633737383565393665326637646636363333356366326564333137343564373939 -64383337623161346564306330313634333336396263376562373238373764356438663433656266 -65323561386661343331363831616433303533623362613334303836313037333235636165343237 -36613764386635346635663462373133653566376331613032616235313536386531333531633732 -36663030383566633032646531353339663063366566633165383331616633633739353034346263 -39396166376435633431306566616439383535616464643637323764623361666636323866363833 -32356138323833353936313934386136363030363433346466633135636134613666613235636436 -32653964306531316663353131383135393539306331386132393765623136643337306434383164 -32333537383732313363313038386161653639363833656139653937353138376234336566326262 -64353762306235666131366436666533356133383630363834366265646535326563323066306664 -31643962323335663564636235366330363138336331643535326333393163333361303035623161 -39656531323461356361346239613530326338613935383331323931653966383263303036326434 -39383966353061313138316532346636393962396565346535396330363235396430643237386630 -35626666616265656263316334353939336436313361363462323935663066663863323130383537 -38663435313737613833623364386166313939323731313734386138383837643162303531626563 -31653461383037623231623032393361373737313063653365613365383966646361383434393339 -32333764386437383337333438383566336138383234303537666238653261393966373038346564 -30646566616662633538663163663435323737646363376139613530373866363037623035323332 -64636462666538636163613135643562366134373661653864663539333635303564653037336265 -65383039346262343134303535303430393232656433313737376365623166346434393036316439 -30653631616637643964613831333962306562306536306131303463383937386361666262636333 -35663335323163356362663837306532303561386532343261393764653636333164366231353831 -37633433366463313739366261323133626436333835393665343033653430306333303639653833 -32316630353833336166633737353439666533666237626335616537353766356362373762613437 -35643932386563643765313837346163373664393134663636623639353963336534326564633630 -66363635663134323336356131363061386566643964633135613737323861613934613664663162 -30346263323936616364393534616532346361363438313232653339613534663965663963313762 -37646432346365386336393339313336643437306264383231383765613932626464313865623962 -32353833666335663137613133303761316263316664653935393031366566386166376133623964 -37313732366333333535313663623136393038623266396637326661303732623965616235383163 -35336662613231616236313835653664663731663162323736636635656464376466326361376263 -63656630613136643062656138316638626539636461376230613437363035656263643032326464 -38393039653436616461316132383834653237396238356538393037376134356536643763343464 -33346332313564613339376634663139376637316565373732393533393062616334343537316137 -35313964333738326138323665383133643061626236363662363636363332326331323033366131 -62383838643139343232653561663237623062323136346238333264653838633666343066306538 -30373034646334666338393766383464653961383733386261373731333465616435366135303861 -38313331393639333134376531363132356431366639353238386364313633636135353138323435 -33616437313139343439306163396264313766353562396261613137643032383037396635393533 -62343939636366313561653862623361613336646438363563346435626263333465646566633264 -31353937353031363662366335353165313865386633396362623931383432306461373834623438 -39363938326462633134393066616335346436393639663031636639303465393762316437346235 -36643062393533333566396563396262383837356633393835353630326531336262666264663435 -35653462643538353561336330643236393037643962376536346661366530376332653336393865 -30373830633439346533353038656365343532663731623563343232306630346635383139633562 -66333661323132613430613038643735383639363361653638643265633166383634353739303766 -64616461393264313762636137363030353332376633663437613038363765653535666363346535 -39383838343631313636306163636433313061396462353633346264356137616531666166643239 -34633063623938303864363366316165386636316639313131626232343130316636336430326636 -62353738643761323962396362343261636138613732303330323839346435303637343337376362 -64326463313037313161396632346135626333383730333334303235323931303964323561626466 -30313163383865383165376661383063353932646337623063393763333634646135636639326465 -37666364363766393239303436396439646461323465666336393336343565386661343736326464 -63663564313838653836663437386235316563366530393234636130323465333561666133313431 -37646364623735386232626539636638376436396436363538343136633236626439336332353430 -35326364323665623432653437306564646166653336613462323532636331653866616439386436 -36356133316530613032313731623539656532336365383763373839626565613234396261366462 -39396436373162313465663532396538356431396237626262376632653237383563633135643737 -35666136353536323434313136363736303933643630633339326263303061363738373061373134 -30363531646630356433613038386565353433666136323532363963313065333936323535633334 -35663365623931353235386666656432633332386636613530356135613331383864653633366266 -35346361353264616365336565353338383839613930653662306130393232623732663766643162 -37643264626432323937353965386231613038613964623137376563323338336236336238353638 -33306537373739613134316537313765616334356134623639363462633136373834616362393861 -39343039313138333763343534393638616263393832383066326238343762633035376135376337 -65363762663662663032306263343662623134646663303136656261396535376461653033303161 -64613631366430343130643835343638383237663233663537303238393639373431323461623564 -65626232633439616164623737616338366638343365346335376532323336313338353465356431 -61343962353738666237663363346162646235343637336165663433666465346237663333626366 -61376565616336616238393838376432333162336539333934323930353538393532376435646163 -64326637626261383265323634336434643262643264393433343638396432626638363461323230 -65646463376132663231313661653236626635343731356238626334663831373464356661366630 -33613264376564303035316666333434636636633861343633646136623931373934653833383839 -38353137653531343136316664636361663032383030643334313532623663373830353932376432 -37336333653436303834326135326133653835336639313264353463636231633663656464643065 -35343666646664356633373237356263396138383435323432656662623236363631396430656533 -33306530386434616536316666666562346239323266353165383239636134646332613466353336 -34366137616432616661646565343666356538656266636337626631653035643436373538613661 -30343964616234363738353462353363636363633166376130363030363662613738356238316664 -32393935313738623339383862653033363432366338363638336266323764316163393335353435 -64653235613566333963313564396237643439346563306566646662383365396531656165343531 -61383838656636616463353366353766643066353734343839393864323937333963663233633761 -30643933323339653263646634323064623732303532616132363334326137323363323330646235 -36376566326438346538356632346330346536356161623538363030326532613262343463353239 -30323732376663643561643733346139323465636564333335356361363833313866356165393635 -30616263656135346663636365666362376139303066303661653337333737633831376332653335 -33623634373834633434346461373631633363363633313264663639376336633337616437373766 -38633534323935353862303536623463373164373466353038366565343639393438373930303532 -35626532363936323466666561656363613861363132613532623234626135366666343264653134 -34653835636532326535323137633930333832393466303334623563396432326433306537623738 -34623936303766333739326337623264333737373061343339613732373363356537396464313638 -34323338366431376137336132363332376562636239613734646337386161383631386137633335 -66326433656264343763363931366632643136653631633530626239633338363565343738623965 -32643835393238353031666664636435623763393331346533663539383065323133366666613834 -31616163333339333536656165326634653265366633386333666264653037646235643663373630 -35353235396163313733643838363836316230363432356636396632663164396164376166663136 -32363562626239646565626636353462383465653230633664653335343662323566333135646137 -32653539363239356430313735386432396631636330376236656430656138653730353362333164 -30653165663061393964373836346637633964393033383465663030313366353832366237386635 -38653336383735333361643137643838613230386337616361623039643761653338336234343766 -34336231313637353239356532663833333930356138336232303963316532653734333539363039 -65636336316562356430313036353232666263626662363931663665363738353030633236303130 -32363832316664646130376234306533643836373664623539663165363261346365326163333932 -62663137393834306333633563306464366636626332616631323563626361396364656438613562 -65643862316232633163653938633037613331363230386231303566366136623664656631643933 -62373763323062663632316361666539386533336166626364333634643362646334663266316666 -36636231343665323732313434363033613235626363646231646433386163666366393133636632 -66306536663035316631616634346463376233333262616664656339663563663564623431633032 -61383638393234313431646132333836343537626335353630373331353630363333303966373961 -61323739353762386465336633336430643861313361313937626438303462656333376163666531 -39373734636362383061633936643937633035613937343636303266323434343231356466653864 -38656530666563623731366638376338626466353065343761646631386665643131386237616131 -34376562363865636265316161376262393763316463376437353238633964636662636332313662 -37646439343735646137623231353666646434653864653237393435616539353064666362336339 -61306231366666356639663465346231303364653037386666656238363633326536343439323030 -32653164366639393135383331623863666236643435356538363434396430663933346234386231 -34363063623630343338343166626361356334373933363037363033653933633236366239653561 -36303737323663393965646537666230636539343932633230656632323136386666396338373635 -65626561323330343536353563346439646261663563373735376261343763653032343838616531 -63613936646330393634303066636436353331326161373831383839643331326261656634636164 -65623464643834393238663333346133633262396433396432323565633737386463323962383430 -65616163363161666366343132383261343464323766393966613365346261383966353338303765 -34376139336536376333656537303461346138353337366639336339656164636261393334613431 -66336365336564633861396663666638386464393439373166336531636332383134663030376339 -61343966316232663236366239303535393439353666313730633664373363346364333234343764 -62636132663837303965346632303436653433346534636638346234393463643332346364363638 -33643830386238303433393463393033653165313663613062646532356266306534396463663234 -34616639646363386639356431633063343633343832613533623266643163636166663536336237 -35656635303037643033343430363637383564373234646363653963666432646331623764323030 -35663736386661333332653964316265663136383931623834323134383565326631653566353863 -66356664393134343934646635633035373536363435366462623762303134656334623932323131 -66376135393439623832653037633766376235333238383437326136353462636238343231643130 -39613566323331363337363638356339346437333837623764666438626330653963313062633631 -39653433646537353566393532366236623236356536383261326439636233366564656562383339 -32386465373931363763363064336164333763356466323836376331376334313966366331306133 -30393238393366323633343135393463613836386636353963666331643430633062306137646333 -36616232373263343236613463633336383338626438333934313433303132393361613937646137 -38336639393436633561323532353962636564393035346637613036343230316333303133633764 -36663335303530393261613336393235623839393638323234306236313735343861306265313839 -37643661613339633561366532663138393838333137626432363666366266346538653162366233 -38373937643863663034333133386238343764613438663062303938313237616337626239363933 -62616535376338353331316630343662653434633761393334386332326563636430323335623239 -61303832663664343566656662313263363261383434633266383432633039373864396231396539 -31383164383166616637396639313562613534633738343263633234366264343136303732356466 -34393434363662313236613636653362616537326433626530306235323661346261343461353263 -31613734636234643036643066333265343236653165616332353263616133633231363265383362 -37346632643338316565366130323338356535306461383261323666343939303531373263373632 -33323661613732346638623664623937646463383133366137323639373134353638323437306137 -63323537653036643630656465363732323131393831336331653734343034636438613135313564 -39613466656232613438616131666236383130323164643635653765643832613261343535663365 -37636361626165316231356563626231373036356462653262643532663639643933316439626136 -30333735313162636236366162316561303137306435346161663730316365393930643665303632 -37656633666239356265363964393839616239303161306131623731396534613533343931343265 -63623234366461373631343636346331643437393035623031323037343835323961383139646561 -62653733346366346466366562666230643966663139646134363462303963386364356230613264 -36353035323931636431366565366534333939653830613663643539343338323533663261633564 -37383462393731336361356334303339326130363265353030303363363965643934363062356165 -61303765393136633635336639366265383666666161303436633462383936313737346563623666 -61613231393738363066353563383066663864393935666635373636366461663762666261616639 -65653039633361303436356336383632646230653039366434336237383565616136626430366234 -33366232313636393063353264333636613535316661613032383638393632366338346432353461 -31633766643634653366393663643235383731373061373066623736303666386430666262636434 -39343436626338363264376234356336336534393638326332303731633134323337646430653735 -30383337373532326433626661333663636136363238646332303464613662623538346262343466 -38313439623233333365666433343138326138643031363339356631646631356565323363666233 -35663565313530323533353731333933633863616331333136646266316266353933636564616536 -37643436626337333533653763323865346263346431313935653066623133356334623863313136 -65643730373533373663383464663830303936333037376265336135626535306439636635353465 -34383838643763643064383635333234363939363634366237393864366563316232353537386231 -37646266313936346231393937373533306263383633383933346631633236666364326330366335 -31336433636235626534613262626139666363376430663737316461353863383161386566656232 -66653737373033633262623333313364666434303437386430633138363163393563373865346439 -31633634333764636365346230616466626338366436323361363166363034323766303635353130 -62386363336165373237333534663732346634333533363835653063303364303539313261616465 -65656539373134313835376566346133623839393162396562663339646331653164643764633836 -38353663663034653934373161653538366231643433303332363439333965623939663230323436 -32613736353130303336313466383634383638336361396466326439653532356566316139316563 -35343666323431323737663865653635333163666439313664373261656239363265333163636536 -32396262303735316162356436346664353631626230656464646435373161373666643130326564 -66646436396338623635353639663133346361346439663132393838396330336162333431616636 -35663030363961623062383964376636303337366664396133636335636638343830333033616566 -31323138353030663766653665343161323432623432303834313636666432636233393932356333 -33393537626262616634646563633138333835386539313264386338323431346564306632643530 -30326131623766343961323564316236646134363766663833313538666439376434623465616361 -33636638303037636664623163663562616162373661313063653463393566366332613432383164 -33616533366337313939373166373234343838333032343161626633363333333938336464396634 -64626430633335623137316432316566343537313762633831326533663838663937643534303462 -33383062383664363233623232643738616439323937393239313536343937663031303666393838 -36633230346332356537643366323030613634356461653865333332336561636232343030326334 -35343738343031656132643433653966343738616561333836393833383866623861346566363964 -61643165366466336464313139356666623366323636376138323130343436313738653633663934 -31353664306661373636333964656566646137383436666336616238316435613233633836303163 -61326439343131656536616339326565383834646235326135343233313862623435393062626337 -31643266343663336137363331653132303934323161646232396233346663663966366165636131 -62363632663362646336383465646136653066313130663238383738353233373563333462393763 -30306330373838656139363332393362663565303462643538646464333039316231663835313166 -32333663626131616539343938343832616665336237653863666261383638383466623036363330 -64623636316438343938643231363137313136303135626131313532646231353138336330663936 -64343632353535656434646333363135343966623039333138636435656631393239396234316661 -64613038626233323131663037363964353162356662393366646663653236633566643164316566 -65396662363232323534326361323763643938636136386265363863303533626430663666386463 -30316436363530343538666539316134356532623739393638396564306564633463633334386634 -66336334396233353361636434656562303166643933666438643166653232636132313234376462 -31646461666432663163366236626237666630666234373130623135643265323233373734333733 -30613338363263353763346434633830326463336236373861343866353331663137666537646638 -64323763656266323535333132356332626562616538623066353737656234376436626638343936 -62383432316637363763393866326665366161383133646366356632303933313534623636643766 -33616238323134613465623265323438323530623565613530656137326236366261343864313533 -39303737656636353932386466353063623933333263333062643837333562396563653934356634 -33653530613433313738366232343336613334376639306235393433313735373033646461363838 -34626261333237636662353731613661633831663936643033393135366530613230666333343333 -32633962643538323534366539616132373239366534376136653765646361316466663336656662 -37333164633537613763313031623734356234353639323630623634663835623034373831303731 -66353766636234363935663461313635656463646630626339323061663166393832383430636530 -37666637366361333431623132373163313631343339326661323763326363303538663233313861 -62613032353638393236363631643763383165373139643063326332323937383338633537396266 -35376263303937663333646635653732333136636634303731343533333531353538313262613062 -62623363633366396430633061666334333130623962393435383435623164363437643830393733 -36393232383531653566346536613663663030653934326335646535626430376664653537346363 -31333530663033363234633065333536313763343535653132326433386663303964663364656436 -32333839326536623034646332643130373338356662396537636266326264653733363130353431 -35633237366636313361366531343536366232663133616264396663646466343733366638613966 -35373732373139663133363265323432616262653236653236306564646433336437323964376261 -66306433326337653661653638643230373635356632333561303138643536323632636335633161 -63653063323965383639376132323064313264666564613836653430633537353132356164653861 -62303565643236663364643235643330386232336536616431306163613065643432633338663861 -34663432353365323630393566306137313332626364333738646435333537373861653339333863 -34633762313736363066336434656161363136653762343063383139633936633164353466356137 -33306666616264636663333336383765326332396361383736646330386533336233383363316533 -32313436633234336439346631356432643839353638303066656235656230366665623938383166 -34636662383739653735313337336237346138356431353939616165376661616237393232343830 -37646536653837386164313132376133643138356134346139383335646434373538376465393637 -33373938613237363565616261633834623833356265633339343932393036323139626336633434 -62333266326133366439663834613332373136653631636139646463663534396233343232333864 -64633238346366383730656465356637313266333430616534616638373339303031333038643734 -31303262616337646339346236333239353131383763306432353164616339303361653865323338 -35346335303738346562396237613963363035383235393439323733363762306439363735393962 -62303465653138666265366130353133353235386361303564306131626262653065346530393464 -31636563363561653331363236616464626562343965623033656131646632363531666664346531 -66613237633463373532653639626263646339373864366363666563396437633035626461343934 -62316466386464306632653835313037363934643936643332316437636364623536376261333264 -33353439366432666537643166653263653166323537666565396237373661323235316365613664 -37316538306461316166666432376232356465376662613562626537363638636163393537616430 -39343833646334653737373832626465656638343135633366633461303734303162303336386538 -65323464363636613964313337636532363863663663373532643864666533626133356664633936 -66303864633632386166613436366132386339346631346566346663626265646435326161386431 -35623662636263623836346566653733613635663239343039383230316466313732303038376366 -64323030313631316634366338326233316661326562633534656330636664653166656266646632 -31316136366333396262366365366162343639303335316130306137313363656331656432656162 -33613832396163356239333137626537323531383763633037303637323866656361303938393835 -64343735386431326638356461353165373062313537636138626434343561383133356161633462 -35623861313366623630626238373935393534376633336464636361353764636537333836376365 -35386634656461616461373065343637356364323037383966613364363932613438383265353761 -35666264373738353730646331343838323762386130353062383434366565663539623439326431 -35363534336539346534356664306438613139326233383235616263326639323465383065393862 -35303463373065303665363133366433346139383831323764613061336639383865396463346431 -37376162613536653232646663656536343831316435303136353165366633383261343764623737 -65653137326334396231633165643961396534656635623332353736393664376261653466613034 -37346533303065396135636439363939653264313932336130353835663932333263373236343531 -35306636643232313938303665393266633235626265643832396230396630303731643337306138 -39393464623638613362353664336664343566323965396537323265363434386535656432616564 -35616463336233343962336533313030343632366135393664373064353662643966383439616364 -33646566323763386436366366386263376663393231363835653331363632626238373332356336 -63396164373966343537303137316631383830363762653963383561313234613638656431613931 -34353761363030313734326439383339616138646363656532623363356363633731306133616535 -35383433313832386239326565633932613333653337376663383131353231383862356539306439 -65653432313238373430633831363066383665303261363061366237636532316633326533643135 -36396634613932383630663033613161333932383966366430636531336366316533393435356366 -63396465356264663461636433333336343461326566323465643738336434343134376433396336 -33613265346662363037306439333665373861393636653164326234363839306335383666653737 -30323836366662393830376266343063303066363738653632303934313633343835386235373338 -66646362653330343965343963373162666537633038366362633539636664623861656435343032 -32373065643834386532326637326638643163303763613464323937633436343233373732363636 -32623135646534356334393031376633313962636630393430623333616135663238653235333738 -63313563616238396134656237346164333333323661393465353135633631656636626439663933 -34353330303331323539346433356235386566366665663731346164333232363862623431393166 -37396437626331616233306634353432376338306531373238333830653733383262666337323636 -33663663623661313963626339346264303365346366343763616630303462346237663732666365 -39326238346632393064613739396434373930306665653139376234346237343261333661666332 -30343361333339356438653263346638336163376238343435653933393265333862343861383431 -35386632323638343639613631356439643766356632343434666262396337616633303632613134 -33373934393864633537356561346531643466363464333032613862383061393732653761313639 -35346334373730346366636461616332646534323839653366396539323863383838646335313861 -34323933336138306331623431356138396236623531376566383864383766373430626235363838 -30363361633365623933363965393330323738303634626262306632383630326234306332373535 -64623331313361366365323132383231373435343363643563383435336438643738376130646330 -63383166306239623134613863346632323936646462386436373964376662316235653666396664 -62323063623338643933373061313365333935383437666162313535366530353237656630613365 -31663063356534343235623939306330613230626363663535326264393939313261643437366430 -32373834346434346239393764306330326461366632626263333739633332373266643033383964 -66643263613663373661636234393134373436376136333665313762313332373937303939323366 -31383361313433396238306464623835326131663762336637643339326132663963343565366137 -33616231666332313561643330383961646162336535363738666466616636303164613833613230 -62393331393437653934396266633565626261636263363163313638663165656238313561386530 -36313633373663336531383665336263643637343735653237656664623064353735386164323433 -64373938643735373466313262666362326661353436346664663432643962666261336362356531 -30383139313263343762316535653234613730306263343865393435353164636538393931306164 -31336137643333663163383063333732656530336230663730663037623364336334373930363238 -66666335393436333438623931396236343939313331303230393761383434346562333833363062 -66656137633331376235356434373136616334366463623739396661303739643635323564366639 -37336533343535616262356465353532313536396261303763616637393836396139373631633564 -38373532306539373931366463336534303739343132366435333831616339353031643733616138 -37333866633335666563323863333539313639633532666430393036393035346566313939653235 -31396138393532646665356438613337366463663566616639633638316265623134636666633938 -38623666336163313330316663666336363532356435366233363435393563323231643037393031 -62653666333431373663333263656363666439663466633131306331663339376135653638306465 -34633666626666306236356330306434666463323663316534343135643063393435326136646435 -39323333363034663562656164336137303136666335616334363032653930396263386563393138 -32616461333936626563393934333835333839613835313635633733376365653533656233663462 -38346365353363376336656533393130643236353632323230383036343365626330323833363061 -62393738303836383363366262366630613566643737626661656166653539643334616231343232 -32636131376134633962316530343961393036343861613630643565326532363236303737386265 -32383463623734393138313639333135633634656538656563353439623936376433343236363163 -37323539653632303233383731636430363064393661666630386136396532333433656135653161 -32633766663661343130353937333130343562316137366162396161383463616661643265333664 -61343631336135316536393131333937343231613636303635656236643331623736633265636433 -32336137633335623938326334306165623466393436663336366163323039376236353364646637 -39653566343932626562363334306164353464373430343363343031373734316239373338636561 -33373334353838623030633535613939616634663464663163653130633665656163343666333839 -39313035643664653834663032616639396262343363313237373264323836333533316532616631 -62366332663238326135653832353334383862386536376531663764353037656436643130323566 -64333935366132386531653839636233666465623665333230623433376436313937313533653561 -63323433353931386331303135323766303831396638323331343734613835363236613639353862 -61383638323462333664393864376432333833663763353130313064356665396335346564373664 -35663533633937313765336431653834396430383331663162626333316563663061636337623436 -31373366373834613236346635376533323039363964626633353264316333636464636664623932 -33636464623462326633663739306533616237636263663063663663633031363130353332373863 -63396565323638666665353933636366343666316661306161613261313638326130373233353431 -64616161613066613737323132366136303031636164346366353765393334396130663161323539 -66636134656166313563393631623438353062303134643732363666383934353363663337356262 -39376631306535343733366634346134643561653764333031303038633837663566656666366239 -31396630633935653264613463633332616363303735383036336533613333373064363062393635 -65616466306462343763343631316633643136386130613433643066323430376564333839636235 -31383137326230643366656137623434646362653137366337323935383432343839613431616236 -34616631633863396661303962306661353835383235663765633333393137636330376233383433 -63303632633731303030653132666632326434623430623464633866626332613436626434613966 -62303337343965613061393165386661323635363131623134613534663330333239313932316139 -39336136353731366234303130616566336462383439326330653737646436313130303432323635 -66333062336363376466326539336361643038373262616331656239313064306161373630393461 -66393062326363623331656434343066346339333063333032346335643130636531383933343832 -34346664316437636564636132323862333339343838363636343030313038643039663139343663 -39366562663266656263653466383435663431323163303961333030383438323164363935376235 -66343130323336663335323530363463633336343339306134316239326466343836343965376536 -62303337366638373534663661313138323065393136636263316239326366306139353735333432 -64623362396164313261363563303766313537393264663562386637346266383136666564353263 -31353830363365323430376538666463626337623731666665613666376139333463303864363636 -33353364623438303632353035336332353133306564386134643665363036383836633332356631 -33346136633663343764636363613137313336363031306438343666613932336632666533396535 -36356163373530323937343536313331336232346436313238643239316365373263323039303262 -34363039306662373864633464316630666630346430396266393566323162613633363064336531 -38633036356264363364633062333634323834643233356464613434666466663663346230353830 -35636238373665333563636662316165323934363730633334613433636366653630396365373337 -61303133356630613366313234666139653934363932396538303661326134313638316238316632 -30636262363663316136313664323138353230646635383066626237356365663866633965383737 -39636464363033343838626361383831666266616664623833626365656530326539316161636435 -38396634383162366461633934383333613531316639303533613538613632623232663465383563 -38353230633936646664646131376431616631326234373434373633366566633330323861356433 -31653465346261643233666139316235373132383239303939613432646139323630633239623534 -35333333636163356438613362633030336163633565623161353062343934393639323538333662 -33616263313961363136663739643864656163613034396562396562333336383932363335393538 -34653738656432303932613866613833326366613739353264626338303136343632656461656137 -65653338303733613732666236613765373663326637396134393038623239383531353931323539 -34393336366235646233383633663264656530653834633033323163333866313465383139353338 -64323162616134303737313135353939303437626166663263613166386331333063316265306463 -36663233353962663565623465373436316235323330333738303933363164386133636436333336 -63613563326631313163653064616639306266383637313461633230666238323863356265396431 -64653362313039303361386430636165373137316236316437343838316261353466306430326430 -66326235393532626362336339646531393730376230363066333566343564303361633633653433 -63303934646166343533626633643462636331336333383836303730636330613830373863343761 -34373231366136653231623566646631656363653234316161656564393233313739313634303031 -61616635373837643265636662306665623230393363663334613965373165656138633132313162 -65396437386663306665363262646265326261396166396465656166303533643365306139356663 -33626635623563636137376364313834353465363966343166663064316132343436323638393564 -30303866623038333231376334356363366536353961646235313533356530336539663130336166 -62613363633061333963373037666166303833623839663433613631396664613839343965633332 -31353065633262333862633633383562653237326263303563393133333266646465393665323266 -66666131653963653332616261393832663834386636613634653963653564666662313233663835 -61323331643236646132393731643832376564633439633332316332643738333537656635353665 -63303466323566663965363332656562643430386366346639663930376638653230303962646262 -65383138633166316566333131353234613936333366633361383062323938613933333330663661 -34383839396538353066336236313334326332363965616539323837626431343530326537656435 -38313065643533346338396361373066366436383864663239633233303832333663323962353337 -35643164396363613963393039626237333063666139333130643834303837613337366234333433 -37643031333562326264363837366137653536613635646266363661326438373838663735386439 -66363237663338303332633931613638363735653230386363333933393734383865303130653765 -33653435303831323766313130626361356631376265663663336162396363636230616230323536 -36366136383861666261613462646164366566633335643565643732343562313461396139306235 -66333939636636376661366438663366376166313532343437623330353738616265373635623239 -39386536386463343031373765616565366264633338653339323665623965343435643764316465 -36316432316166386564313535343233643338306364666231323565396631373961386437613139 -34663739643130363261366261643639363136373032383135356566323735646566336363353535 -39393835363038346666643139306133616539613536386364373566656237336264393166383538 -62356364386562643666666538613335643466313831663937636565663035303966653030356266 -64333935653635373731623235623330333739366162313831336531323339303030663430393139 -62386530353065656530363561663336373838613061313263656236626535353762646561633765 -31663138643832393165376234376164613461383630633634316164653731376330383166623431 -65653865363238353238636431383262616636643964633533353030356665386266653033346430 -35373836643865353738663763313062666661323835373739356337323137636630653231353866 -37616565353936333565313938663730633639623032633562393666313262373238323361373236 -62313361386361633330303765633164393664653866343161663736343637646461626539336661 -34663062633739666138363837343261373366626331333833353838653862643335363966323136 -63383838316231303965363736666535303335346333623238343331613964396639626266316339 -65666162353264643139353935373834636165326231616366663738393335393262383031646334 -64623637363037306635333530333963396330633536633038386665356131623031306566656664 -37313232326436353332616338626137336463613964373561336139373232326530323766663731 -65336163323834313861633238313462616233393836636535626537306534346161346264623330 -30383332303166393433353736656162383238343037616465326261363838653566313266306465 -64313534643536326531373337663532396639333531323033663531343137663732643436623437 -62363434373162666631663863356431313666666138623362646261343136303062386232643838 -36353636646333313633386364313663646364656165656466323932383466396532356238333937 -33383461653163396136373666663665663866643931393439363534616231643863373065633766 -61376265376537353631393438663735323039666361383631363132393636373363353934303032 -31303031323332376236643233323733306432363130613463373330643732653939363131346336 -61663161643163366630363136613835356531306562346335323436626538353631336531623435 -33613936326432663937376433353234386435316631313065663231343431303231373031353733 -37633562323932653030323164616339353337353366646266363862323036353836376339393831 -36326133303963633639623961376436653932303762343034393230353535386538373535303337 -65663133386563306463626235323539396337373234643732333738373432643532313563313438 -36373238623238643364373564363632616134356235366530353534376163343566653532616262 -66623038306562326131633562353234616335386539656366326531666637316139633130383430 -63323137613438653630653339636139373062333635303464316162363134656631373233396638 -31633265356138663833646531383635396638343439663836383336623036396133366635336537 -66656365323265653433323637383162313338623463323462356364663434613638373830303266 -37313735626435376366356466633437363161653733623232343466616361396231343064353165 -35323130633361623961373132663836396233373135623733356330356466646364316161626161 -65653763366430346132303161653134313063346435623335323562303931363162363231613765 -64633331363339636562633137383830323764393065373237383533646261666235323366303834 -39643361626563396139313363356430343137393034633635643036393236633963386363353365 -39333633326235633963383263386431636635303439636630323064313231626366623739626237 -62363637303433326263643631623961666639616431366164633662383064373661393135626635 -38336461653733346634313331383830336238373764393339343530303339356232343362396664 -36383836366136663734633435353835323066613661366234313538353230623337396230396664 -33393161613035353737363462656135376661316234343730653334616138616535353036383938 -63346236303963613633666635663463353238366131653533373361383562633839313734373434 -38343033313463376234393839626535396232623438356436316162643531353463666238373866 -63326466363932633739363865396231386361356165313334616134366635656563386135373861 -36663063336536383663373837366636316137626465646437643038333261636666666562663431 -38383336626637363333376263653032313265626235633637363563373236396538333861393961 -33323066333464343239323838313834636562343532613634303264303937626331383830643336 -65383133383739353238393039616264343266373361323562633330623938363964653930393265 -63386139363639636336396337633862356364363834626539613033363566363635386232333534 -36303632303830323831323462613937626666663561646434376232393230643462323737336536 -30383931646431353062343736373135356563356637323662393632303362646266363433393338 -36313863653630646138396366646335346433623439653636616438323161623635356134326438 -37323635383638626663616661363839653863643663333034353333323137633237363435353963 -32663239646163393731343735636166663066353266303634656461646237303537363133653534 -61333735376232633130666431613232656262373634353837326662646261303361366133393665 -33656164303134386362363739643865376665343865356534653034633034613563393734303361 -65653734393262373534323534633438666663366334653464303739333532623864376539636162 -35333138313266663766363136626135336231356136643239383931326632616133633139336263 -32663439333930323530663933366361363964616533616532336534363133666466373333383036 -36363066663564663030386263343832313835326339366230626436363931313433386432663664 -64316563373239306664366164643339613434363536396237326533663063333566396433323761 -32313262623932636336623931653233396665353333633436373736643262346135356133623764 -39386131333239353332343234623863633833323261343932306632376463353631336634396337 -33663761313466336435386362613837333130383465646337373831343837646339366334323637 -64626339336561623232323834386631636637336330393939356333323737653063353932376333 -38316165383432303839366165666366343162616662373536653537656463313738356561306137 -30626362373239313236626365336262633838626630323563303166346138623431316535636662 -64323436623132626335316139383962333362346235393534393332356637623434323830303934 -30646232306265373234653366363561623137316437613962323834633230376634323363383535 -39356133626264353534353365366531646530333138636639633137363261346362386561623935 -39623366366463366165373335613031663832346563623133666466373434313738303832643865 -35626130306365396262376131646232363536303734333864313565303039383135306637313233 -36626166303335336333636538316165316334656531616263393463653833623735343437303161 -62666137383530663861393333646439663633326532303838636132353732323434303833396565 -33306564626130343338613435396232323139336331613865653833636663313632383736343263 -61356465363763633261366432613934383135386436643737343331393839343062616464356636 -37653962623930663161303230353764303532306133383261643065346630653465623734386264 -64666161653539636537366161663233323235346435356639373535626561663233626264623865 -39316662353739613736643932666534326434303835323436373863333663623138333936363134 -64326262363130393838623165323939373338376464653634363333343266646536333662623231 -30393533646436323032316438363639346439303064616337393638343365643666643635326461 -31623863343532613239366539366563643233313336663236656537323763343639666637353964 -35633065396334646239653938386163366332313263346531316634633436646132633636653439 -31363133623964303736373734313439333437316339333137333134626465343434646334373432 -36646130303635633565653833306362373135393432633464386338663332313863663362656632 -63393564366436613431636138613461376531353364613338343463613236363164326664623264 -63333430616238383039363337363034376432353534383266643761643131396637643863636134 -35323132303131343435393634396435306263366266396138383163623633613361373335336638 -33363039613861353162323661303966326661653335306639313133383335663431616535363033 -39393433623730316439643436623833353934613038303062343931366662343136303037656662 -66316539316261343330306538353334623435333535613131333936376266343263633138633030 -66393432623766653832353163616364383232353136336661363031396466336366316562373962 -32626664633064306164396562336235396138346632666164383533323065356238393139303064 -32656336383465376363346139626630643537346265623366313461333230613736343631303033 -64333030616463623765336563646465343834643938623638383336313535366562383133623330 -39643434653334623832626339633638333166333230643265333534646338626136303434333239 -61613634376436306264333036383863646232306334303966346361636263386665343763333462 -34336463653530613232363434633530333961623932623436393365333665633430633862376264 -64373133613135653666376636303262623566383337653931613432396431313535663864386337 -65646632613066623934383037323838373961306531393266366566343332336562623938633866 -35306134626565646165643939303435326562383133663738326231376232663630363034303339 -34313564636337376534393362363266663234653438656262653137646536356238626339353337 -37346563646430326436326666626661333163306239636530613863613335376537313563643234 -32633561336163356234303765346163356132373235343031323661363035336134336431303936 -32343165333730626565313335653963326639623362633830346531636639643430626536306364 -33373935623935326531653134326533323438666231376366633432396431303730373363393237 -63363036373864636339616164313934616266326435316361326633626661613532623063366362 -32633061666164326162323963353736363766636162306538326636323034333863643963313136 -30373337376232323532313633353239343761336336323765656338313430386262386336313864 -34393238646535363737353665626465663731333830303635613334623333396233323461306338 -39616363373438303030333935373939623261373362316565663562346636383334336139623465 -36333532653864613539356531643562323537633661363062383539653733356163316636666261 -33323461303934363137616562313162633830636536613636376339626439643231353435306564 -32336666386566636538363762353366363866633931663831336536393862363265653337396536 -30356230353230333462633632623436643336316662356163636134356339336665393562666636 -30656636656430623135636430636636653530653264643433356639326536626135323231663839 -66666239326530313563613064633065356138363362366261366230343965653637333861363165 -66663531633339626532386533313564383833656561646164393039636334633136663132373365 -35623430346238346637663666346431303632636262383236326364663638353463353436643566 -61613561636239353035636333356362343431393132613832643536633932643837353262656335 -62356639393639666435633737313762393839323133663965353661366465393365306239636531 -34623438343236393666353139373966396434663135333166653136643133356432663261633930 -39643233353663376139393037623736353232646339626331666461643338623165393135326366 -63643161643939393066623366346432366265346539663936356662353838323038303732323637 -34626365376532373462356162393562656638623735363130346362376330303534633662613932 -62656263353664383637376331366330626330376262353533356263376437656136636338323233 -36326561373334383030666664323864366565333633633932306536623063663231623964323333 -39363963306239663435623663666564313335306239323534353162353732363963613864623261 -61636439313464613530306434333436396461366365306231346663393030653737363634346636 -38363665373232393766356663656163363735396630656636363664393635646435363665663131 -31303632643738646531306534626261303135343039643233663361313239613432306332623439 -30626430343434343434393836313331376464653635666432303836303237323230656231393732 -38393639363666393037623837333961303934656266323863633334386633393933363933316366 -37366136666166336665356436636366643231373462343036353730373837653263623034663531 -33653865333734313534656532326662323136323165386333393136396361383931376165356365 -61663930633234646465303439303635393135396239653433626330626635653961396664653635 -62346333363463613832313932666531393366363535613664636665356238643936616635613430 -34646664386630643137626661646336363361353165643066386231663034346133383137333332 -62393839393864393534666131376439616539323830663232653630613666663565646266306633 -62373162643738346366306462643966623562366638313436326562386166653164363333663366 -37316239643164653536396533623639653138333366313264626237323239663737656339363736 -30633063373037333861323266306137316463353062393831366432663066363165333631346436 -64623533336133313931323262616361666566643861336666333939366362633238633539613766 -34396466663737656330373434663334626339396665306661616638653462303839343136316562 -32343539633032383432343563313737306262303635323539393066376133616337313064646137 -62336133363033323430356366366333653033323362646165636238326163616637383465303766 -63343633383231663462343635326631326437646436383761663561653666363938653238353762 -62316534653265303765613564616636663366653531393830306535663138386162343734613239 -65613435386363313635636335626165373064373664626530313738633363636237313466656430 -62626565343935343031316434306264623835366365333562613937303332643637333862326432 -66616166366332376135313566666461386634663631343339376162376538643230363438333361 -35303362393835666438366332626537373731333136316538666432323632363363303233613433 -39346635303765613531353462623739306230373937363262373233366430323137633438646438 -37343533636338636635343837623030643731316263383532313634613365636139313435376332 -62353835623961376236396136626630383566616436656166393039366562373932313539373434 -63643131643061373131656139346466656532323837396434613964666565346234313233313566 -34316564396238303237323062656365656336643838303066656332323665363764663335353161 -66336633396631336439343161396431646561643830386432396562313464643864376639313635 -61643561653934663765666132353230633237656264636438636438363366393832396134376435 -65613733383464333632366435623361653436383565383462663032336639306166376434333932 -30643437636462636639343838633762663064633937333332373439653932353438623030333566 -63323532613731643264646366336535643533353539646665623639323137316432353466323235 -36303335386535343135343437343761356430323731663233633563383339616365666437626262 -38303638313131343965646636386536313166326633666636646265346138396566616236633532 -30663566343866343730326533333661303932323430653362643131373538646362336235343832 -33636261373631613232393637623338626361326134393466663632356131393965376230636635 -65313131386432643835303463306662346532373731366633333338393434323031613962303737 -34316338623065613364336630373333323838363161636165653931386466313765323963393733 -61346535613666333166616434376262653331323161303865306333376635613933613239643331 -63616335353961376636306537313166376230666435373731616330303632336366376535376164 -33623132636363333937636537333564306466613565663865626331316565356230343331616635 -33363035353633346439313039316539303961306165663963346637356231646662383964613763 -34663761616339383536366639323933393561346233336438363164383665323966636538373530 -31313737636130386362373534663964343333623965373138393432393935366231303765623462 -38373732646435633461636533666539313862623761323638363366323365386366663866616637 -30656162353064666366613066623233386238636132316432396532366666346235616135373063 -38366435396464633136326564373339393662353834363865373638666639316536383866373466 -30363833306235356334383837316638376635633835396331333136663437336132623865383634 -64333532396466363963653263336661383365363266336535656630346163336331343032383732 -31643430623339353264663738316463366138396632376665323865353839646661623738623032 -33613035613237393639643463363330393136306431653330363965326331396639383635643139 -34346266613537666633633062333534353166353137626134646461383134386564393334633532 -39653037623935653163643365353031643938346462633861353634376331396333623031343566 -64623539613065356432633335333535393632643465363439666539643433353363326330323738 -65393865633561656631663466636530343339623136636534336235373363343131326166393131 -61316361663536656537313533343834373764626435663233623432623130663237653234363133 -32373062303237633566653963386439303264336233626138626439663738666366633161663634 -61306639383930363536623265353035633438336164623936626534303466373138653533616666 -31343738663066653134326335363861393163313861626566303162326134653131636336346134 -65393435613237343533623834386433633662616430613463616566616337396132343736633163 -33613166396661623163323937653265333238626436313265323934653461303833626235353730 -39633336363435653265313038656230313436356661643431636536336534626639303339343962 -31626565373961376335636234623364636463666161386566336639353639366331343937643637 -63623733353061373731623864313634623433326638386561366239336538373131313664636636 -38633865333432653934626131366461663932373935653462646230636337623535386664303866 -39343766643366626531613034353966393436616237616162643734653865393338663339386530 -30323232366532666639373239333237313633633139656366356366393835313336633161336434 -33353439306263643939346631626162613162313538356130376364353138633031353031336365 -32306435636537313735316137643061373465653730333032303737616536363862326461316137 -38616161613364663063653034396464313634383637623537313537336132316563303961646664 -35653936616539343133623464336532306137366564346261343064326565623063316362346332 -35383964333862626438626333636431383033323533663262396465666630646631396465343931 -62383436613332353466613531393331393434306233363461326631663831323335613361636535 -39653165306564363964633035646264313063316462613631656561343531353932386264333464 -32636439636364613430393531306130623364393833306132306339666536353538623938373836 -65626535373965316666353163646632323961363762393632653265303234653932633436363663 -66396439393431393934373332623963623832643764346264346639656164353961343764313461 -61343433353137626336613165656634643164643530343366333633633839666532366530316163 -36636465383235383930643931346434613864353133346665366233303338343962343361613866 -63633436393365346664316365626433373063396136653066303335346162313635373938356332 -66336634623165636465633636356263326664306266663936343930316139333330373865386236 -38383732663932383366363737373235633565636363346137336138313934623630396563663339 -66336562323434396636303263333737396562336638313437336564346430333038633037393035 -30656539366338626262666339623334336632643639326432613439343238393738386536303966 -31393832326262353035376237323732366162653936326238666232396237356163323035643864 -32336462613237333866616233303565333461396463383665343734646536626264636132313930 -62323938373361393335386231373932646332333735663830323361386164353461333366383637 -33343166636238363236636534303362316164393937613031306333633336626463356365393636 -66356430643533383731353535303931613862636532666665646461383236333434623831303539 -62326562663932383935383439333835333435646338323338613466343339623163313933343463 -62323363643538616637343166323730366465373138643434636431333034356630616663613261 -62393130386436393032623430623131643133656662616137623063373032343331366162646565 -66326435303739303932646564313262663363633036373839636634356137343332336633346333 -34643833643562383431333263656532316439373862366634643865306135393730353234646635 -33353561313732393266323131663630306135616537626636383535313830636339633565376437 -31613463653033363632393339333036316139323665343765333331613039333338363138393537 -32666433336439346164316661633132623331313762316336663530333637343761663532623733 -65393861383763663930343133313362346236663266353536366563383162363036356466656165 -32623137643730336361353232356334333464396566666630386463656265326139333661383633 -62613935356234393636643130383665656134313032333838363537646462363835363962303462 -37666136353966353133386638383563613863313666333132313264316536613130396238363066 -65643261343531613566663037613133633361393064373430393536346261373132626431376432 -37303431306139353932343262613232653539333138323966313562346265383235333433623532 -62636434336164303731616639313537633738623031623934386362353235383730646664663130 -39383262373235376263633561646538336361616439393330373665336237366664353134356234 -36636636363739363664626263373335666662653665356164623835376665663233356533653766 -63363639366233633434616330376463323161353965366638343264636437383765653431616536 -31623832643136343861306666306239343766373738303031373736396230613838393135336332 -35656638313732663962356136366165663536633036313730613139643465393735653437313039 -66333465356435393663373633633436333135393238666633626237393663643835363334663633 -64663762626531636339663637326363343037633961386430636230626334646232636336633030 -37316263663933633537313138623131643861353539343065346138326232666433343462373764 -33313237636131333666623238393135336261303338303539376165653933383633363339393431 -61313532313030633330656636663462616562383263626165363366653664303935656663313631 -35366136363462616663663736346566366337373933303135643434363631653561343661363632 -65636636343734666230383465313939393934656665303932366332363331333234393832383938 -32636634323164613066643533616661323336343164633739323834356637366166373061323133 -62626134626631663832623831613638633837383633636533393339393430323534353131633362 -61396563393136303639396361633564393061353731386439333730376562623665343436373832 -66323964646265326161376335633437393461323264373663633139303236636663313263346334 -30653338626564643331356436316539316263663735386361623333396666343463666533376365 -35633136623934656463366333663535373462653334633264663338656630373135376166356464 -30646437353834616563623062346438663836393034303361383763646461343530646565346665 -33613562643536363539373732393563336238393430653833336266306134623639333861333636 -36376263666330366166663436663634393231366366623135323535323064313265336461373365 -32343739376237383039313331356336653132643165666165303763643931636664396366663338 -31666635313634663864663566323235383635353865616565353837343563316236623631383465 -34626632306661306463373264666134376636396261633263353933326563393737626134343338 -33666531656139663732326638666139373934396131663130336133393333393131386564653136 -39636633353663363461386538646464663438666564383566313664343535373364663633646530 -61663762656234383839326362613264373031303062663939363837356337386336326661326533 -62346164326637613532386634643561393336326532376335636135386564663337313365643138 -66386361343637666237363530653332353636333034666563643235303835383336346534623964 -63373166663733383666383338653261313065306339373030626338636563623132386635376564 -32356263326362656635313531666434363465316131653166636465366366623664363437636164 -37353766303534636439666139303535326439383638383334633537323666396135363639353762 -32323666396337656563383064643965613238323938383062323333356232616265363462336162 -34336166666663313761616564626630623031613635323063393063663435346236323966633936 -31363839396436383666663863613233626565356232373039303566363432346661666135653965 -63346438663363323764326563313134353239336231396536633930343939353336313863373330 -32366235356164356566363536353632643664663533393634353837653737326135643761613837 -65336437646235303735646138336539383665393436323235393437626439386364343634373064 -34323861343836396639373862643965393462343638626366653433356265363036366431316637 -61363636316161306264313066326662626663633464653934653865363236646639616331313738 -36396564643033613030616363313636376163323461656533373632643231396463646436343239 -62343362613931393433333539363065623266616166663436383266336338356666373262613961 -36333562383361633865313165393461636439343265373233303437373730636663306262633239 -38636365326537643366363538633230653163643163373566393232303463386461316539386364 -32366338316238343935333465623038323337343337366466666531376363316438633566633061 -35336130306330376566396162393933393932303266636462326133306262376565613437336561 -33313764653331663132663430383832656232363536366232626137396130393764356464346136 -61333431366536663666643832393362366330643734333962373262666165663066306438646336 -38653532643734373066346230313364316130623262646130353061333035353436343237623161 -62303264376537656238326638333134636635386463643633313431383430666233356662646634 -38323932666533353138323034323861333637343363376664356561623337346562646439373834 -66626138316432616463303130363039356161386437333266656131623433376463663932653965 -39333663363666353538393230383365323565373636366533623234303336353437376536323464 -39386136633131393931633662363462643834303166396563323738373638336630386137326238 -32323361346364376163623231653565326665633438396665643166373732613331613665623335 -63333761623239326232663936306639383635646432333861333566393666396236343963613663 -39623936623833313136376361393063613162333965353930656362363235353033376265356331 -36323164616339313265656566623835333032646333613737636662356332623564643661393430 -38303939393833633639393062666262373539323332636530303838396465343761346230343439 -64396466386662383733326636346438336666343432356463656434313835303832346536636533 -31363863333139303563333438343331306465633563393530356537306561396639363632653861 -31333966313838333638366230383639616464383561393963656363653465613662613834613330 -64383833363166616362306132613661343332363466366636656334343761316530386563666664 -35666163633731363261363638626439373037363238333164366565643530393162613962663635 -35353331353263613739646539633561323564623439303862313365383031653635333137383963 -65633037333633316133656536636637346233616232306261373631303263383739643634306633 -63323031656335353335353363626566666265333235353037396235306265613031333639306431 -33393636626561663834346163643338316461383538666337346463383231383033633434646437 -37326331613930316139326636626635376465663438303936383364643631346464366165393963 -34313532333334626632376638346162656130386131316366663165323631336634393034373266 -62386434353333383161633562636632653662396464323733356333303736326464333762653261 -36323538336365316637336366343535626262626531303734633966653335373039343837363261 -61306334326466623962643739346636373234633961356330616632343061336335346633643837 -64623364386539653334303332386433386139313033663464356335626531623935396332356661 -39326631623865323937653939303563383738376165653464623964383234353362376261396664 -34383331396565333564623634336131333861666565366533323963626137343733656665346165 -34396339383262326562353938663538343166396465653766373833313930376538386362373631 -35643935326666353962386133643165313865303761373730363638373831643532306134323536 -33613865633538343166333332313364323736386533376232343037386634663665653266636232 -61646561346638336535393837346231666564323838323639613439323338356464386137636366 -63616461393536386166363834363362313032373830373631353334373662363666623831643934 -35323932363130333261303361303137366339373164306432636461613433363736333439653363 -35366635646630383562336461636338303635643361316362376664383536336330336462616661 -33393166353031613434303134646537326461333765316365616266623664363336353665313531 -32666336633265313632306334303634636231643835666466623464663331633463353132316334 -33303262623763656461383365373131653563306466376131643663616362623964313735316332 -33333962313537366638636461306566643632643737373932303233376630666639393134373232 -33616333316464663562386235323632323034333534623062313736353231373631636365316566 -37656337626262313163383361353362316361356433646164623433326239666335633865633634 -32313163353437396532356562383463353036633566323763336134396464363336373364356230 -66353962393232366535353165366138666439623839303439646533386263356266346264663633 -66353839366262313639663536393438353863616638383339323866653866663864333435306164 -66616364623236626138353966313931363938323239303162386366383662306635366665373931 -36313835366431646439366265353431633237363533623765663236613539653734363232633135 -65643937393266326232633330303761613036626331656363643837663138306139306436336237 -66653962353632613763393730383735396638626232396136393039346361646336316663373765 -35396464373630343563303766396135336365633232363565626638323231313961356164386233 -66336139363464336462303339323635663764316130643430616563663735616266343463363838 -35613364626138643764306433613830303264333562383630393965353139666164663137636565 -32636465626365643533303634353063383531663539333630633139363666383038393630353262 -65666532376333626261336266303831306134353666336139396366623565333139386139356365 -34303131323665623534313136333961333034343763313663383362383766326237646331316438 -61336639363063643933646137373932336633343034613530376130363839353138323537393364 -33343232393738613833363030653631343235663737643635323835333264373663336432336333 -35353262376137303132326131383230613666356161386266313939313266663764623330353365 -65303135616162303561396237663664623366663166356234653263326432653633383135646339 -35666662373164383938373632643461343863313365626432353532656237343435376138306138 -65376135393431653866653263383733393661616239386439336434386336363965633936346534 -66653264626262306461383366326636613831356133666164643336303730636666633666376162 -33616633663038383338633738383432373335383034623135326237313731366363653031343335 -66623264353561613761363239646534323034636131653335333164373964666434373838613564 -37366239353531626563386665643962396537326230613364303430623133356666333435313437 -34666631626465386234646561616330356439343066343465613261333361363235613335363631 -34303431386463396533633730373732343337643361653532663961346566616139313764356339 -36646362633732613365373133386437323038363430363930333335316131346339666631623837 -32656431373432643737356566376535326236366236653762633162303662623733316137363532 -64386332383839656264373535643366616531306334643431636261633161313164323238626264 -37343661386339636539346333626338346530366531386437366632633238613138353730323636 -62386237666461386563343931663732373037386361356130306163316566366365636237356263 -30353033393732396134663839616130373465653030383831666165653066373937376131643433 -63363031323638396336663739663238646436613263373466313531363631333832303465343530 -30393038313733396338626364666337616431343639616133633365643533366634383533323565 -65373538643437393466363231323634616335306166653934323331646632373838643338326366 -39363537336262336261383437656136386133633236643965336162333965396639333862343331 -62643462663236363837343139333038373437653632666135323837303536623330643037366137 -66633033383936313839333535386638313663633231376437653130393434333933613035613935 -61313736313233383330646530313939343061633732396539313162343434353365336331323062 -37383732366235336438393033323763393432393738636438326439336165366466306336353366 -39636461626263633334336365643263636561646430306463373366333763333438383832346138 -39636339346435386438366537373739353232373833626637353432396162346466313735383965 -32323764356633353238646530636464366234646634313430396537323164343439663933633539 -65373363313231373438386163663632633963343935643262363638653436386166393065326535 -64333466333734663662306136643533336433323434616331653530613635356432353466653666 -36373235653839383530623833386632393566333064623139613461636530623165353535333566 -30313031623165306262653934396138363333343430373062633966326639306239663165643435 -64623964353336353439393639363266356635646439663534336364373365633434353663383832 -62343339376634646635613736616631636366653533393038353234373462376338643133393431 -32396438643263343436353034346263303163333034303930646132616139333163396164613334 -64636161623561353034326465646634383162316363303865343837326330346164386634393735 -37653239383063356630323639323138333838346638366162376639646663303132313338393863 -39333634613862386463626430303137376339363564303432373437613030343937306437613233 -31303462336339663062663561363063333036643738656639353232396333653938386663623935 -30663733303732356566336662643338623263353065386339363463393135303933383161346335 -38663630646565343832613230393230656134646136646437376433303665366131643133376263 -37623839303966313031376434316338353764323963333130333036623561313065653832303161 -30306335613066663531326661326537613465363434393964666362313638393564636637363061 -36393031353531326134616236313836636533323436353530303062636630323536346139383238 -33376632363566313164633330643466383134623933663338383964373239326431356538346530 -39333831623736636166316537353834643535313138326461383763616333656231373262313164 -30366666663231313464613863303165316537656361623033303336663263346161373861393730 -62316631373962376237376433343330333934356664316439316431393862336434616133633264 -30626232373732643266383732323037613832373632663633643839343739666333616635666561 -30653561383266393330616633623962356233303534656533653535343932626333363234303233 -34653033666137326338646632633863343237366561636265386630366138636465356362316565 -61326633663039653233326564356533303432373835323034636662656166323533623133656333 -34306461633736343435346639393438666236393164653266633066346661343465376132336431 -35376534356565666363663431306231386463376662313031643633633363333639633531656163 -62386165353063363338306536333265326433653565623365373863383332386336316631303665 -39313165383261656264366533376138353736366363313566633739393761373463393164666633 -32313037303431313234393661626434613762336334616432303365353861353965616538356632 -63353735613035613337616661616137663038303561393762636563343263313863333333666132 -30353861343635313235303964353333353866306262363836306265336631646131613738363466 -34386664326165383838343433336463393464356363313765653938663937376631386639303762 -65613435656234366666336265653634326639383837646662343361373732363165626630306336 -33333731323036366230363363656433356536656266363432373533333534613966386233636133 -33333236633263656165333963346532346335366635353431313464613766363930373164386337 -63323435336161616261653863393932363837366139313162356163356537656330326437396461 -33663933303036363166666462623166306461663733623332633561396561363066386139663530 -36343035383932643663616432643464613234373466333733363233386339336539333966346565 -35363636383738643265323536326133373833623737666135343862656463396166326563653063 -34306362383037366537383138643461626335346236326632613930346662633230656666323361 -34323464336566356138626237363564356633613866376662613465356630653632316162343030 -65393064626638393334666662613434383738383264306566316434373139323939663232646562 -39353538373531303066323035396435393661336131353438396161636235353130383364323939 -65663639306332333738633931303232333531636363396366306163356439303935643238306362 -63326666643433303765333733663266653965353737376334663438636438303265343835313738 -34303833393966316339646562386235343365663633313132336239653739633164646130613334 -64633766353136363132666631386435303538393433613763336630336339336163366538636135 -39626565323461366365626661636565613230663566613935323435376235353366353331396338 -30386162623862656239386635666362306565323538396662396536323735393761376337633030 -37366463623966336439386131393538343638663561303566353830373263336562356466346430 -64613661353464633236333561633735613862323632316361623062306333313763346562376365 -31383534393866653563623065353736643966316264653934303139376561633265346533646637 -39313161383232366634336161356133663061386464613339386535616636313763303339313364 -63373833313664666637363635636132316662393338656433346339306334393361393765663137 -64643033376335376439623031353565643034663239636463383737633661393333323064646164 -66656364336235383266663466363263396264326239313438323132373865336337656362306439 -37323633396430323663316533313831373638306131303132306662393030323334666635636533 -30333031623031633236343538633034323339303661323566326435373664636466663061366137 -30336533393634616433386636393263323332353961376134633636376465393638396235616162 -39656261646434643538616536643531643336636431323762656138383166656632303837643366 -30353863636535306233346665643264316533346231656637623237653934303530333335383535 -39316264663263356539343934383338353137653135323365656263613434633761616335383235 -37393139333566346162623066313734386239336633653962363330363830383264343835363761 -37623738396563313738313730393837346263343530316665626432633834653430643362663137 -65396238396134643464386132623664666630653063326461623366333430316237643764386239 -31316461323232313135666135356530363334316161653832303561363930336464316564653866 -38613230623139326564623932373035363534663765616462366263363334626136333161303766 -65383064313038623738643331616538353739643064376537646435653831373035613633373430 -36666139636364666430393730633261326534353730386234663934653034373262303431363734 -66616363323330333234653365366338376465636539346637313935656431613530316134633462 -30306166343165653539323138393465616161643838626331623066323465633731386639626335 -33653839366334626139303166396232383231643562643333636263353730396238646532646236 -31633732306433353630656632346366613462663566356135646263396631623862306131306662 -30333332636264613033633362643238616332656630653036373666643133316562636432653332 -65373163303731663165313735386630363139383433393662376436353832663661343034653930 -38353261633366326530316133353630376435316535333265376538643536646638633932353930 -62626266396232663738353639333732663738326430613135633635383532383533653839353861 -62633965383639323932616239393737323632356363366338376362643138336636633737616434 -61353064323436656364626430333732346639613539656563633534323631643133313035383262 -39363435383064646336356362666164323837313739646361333661616161653461366661363935 -36633432363963313936643162306462353634653031316265313630326234333832383432643061 -37373663333333633135653432353633366135656664663363366466373639633463626232343034 -36643235373938333037643535653636626566346630386534393064613535613136306162373537 -36636233656262663239643830366664303138633762646433663533316634376263383935373739 -34393630353765306236316465363165386163653035303433363264356261373634363165393837 -36663261323233396132356461633235363066343538343665663361383837366134323531326663 -36313636643836663765366537666437626436343939323666323335343031393033653739383032 -66386464376432333131396664326135646638343339663563643632373433643563613865376433 -62343564343735383765663165613663326134366365333861356639373063333063303361633630 -37383732326263346634633564373665653862313132373636643239346364643335353964376362 -32656539663132383430656134376437656232306363306462366539656238656438643265376266 -62393237613238663833386233663338323539646635646535356137666237366365383664633861 -33313362366364333266306365386636303536373863633463653166356333623637323533323761 -34373566396534373136643737396636336530653736383263353661363965353938393037383265 -37643739663763623739336265303838363162353335313732643533616666343561363862313730 -33306232323864363363643762316435386637396465666639393661636565623861623762623233 -33383330393130356461336136653234396161646166323238343431613539666466306238373231 -32663734356162346635363937396161643732626366623331383461386535303866356663663332 -64656164646366643630343663383961323331383963323765663534636232653137663662373437 -36383733373835363262343431353664373764323736356464643230323134376262663762333833 -64663965646463353261623732366139393361626265323538313366396564386162623737653330 -39353764336633323131636266376663326639326133326666626335366637356438643564383263 -31313339616664323332653237343062616232343638663565353131653139336437313837663030 -34393836623230653239343130346638383464333037303130633739396666623535326266306234 -64396363633830333635653838343263376264336337623866313166616435646161396663633631 -63343037636361316235396563396166356161326138333736643337376162393639383730363335 -63653966663661393439333130346563313930346665373136386335646262643032636165373466 -39356361303732363035646264363537613564373331383362666337356663303264343735353931 -37366664303337656238626637663837656335646164666562366138336431373234623262633837 -66383432656137646233336435613865373163623734633331393463333361353365333163323562 -39646136376331346165326132353861666561626361656563663036616563333961616638646131 -35623636663136646166663064663733663334326464656463643936666630663332656533383730 -62313930343664303862343563336263313238646332316436363766663934383461653036613136 -32336433383163323334346361303862373735613036343466366263326437373430333765306663 -34326563316335346364373666613535323565626133326230643932396630633462643538326364 -34303462303436363334626466376263333662366133376562623965303366396237373363643934 -34313464373561643836323730656632373066613239306436353665326432323438666566396666 -37653763386337313262623136323537316534663062643561373739393331653866306537343339 -36633334633762313236313234636363663761303765623265323739383336653935353035633633 -61306439383436643463646431333439376532643866373034343339623030633539396336633833 -65636664316361653538623865623331663761396234343037313438343937636161613433666164 -36386439363138323330616633643532376632326666336531613261396633346264666465643239 -30383635646238646136653538386163393136633731323739636132323431663436373064363165 -31306636306534393931623036643038633638633930613063613936313631313563613230633238 -37623636323837333237666131653762643061366438323363623438383161663834656661363436 -30363366616630633536303230383239323565643331643061343864633762616135666232343966 -36356337613239363166333835383639656432336333373966313361646436656134323134363032 -37326366663235353035663530656337306465633236666266666234663366366636646638353662 -63356236336364353964363538346231643363643961306365336464336633336664366530333332 -30636565633365653637613566346362363430333963616333383938646331343162323536333131 -38316535333138336335316230643432616236383162303762353662633966616337343364333230 -32333936613831663061393830313137316333313433383931626234313233663330653266633738 -38623939636130653163623737303039626666613066356131383939363732306234393165663262 -64333438316536303830613233396361653664356266666365363164333634363764663532646439 -35383935663063336566666438633739613864363735626436366537323734633962356539373232 -62323861306662346336343434376562613438363362363635666464663266326162373861353330 -65633937613166643264313761316465316565343431613536326462346162666564393265376239 -36633664313539343866353135633336363265336532343739643437343165333539393230646130 -37396231626132393631326333333363646337616333663232663233353737636335373065643837 -35343731336130383064623630323834643266303233396366313137343132616336313962396635 -33333862373130393432356531663838343137333237643539656466363733316635336661383336 -34313966616361373862353738306431353532336534666238656262663535383164303039336662 -66356339653334396161663166626262326537306434633036333631663264353364643130346165 -62646336353162613266343938316366333165383231313731643033356166613163663638626531 -63346539353932656332343832386538333364373961636432356230646236613434376263376337 -38613836303761313861323566353837386666313830363461383433643034326265653062373235 -33386361383432303061366137333465373238633466383930653166363730666163373361613434 -32646634366330346634343165353663346565306462323035303466343031363931323533636266 -30336565313434316335313464373665316531306362613736613237326332653663633232373237 -35323531313264653831356235303637653637646162366265643838666239313166383837666130 -65313338393237656462363739663064666331343765313339396432646366616433336164383264 -35316463313231366533313530303033396134366664653334363334613536303231633332366562 -38343161646162313464666661306635643432393866363766623637363332363663616365383330 -63306633393336626463636566623062386438613966393839656231633736656262383737393864 -64623535303561346538376265313631653037646364306437306530633530336132663938346238 -31306338396134663361393562316433353939623032643164353130653936626538633635633231 -33316634333866663732373639613663326563363366333530633533653762363265323161373466 -64376464393438336133376537666437383561633734343663636336333939373539396431376230 -39653234323963636438643336383365633266656132643231663638336365343632343035363765 -38666535303161626666613939376261343334353239653034623834393064623534373537343765 -64346230396463623039613739656234613135373034363936633466373533306362393332336462 -35353937653731323962386433663265386235646633663637353535316366613063613632643063 -30343139336530333865386563363736653731306536343737363763633435383637323831373563 -61643830636263346162383333306364343765303563626463393463633561313132346161663130 -31633963383438386335383762346634643931623664386166306633303031363732636536643135 -33316332396636353838383833353962623332383431313633386365373431623961383633383031 -32306335656561373238646562383065316665366530633937306539303238393533633165363264 -35376539336562323662616336663061653464616665616337363266653366626265623232343036 -32393734383832613931386534353731666236326335323532346136356531323236373265623433 -62346633376362343339346665656335313533323230333630333139306431636563616438356332 -65643937366631643165653463393062663463633563643163323462366334643164393339396164 -63363839373831353435343963343465656433303166373562616461303735346339346534643664 -65306261366637396464336430383465663061356161653732663537363162333165343337633737 -34346266323339333966613137356536653261613831353436303661343739663833323133343062 -30323965613262663636633634666162316533643333363264393264383061323738363265643463 -30373538623730313361323235646166343463353434653466643766313962373433386163636562 -38343337346566393363333739626266313161396561663532396633393430616364663338336138 -65646264356162383233393462393933353630613134666538313837633964333232373430343132 -32636462383963343066373465343538626435386466326234396533393536303436653165626537 -64366433383033646334343164376532613839326530613535633632653732636237353763653539 -36393762623264313635623561326537306537643733653535653339386663373137386236356633 -31613138326264356531316637653266366531393062353535313961386164656663306130363936 -31323536643662333139653336336438623038666135643564323939353164653762343839616335 -38346131326366306261626538313435386239343361653939363435636164396331613532326238 -33323731636436306462306132633034373537353363323032396636663439383666636361393031 -61303466383862333863333236626337316539393662396533656238633631643662643730343734 -64386131386633366666643234303839306334656662353165663161643438643363383030383464 -33336139643034386261383063633166653065356634623131333431376336393266363132646636 -36303031353635366463653561363231636435656334303031643832393465386633343338383963 -37343264623764653563623238393139313039316538346539636230656230303961353232303938 -63303736666330343765356431316531646166646538383836333035373264633065646134313764 -37616161656664346261386363336164303830613830383739363137666362663831383739613662 -65633331323838626361666131666264343335303462623863383439393635333962623632346138 -38303036653564346437656632313064306366393934316562393534643063633339386139643730 -62363139363466616439396430663563356539653536643836656438393362326431333964306664 -35353762303338643563646139306435333965363539336462306539373061633035326662383131 -61363930323031623638396537623964333234616166316533623261396230386464383733666534 -36393864303532326663313034323934326130396330393133613933636439643633323438656233 -35613036316536373665336466663962343437393236363439366532386436316639656461303135 -32663439633061343236303762363464353462343363303338336532373937623364323533623930 -36636665306638353030633764366232326234333239353934373130613864396439636662663139 -62306563396662633839666366316166353530396266663965333462353965653333386130323837 -30316438353639663738303636353131393037656136363461396137666534663361376364343465 -39343737633732373336323961613236333164323430646137333666393832386335333839613434 -37613432623936613134323839396331393935336335623430646335386233303766313030393061 -35643934313563336462633331346332623361333439666266303937353936373735626563343662 -34663839383235343764326364373764646663326137666132393234303166363237646337333161 -61396666613434313138626437666235306465373366353864633632646634326166626138356561 -33306663643339626466386137306634626164616365336530333034366165613437623233646465 -31333531626238333734386435626661393061393639346662633339643364343864646463656134 -34343436373534336663613530663135623631336136343336663737363531366137653965346361 -33353566663031326563376637666330353833316538326534366164663837356135373032313838 -66623135336131626665333662663030356664636131353563396438396439366230646237656164 -37633136323761346234396161643533396634363136353632646463613566616138303834393839 -37623135656565643135316532363338323139376332343431333662643961656137636438386666 -65633065623933396134353833323636393434616139626233623464386234663236643031336164 -65363365303634666163326262633438636363383939306461303134363965306537653831653031 -31383435393964353832666635633637613264386439643635393436313564396431666339643462 -36313332636264383965643937313836303139333061656436626362656262623361386336373464 -62356164383165323931346363636561663661656337303365343165313365653234623338343938 -32643737313536373962316534643035376133306330336539383731313262663034306462333031 -30373464373861633436633331656562313334336565353639643964383435623263636236356164 -38663261336138656464633239316161303635366162303861393039303335656566356536366265 -65316664633235643533633531336461346365646634636532613262626665336436633661663931 -64373935333739646539316434373730373038656564303862303732306532633166376231653030 -65366663663363303938613430353664353861653665333333336637343135383334613766333738 -36356166313233313862366564376564633834653032666335356639646465383539323538303834 -31646338326338366636363837643162623736633161663734623233386261343832663535306635 -66333332626435623330653061313866643961663663623663306431313566363066633763386362 -39623563613937633462333932363762623664383064633031653563636437313066653461343031 -32386335343638363532303933333664376462663762393032373532366235633166396566323436 -32333733393161636637326431356331303930633632333839333063353963313662346433646438 -33336263666164343630666130313035373230333531353030613437643463623137376239313231 -61366661633562356265313738383866623261363938653334613266626536626265626232376134 -62613133643136613737666136663864366638373061353532613561386432323061613937623838 -66316162666365313064336138393338356237346337323962363664303563626238313031616366 -61383037343530646434353730633839366566313461393862393037373333363037616339336334 -31313937656234303133303062303532653534336133373634343436613435323238633234336133 -61376131393764336230306633336332333239356638343431623431633063613632393061613961 -30613234383038303132356139656535343135646365656462326261666663323239356665396635 -65653362336231633261373562376437646635383264643530323630313839343632373039643130 -38646534316331303035623536636136343735363864656461623636316539343231383261636233 -64313263353865363030653566303035356162666337363934643739383436313162383665386633 -33313966656232653730306564323237616538323661623432633331663166623833393733393731 -66393661646666366532323865616262366237383531316462316166636538633039306232333231 -35353335303763373535393639666339306231386333333836363132323730393034633763653333 -38316662633038363236353766653533343661336233663937323335663030613735373834386363 -66626438626434616336356665373038303232663031646235396531386336336630353861303634 -33316161316539373133393339336465323462303061633939613131303361303862313734386666 -33366335653832363963613132333363326238323235663061356366303165636465636537343763 -61306231663938626139376631643365626332343137393564343462373430613733346164643235 -38376637396165336630313137333137616235376630316263333434326363653930616538326432 -36383737323764623234396639643539373737643931323136646531666436373766353833626636 -33326131636337363332366537663434393239656565393432623936326261633863383637383538 -35396434633764613939383534303935663862336666386363393037323532336632643633356533 -33626138633864376365383063306161626235623765336633656631343433373565633038333937 -65643838313430383061326432386638643864323263313332396338383661623536353932613464 -64646533306237353335386433316230666235343464323338383136343534316666646561636537 -64636134653939336431393231353532373832336131336337353233656339313233613032636432 -31383166346631366336343131353965323838356435356531353364633335323537366264323139 -38656562353138383931653566383330346233616233376537633133373165316461643366646138 -36663163653838616161653364316631316533386235626565363639643765336164633437663236 -30633536323332356663643634313166633632323964323930353531373761366364636637333866 -35643139303739356336343965366461333261623732396666363534376339393463636130373634 -32366232656535613538623437346562343834616331663364393263653439666539633538383266 -35643364623135363861313735393135363065393231386362626236353732333366343232326536 -32353065313264316430623538363431346564303239306136363163653832366635333161363730 -31653164346336613030616465326230623861343262393163666263303336373863326431333766 -64613639633737643665623430616635393835373762316138363261343434376434326465383237 -30363735316564643964363732333535636239616462316365373735356333646635613761383463 -34396539633836626265353965623136313731663162623931636436666462653831373363323432 -65383230306438393865383763356538653631396131343537626332323135356162346139623365 -31313762393063633739356535336531356439646139633735343630393063643961383936363466 -63666664626463643832613862343064313331636333666537396134336164363862316238323534 -39663566663866376265616435663330613537316663353261383262366334616466343562366335 -63653234633939366365643764363132636531306531386665396234353133373939333838373533 -35666166316338316235613532303163326139623566653861323263383964376165393435303530 -61383564353038306235666434363166326239333233633832386465646533623866613462643538 -30333164623566383266363261366261663339633463643736303530343937333235616561623466 -66663236343762353338356534613733376534386633306239653033363735366630613931393934 -66626163326134363737313732383561323263643632316435303063393531336161313063653138 -36323537613735316364323863633836373038393834663030393035653831636565333363313437 -62373033616462303034373131613864316436623932323263326362386336653465326234313439 -66323261383734653862323330396133633735336639386365613839353239636331636535633464 -37306662313861653438613938666432353863343035316366663234383132646438353637373939 -36613732626662623637353536303764316139313331656537333237353264313966623264306330 -38633634376132316132376538633236383362306138653361393930386633333732663365633731 -30383366343564353663383836353735386334353838326131383833346634313838656330633661 -36663638393835633466343461383364313835326262346339633363626666373238616434616265 -36313163616363656163653234313962333565383466613139363534353265663034663739396532 -36343162313234646566383036316131383437383961643539383931373035363863383037333033 -65663339613163666139323663633638626661306338316436643130323964663866313338316239 -31623163663235316162623633393962613139663339306136303766656164353731333538656539 -65633263653435393239323261356636336635303462346136653837663832363564383735383538 -63633664626661646435316633616239636339343733353634336639346163383835326365306661 -38623631663064303434313261393063313133313136623864363336613130633737313535653133 -63346162343631333939316663623238373735353362373236383738383630623533643161613066 -63333664633363623966636130633166656434653165316564666633356662393666333339386336 -34353935326138393231333462636665373564373335616536383062313464623135613964613063 -33363266353762616631343435316562383332313537366665356132393334393330373131303163 -36373937353562303330333831353865346335616239313161303261636664666430353764373966 -62656537343962336231363236343964333261653363363930363862336163376337626337666233 -63373234306262633834646163636338323864323032363836653631343939303362613263613563 -37636135623033626265646130313037396332356363386231623730353437616634623066323361 -34366435366666633063343866656461366533656538333131366135376264373264353466393533 -36623132303064393835626338626462316633663364303538363861363764333966383333343738 -33383936656534313864646337356438333862303038323633613831663235366435613366316431 -65306131363835343537383435323137646337373465623736396263616565616639626639333531 -63363137643463333664303564323665353631623230363336366165393461613638366230363832 -32306263306264386236373763616264666366376231656333343864393736333034366535353638 -66303466363131636236343533343661363535646439653533346631613635333233363332313537 -62336237396437626237346432386262353561353335316231306565336237636630623133373338 -32386633633933646235353234666234373939646539623762333163343861326239333265323564 -30353439633265326334333435323232653562363666343961306165393864353363346666363534 -32663531353038663461623232646234333230303436396434323137386334353036643936643739 -34666366636137636234646566613232303330313530356339343936363136356136393230663864 -62393965306163303465646636643433336535613861663635653131356335646235303436623634 -33373862666131373932353665336266633130343361366562623366656163323835666330346135 -33643331353163376163643033663236353763333636633939313936653564396138656336326663 -63323562333235383762636236313861373837653736323533396265616530633836356262363337 -61353231626232306130636166363164353939653966666131636332653434313461303236333436 -34646538323835356264393663303261306361613263646362333433653936336161343666366338 -37333838643830363733626537343031333430663138646239616131333139303332643037343033 -34613832353932363065316435343863356464376539303732663630333833383431663732356137 -31326261313135323131323661393134656237366564393362333930313733643031626132306130 -65316136623237306635376235373239353932333637363035353636653261386262626532343530 -33636134353134303861616461666634653361653230383331333737383265646637613262666161 -38643939613536323138653032636636383461323137633133626361363139636231383166383234 -32623735616439356231356434363636366130386137386566363036626461326439313863356437 -66623465386233613962643239643230316362616635623336373733626439633037373531386431 -35373263343637633330613838323439616438353966653662313832313235393138353365343533 -30323430303833633131663637636231636166663834646330653133323032343737646437333633 -31653036663763613631393466323433613066623132313332363565376562383134653735323837 -61373063643434653933636261636366333161633930336664366238356364313632306537623065 -66666564643763663030353237393731663733623434633232613561366565323336303730376230 -36653937343561366635623432663134303037373137376135393530623634306434303835353264 -62346431366232366138333730623030383639663030393530633537643438386334356637303666 -63393930323530373337646433326534633862616631353531666438373236326463366630656263 -33323937663137616233376466663634633564316137353132646531656562663364383430663230 -63333132396265666635333431356332623864323664373231353636623866616637336434636433 -31326462376337333564313936356236313938613864613465656336616130386636356436666132 -30633664306261626635663062376334656666633531623664646133653831656435396330663763 -64333966633035386238323233313661366661343663663035383134343166653630393064363339 -39396562666638323230666433303438313238313433663230663165383863633930623439623363 -62376261333933323262653631323365623266653530343434396334343231313937333039356136 -63616366623532356437356434346433616432316134643062633433653630663864636333393933 -61353832313734653934663332326539356462643932623261343430613739346132633262313639 -65363831373435363934643736626565323864386366303761306634353966383437383734623839 -32663162646232343639373565336264633363383137633334623434383461653861643838366437 -64343766633936653963653732653237633564343462303432343039653366303766336637313439 -61663834616364333036313636376337346165323865626438643735653136653037363064383131 -30626164303630366333386365666364396235393330376338333338306435383633383831643136 -66386562636433303166626434663130616232396430616234363566666131353065326133646663 -63383737646662366138656366333132333336363735636436663437326363396336373635336639 -39356264636633626539636162613662636330373165616532343064313039303561636130663263 -65333663333461633131613763376430343038333034653861653062626432613963623166313633 -65353233653861653330376331653965663361636465396261326331366332356136396130353231 -66663734376230373030653764393835303464306133353337633338653439363139346562643235 -65313265376564323930643131666565633235393739663965343532346236393862643130383132 -61313836353234643039613462653936323064313539326261353063333638616133356633333135 -36376439336265373835336530633465336330663366656463363261353636376564326137623636 -35386536333533616432396333313237313133613662326461636535373861323166316631386632 -62376364333136633937643935636138653162333362663035396664323632643962343061383561 -33346432653162333064646139663134336434333365326438383231363638636165383863323037 -61333831313030336533333964663539633037666237623265356636393766333739623961366566 -34613963376561393765613764353531613934636564653562353463343735343766303336663263 -38386537356430623964633037336435373463373635663433616362383530613338636330313237 -38613232643664343461663430313262336662633039376638336330346239313039303966323934 -36316564313039383561303339303663313830633837316261353834373532323938393134356630 -30383833653036323834316261393737623339643032383864326462313131373564373466356337 -34346565636265623765323237333936393865306463363134336437363135373932393966613637 -65656334323631353432393237366439613062393532326363393366616330306365663962383265 -63306536353135623961366230636432353830646435643762366130356362393435366430663266 -32313161643034646639306662656463623935616530346535663663623932613861356530653337 -62666134383536333163383731343735313966643739343134393461323431366637366633643035 -34366561633061363438636562663266386637633736343235656339353762343136623935346530 -32326438323161333361363136663961343864356136333763373130623061346239616232396439 -31363966313561613762306436376233366562653961393738376632383538613866323236643935 -39633739346431386563346638363665623735363930636338653463366565393632316131663763 -36396565383863666666346537626661656465653334326363336532363366633366633333336234 -30343633306235633364323633663462346563353736383632303365353931623662626630663135 -33623239653430666330326539653864316663386634656164376563653338376464306337306562 -39663032353763626166346235623066353463353061343631626462653266623430623133353463 -65326237613332636264353732616162643533333361373138396235386536316633353230326335 -65303133316131386239646365623964663537306632633131646563333264323835643037613833 -36616336363136356333336639323539356161333965626335343931636338373835643536616332 -66663438303665386661643136626239663932373738636330653238653361646463616238313332 -36613962393866306334376366636337663631613462343635646538376564656432386163633835 -63383466623162313034343138366362363035656231316331303562303963616364356433396431 -65353439383130313535353432323964396264386333333936633265653830646136313431306232 -63383338376330306665396434633265613634613338313866623130336138653464393339633733 -38373437646130663037363964383664646435633034326234653432373364386466613533616162 -38303235636464323635303436366433633766306439363466306435333661333237323830376661 -38656232613538623064343033623237326266613364653032653862316630393234376432623734 -30303763653066316265386136633837346437623265396336613666303837653337623239383636 -39313034363931336331636437383764353332366637666532326533323436643633393366316362 -65303165316231343864616332383763656336663735613366623237303535616461313664356462 -65646365343833633139623639643432613461623937333537633635386462626238656639373037 -32633332356236623932336436373666623633336439393964356630326536376137646630363232 -30386233386432323765313734353735316337326361643438646664363031396633333865376264 -36376332356663616437313231356631383132386432303361383636623062663561396636323061 -39373533353062363330336535323338383964646230656533376166376136653762363130343462 -34646366356232316265636230653066653331363266303334653764326164653766346337623461 -37383938383131323539626566663330613363616162663534396333366333636433336531303839 -63386538323136636339363539383764363237346636616337646136623565306535373333393966 -36313939356162643966623438353932343063666433383336363039316666366562613134643031 -65373366623136653537333261333631373835373135623662363066666563313165386132653831 -35376235373932393336353439656637663462316237316333623539336235316366616361613138 -31396331356439323939336135333432643034386266666430623765393465346539656339336233 -34636265376461653133643835636561306231363565386232393562363437653237636639613335 -66353534303037323164356237363537646537393932623331303837313832353862613137303361 -62323966303532363763353136356561633963366561313637656164613531393433656665336639 -62393462396266666331623636323936323162666661663839303537333233313731383861356566 -63313061613561306138666466623864626635353861323564313266646662336238623536613637 -31353264636633376366386332303738313738346134356532386432316534343637333730323634 -64656365363234613232646435333231663935383766666262313735393864313363323835666364 -39386265393637313930313939613963353465653435626139616534383462326334316537623130 -65616161663564366266666431306130383330383962626238346461633666363832373534373935 -31616330646635336366666662306537373363353334346432333837373363623638643234656266 -37343966366535616638643530663266313561626537313030613862363233613939313734353861 -64663461626463313036616565623063333338633136653464376537306366363966303965623534 -62633338313864656631373861336264333063346563303337663861623631396265393035303965 -37306435356438633263653238383566363266366235633539356335333531303965346231303438 -33393964316630633764653835363966313334383031656235313437353333616561333539623339 -33343832383564386537613232386330616464303132356634663064633931313263616631636237 -61623530613139623264353432383361373361366131383936643961363136633038666238396466 -38646531363436653438393333363436386664656561313166363965346631396438363638626530 -38653036346533393739626132656134616535646232623837653863666537386535643837313231 -31393833636565613332626339313336653665373265393839376539653734386331313864376137 -63316436356261363434336238663864316266356239643730653034336662363435663861343432 -36396265313563306665653633336361303331306137356235333238306235333566383939316663 -33623632393637393366343830616539313937313436663338306532393466353936383963356334 -31376235666565656139646662323437616439633937336131373130656262613761383664303363 -34323234383933356163323764323531373335626262383661333839326233393666643937396633 -34663731393161343830363663363136666363353837356236376665326164343163386436326263 -35333162383464623435333431333364353166356261373439363164373232313136353832366666 -64366537336235646561613731396233393265396235346564386539666131633133663466643337 -39313531303663663062656339316161626134313833313761396437343838383436663936663932 -36356261646636666636643064646462376164306536646336636264663666336239343538303462 -30336266393939643833353538333165376537643537303030643263346634616161613730363265 -34653931313966326264383831313632616462373036663336316366666263326263623034306137 -66336536376466653661616337656465343931316461333830313539613132333134343033663237 -65373337316262373836373036386134386637323435613334636436343834323765343138316534 -32343739613566383837663165393763323035316339343536363935363938386632313137363966 -36633136643530356434306135313334386362343361316566356136393364636636616631643964 -38373533663734326530303433306635363336356436343039323463653538333630306564323436 -38363461613561643661636338653462663832393339373061623965303533373265666437393866 -65373931383036356162653230613532343463383338343165666438653961336261336666326164 -61353631336361653538646463333435333232633462323536623166646536333536613363383364 -35643066323730663831336533666565616361626664363838353038653161663533636232363035 -33643831363036373735636366373839316636323235326138306465353935663630343432303038 -32613331356136313466303035336334383363626631346132363939313830383566653835343930 -61363835303332613932613836343963393234636337353833383135656466343036353232653233 -31656130373965316530663764656331313939363761613833643739613164663036323032326264 -61373463646162636661396137313563396662663835336630633133326435343635326339616162 -31373464666263653565383732333266666236306564306666373862386165333434356237633961 -30643030643736393330303439633637366462343865333935636637393461646337363561353861 -64653039333839663637623261616238353335326432316661623937326234343536346230353364 -66373532373765666238356661623561393139613833363933613130303730396165393934373636 -39646566356333396364623133333262373564313462643633646166616237333035616133326532 -31666333656464623530666530313533636431316261326566353539333331376364323162393634 -30653465366230333763303337653862393231643635643563663763333137376632303666373739 -61616133303432626631623066323436396464383235393832623533666430303762346135353736 -64633233376231626539626163313237636132613438346434626231336463323564333264663462 -66653435303037376565356363386136623330636630303331303362316362613666333862366437 -61633737363431656233343934303932303166663064376561643739383264643166323437323165 -32386236646638343332643732643431656363616536636130366336366665636561643464376462 -65313039323830353434366437656233656136393464333435303032393635643337393737666431 -64653332616436323830353261646534343461633464303637666336626335303532613461363535 -39353336313938393064323436343564383739366665633037303933386261343430353332313938 -64666230333036666436326164376335633339373763353531353366343931383537623530323965 -31343939383634666436633232656465623936633336323237313738326664393763623430313062 -65323333663766653763653033306165666365636466633232666431386135313737373733623335 -36656634316138396436633530366334636434333461623838396237636163333531643835623731 -66613066663461316463336464653336343534626338626437316236326666393338613562333666 -37643633623834363966383034343936643163336566633634666136616237376563303735303438 -63336533663330616565666262316666343136326430313031656435386234623231346638336435 -62353336353833623534646132393138666632316638636539656138393362366265633863366439 -64336163366662666663373066366337353037393161613835373439356532316664663336353633 -62303661666633363336356537386166386637396533666135626465633135643532343430666138 -65643534343763383330393261306635616338626339666138646536623932653231626264303831 -30663435376635363332343534383366396262316135353261666635363133323464663562336433 -32313733633737383636336362343731386439613833663166643831666136353234336535663963 -34666165333463373030663861336430656237353661663964646235353933393337323837613838 -36353135323239636262346166363038336263326434343061343133346235306637376539653163 -34373633343039663632653036303632623062373630343238653939313733313063626136323231 -64636565653363393437346232666239653237333832616432623933623466643233653230353530 -36363537626663306639303536363139316338343132353334346134626235366462653462616330 -32393963656563616139326237343261623364623136323561636564633734663731666435623464 -32396664343962306465653833353637383631333466613663653735666130643161643665616462 -61366365333730613336623165316138653864346531613332623866356261643863313266623161 -30653638333937656232616262643531306662393162383463633965316235383030346333373763 -65373235613664346639373436643064326661346131656263363930373931346637663534313562 -30373561333233616366376139376264613533666664653335353265366364613837383531313431 -65343064343036316165313737626632366339363430373737333164646336363735336661393436 -61666335393364396334653436386335386564306436323962613833396466653832656336666136 -35343466353330653833653735306632333130653136623937373530656530336562346536656466 -31643838666665363733336439383439373133653464376232306230633566333032386439353132 -34383735323332643330393361633963363064646563646436646138326337636334653765323830 -63303364343865303135313966653566383433393038333131336539623133386139393866356636 -62363762373332313562346530313135316532653665653839316136643031386133323739393164 -32623762353838356437626633363461393561343233643534666162363139396339363538643337 -37336661353132643430303634376634323762646636613765316333653534386561623364613365 -33303030363235643965613062643538326633643065326637613463396235636531633636623038 -33373131653339383166373935343738343537366262306631633332393132343837626534643534 -61383666643961323134626339373161633838326463646435616266663138643132366133646331 -66316239663238353238386537373564613035336536656139323637356637393838656230373562 -39346365656437633765653536623332636231636537623466353234653035323764306634653434 -39386234356338303466393765646362643435313734323634613231613730356438376664366633 -31643335336530313837343465633132333739323734383261643730316565613663613261376465 -36346335393539303238323335313336353961323132323364376264316530336539306139613331 -32373935393734396530373931303362363636366163636133303238326238623635373061663134 -30616233356139326130333837346564666666306435613835646461663536333038616430333638 -61356661363164613337623963306630366234363735316363366337663334363034383938653733 -63616162353666616332616135306365343865613030303830383265633165373638393530646166 -32646238306462666664646364336361353035383235623837613963333733333562636538323638 -35313531333139616362383062303733303035363236316438623135353134396465653934336166 -66323830386632646662663631643731633039643465353832306133636331633136623536633166 -36636533663166363431363231653238343836616536393635616331656265376231393531383731 -64393736643035373366316163343333643634623665656235613462313837613832646263303164 -30613366353131363533353434663862303039643331653135323938663865373865636161393538 -32316665623530316435336433383165643530643339353937643932396231316535326333656335 -37373861356335646535666162316133633663336238643961623839376632633364353436633539 -32663261353933613234353961363264386534636361303738313334633937346666633533363137 -63343235316331316335656361633031333133306338363065663738663838313861396239626335 -38636633393139656637303337393539653961623836643233633933643064393732336635383233 -64326366623637666630303761633836396537623034623839356439633032343039323439636336 -62613031346635343335333764613038313866613334623865323863326231353563373962663363 -61303037326361376439366531373064323832303365663066316230386262303163373933623639 -39643033313435303731636634393032353764626561383032306631646538663638323661663534 -33396161623434646666663762333764636231666133663030326666313866623262313339336338 -62393131393936393163646533373566353839646235323965663164373839326235656237313532 -65343635656230306536666330356531633933666437356230623161616534343261303933323164 -37616365393362366530383131383863626664353436396533653835303732613631626439333664 -37666162633036393935383438343839623136613130363636316566336237353839383864376332 -36376166616234373731363864316436336430653439623837383161613339343139393536623165 -39313164623132373362386638393832333032343932303165363832313262373633323532343630 -62363935653532333066613234336663646263356331366662303961353361356562613332306434 -34653066636236313164623430343531383464646265393131363733303266336336393036323561 -61366465393639666639383733313762346538353539313939383765616234313431613763313231 -35636663666430373137396139333761373363663738323035363037303239663165396436313538 -31303939336236343531336533346561366232326232613264396232373537346161666338623964 -37316432623133353965303062613064656530376634353264393339646366626336356436386538 -33313166653430383834303933393065376161383737346361346133303830323936666235376431 -61393330393864353332376463386138613738383636313766636438343735346563313936643838 -39666331643836326161613132326537633539336632363038343664373238383766633430386437 -36623130626561626537666339653034333431333637313831613031366535653639313961323865 -66633737613331363663363436666337663031386435346563643334616365636534393163663633 -66383963666336656239346566643336643535653563373531356634633564303832316534663663 -35623866336163366464616365613663636337643664656230323965326563656564653031643231 -62333331323232613830333135353031616166326365326366623434633533303261353532623137 -34336534353135653965356332303664393966363266313634323531613730333934336535326530 -65333261383435376364626463313434316431643232613431343162393064363633313039326662 -34326134623262363761363230313664656535336364343039383061663565656633313136363061 -66313835306264663338393032646634653731623464373363336430663661333532316431313330 -66306535333638326265396531376164343534656336363839393236313639323965356330623462 -33303130653930373736346666303234646234373136366339643633616231613566666331333364 -62316231333130316435656561626536303835663739323038613732613639343337343731656434 -65633865633462333966373832636636623634313735363964313565356639646632643863346433 -37663766636536326366343066653366633163613435636133323161306237613032316633353464 -39636663623261316239636334393537653866633230306330326133323537383334373361623862 -36656132613933353361363765656633613936333562303330653030313962343864363561386537 -34656135333363363263383463376235353136393531346130373266626136386134366535326536 -31343035623066343933346639353132343734373934653937633830333230353733653537646338 -62656162646236353436303963616161366565363935313433386436393132336437353865333033 -65363462346639353364613361353635383637343039303036373534653166343966386337346330 -36323834343232346334663838323064343130343230303238616630646530653164646333633565 -61643566646130643732626433616535623935653338356333643432366563613736626535646431 -62633135613430363131326537653766306136666630386161653137336563323162353133626632 -66343162373332656462663537653538343635663530343330356435393336633264303139623563 -32333334333239656362653265333163626339623730363431306464663833323463323762313332 -61346237323539356564653234653730393062306430336662323730666638353564333566666631 -36656438393237386634663837366638643332323761636431366236376238303630366562646565 -31313333303338626435636437616136626634613437656565383662633036326139316664613565 -65616536643461623764393236386666303964386233643162653138393034343565643335393931 -33343639613261623130356235336362623134336163376638373565353562356139316364336664 -64633662663864306465646135353636336632336166383065373831363137386539353161393765 -33313431396364393134353939633465613735316261616339343331303062363737303339623165 -35383431306337613237613762643130653165663235316565616566396632316361346166663962 -31646139373764346336343164616165363632336464376362343731363565353266376164323666 -62636665623265343664353630653733313935306161303264316436376662386132656236623763 -61323865326139386464316335356339636334623535623835306461616438343932366438383336 -31323335646637613030353566643433313530343330383362633363653339393933316663353362 -38376231646461333762333435613337643162303934623033373738663037313430366566613532 -31663437623230386134623732383364393562633439663633306135356165376164343936623965 -30653464393937316361346630653365633139343332626333396130633534353232393234666535 -61363838653737333062653135653834383162343335643063613361636435323434623335373133 -38323062323236666466303334376133336631653533386261613536633536353766346630643361 -36356365336434373936393933346434623232613965653139613338313365643234346537613033 -38356562353932356261303035633332373766623436656264343831636165303634316235613762 -30613064616164313665613535623836356638343062346438363339333033613062653763336238 -63666631356463646332373961643262653064646162396531333035343436626365333439316262 -64623037316163636163633531346336663564333563623331666639343337353834356338393565 -64386630623139326138396439386537316530623134633135346561633766616464666439336636 -65646430326563303036366437313262333039333934316264383135383333356336363134353636 -62343137326163623630363865363632326333636330303738313030656466363261323030386162 -35653438313833383966656435373534336536323233343662376137306165383335333332323639 -38633865316136643135633461373334336433353263306632636536363539623731343631363530 -38363363646530633237633032383130333336333962633732306461383033366262363737373435 -66343563663435353364373332313636326336323031323766383866373939363937396539313438 -38646463393264613234316563633032623565313034306362666531356131643532373131633833 -36616431393366633535356139613662396535383661313336386663393261353063346330663139 -35356365393437356564613538323837353338613936363533633432316230343766373632376461 -63323364343438333637613533656132386464663439303666393934303063373334666437363262 -36393163653830333262373966626562393734343738346630323930333738653833356362656331 -64303731373761633139326539646264643034626235653237313365333431386566333036616538 -66396363306331376332313339316361613466396665326661323931656439663632353161656232 -65326235336134666634353162663763346464666661333139323733303563346139316163306335 -65376136333563656234336231356365376663666536323732373630636635653762656232343435 -62613337393538336138666533363861363764323262646464616337616665646636393831316239 -65383266386532643231386130633138356436373065323166616133333532393831656436346436 -31396430373030653664373566613239323166623039666135373937633663303234346662313363 -37323538343632303039623439386266303162623239386238323062343930346566613031633931 -33383863623033313033666334623061313365303536633437376331393133636264653862663132 -63333234623663643134646635323333333131653730313264373436373333333434383533643237 -61363061313838623661633837393935623138633836306432336165353333386666666636383437 -30373831343935666263343165316230303230646232386261326633666639613865326663383332 -64623133313335393838376230346135363935326363616131656637376535393063333433663763 -39636166323936666364393533636262333964653163366233316334333165336361303737653936 -65326133393535626532386666333062393037643536333135313765636366393535366534623866 -34383934636162346636393562653431363930663333663434303430633837663662346566386131 -33333863336537336638343963663931663662383062656338666536663836613164646436353861 -32663931386139306466393363663463333230386538646466393937303634663937626434663636 -38613565323135323133333539613763666638303866666630636433643439373761663962356637 -61633761666636643633373533333064653235636539383964396162393764323865313137623836 -36396139643637303961323339306432623963396239626439613265333561373938333133656438 -32366330626161643662633366323834643031656139353932356330396566383630646231336633 -37303038373334306665666534353433623235326239313434313335643166303133396263336363 -33373463346663643038326235353133623235653264626363306533376363383164323139393935 -31366365383337326432333038383331366433656234613938623933613638313634303763646564 -35386634333466366134303333396264333162326663646539383861373535663963336364393362 -63353764646630616135383134623031663464653537313731316663623037626633353832373865 -36343637306631353062323437626265376236333034386332363862373236336165306433626165 -66343366623838306330343938316438366361333136616535383034326333336435343461343830 -37613439363933356665303363353239636262323462333934613739383332633738633663386336 -35653037373662663264393365306330376238346465396634383461633339353061373635386638 -61376332326663393363616534353433383561356261663537303535656261356535623636396331 -35373564383334343430643564363133323966323537643762616232306633316564326566386661 -36336665313663666430366639316635393138316538353237373838363334376661653366313430 -36383761333064326466633862363238373862303434366364373066663531653664313361653461 -38616561373963323031323831666139383566366130353232623534323438626565363134616334 -64626337636635636262303637643761393266326638363365376264656630336262623066623735 -35353539393265366436343033333636653438316262393162633261623439616566633935663266 -37373462303165363438343238313036346539636134343665656563313961613437616461333464 -36663531383533333634386165326430666235646338653133623936303366316439356138323262 -38313132363234646431366335396537313632363166623965663631313865666662323239636663 -63326437633736653562303664666530393062316633313039633334626238626562633731383365 -62643564613733396661353664353134383430353164383964333134653238343233343534623637 -63386132353133656231636539656234663062356237643166623538313339656130393465653036 -33326235623732316436333039366365613763306632346666626636623938313233623930383632 -36306666323435653037636163353637393734306434623162333231393163326139346262663238 -37303638366666623534656337656532326633663736303536303665653233323034356238363330 -38616332316130633939666135626333373538396533643262613734623862343336616363373733 -34636563333934333361316261353066353031663265383935316565393063663963626231313133 -32316233643035323063626337623963643232336434366333303762326463363662356366333634 -64306362383538643135396262616531393730333330613038366336396533383037353931323334 -37663134346335323337356565373235343536383933336637343434323932643537386135353661 -38373763323038646239316366346565386634663664333636653731623631313061636332633765 -36646539343337663935636338306431326266336161376534353930613665666135663863373839 -30393432343834393064613334333334663235343064333737303866373463663564353033623565 -61666638636237393333343939306434623838616264323464346632666137366239396365353361 -66636665633431366633636165633739343635616532383531636162323863656436323461306161 -62346132333731366362313163613638396162376236616162346164613863666138333930373061 -30333635623035343266396232353764613932383830363862663135663438613931386137313639 -61313030306236643430386136386435363133396265316263346561663930356238633639666637 -62363331646161346132336661386530626164613764653735303735613364366237353164383134 -33653863356533346664306130333434656139356230623663376335646163353562356536633366 -363035336564363231643164613831386661 +37643231333766653831383833633133396338306666616633643039363261336533373239356639 +3639393137653266373762393235353037643330393962360a393062663333376437626632666535 +39363534623635333637353261663338303164363033613766623964626331653463333135313036 +3865383135373366660a633634356435396231343638326163396362303061356439623039306238 +32663734336162323137663565376336376138303135643931626532643263663731356266373133 +65386138333963396563306339643663326435316338613566346432386235646135383264656561 +61333538613930303765386163313330613035636532313833656566323363366161643739663764 +64303039356363366331666232306132383236633965363236316666363237333036363466666463 +63613965623234383662336134653565336666636430623735363866343838343033646239343732 +34616338316162633338336265363365353335393866303138653466353563353431636233653833 +61646662346431336361306132323738633231626462633733353864363635623838353939336462 +33336666326237636234643461653563363163363439306265393062393662616165363762643561 +39643534383961323764626535383335623266616430336237616562663135316665373961323933 +38303334663239643732306663303437396234323466363464313066383965316665643935623766 +36383261636232646239616631353136356132323533393633623430316134363661383730373065 +63383665613932383865396564633866346135303762346466616133373138623764316332386239 +66383761313536633266336330303965616430653162306364366230623264313362633430383466 +33303732356430633031383064623563373666616632633031653264396561623863383632366363 +64643964363066663164343638633931666665353765366166643335626437353465363136346261 +35326535353239663761333833366164633232383737646363336364306435386634386137643136 +32366261616436643762343331393735626464646338376636636461373139363434316637386631 +64623738323464646637306538323434393537666231303234333932623966393733623462343936 +61326436356530666664363034343338333537303765343362626163396236613739613230336363 +30653165313463363833333465373535343564363163393464656236383462356337346530663066 +37663161383132323365323936313733303431363262616566386438626566306433613236616164 +39623335626261366438376462666230346537316335383735663832323662316239333661396365 +30323766333963333436353335356564376633316336316334313063656332373730666138666261 +31636336616164343634343164386439333331633431333562353039363636346466663433663033 +37643933663831343163633439343330646430613339353831663831636330663438623234643434 +31306438313265313165346534663331633238623466373835316333623033373831333439306234 +37313039306462636337313032663665313031346462323738643030643932323239663430643536 +38663436343834613732363434613535396261636233306162663631303236653731313765653863 +33626636393033363566383461306536363335383764633637323236313038326533323731613339 +63356436656361383539316436643633383739343638623632613364373664316163343834396538 +32616537376433653465613164346138336430323836333164306537346236396237623664613766 +66353033626463346266373761376631333339383334643661386335333131373732623265353735 +35623462663138613038633939613734623231333933366662333138316166366365643466323361 +32613465333063623261313539356335386164383232356334396330643034386633323432393835 +63336365383932656233306236336631623736393837653265353239313435333132353463376230 +33336561303361356633343532326663343534383432623164653966336631386661623530333037 +65353732303336303333393232386266306331346563323564653065626266346538653434393439 +61393633653334653832326363386533663662396366643063326332653938393561383134616364 +31373434383063393832326264613035613437326235373035653930656435353635666466623938 +32636561383762633635636462373231623762303863303435643362663762326561623131343639 +61623838346465343537636437336233333534633263346461353834386162346430393139353162 +63383230363864333266353430323930396539343463313739353963666362333462623431623563 +38666265303464303264313133323030343732616165633765393263386466346333373262323763 +35326362386361363734373731643132326265613966396364633132373530343638336461633662 +65386266316437386639666533353465396265343336383865383633336334616665663462393331 +32373134373930333165316339383762623562636138336561333431343338623665623932326464 +39666636353431666666333336376433623331646433636366306563616663653338306538326562 +64643332613965653337393235343238333132306437613931323931663663376238323537626662 +38646237366565386163303633343466623131343363383233356564306265363734666131303931 +32646439356561366630623763356132626563646438396365356362363136356436656332623338 +36376364346661306163613763663932383239386637613434653932363364326364643039303938 +66633139383738653533363534666164323066653934343066393938393766353238653739323761 +37663538623238616638306334326566636362336461376462316236646630366633373563336466 +38623162383230363263376662346235313366376134633864646636613838616364623934336465 +61646539643337656262643039393938373865646361313561376238303031316230333237386562 +66303264386265346265643764343939383832386435613839303736303266373065653537663232 +62613839616466356431336136356632363130363862633039663263653635316330613838633233 +30376232356434383737663164373561343364643263613864376331313639666537656465653263 +64666463313465643334383866613165623566303863643362303439346462306237323339356362 +37336432626461616233383765636231303233313061663536363234313966346261396262363639 +64643637343766653566373237306462656131356432386463316461306264373733353062643335 +32346462316164366130653033313532326363303434383036616637343533333436313934626661 +32313132316163616662323761633539353238323063663166623866303066653532396266336562 +65383533303539366461313030666439396563313032366663343162633766663638303531303132 +31336464353932623364373965366362626565353031356538633964623033663439653061626465 +63653335396536343138663361323231353536613265653735333031303335313033336463393263 +32353139323163316230313034313933313561303734306264656339343937636638626632316235 +61333338373338643230336439336335633366396238633837336232373733376231316364663934 +31396331393963363232626531363333616162316533336562306237343430666539663530396663 +62336164386439663937333063396230386432313664386636313434623434343130656433336432 +38383561623436626637393366333235656234636132326634643736333432323630363531386537 +64663562626661653263343063383133653438613562363963333636646330393232636231383839 +31383530356439383138383337333539356666613235386631393530343961653038646463616361 +63353836663563343231376536376465633933373066343134386130306638366261376634333466 +30323633313039646533313436323336396662656235313765646237373533646133383632346133 +36343762303965623762386166356364373236306335363963613037393333336536376635303665 +63383135353334383230643137363533333164303932353462326662653361643539363233306134 +34626632613839373464613732323865363039373636303237383564383531633632613530356661 +36643832363463613037316639313432396537386465373332363064313864623662333935616630 +37636133353661373936373564643631643939373137366335653461623833343666343062386435 +31623063383337663337356366393236323534303332366461626131643932363530393931383566 +39373566663863613933333330353734336262333530363463613533386538343765333731393736 +66643036383264396134613561373030623736343263303732383961653738333439393839326435 +39323338656263336566643834363966633065613533326233656239396632646165616366646636 +38616164316130323163323066623163633563396661623362396539353363363633323339666437 +35353836323162643565363566643465363762333336653435333830313033333534383062333436 +35343230366162376264623537396432383332343263346239386562333863643336633239303339 +62336539643734373564386431323766643232613761373535663336663039303939363363643466 +30613438313731343936613739366233323336306635636264356531306165313734393736333661 +32373138663964343037323064666531623939313662353966643530666331626338636364343536 +64396366613364303133643036613539333630636138363239373365666339383832636330636538 +36333139373463623062633237346562623931323132356638393065353862646261613362336166 +63653365663034656333396130343162663439636131656435643366646238336161656261346634 +61666332626237396665656233643532396439396366346135356566663736626634613931373730 +64633439393362633965316665646461656366383036323437333463643331653639366463616638 +35633862346338383139653436396164623230646438383136316364656537653561626439303365 +34616566353037383863323633396639613735386235346365386461306139633731646366333066 +32656664633362306638376538356139613661636464333163613137393033306232383038356233 +62333738376630326566613835396633353431383461646566646433656165616365613634353830 +64376530393631626537306666396435373563646439343933623365373835646238333039633832 +35613666303735303133386665366564323833653034353237656233366134373164353130363337 +34663862303562353332316134366334303434613764346435663137633031386138643039333066 +63303366356562393962373661653334353832656536643466343865663861623332396432346534 +36323138616237386536626630333639666564306435303639386163323932393166616265613064 +38633330656164636534633831356636343539303336306436393630333139386238386631356239 +31393838333933323061623731656635336430306334376437653263386634313137643438616137 +62376161373331393166306165623732346234336236363066656136333831656364623938393039 +32313431663430663361633732666133353863643132663238656134643931373461613166386463 +33653161646666386630346165313736356235333331366266666162323837653430636231656533 +35653934643634666534353264353131353162376664643730343332386364663366613065626234 +38386239663836333330316566333062333265363938613464343435386466383266646263643738 +32633139353066623262303933306333366336306630626138323531386664636366663865316532 +31396534653332663734613062316563306365656164383162393539363138643565343866336532 +64393963313937373566643630623163323738663465643037386664643938373662376332393965 +66316232616363373532653761393031376239373038366436343462376435343766376330626366 +63663832316635643639623866303263333433656134336662626433373262376164326233653262 +39323231316465363663306436376531303536656462643031323963303739663737626463623436 +34356336616136666661383831343836353961353062613539313664613265313965623835333464 +33343139656562333031333564623035333738303732356462306339373063636337613865383764 +62316362656366343862376565396536366364346366393839643362616434616363656533623065 +63653161346239343434333436326365303066393861376463393339396633353838313538333135 +33623031373938313765613237656232313565333564663665343439333661663463343238356463 +61306234666535343538316161636132633237373761646662383263393863313365623738343534 +39353438613235323935613362343234346238666164623339313132386663323666373962616639 +66386161616338376132396364386135343932643465623330653662343733653133383961373237 +64623936613833613539646137623564643937633063396432386330343664343164383532393363 +64346435353733636361373332353266613735393166643163353836653935363238613761333636 +64653036383561323133656164383933613138343262613638376138303833373461616261643362 +35356537656336376337653336646265336266373739663264613165323038643662653338313362 +36643062303037386438653165356366393961393866396361663364613133346665613537633866 +61323861626132386230326136326330393461316433656232633062376235636139333137316561 +61303638323532373636313465316466383639663665663464393736336534313337333433656537 +35646634373064646465663166653636616461366134643337303433323630363538393436363564 +61366238363635376533613430373535633737653138383163343061313237383366623761313332 +36353132363361303639306638376531303338646531336366356630333535613739303264363163 +30303364343233396562646635633665343238343230373335623633626333613539653262343162 +64636136373533353231376332393230396630643764343337656232663039386333373834323630 +66646461613264376134643131663132343964353831303232393162623432306336373332356666 +32626432323835663631393136633531613962326234643935643464616162373032343130353333 +66356265306637643239316536616264313963393634323631356261396237393937363266643930 +66353032353137373739623633633539373661646630616430643865363539623161633833316135 +32343564356366303764656333323235333030366662613737323038346565363033316262656237 +33336137383834303335643439643865626462373032373930666633656434656461666335343566 +34343564353162326537303430303139393263323739356636313666336233633233353436663766 +63346337343334343662656631363730333466353963383563333137353366373435396365643234 +65643163326334343065306366616535646464633038633363323433643162393563303365616235 +31373963336364346133636262373237373733303239326435663962323266363563323363633134 +62646538616137643166393831373137366161366631356534373633313038323432383766316162 +38376531346164393061343838356634393036343666633763636430363333663738646436313239 +38653038343931363165323861363964376433326238353639313330643834396135653336373236 +34353538643235616461323732313238633566666130623366653139636238343734643965303437 +65343661306538626165633565383365623261386531333436336262323037333731343738343935 +33323934396465623530613364643531386632633862623735643565316531336462636361383962 +64333432663164623761336564386433616438323163326664303533393034323863336233326636 +32323761343337336366393833323562616261633536663930623038326263353534626538653735 +34336232616463363164376166613434333436316263363465653532356530366131396236653364 +62393863323734326538633034366566633565313332316361613965643761313331633037376363 +35313631636533653233316539346266363834373964373738623532353232383935373936616461 +33353836636461613463623064656133336565633733613932373132323764303234393261353662 +36643535633230386133633963396339386333366563626165306166313566646430373439623062 +31383965383262666263323438326338363564386163613735323132663766663962623536633533 +35333136663664306137303566626631363764373330623938353732346236656533633238326538 +66353439363538383162663262633466656531316139313135613365616261356464373233363430 +31333462623637373931333964353938373134333232626263386539666565333831623466333237 +38396333656637383138366437613064333630323865626264393361643837633537306461613131 +64356430373266343339343363393530303161616437626130346564633761656435353133326535 +34326137316132343834393533643730633637363061646664653566626536366365383033663661 +30363833653834633030313136363831306461636131346662636261333036306361346563313035 +66633731633837623162626339326562393534653037373666636533636265376362313330643836 +34383837383434336564666536623336343335396135356135353538333637666139353163613631 +63333361633435333133616131383238323163376239303332383862303437346534623765626333 +64353366323966663035353361343365343435373338336433393761343966643734366634326561 +39346261653338333465363865306365653231326663336236303362316537386138653836363433 +33636637363061636630303131393236303362366330666335386136613135383733633866313735 +38323536616532313065343866343631383366373531616466303031356462356565363861313831 +33633636393561613639303232336165313766326265303635373239626236326238373237356665 +35666438333130366236383062393137663436643633376563383234633962326239316166653064 +32653031663432616366616537656434623765363630363239383663356131343633646162636565 +38303531646133366238313866396537646238346432656665353532663437333839323131373163 +34323239343533383635336335626638353130666563643937343065353635346165633932343334 +62336434323961396363623062363639623662313066616637386233373933613131353432623230 +31316365666366656465623132666137626338633732373939323035393861623661356431343734 +62373062656636666235383066636165346135323963623839646139613161396563663262626165 +66666230666538656564616638306632613731626237633732626339306437613563356431316661 +35396666613038343737366135326366393135646234656536366338356331656161336430333932 +65636637333336393664376361343831633138613739393234393633656364613863363130626232 +62306530343862306336613664353736613434336137633736366532303461653033353365303436 +63393236616339376534663132316239316238643138613330373234363762366238323936363234 +36303435646166383834356135363231313663376336396366356437396136323636346566623636 +66656233383565333636373536653261353634313663616337353562313639313331616462653733 +36613161613138313531343436326461353138353536626363656532383334383664353139613635 +63353964663739353935313234383130313435653665366266333831346430396365353933326664 +64653336306439376439616362326435343430626532383662356565643565313631383333313638 +62643535636261653235386631346533336434633161363230613431313432663063363664346434 +62616362346463613061313063666564663336656632326337316433393230343562643165363564 +65396135643835616166333463306434613431663537326537313331346231396634623032326532 +32303932653264343865633135386265396566616330396362616465376438323964333737656335 +32663861366233353138623664366535613666633865373933393361323062333464373933373738 +33633532373263623237376634353065313237343332303531313733613634373362646235653062 +36643833383732396637643062396561623938663233373830663931666238316362626364656566 +65386533333030306562336439383066653234303635393032653964316163393033633365623333 +31343139633738303565393533633061366636333432663766383761623362656434646362373464 +63636462326666383262363764643037663666373466306330386265636365353763653639343564 +35396463326464363736353666363537373562313066666330366366643135653938323136383961 +33643931383738623539656335623662616564376133343730356466326265636135396432313935 +37653266646139383065326562383438386334353663393231306337313535346431356231343662 +65313238386532623031663462303433346232353663386666313534623363346162336230323834 +35383534373332356633396538373337663465653366653732323937643836373432613737393036 +33663331616264666161306263613937666666636236663031336665633537353233643339303234 +38613666303538343131623964353738643531393866626565393563346234613030353235383936 +32333335333938303736363836383330346261326139333237626165653335366235633837323233 +63626431393062313338623234333961623263626635326363343065643066343861353266313364 +37616264326166376263613163383134336136396236353037633236326436313333666365396361 +33616534366364313537346136633430356435356337393532373238633138353636343132313735 +31373165333235323866656165333566643434343735333435613532633638623062656266346236 +63633539383832663766363330353965363836326536393730313530616264356638623435656333 +36363862666566363434363335643664343535386164626633623166383438303932373733373364 +34373531353736623239653238396430303938356136316533363035393834633736346464326162 +38353130356661383332666462356330653562663135653338653034376332616531316566353033 +38376338636262646166393464383162373465313366633138323336666632346434633963363735 +61633664646466613132316630646362313961313937353261353865636165666434393430366335 +64656462613434346662303030373730336163613566643538373136666338366563396161633137 +35336639343866303865643934333461626665343664616336333135636437643835663466383562 +38323636653836643335633064393938653330353634343863376264643638373538363965336631 +38383638366630303766633833386262343462663737653532373531646662386363333630393863 +37346364386564333064386464346565613432643665393230636565366439623934623530623239 +39343966366137383839623265333835303066626139356437653231643461663761313765383531 +64633739623731333063633935616332653033326465393038663938313037623164383239393361 +30646434333362366232616238663333663164626531306664343761383532316461383935656565 +35363931306162663632386463656339303364626433313433636234333034306433333162666339 +64343530613864363239303061353462323161633461613837326433366362376131646564306164 +33363166653031323662343732326331656138333238363732396633643530666631653864366131 +65663264313635633537303566613630323761376265353034356133633432376134333430373135 +37303031316636353063373531663965346462363536613261343561323232613861613365323735 +35376532313864336337636365306638356637393865333432366132363739373337663465306265 +66343038393430346531633566663135616166653961653534613131306431343530653234383566 +35373263346163396364333063646138363363333066313935656430383162386231333365333561 +30613831366639653962313135313938646232653932646431383739363034316232323833373962 +39386638386235303438613266393936346232663931333763633933663662333536633735653833 +66383666663335373837313966343730616337643065393364303831346164376138656638656464 +62363035343265393538613531656436633233663664366138396361313438623166306537373631 +62653739303739383365666461656138396539333065323863363665613266313933663766643561 +66353333333835303737623234303231396632656134356139353639663634656666343366353034 +36343036636432313464323363363931613031306161366538663037303538316236306435623739 +66383030353261353963356538326531623736373735343464656433656566373365333232666339 +34653537373263656563613131666462376239346262366562373531643764633564616164623435 +64323638313361346538386531666234393166376134643331653065613334616537373165626632 +36383161626664323965353762613839303935393935356234393033393338633036323562663033 +31623039626161396261373935353665383430323666376464646535396538396532343763353265 +38653738383064653935313332326462623734666137383338383466313264666130353634326338 +35663963646537383936666165633561326135366139366333353866633732343865636437306339 +36613435323165393161346166386137616164666232656664666535396537306136346361313036 +32356330303835373764383835326663316431303835393563393633383561613837626266393262 +32653433363136303133353862636130623962653439623566656633666534356532393236656439 +32376435663063616565346561366632663066383866346235653938396537623662306339356232 +33323462313133326130316235626532376237613661343531366131643864613936626434653731 +35616130373363613333326636396166363130383931373031373761373764636632356239303066 +30626332393738663561643862616138366430633263626230663635663938353631383862396130 +63313136653132353363656462663264323339393463346430313265396136346463306564623939 +38633563396161333263653265313237313437373737376261333037323230376564393165663635 +32383864363735636130663232636237653536656265396239343336386430383363333662636332 +63326636343939323633636539613463393864636432346663386366373332326639613864393863 +33656338623465356361636331653464353532303039316235643233656434353934633232363463 +30356361353232376163363935663762633065303934663038393639393161316139613830303963 +33623932643762623033373030636536306163323234646338626535353665623332353666396662 +30336334323133303566313437326636653830306564633838653039623738363932336538393139 +64336462343265623963303966363765383531393736626438323565666365616438373137653631 +33643133643866663430393836623937373837633337643263633935666162396239653230393336 +33396636323162343262376137333834353237633239623062373834646132633465323062353939 +62613436643965336331643632313637626139396465396138386361303930666166633432336465 +36336661386439636463666165303131363739646434636464626537373661626436643565343236 +63623632396238323333306366376138663662383231306361633832393035333264353138316532 +30356463383766663639386139636332656163623038376163383462623865646237343433376235 +63646664326665643937653961313039336538313931383438373332353433343235666233353138 +64353465303865663136353662323139313434363333363966383761346561303061646561333566 +62353662383731373366383235383931643534653239383832333161623633366434393061383630 +32326363396133323038363765633163613562343866353166316161386537626564333462383466 +66666434653761323830623630323063383636306466663464653130356237313266633332656464 +61623035633935323332393265626237623264653936303166323634303438633961383761633763 +39613162643635666262643538333933343835616162373135373264643462316662306235333430 +65303933616365333730623365363239626565653233663239633534383563343137383838646366 +38666363386339346437346164306633303961323339653636653830626437363330663630363436 +66646332646232616338346161653630363133353633366330666261353261343632656661616232 +65396232633238363834633338356664373337346632303439386235313932373438633437303463 +64383630623238643239616231346232313132363064666163363133356161343935343338353931 +31633631633162616239653036656130363436663863303233386566336639366338353738316436 +31646233633566653531336332356664646436323733653037626436303632383634303066383736 +33363663636166373535316265336433633036653130333365363562636138636533316138333839 +39633831353038353437396665633632636262666663643239326465626533313766613730396136 +61303031623535303065643565306231636163363237336532333937303761386237323431343836 +33633461346133646634363230353735366136323937323964323333353435613538343635613433 +63393166396163626364386137313066363733333965373361356562343336613839356639373039 +33396161663065623164623136626635663463343536356233626336316130373962343062343233 +37303661666330343363346163393030323166386430353461643566636439643762343764626638 +30383061376138383564643934333766333631323766643465656265316439643433653532343637 +66326463383035366366373732396366646632313265623161313761663663316432623365373333 +64353435643038623064303561323336326538383235363264336334326666373038353238306130 +30323539643565303830383035373138306662353836653831363531363765623837306366363339 +35613337646638306132356261323666346139643166336561636463366163653734633238363930 +65376430363031636435356637643639356631383866303038353432336465306463663337333337 +35613838323536373733373866646531623132323966303831613239613735363162633262356536 +31373438353866353332336661366434393461366562653036336433346337646664353537336665 +32373165326238613566346365616438356336626438373034383637343666343665393462633562 +66333737366263326363323738383133376661363666343032633236326365643062343862633633 +31336664613636306535326366643335633763646437623465336465656565336333346362663838 +62356332623734393035316561353832366564373933353464376138383237656234643837373535 +64666533666461653030376436616234363834623630366435343633646431326137666461386432 +63363437623039663064353535663234323230343733356562663231646234626531336662313133 +61636564656437623666336264363863303637666632613334383262663833663762323062633561 +30383235633938333763616137613431386461666564343265663263373131623033323666363239 +64386139656633353031383937623230636531313462323362653634343161333438373964366438 +35363931303633353561626162363238623738633634353033656561393538386435336331326538 +62613836663131396536653336623336316362373031356664343533373464353961633130373732 +63616166653834343330663934646266373336333038383732396362333364663961346231653331 +36303232653139633063396361313932626630633530643464653263643039373838656163386637 +38323064636635633534346336653439383730383564373364363539626633323364343130393063 +64343764383861303535393838313865313465663061373638616565326363303562353062633038 +35393036306533363730626137386539373862373835313061343631666532346131633161303461 +36353862613763303730303265343662376264356263633234353761343638643237626165323063 +63323836366261663239316134646563666361663165613061343738303633393730643065353938 +38323164626561323434623135383962303763623764616630316332623938636361633431666430 +63353261303730353837653730386538393730613435346665313662393561303761326638316632 +37663335383566613931653633343562343662333363353936613933393262653161316164336532 +62353134313238663133376639386263313137633839303065643361376431323863376664333331 +32313239636332623566356534626135316239626163643064346465303134613330306230313932 +34386636323532356536643664356135616230333363366439346161386463393732373964636164 +33616530323436316462373535363764633865666564313166613837346537333431346664643561 +66623638653565306334616439663437373837326565626631626164636339633732383834326231 +62323361373034306361323634373563666664663735363731353835343361323830633863623636 +65613131613838336566396563383962306337636265383761353938663736336231373330383463 +39643133383537363436383262386130643366343139376639373461626334663230373630313966 +38376565613632616234613737643931356631623739643434393263303232366436353437383232 +37363035666161326566373263346566646164333166366439613832363331356566316239326264 +61353032373961343737643764623864303133626235336566626430366264336263323864643338 +36336339623665643364373466633964376463313465653463616531643261346561316334346132 +36646634336431373234333233356362383865393430303664626330376236383733313438313766 +33663937386330376135613836643764623863306533636539353365383232616439643030343366 +35303932646132363064393162336330663937633163643162616361383263366661663265363833 +61376330353235313231383536393632383938393463393138646439613562313964316638643338 +38396261633838386633313634633339303330363234613437323835306262653630313362633166 +30613535633938343862326662373063383162613161326637366331383064306463633564323438 +64323536356561356565636331353130363565353531366234366537353263363133313064363732 +66643761303633653766336239386134633663346563306138373931326661393630626339613937 +62383336393464393531343037666663643066313239383833656462386164643764316661343239 +34356630316262313439303364336663653266363838363637616139303166336264393566356338 +63373532303463383633613435636131336637343733353165383934333934316263346438326263 +32666233313531616534376435636133383131303932623036613465653237636433333535666630 +64663164393630666366343031313435393461626137346564356665386536333864376165333862 +37343535663166393866376161393865316562313337366364303333663939373836303431626238 +66353834646639353335393333666634656431613664303034353337393933643464663366323238 +62313839306362613938346563356539613630316335303664616530383861326136323961363637 +61653039353365323631393932376462663234306634393633616638383832653732386537623861 +63346138346466376336616532633939393736643232626439636537653133313834356365666235 +61343361376463353936326638383439643862303736386432643932373835316233376165333465 +39336532386636333166336463366330653761656635616634363162383765303761386365396666 +62656237616239316133393236313039633765376438373236306561376636303133333130396566 +64346265396666353132636538623537623639663161346235663861633832363939393236323836 +31613335653931643432643934636263633561316366346361336165643964626232323061346633 +33366535633936333562626566313662353135313738613934303532323066643534323366316461 +36373166383332373266616366333834343039633466623631373333393939316230303761363134 +61303666343931353031643830376162353437613839386439353939333439366566656233306562 +37373332333666656663623365643131393036303032313164346661393465396364376234393563 +65356630663032636661646537373463613438306439383761333766316666373833636339653361 +32353165373839316137303937643765306662316235626131323166393831373931616635396636 +61643737613536636532303135326263613132323263313933636537303133346138616363643736 +31313137613763353732336161323336646161633362653935313762376339613335653465346130 +63623863396636616431376133633239366235336665336561333731303230636131613130623466 +38346130336162373332386364393838633561386436663932333038663733343032613436366562 +30366534376263333536656336396162373962323963313863663566653531306563356332346661 +38366163666136373437613366386661653236613437653632333166613463393434666361346331 +61373761633763616234383336386438333264316563313032666237343238346562396136326565 +62336466366266666665376339323965356536366366653265306462336564306664636231356262 +30643639623132626332613139376264386362636237613138636262353461653938353035363636 +62633039393766373262643435623764623439346135663537316565376664316636333264663338 +31316362346166366530636537323564313462633534613964396562643039366132306330636638 +34303832303131373136343465656336366564613831333531333862363538633833326636373964 +63336463323738366337343365613333373637333136663566643665366236333830393834653965 +30633563646137613737303264343165386235333638613931356538343963613137396133373230 +36616138636132373437613735303931326261353730363366663139666635666338666633643161 +39636361346333616636333233363165656561326235643733326531393333313535333639346137 +39656333633533353363313730653436353862353339383864663431396335383638636461653536 +30623236336432383263363366633438643338346266383137313333323766306266303135663137 +34376163663736613833376362636561306537643764623238313331663039353663393137653838 +62303738653330626334316539643536623866613535333435323237343764386665323261356534 +61396164376134616339376237393262653637303663353461373230663466653939623262646165 +32663566353835613265613866373964626266333736313234393236343436393033333731303537 +35623465653639653561383666386634313638646563636235326432306363383839313334663037 +36393766373532663039663133383734363663326139336464386463336635653633343532633465 +64356431366136313139323165356262666533623465646437623539333863333334663666626231 +34633430396432373363313636626334373464656237316565623666613834333363663139383535 +37353330643638306636623362653833613265653163373466306165363866663937623832653939 +61646431373561626138363738353639393364383335646137333436653730313034303564623766 +66373135636539633461393534396439336465613937643965326433356139396137396131343236 +66346162666462333634366433373135356665346361666365336463633266613838346639396363 +62393935616634626233343064333665643963316230316238306330626531636432366332356637 +62666230646436633637616433333636613265633138313062336132373732626161333966633931 +36343534653163306538663761663030626462363733636637363765393932646162323331346565 +62346535663465313135303063666463383161346362633466313736363965623934623637666534 +63353237346563323264666464346638373939353932626465303839623865626636316130656130 +38643261653963323931303330396264646438646537623434376337303937663630356534326632 +39373439613231663265663062323761323831306666316135303037313531336435386261363632 +64323430336234643134356139626238353032636463393361396534653138386663346134626235 +33343664626635313934313034613630643836643763313466313766323765346666396462373038 +64376233633262393233346239313239363064383134303134613635623964313762666339333464 +31373062616538353234306238613866303563656262373930396335353339633735643261653162 +30656137623439343161633538326537353561323335666236323833616332653139386231313132 +62343033353337306664363131653431643963386561313832646637353663376535663164336565 +35303339353563346264656535353434616239656565303565383231636363336433646532343234 +33613039393234626634663732333930356531333264653461623835356336373032656135623731 +61366539383233633935656439353536383738663531353063323039383738383364336130626363 +38653830366636663966633537666364336439393563623561333666346265363661616239613064 +34313136643665656539623265363033316464386564393132323239663933616236653966306537 +38306138303830356334653630633761373766326262663031313732366665333764643533306366 +31306531343730333433356234383333393437346236343863663132353033386266303666396434 +62646562643439356130333435363231316261313537376430343930643164353036383139333837 +39366332343132353839383134636565353131623733366165633237356533333737326238313763 +30326639323361323763663239363034356563353661306632353532316431623263646433353937 +31623836373665666539616136633933306635336261306430643464336162393131313938306433 +34626130626631626465653964323534376138313166326663313761616166386336623636396230 +38306339313363643664366430663734356336616562646162646231633163663936636435373438 +35366662356630656637306336313232333031353139396134383961653264646363366333363966 +31376436326333343037643038306464626566366663346661633130633161306164303635636335 +35396638653437376662373866323234303161343362366139386631636564343462393832663338 +64363033303863636134303436666230336637303733363331343030306165363332366663383263 +32623530383061653830323938616437663063393866643361646431343038376232653032623863 +61313334656163316163313430346666393035646165633266616165336430653330343437376563 +62393839306330643831313964313730646238346162373531303030383633383535383534303465 +39633435333932623263633632393837643036303430333033393237363139313631343830326632 +64326432356535373131386437366663306236646265633634313130366330666263343934323230 +62323235643062656332326664666639666135663964346663626266306138343533623031343732 +64663063613235653237306465306132313934666563636539303533363333656237386532633062 +64616331366239393665633465626232353433623263623930313033373734646666623632306464 +61336238313863653530303631613232613965646166356630383833356535303331666530356166 +65666661643161373431346639323839616264623237653466373665383366346239363136656337 +63323730626165353239653638336239623135386465323534336135316462613439333937306134 +35313361323931653737396564313037303731313030646561613831336334646663373066343832 +65653739333561323337396637616438376239653433336238313863613763616163303062366332 +64646533316235633931653264616136323736326165353163643734366333633565656333633735 +35326536613835373134333336383031363162393136646666346236323236383931393439383362 +32326666663635316332343862306166633666666137346338336336346235383732353132336132 +39666563626133393061343566626132336335353838386564333736363263323636326639643736 +64396237313730333639383161303731653136666234333933653632363061633138386264646539 +32623863616365383536643463396635633362396131643434343562343734643362326139393864 +35373762643262623236393664323531643362633334616536653262333536303838316631356539 +39666133343061373061393634313465306264353236323733346434393961666666393037353231 +34663930626361623665653036343333306431313832633537643433343161313835303439643233 +36636637613035633662333461306464643562366566313732643836646566613533396261313362 +63613063663030616638663533636565353761613432353032356635646434353766386266383062 +36613333623835376363326235303065343261656331353133393763636331613836633666643663 +35316132316261623665393562633136313364646530333461316131613734346538653165333730 +64616634633163396563653435383534643535393430323166633265626461303264333133373766 +39383530633961346131303638363861636233383464303965386265636633623065663365306661 +37393932616161313032336335623364656139313133656566383030623630343766343663346135 +66643463343832623864373935663234323364316136303565613665396436633339613662626234 +34633932633364616535306231353966306132346266653361366663366165303965326430393831 +37393838396637396334336666633332346663373832663566653463316333323066636633383966 +66313165666330653964366135616533356363356161633937623930393464626366363733633436 +34373263303839653064633539643438653032306537666564623134303133653038613131383832 +33663034323733353530336537636366373539663137343965646331623163643164366364656137 +39303839363465616138636332613563323132666233643531656332636338356466656361613061 +61663130316465306266313336313237653838356134643764333337303163643230386563383166 +38336364396161373631396339366136336436333163376161323731386363316661323637383030 +37346565653138363133323762656636353630343264316436633535643932353136663730383532 +38383761636539383834663232626233383833326461383463376132613432616239353430633865 +62663532373932393465646339656135616137326234363566666237656235626634353131613739 +66623734373336323633653337346165353765633933363665646235313533636566323861653562 +37626661303331646234393435356361363164353735646430643932343062303139656533383432 +32333031646630616365326461363363393961323235313935333266646262363238333163333034 +37363362323734313266653438363432393733323634393538346537353736396364633230643934 +32313839313866313330316533393135346535613664623666333735396336353961356337373338 +35653762393462356562616434616563336330633462383664646439363161386265656131303738 +31336533656131393138356339316631666461616138346562333039386539656631613066663331 +62333234343833613730383633346464323933323832623232646531663139346334366139353365 +34306433353531306232366137303836626262396263353163376235386433393037656161333633 +30616232313435303534303765313834373262653862366164613762383864636465313363303831 +65313465656431373834326236336530636265663637643838303234623935633461613466343562 +37313664343636393638363466323730636561666639333266396136323438656631646361323739 +32373662646236366530376362353365346130393937323564343166626434323431393830636236 +64383937376661643534393266646264316434666530396433663538656566663762343131353630 +64366332383133326364656337313265326539363433306433353362333731303163646436326265 +35623737623238643935666432663464616362343934373666356163613932353265366534653065 +64326137343132613465343934663236626437636431336234663834303535616364613139373832 +30623634663234643839656161333265643032363432663338343964373031346134323264336535 +31316433363839393831343935663562363262343435336666313262363034303437663534643866 +39306261613962353938303866626336653632366461663337666365663661656666633761353164 +33306265373633666465383930323433333733386164316365396464626662633966636633346165 +31616462383836373634323363663732613062343435633165633631323531663437353736326362 +30343462663139353534363138623862333337363264613664393938653262346133363331366538 +37386330623636303739333737376136656539633562393630653030353030333239643232663861 +38393533333765373561353564643561313764323739623161366261353562363236363432313765 +34333064303835316462396637306530303936386462396534656561326332333834363365613664 +31323930643431343435343363383132366631396563383263353936393938353739353934363261 +66346633356634316562393538316564623264616632366339633666353461366538646537303466 +30626362393839343162633862353032623065303137396462396564626666323563666531653034 +32313339626266373431343533393262613637363434393366313062366534333366646266303237 +33336665663039623063363261623030316530626130303832386532653336646333303363386666 +64353437386436373534353433393930306532373734653137346132653635666430353930633261 +39373365663630656365626535346263333165643733636134656130323530323330336238643234 +34633631616561393032633435383663346439386639323835323361626362343937616437613263 +33613839326133393065383366346364656564633964316130343161366562393130663462383337 +61666362623338383166663534636265653762613232613433646138386134333233353736663663 +31353766373563343033643265313663323538646664363731396164373937346338356234626232 +31616563383137393264323465303435623236623736333037643462373438633337396266376665 +66326363386534343637333631633862383732656430303938653632333437393566393962383137 +63356232323532323633663532356630383963613838333835663862316631626666376566393336 +61623466363735343335323861643634366633653161323963313630303661613563333265313231 +63396439353832653166633566383733616532666361646662303232656364316465613931386636 +33623765383062623335656239386239376366636237333339633665363230313734643665323138 +34366661333730343033353433383933303662323361346165336666303065396138346364623931 +33313832376665316264313238646462626138393034656237613561353764356362393366633262 +33646232616362656438613732633066346436313435636637313137343335353939353736333361 +61393766656231383235333734616566383462616339663366363733366665343465663530353338 +65373037313436666536303031666539303831633466336466326333356561323865316562346666 +62356631316330373761323061353232623032613039343935333939353562666335646562393766 +64396633613933373738383136353934663865356133653164343461303265326366656139396464 +34336234323561366466386534343438393261663165643338343365663839306438356533623566 +37326432653237653233626631353465323562396164623161323733313130323965333831366237 +39323435346164363432383832663136306132393663306132366366366561326564646163326537 +62613036656164313632613865303138623764353062353034333539653838636261353163396366 +36313163356630623137656233613331626561646333323338646333396131663031303235303861 +64633739303831343531646334613732663838373938646263343033653461643862336664343437 +33343566343866646365656435336133626437353537386133376537373730653631643665666364 +63316331653561376130636135313364346635373665633861623430386331376161656365613038 +34626232336630383865623438626435653033316432303563383833353265636466316630333761 +37303434653838383239383339663032313433363630613165313239326233613830396261653332 +39646162316263383530326539343433363330356136396333383663336464393364393561373336 +35323365633631323836613332646534653963343865303465633131316364393832393538663363 +61333631626330326138616165326530343866633230356361323938623837666461383939353861 +33653432623635356434383964616436626237356437656533666639373661303665346663366439 +38643336653437626566373931613336396666356236313034633065366664646463313330313338 +62353032393735666430643365396334353939333532633430613165303764323737643531636638 +33363363323962633763623963623335323430336338333366623765383265626564386564656531 +33356433616331633331653262646136386664633466326136376430646439393234613336383038 +33336630333665356532633135386136386265343534393637666462386166386563656164646665 +66306531316632373864303231383235623066386661313962636661353036616265633433646636 +38363265336264393064313462663131613439643030346534306364343364363336336435343835 +32313961323731363365386666613264613839393933356232613734343737346431336230333830 +37393538623065656238366237326333393031356635666663636334353131616366366637363364 +32353832363935343333323537303563323035663734323232343664363733623732363163616662 +64313730633437373438623633326432643135633933623631623530353232316633373862633939 +32376437373361353731356632643764646630366562666666303464386431626136323265323966 +32663638613535353839386131663337326366636434643635353863316166643034343731313434 +63386464643131636634333831623261313437313731376566393130343534366139383363386634 +65346339356236326533336430623033353264396264333530396164633936383131633035633330 +63396231656137643964653031323634363235336239373632666633333830373339346333363962 +36353633353761386563363131616166303761323433366434333435613330613732646632316530 +33396336323831303135353562323931346162316132346231333233396462326562353536326435 +38303962363932376639376264356538653633373830343434323732366339653130623031326635 +61353936653730336231376364353438356438373263316663343735313133656238383137646239 +65626164343761396639643336313863356539396333633763323131616361646630356438336435 +64363761396638373234326461623831643563393461316630343766333533623238616237336131 +35376331663138333463363232306336363839663865396565326434353565363230653466613332 +65333439346533343336313938666330393564303662366632366661303666656664633565313139 +33366135373864653730646430656366636633313365376464393136376564636466383737363464 +31323438343366373866386634346236656166646161373731356336636333623064306365386537 +39613633316233393835316464623037346139613534383862313939633734356434343161663566 +61346562623962663739346636636635353665383033613237323762396637373631343936333265 +31613330303235396332643439653665303137386338353135633631393465346165613366643030 +32666136303661363938316133333164336361326361623561373634636564313661383937646465 +38393330343730626461623565616262626638373036346164643236376235373761383361373739 +30323233376339633966396537336262623630656539323731623839363465623532346530333361 +30386563326664363039313336613339353634306464653830623838326338383733373138373864 +38633063663265373332363364386634376338326231663831333931643935386162623863646566 +66633362366637336263656439646131616330313339663538393861636232333161343539626264 +34313439616135623037376165656330396634303739333462333130343462313333613437383131 +31626230363134386166366366626661343634396661373434633739623235623630656464303964 +30346630663932613632623565636630333366666364356138373037343562373665663834666637 +31376634373563653037373338313862306333326638356466636330346438353335356132333930 +61623632346364643137636134316666323865343664363636663862383661313237353839663936 +62666336633132313632306331343863326631616133363237663539616265306664363830646363 +66393932346163333736633839343165356539376431616465363563653536396164303862663330 +66643431303066613139346439366566343335383361383663633936653135666635333463626638 +37653838656265386465363162386535663231656533396539386665316464363838643033326464 +30313162663561656638323232343866613637616334633164396535343731623439333834343966 +35646261353834366263613230353463306638396665353339663932626163633462393430316236 +62633262353733653762343966343537613136633164363933396361323934366336656431313065 +38373533653738653666306263313765303265333938316433386131346534323162356337336263 +30333236396162656566366539353039643362343561326266323761303431626131336335646537 +31303366346465363633636364363932373062633164623636363265373132636262323165326264 +38336665373038633965653234323362376236333464373766356462623835636466316365633632 +64653866323038666565303730613137613230613232663562656633323330643238303666363462 +37316432643465633962303938643937343134353866396631383232343532656563353438333135 +37316437333965613631643535333264323033313532643233336635373562376330386163663632 +38356234636532633437363136343463366533343332663636653765663064653238376363623935 +37633539383365626439633361666133396631393531323863306336386439346164643939353737 +37346335353433303932656535626331343766353035313039363938353534613465663631376666 +61613765326263386134623439353064626135353538366334393234613237316436663933633631 +31333230646632336165633536636139393066333363363263333731613235383462343635396532 +61373537613363666431313561356134396634613532356165633532613135323434623739613930 +30393263303765653334396662626164333131633037643737373463303832393535643133616234 +62383762663561386264343262323766653864343532306662373937333235373733303434346239 +61653965303230363838373263356333303365313031363933346564626533383231646162353437 +34666132643038663733306330656133666233613065313430356366363366663663613734383232 +30396437323234623939616238306131633739653733313938303138613232346436656263633134 +33633730366134333033663237383239396365623832333062316630656333633030383362343230 +63393731366339343036306362353265626636653063633832626463656238356135653335343165 +61636331333731613735396538656431316461303262613933363836353036613762666531343461 +65353539656663373261306532616131643033383361306363623736346230376135666562373430 +32333137376538383438323833623739333265326161643862386536656366363835363865313362 +33633138376634393431646233373065333331623633326236666138313062396338336165646130 +35656461393938343362613130653834373130353765646562353030616132326435643461316433 +61373538373366373664643036626338633064633064646332363961323936353461393733363132 +30646261613633376565386133633062363831643962363064333638396334646333356436643065 +34363738633234393365626532323065396438633133623433666333343036633233653761666534 +33353236626666666239386637643165343439303739303566323839343037643638393532353964 +35666262316634636361393531656435373932633862363664643466313862626431666630626466 +62323536623534393164383962373537323438616236643566653032633561653839656436626131 +65316635366238653562373264626135353162623338313037373239376132666432356366666236 +34363865656165346264386430303766366161376565356635626566636538633830386437623934 +63366538666631336535363062346433633238663135363034346233323665653138646666343632 +61383663303466353239353732633332363639373437363731383366646535636337623765633037 +37623262343262353539616131623330343031353562653638656662636264653232323766373865 +37663537613635366230383331326131376565636361316238623033656233623562386334333839 +36343239303865383733386461663066623232626364633361366137313562376330333435326233 +37376265316535616162613033373334346130323938346434656166656639386538666533386638 +30323335386138323964333461393533323265353965363538303463623534336639646362333838 +62643863613761336130383739353764303865323865633239396131386666643631633532643162 +64353336323837323462633433373663336535613965333531653961636635373136356330353162 +37393663653562383734326661303162303366346338383635366232383438306164643633386530 +63326535363036353666343464643230656139616331613438373835303437343935343134346265 +31303037383166666337636161653363346437623832633663633663396337666261663366643032 +62643834396139616162643630663638646362313238313333323739373866653432303362626539 +38623261373936656438663331303564356539343966663339626364663064313538393061373734 +63653466316635613962663664366431646439383766353433326530376632306135313637346631 +32313362623338623835623633386436353332373761313762353264303339313631653162636435 +31373235376136356436653666363336656561373433393639346364633262623738373339653065 +35373063393666633263656539396339613163323933633466653937326538393565613132666665 +39363131636164613461646463613734343764656133626337616531386631666161313230326564 +30346663343061346436373436656336353564656561313035653661626165626635633533373738 +30386236616337323530663562343338363733306433653939636366343831376430646434616536 +32623334393264303938323235386565383835653433376663666563613038386136613731316331 +33393166626438313539363566393430636439303365336138613535383932323162366161303330 +37393538366461643961666436653536353435323832636532613734643833356130626132346266 +33626639353561323834643565366335333863346439643335663635393539393835356434353432 +38386235646231383939343136343338323066653666656136396635316430323366633663633234 +62366332653431643162393134363561333065316666336236376165653366613539323564393339 +63343939326133383634393766393939326530396231386465303265303233346331633038313937 +30363039386531373533393732643463376634323930313238363265633334343334313765383766 +32663530633837306664343735396238653137623234303338343065396461393133656464376333 +63323565626664646561653664666633336536356166383239376265393361346436626462363564 +64666638366332646164333336316466376532313335666232353136343166616139633430353335 +34393235643332616461343066643562313035376130326230613061643932393038346464373765 +65656434663339373338653431653434353137376639356437363764343932366233316262666664 +39353934383230336462663030623663343566656332653035393162663466313364653435373436 +34623164366637353837653362666638643062373565633365383466623333366631393737643266 +33336232353936643164326165663164633361303935396433386533626332373737313234636434 +62323033663763353836373665653133376331306231313236623035626138643638316663353330 +37333431333538356234346433636637666637663362626331333261386532666137613863353230 +64643463386636336265663637666564386264633631666561633366326665636337366266663039 +64353433396365653036626462313038396166373339326431653764353730383665646232346164 +35396636336238363134336532396130663735663338363939373563623063336235333164323730 +34646638373937626535613965376337386663353234623736373537633031636464363935323435 +63316666653131376665626532643161653762393661633938666331633438376635633439333161 +37343363643764376166353737363261393533363934663338383131363063363339663339333938 +33383132313233616337316537636138333061393735343335643137356232303961376237356463 +38303535396133323464623131393439623566646432323632663365633862323538393131356236 +35323361653061616335626564313737393630653264623664373030303966613938333366383862 +63393831323036646533323932323161366566326666653833313431663666303262306234333365 +62393839626563363166626363316334353735343138313935623264346664613163333631636134 +62636636323362316262336432653334333630313761333437653666343062313563366535313238 +66333361323030373536366231306338323638376664613533623532356631383738326633383362 +63396632613930333835336664363433633035363665643633383163333661383933346536343134 +35393561383966313462663335353564346163323733333765383831313463373765363835666335 +36306635383639323061363335373233333462336331333164373333396361393337363163653765 +32616430383435333131386434623461313938346330316333393239323561656166616464643466 +64393766396239373032646232313434393765306261333961616664663237343531303535343266 +62356335633465303836636239313931393831333730366336313937383839356166623531306230 +64323333636461646536613562376238373339343434376236346232653035313566353462326665 +62363133383430626438616436666535303538336335613466383361366130316332333462383436 +34663663633761616435613032386565623664346564363365343766643634386439393163366561 +31323635366565326465346637383866363535303262356433326230626639393364373765323032 +64653263643765643365393137356636626138623432353438346264376136383863623362613663 +31366236313062346236363863393832643262396238373962626132363039353962336634373866 +37373831383933663664666164613836663739343337366535653062346265393966356430306231 +34613362373136353363346361313333653234373264326231393861366536383935666236636631 +36636330636464356366616231633265333962376534366465613865336439313239643464346161 +61323632376232396461343036633930613833376262653462303762613832336134323763323436 +63386537303964646263396534353964383866653563643034396662623835303636393862396366 +32623963663736646665643161393233373630653164656564383135316339663333396235653932 +63346430373037363834383734373236353361626536613936636236643833363332613262636337 +62323032363235666363356132316630626464613439663663316362643266383837313264646530 +38633237373665363332646334646265323665376264313765393561303432326436383730616131 +39613832396562363065643637623334653733386634386530326565363338653639636435386438 +61396363356330616464646134326531653562346133383339326434303164613261336339313235 +34666633316533616136306330653639346165323332396433306261356136623932626263613433 +32346334363636343961393839663961316537316263376138373030343265363332333039623163 +65306266303563656532346232393330623938636165363366636437626265303438353937663930 +37386665356237393939613064323735616366623636393233386366376239633435633136613364 +33393034636361333835326266393539303837636236396564306139653938393361623730313236 +62363330316535326161653134393630393934313634643335396165306264376434343262613764 +65316331616237316232613332306662323766336333396535363165336532363030393235633130 +66666665353738373833366535373335343865306637383431376438653533363239636630323634 +32396435333166633334343237613633316634363430333863353063616264373830343161383734 +62636338646639613635336132313931343836366233386566363834363863633833633036316130 +62663966656566386330656638623663653435633939643263393833336261643234373534386562 +63333361643463636136313661353564643066366631396234313933623230383962336539303262 +35663461313231323161363132366337313765393662353266366164653339343339633363306362 +39316565363863656662303034323361656261326331313464313364326561376261323539343464 +37656161336666633866663734633537316562336534636438316263396265613839636438656430 +39373861623139346161373339356331303961623433386433386632346363653562653930306264 +32336261333338653561633861306334383631376237386463623031373232366638373539393533 +39333461636331643563326466313036323838333136326537396364366338303661663939373066 +34343334346435316331613930353532363136373232663234636366353962626265356164333038 +38383235643264613636383861316365303730363663633430363335333465386438373666386336 +62623231326235363833613535323765336337646431333733396439666366613762306538623730 +66656365613737363962626630613230376366313432323933363239346363333766333632383031 +62366364663831623836363563396663646439623238656336316136616338306232363534366333 +63663861346663333764306663363038613263633561376162653738616536306461613863323064 +34356463353737666438326665343135633337353534626534663831346230666564643031373334 +33356363343037613439383539383539326331373238333332666563376131303864663766393764 +65626434316337366135306466346633623030343661303830666235396537323032633862663439 +39346531386637316138396137613930666431306130636237336139303133663630303334633436 +37376335326464383537323334633536633565653837366166623034366333613238363663323363 +32363636646432316365313634636235353733383161633666303334373833363164653861313132 +33646161633665383731326464373630383366626665646162643332626331613364643538613637 +61643334346437366534613035363737616231376261336231623039376437353561353961313236 +35653866366665356662646535333339376336303034373763383430623638643637666238643939 +62326164393833396365623365383134383031383437656365653839356462656231663431313661 +66343139336665343963623036336266346231666638636664663538353033656362646437656531 +61373035323631666665633933326236373739316161636639306633356662656132333830343066 +32366236663661393430383339313230373265663138366235386366633963336239633331633330 +37633737353239643462653535656635343962663262653737643537303736653339326430383839 +63323139663636666663383532343463386431663838326162373866373131376634663564663733 +36613263336537306163383065643265623038626535376437393532313062653832663833333339 +66363838623863333262316261613862343236346163303965626564663935373962386633373763 +30343766646136633233376463343764376266303630346265613763626534626539623338383936 +32613363646637376132663533326362323439613964386234356633336633663533306666643934 +37346237616534316638633636303831353863626237386361356538653064363166393634383663 +61346264376162363661383338636364353630396663656237333734613639343366323164356132 +34636163633737336339356563383133363139623131636564336265616432643830633262663033 +36333363613538633131376665396663636665306430373761316166313230393232363431303463 +35613236303737653938333033323932373263613435343234613438333933303766333931396333 +33316464663830623537386237393061663466613238393361306335306663333361346533396662 +37633962373565313166616336316635353738393639393165633330633730623235366131316563 +39366561366237343730303437656563393536343036636135383538346537316262633236333362 +35353562333364316561663336383939663466643233336665383436313239303536343062383936 +34333038636562613763303961613865373364343334303763323161323131393936613762363130 +33373636326536343930366432383931383961393234313834343032653766363365346362393137 +31383862343930633837353230376665326632343131393737626139376366386537363535393239 +39313464613037393433363865633431626538366634323935373761313634343161643339653663 +37643763346431666639356231383165386162613734633662356337333164613237626162383737 +63386532383764363836396230633766653631313837616562333632666534636265353631363663 +34356235643730363261303661353564356163623061383430633338343466636665653863646163 +37393532363534373764616262313963343061333733326330353532376664373434623562616664 +35663663373139313264626632643034616236646337306137353930616438303932653436376261 +35363761333565323731613561316462626466396530636565343436356130386130383239666539 +33343063353632396235646638663830303866336435323630663533623362306132306337396232 +38643237643762356433333566613038376536623736616636333464336638633864363535323333 +32656435316531383562343538626661666465313331333035363739376664653661373164393430 +61643364376164356630333736353865313561323461316461353731393039653236653537626332 +32383937323963333738663234643266373261303565663464323331396532623162333038316465 +62663432623764643638666533616566343739653430363762656332366439326538356330383135 +65313630646430363138663464316465346132313931363333386233336130356562336535343434 +37643439663632326261643132366438633736306332393034633965616136383331623936336439 +32616263656639646337313331666563656635653037643632663462336430326230616232663731 +38633732653036653766616334633534363962333363633631386236333631353363626332323435 +32323631353832376162323238346661373464613132313939323362636165383138633838306163 +33303537643462626238363835373435303832376231376130346330663237663834363662343736 +31373532363130613139623735663461356430323138366265363264343866396538323836393164 +33363937396331643233393639646535383636346136326235613964656439306562333232353265 +34313134313431326363373332363033363866653866366232663330313261313966663362303066 +62646239626331613836306631303130323237343039353131343334373539343765666366323630 +39336335393332656364343564653239393836613864316639306139623333376333376338303161 +38666230313638656633333833623031346438336465353062363936306465663639333936353537 +32616262616534343737396631656266353136353361373236393337643633303139376335383437 +33666532383730363130666233386131653830616565623666363430613539366563336566323430 +34396163666430346637383165663265646634326133313533313861646237386363623265316630 +38393234633932393666396535643331616139366232353536616262373938623039303434666537 +64313532666531316166363738383766333539653434386666666535326632363266623336323735 +32663731303866383665383731613938323862333062366239376465613733626437366232336437 +38643163363766643332663331643833363537383833613531646362663931316138313961316437 +39343365313165616436633763383639363932383238363464633064323964646530613862613737 +63316663373831336136653732633265316335373963386234313033643662633666396539323263 +61386431366365316131383662353232383331656539643165326362396431666636626664333263 +37356163316461396435313563613835373866373734336161313164393535313166323862663662 +39613230626362646139353832636237626263356336626530623366333138333561386631633935 +38333164363837326331303734653665643337366365326639633764353832623432363265376436 +36663931306333366563366533613062636231353339303639326339393662316464356333653735 +38663231336363316565616636343535303266303539346436666232363131633439326635306266 +38663265363266336235393663303965633631643834303763643737303364663664353530373636 +37373930373335646661313636623038653362353034373866396366373034613439366339343731 +39396130386362366666333638623935323133356364346434336636353032366462393334386433 +30656235383536373563326462383637623035306237396562303031616633346131373934626662 +39616535643132643334333139636332323165326364356565663734633836306163373233666636 +35323562376230366264333063333961623438613931353266623731653632363363623236336636 +32306135613237336362313266613734396133616336363261333736373135333631356466626462 +63373330393164336336613535633530323030323230336666333265633336326534343366616533 +30303962306230613633376231636238643538653638306339306235616434306139323435663565 +64313035306334346234393462383930663834633031373730616235623732313733353366656432 +38393430616238323363663161343737316661613561613838666138316265633636356530366330 +39616162366636643634633834366432396666636338393264613634623332306562356638373834 +34306139633361653938646339643534323464616437303263623565333865343930643566653439 +62313330623232613832336562303932316361326237653134386364366330653036623538643739 +62373137353063376434323666626466616239643932636663643133336364663166303531663664 +64393939623362393663653864616233656238393433383461353133343663663039616665616330 +36353835613536303233646138333364636632356237646538373365656366616464366239303063 +33366362303337313733313332633931306136376166636539323237303564656238383139373638 +30393436616437326165303236616636396631323438393037303164323361656435663735376333 +36626462663930313030316163643564343730373461316564633366393766653863356565306363 +32363038656130643936353235623237646535373830643930613335363766306236333234663166 +62643964363830313830343938383865653039383733313736646461393963353231323565353338 +30343465666435626339623862373633363030323338326464313031396136653533386133656235 +64356363356639343862336437343433316532353731383933326234336562343630616538356231 +36613861356539636161656637646462653462643939383733613431313734363536386366396134 +33653462333636356430393431613938313066646631373339383534613939316330313934373339 +37393561333163633366656530653561623362646437346261616135363631643533626331303638 +37303762646438376633306639336239396661376561653936333765633063376664356631373135 +31386432376565653131353238393166363138353762653033613834363837613863353630363032 +37636233326436393230386630633461653862346161656537326130376362306137393735383832 +38306537346339626565663465376661643663353262623864633039636639303835643337363762 +62303364353134613163353331393931613036636261303039313635636534353035366533393762 +30326663643661303630623761346562326339633535653734336266333663613332326562363063 +33646536353238353431306332353963336434326664623931363062663533643232633232353938 +34336439396466646165626264313066636566666236346334333165313232366234643166333837 +31633364643635336565306466353536663562323735393461353831366330383564326335316330 +66663866303534636630336266343063613531353533656230353661643831653861313065356334 +35663361666466313963366435613037626361356333643739663461343037306534333638643738 +30373335393431363565663730643030313632663635613135343430626139356131363938303035 +35616535353531393937623431363239323634646337346266626237366236333863623364616531 +66303761393636613436366137646238383362386437663462336539633365613265646663636437 +39613638333631643431663861613766653639666261323965373035313835626339636536616636 +39336536613331316538373266363838353736373466613930326565636666666261623734363863 +36343537386565303664353863343738633866623734366662396236666661356538303362323932 +32373834626337336439653661653362316133393237386536396664306663373862303030636166 +32393732646136383264613133613432363834343731346432333338633465343237666335303037 +37316535313136666537336638313363643634336163663866316164313336313363663139636135 +35383064306639346433653136373430336361326139393866303632623232653731303539343466 +36336466643861663163316430383866636234623239626266376137376239313063366661326134 +30333437306538323461623338633762393230613332633163313030306366616238393131633163 +34376130616362633465636532366132393065336130323965636261303264366363393366356163 +64333963373264643136633631616233393337633666653436353737316631353136666264333263 +61643162343361633165316637313762313837333932313536623039653538343631303863323063 +30626664643031643437386565393136343131633439613666383036353362373135643433623865 +36386234636535313631623363333030353536323634366332303661633036643866396162383737 +36633764386663326634303362376436643564333762623930616333323139656466373733393433 +38633066356261333530653234316261626665326537393738643062376438653335313165356633 +38656333666238393634636432343661623032376333666266373765383238313765316234383837 +61323864616331643161393939336232303039386432326138363363353462623561656561316130 +35326434643836353931333234346562303666326239646361393735323932353434616231633864 +63343865373232613062366336303936366531303738303139333735363061316235646364303766 +38316266386632633461633430373561336165333831613231336334393235616262316564373062 +35323034323136346638346130333730333932313037316537626533653561373932333737313839 +39376364626266396630626463623466323236333534636438363934396461396639376461636464 +66633130326233656163326437353538666339363534323037313061616237653637666663303932 +39653261353337303363366432363033633436353530663964346230386461343036663862306531 +37343664306364346135313338316631386264386134616336386561383734353732323961613866 +39356234373639336266653737376564626563653961383832303030373436386533643839323266 +39316638616636643230333532326433656663363332663232343831613465343531663232666631 +34636161363664396430373165663433306233633339616264306234656533363932323538336561 +37643163656264613033383936373666633639643261623863313133616234653366633765306165 +38306539316565363833336239356661643661343565386632343033646337313530636637363436 +66653266616233353865643533633830316630613035393761323735663561303137323536666663 +36653631313532616663373266353139393063633261626431363534373534396464653066653935 +38393738343566626561353035333661646361653166386633383035663261326232663433373862 +66363338353338656262323762663430643633646163636263663230303230396461303561376164 +61393866343138636639653337653861343737623034393032336662383964363466346534353939 +61613633343162666361343562303261303338313363326565313633386266323535376662313932 +65633531333265353732346461306633326633323464346534323234336334636461653938633432 +65353464373638373630323238663530373338323731376663366664316330376538393038386331 +33373562333835373634316664346232653464313563326630346663343435613030313130376630 +62366461663533646566363166613662316163666431643262313066396433666532313432656331 +38346434643131306331623539653465313731376531303331316339373238313766366135616163 +61363765343265333534383431366134383233613961643363613635613737366464636431643738 +38383662643331376562303962656334396366613461353561366636396537656361623461353266 +33386235383233333965306138396633366165343430396437316563393561336363666132383138 +31383363306539623332616263363334633138643332353161616361633165386139383736666262 +30373066373463636432303839393034623737643431353534396265663934373362656562653337 +38646231316366623236613437633533343633303135663862396632323235663133386461313932 +66666262326662376332376535363965633463613166663239643632373164383262313338326134 +33326163393139376539666436653334656338366538306239393136353333336132616639636235 +65333336666433393730353632666161386135333066353265653534663037306236303132303334 +30363165636361326638383033636539383264616666343338663631643539323739323733303337 +39376363653133636662313830386638643665633537363861376562343134636635376636346461 +36373962393366386662633138613765653939393566613934653836303664313438333838643438 +65343063633431333433383064393261623339653434663034623539323662353230616531663637 +34336436383938393335636464313034333732666462633232623032653537323765303334653431 +61323134346261333430643734633265333239363961393861663861633763346231343361346631 +64613633633435656661643837376135323539313431373831636136336261333339383135363133 +37643835653933613830633163646237656537383333316139653964616532363464323831663061 +34366666636538623365313163656461353263323230383265306330643234303935653064643462 +65353863616232373265386231623463383862363164663633363134663764393838653434333165 +61323938316131616163346632633237333431326436303463313062313734386565336132323236 +63656131643139316362316666336235313563356662343938316132326332376137376165323134 +36393835653135336361323966336165386638666563366366363539346261323130383639633936 +64616365656335663362313639316361336461333163356263373239313937393137656431666439 +37613737336665663534663265356232363631333666373833393963383836383335366433653631 +32636462396533303364633964633263666130386537303262323737373535666133333964386237 +37663636653434363566623239386336353432376331623435383461633164666238313266366362 +65323730383563323866306265383166646535623062666261646132323631323635373834356634 +33393862626134613835326336356234343236336565373038663335333434343762323430623935 +35353932323065323066353266336262643666303436636137653939373461656564636365636663 +63356130373737613161353763616664636238333233313064313734383234383630646264353531 +65643236653861346138656465373233353933316135333334666331383731653532333837663736 +62336533643138386661653537666136656433336337363232366264333134333832326166663630 +36376631393133393962623234313137633061333766326137626235323939653038376236363830 +34306630663131346164343432313231303635323135323830393137326236633932393338306538 +65383337393938656637386338396438366361663536643866613461333566303136356264326363 +34323534656435306139373630353466616234323733343862633039393265626536393635313834 +64623939386131346230306335336339306636346430633836613330333436393938373665636233 +31373633353634633063623631376439383530333964393437336335306530613033363264323963 +32373438633239393564343430613932666465343434326263626634333932323363303466356364 +62383738323036303039393332343138313934643537313634623661313338373135313765323264 +64383361613035373436336133626439643963663237383862316132666638613737366265373335 +39313335653335653139393434303866396162663366323534306137313531623330653430356438 +38376562303062363163363664663864623864376137633031363432316134643364396637343739 +33623630663839356533373366633736323036303935326363653636326135643337316135373165 +38306239346464356262653565376463383863616536346166353832313031663461343134663334 +64353035353033393838333134366566643333313238346330663333336632643364373536386464 +31636537633563373035346335316638626461383237613561626265356339633536303536656664 +63333535316536626166633037613664386162363331303862353935653937663636643362643832 +65663465383461656639623136653136643532343338663536653161383433666135643638346631 +39343135633438633431303637343839626462626563343965333733616634303662623434323465 +38313039393662363236386564623564343530373264326662303936663565393061633637636633 +37643162356137653431333535613663613334396638373562303132633266383363363763316536 +38356465633362396230383438353633356663363737393965306632633231623364633733316562 +66353539363766656465616464666433663666626565376465633566303564373232383365613131 +34613532346465396264666366316537323339306438363233393634396563643936323131343736 +31666664326332646535656336326662333533623562303731323663313965356235643039666362 +30366334656262663266356666633738613337303365666432303936643664373038363637386463 +38636434356432313934356234636563373265326231636531366130353733613664393338363665 +39383265663564616439356634343938356531663632653035303762353230613061636462396363 +30303133366466313566636361356638666335646566623230623363383039393263616533336463 +64383162323936623639333534663262623330373230616236373039333933336535656434616434 +38633239636634393331653665626262326261373836663531633661386531656561623266306465 +30343539306133326266333331613735316537323531333565336563383738316334656662343933 +32303863373830316635303763363634306661653639396436313039303136666662643734613566 +38643836396364616638313633313334623832636666643034346662656433613337653235663365 +64653861353232636433376336373164623764363463653532623537643831313239363164393634 +33636232333435373962323432653562636536343333643036323636646162363932346136623438 +64373738623166633931623332323033663232333437353738313433353736356337613831373337 +39653334333039383562623837313332633032336435386539386635623866623835376338633466 +38323863393062303165313431363366653864383336613735653337643536373262333632653962 +31613032326336336661626263383835636538376662323535363635363762613638373364313264 +30353766653061373735626134326430323831336234316139636461663632663038346136643935 +63323630326233346131316261376633336539373339393861323762623464616431353338613962 +37373066383262626130666139303564383665653832303637396638646465333832303037663933 +65336235303462623236643032643131383534386536393938623063633532393633383066633839 +39316136376163343961333937363761363737646162613466636433663238356461633739363931 +32376339653366343366363235336530303531643437346338636232303166653663633764636234 +32636534336664386632323566383037313165323331616132376638366636333334636333643364 +35633931653961626333623363343935383266643437343835316365353434623735316239326266 +65653034623361376162303833393062336433373932333065303862646439333661656139373431 +30376436636266316331656165616561656662353463656337653630653832666437636536333038 +34313034623636303732626230303866316662626664653438663139666261653331633835333334 +61613539343664386161343039666337376130306663613064653165663833373130396439636461 +62653338396663363230643036316564386366663762383432386533343739313563353466383839 +64383833656637333239383539363765316366633264663936356266636430646332363737653061 +65373762333465386537306265656262346431336263346634663964633033343661653662623938 +35393934646165303964323231626366633738303465646131376139366636333739636562313863 +65343233346363643664336631343961393962666266656362316562623162323465663637396637 +39303230663962346663633362306437396335333165656437383330633833393338336637633364 +32373065316635313039356632373137633266373937313036393865643232386165393434653032 +64343939303833313439313238663465623365393831666637656336306664373132636535303234 +35366135356665353932373439643164303338363832646565653663346265656639383638383331 +64643737373631656530343034323636313233616639396666633935306330626531366265613839 +64646530303839636430633330393738623536326661643931303962656331316534366162306566 +66636362383039626663616533336438663562336630303638373962653631383563663237373035 +31306231346631393563373431383764303838646665616236383939353234643439323430326137 +36643330643863356134313233636436343965333661343162306134306563376633373265633830 +65666534343635633830323335356531326639306331363534623235653636353039393336343665 +64643436383332346336383631623332653764613364636630326266376664636661333764343536 +61313433363661666637383563643935613435333031376133383461383961356430303663623361 +38303738383933343232633731663163323936393461666438646433393165623062363636333638 +61333237306463663363326664363637343133343432663361366335636333373537353066383065 +38333837366637386437396437356366396230653566363234626539303866303466396230356133 +62313936313738396134643435343166633532363864343537633739616330303530333335366165 +32393332623534313163333761383030626566373231653232313233393565623834653633313230 +31643532343636623330623238306365383366306536623632643266333234346235633438653737 +64623435326130306262326363633436303533656332653031353039353730326334376138643565 +36343839643339663662343538343666363566383439646437633634643564313966363532393935 +30343061323063626537336134316233313739366165326237626264626462613537353934626434 +34333134393633636333613239373465623862663764366238343039353564633064333062306464 +30313732326363356238303834303631323832656561326532663865373234306361333733656436 +66666234333530623062353430333263306237333665323434653061323566393037303738643364 +37316665613332643439343538666133643762663561663831663461323236663863623035656236 +39623737316665653061366638336236666366666362613766623938616638316261333634393234 +33316363323761663439666534663038633938666166316361373534643866396462656264643562 +38663462343865343931373463323036303666303962336530633934313366396236616231323561 +61373566336338636364363863363933313962643239366462323166306138653435646364346436 +63663262353435366435396534633961663464643833326662323533303036393364356463616437 +36306136313535353362306362313137613737393935353963313261633136616639363464623730 +66383461383035363631393832663038643430303764653635386339346231643130616439346664 +34333032653735613739363136316432633562643536633030636134633562306332386437653335 +34666235316562353465353133316530633631346433633830353634366530316136343135343534 +62663961373965393662303236613538636436633066363633643765353439386634396631363834 +35333362366533336630303831663439356462616230343836306631393431613161666564653461 +62343633396161626165366364653137383936303138636361653834386435616233393834646536 +39653132353437326361353565323337623331666331326133633764303836396433366666613132 +32326134636166616162666263313439393965666438633664376535333536323138323966343335 +66336433666339323764396264643365616230633837636164346264376530646235643466316131 +30353532386466343161343230343262633862656562333839336136313535376633343965333766 +61363564313864353634316538386366373739383339366230613333313965646164613964386635 +36666234663965356339656235356434643035313730613638613562623033323332616333346537 +38616263393034333863386566306361353233316635343337633066373631356663383238376561 +30616432346136393536653839616230343364633164343662323639303337383836663737366532 +32326638383735633933393936373738383339303036393866616665373333373230383737666335 +39343464633061376435656231343037663837313532366362396464393330393136666232383564 +35333765623736643532323833336133383639373235356135373931363965636435306366303936 +66666638626334616335353032316435613863326231633861303664623234633734356439356137 +36353636616136336136626531393433636262613630613662633339306232303763643333373139 +65643935396566383965383134336432373730613732316232613133323232326638323261313165 +64626163376266323033366333353038396662313937616334313834626461323534663334623065 +63303461386636336338663565356333393132623031333235393031666133323135316263326134 +65653732373465613666626162333061373266393037633133336530653638613835666432353966 +64333830313530396537636663316239383139353035626431383433633665303738643862623834 +65366635373137613735323634346530626536626631343839303530306565616536396536383366 +64616334623531663462343931336165303265346166316162623736343031653664663038636365 +32626333386136626531613332323730656431336361356637623633633937633236623830663564 +35666166393838616230343763383638353266613432366131613066613131316265613130393966 +33386563323162336337373434303634643665626462643137376463336430613739353635646234 +36653234346334323337356161613237393866386438623534616432663030613433613732383032 +36663339363465303536373239613832313266313365396534303462323862343631396638336638 +37326538393738363761383163396265633261643730613337363533663562333638366663363530 +34386133306233363562333032633037623736613037623033336534626535623731343963386462 +39356131363264356362373061363162663030373230376631386161383837363066613765666161 +30633630303534353136373130313361613431373330343263393238363562383937313864613532 +63386533626663643834663033303232363865626132636433383337303861363832333330323064 +63623130643362653166313461616135316132313430333835643065366433366331323035313935 +63343433613331313539353665363834633262376637663264326339306534316464333063333532 +64356363633634373233393663626639633834643236616165666234326666636137313137653265 +34663163636632326563326565633763306239316535623039623931656538613162343336366437 +34353339353738646434313839316464643937303032343931363066636237336561646264616161 +33613565373261336138306531396138386166323331323939616533356231306361653939636664 +61393335323165616136613234656631326138396234393766663839613935326564363937653265 +35336365353931643836353233636433356261306566306564366132623132323033333761636662 +31653666323666663838363465316263363764306566633366346430353036613233623861353861 +65623433383630363732616138393466343334323564386262396562313130323131373936366431 +30633435616434316466663635326639346334323561656263656332323131643130643133666132 +30343932386333383165386361666231356132353539613265376530363038386633656463613566 +35313863396465376563373732373636623132383265643461333431313337393239393133343961 +61626235613665643436366230386461366134653432343666336663356637306462623762313664 +37646532626233313937666533386637356463333130363464646430383137646533636134366338 +33653034313235393964346561646364333331363662366663333634623731663239356638363335 +39323366633338613063663036643733653864343537336561333539633835313466613764393065 +64343835616134376132616566386461656138356365323964356661326336663561646434396139 +31303138313939353938343536386139653739613661306461373036396162363664613039626632 +36316161353664313236353833616538373130653361656234323063633230623830383035633630 +30663236316435326663303863666462616231356337383634323639313833303935363261323666 +61343032373663356166626663356539633333613939393239643363313266386631303937383130 +32363863633039323365396563343939663737353637636230323136306334636333383933653433 +35386661326164646338303530653539656232353032306533663839353230376430356262316336 +33376262636531326332376439326338373232613863643439636531656563353565343530653933 +31346437666537386165366639313861353239616539336634343039356235323239316435323565 +39326162663439366431383166366236363136666431383135636634663135396364346539643834 +61373764356333343663653662363164393865303361626133376138626232333662613733383332 +34663966353531366463633435373034653433346265303039643164626539326433626533326661 +62626631393562356562613035343835653039306232666437616262306661383034393838393439 +35343138643166633062376437623830383739323834646133393236633532323962306532633939 +32336462626663373236393864336232373961383632393034613631363561366234653565376436 +38393362343330613866646338303134313933353632363034663664373732356635323532333337 +39376634383764353365313435343334306561343935323263326634353961313130613461613037 +35616665613562333530366139353936366562363632373431333164656465666336613365356461 +66656531353837626239336164613632376431663965346631616363666132303365663439386636 +63363461306233643664613663643661393566346663663861303937633038376261353066393731 +36346564616136653064353833626431303638386465333133326362336539663166633431356163 +65633733346639303538623665313064633065623065656635306464636437326537323039373863 +66613462373231646665613335373633323566366231396630663563636635356464326132616264 +37623739336666373139383339393836393038613034333464343138636334636430643563643063 +32383431316133653737343131663438353062623836663336363230666561326439643031373730 +62323732376532653739636339353762316364393738373863316436663362373866336263393939 +61633234653439393631653961376562663935386335373033393862353636653535616137373866 +63306661663961343935303166626335643866373736373231613964613638633864653739346463 +38326666623161393237353630386633323330643637366666396664623032393435363861386166 +38363230663164393035393565353963316563303863656664633832323833633464313331626339 +35333930653031323162636563366339383739666366313266363936663365656639333161393836 +61393961633363333265313364326363353036323930333434623261333639633238633034353238 +33643764316366613265336338343434613132623661363631626338303134346433633433303336 +36333435323838373838313661393036373532373761383234366134663563376231303266356166 +39656165373639353234383464663765646332623835303964396165376366393831656339393038 +30373335346239663166633935663065326139663661393063636638303536326261376131396564 +34363263333733613964646237653364613436653236616163316134366636333063623538366535 +63363535613231396335366364353761363761343732633566323430396439623732333633363335 +34336266623135633333363934373930616664373031396234656635633231343930363463626339 +31363730396566396334323839383932343436306630613834316137386431616536633632373130 +31383963613233613833353335366461353531363766386235383234613466646530643366373134 +66333239396561666663643035393130323764353237343435613261306462303265633465323566 +36633039353265623865316363663435346435636439306133346137383238333666666437653961 +37653934393365363238666164623334373231613066373731353437633564363632623436636338 +31363762323938316237303363653239646131373739383261303130663863323930363765396631 +31363734393433353832363936346336313365643433663933363765373731616438303161323738 +32353332396134336566363332343131656563383333616164623433316239383233623565633730 +30393032633336303662633337353166336262356330333031343065326139313532653431343838 +34393833363538626263633230353761653839333763363332393932653934393133636531336532 +37393131626661623462643438366437666132666434363063626262633237393237646161393037 +63333866633237623133363462666231376365393330613233306635313938383433653766396163 +36333965343264313239666235366563343833633535663031653137653834376339396133326361 +31313765633866653035616638623033653237633466356234613565636264663961663638636533 +31313430626563653365666139393430326663393931633235616435356134396536373065653034 +61636236326435663862383865316530626461396435643230623735303733653234316334313834 +33396264373065626535386332616265396336323333306264613062336531386634626465326334 +30613332326133346161306235333038626565393635616639306138323530303831356531303266 +64306465613662393966306536356232393435613633396462313333326466623466343338303735 +65613161366363376161343332323433386339303639636136366433626362356466396232323431 +65633033626532646362393263393164323361633431626463326361343537323839353337613239 +34363534366331636365646534636566376263326539323132303866366665313237316438636636 +38393162383162333065616662616464663437343461353662653630653238363730633030393565 +38326231383363623064373966396461666135393039373363336262656365643765636233306539 +35333834623532306232306133313365356262316439323766396461333035646139316266366332 +61303033303332366337343836653662313264323565353764383062663463633936616439343633 +62663763353863666339326461343165373232313135643234326330653432623366636638363938 +61666665326233363964646663363430363164393031316563333665333133326661386638343431 +64643063316164373838386632386137326533613163333061333034623263356235373762376332 +32363736366266613430613161363865343037613766633538316362666563383732623064643439 +64646663636637383033613630643435646135336335623735373163333931366264653864353535 +62313632333236656339623530343131323931653431656664613834363439393165303866656664 +63333130636139393835626331346138323565666163333937396538386434356162353830663763 +38373564303533323730363764333663616337653936303536333634646336633838353133356437 +63376661373235353830393334653838346539386665626638313261616561656130323638656230 +30633763613234393831613134653866386630646265643635373962366431626532343631643932 +38366264373266653966643661393863343539383336326136653537386163313038623937646435 +36373438633938383630613734643064396630613139323434333832626561626163646235626236 +34623763323138656262396465633235386637373765393731363634326234663739653730366332 +63373136646630356230626439346332623539303038636363663735613133396466323737353262 +39393838386464393234616432396665653934616433323532656338303566616363613539363438 +33653538653366633065306164363763336361656636663461646164326265303837333533393238 +65326137643762626237343164393166306239333735343937353439353135643361633435363964 +33376338316461343764656364656639633164656166376663383563653163323966663863613538 +61306164393338313438633962643761363866386662383439343539626436666138386536303566 +38356138346330303663363561303736343130633565373065613738323061303136373266633635 +34666533646562666539346463353632313565366435313662663431363464653334313437353864 +65343064306338623963616431373534333833386262326363643734323132313936353663363031 +36623865346638353236303831326234383130343434633637366633386538663134313266653532 +32366137363533646134666630643966383336353561643031343538656665366465336465383264 +63386239343436386166613731613461633435666666303039313138613861623738316238646262 +33643363373761333130323735333866616639383561363236353238646661653337666264633966 +33663230353163376563626432326334636566336638663638643762393165313932303530326464 +30363362366533303337396635313532623531386236363634306362653065373533303235656631 +32343835666662656265636336343961376536396338626237323334373234626536643363666562 +33646265616533393939636265356533333063613466353537663033363633623337616564663232 +61396534656132613037626165663663336132616136393930373763383032313331656464646362 +32373630326635326330626237383663636662323465376261666536653731393032306564306132 +37646233663632303530613835346235306530613961333130366636343435303332373664386464 +35663932323936306334373134653161313063366630353934306634326236333038393437333131 +32363166316666303339373966313966366339326362663930623566643261306139626161663830 +36613035343061303030333239623633323839373266346662626663353161373532653563623263 +64316366313132616666616233336537646437303034373861626363663237383865633666646163 +36633338363831616230333037316262303339366533663130333861643335643030626336366430 +64333864313862356539316264653364653165303462393732643430373333313432643166333166 +64353434376564666535303038303364346630333334653530366530386262356665303864356631 +37343761393261326536666266343563353064353937326666643466333030653731636134393032 +36386135623231623234663333313364393062663931633465656162616331623532366331313036 +66303361636161653838663536373331303762353131613631326335633766653236666439666431 +38316638616536346130356366323261656337346439616330393431666565303331356439333564 +63373161393333656666643735396563653039376634343835343939306164343534343436663666 +34343833333936306163313965623963316661353861356138333335363436313330393032303231 +61313637633139353034396534373639313838666566343264333434373435343161306564346233 +39376435373330316362613961623037613532363261363634313036626331303730333265366137 +66303430323365623565366430383732656463653932363834643730333931353333353837303136 +37373236356635653966636232333433613630653534663463303739373035353832643636383037 +34643262653364373436316539623036396436613730643235393263336663383937633337316135 +62326131646134333965663535653830393534613139316163376565383836306363373866333436 +39396661653866386163376330373631353935353261656334386431353739356364653339376234 +34613066653039396438653164383334616331613331393533326530366564366439366238343334 +65333166313233336637393861633066353430366161323563363061663561343038353538383136 +61626436656134346264643130356531343861393633306535393733333338383562653335323238 +39356663306332613635313234376565396134636561326532386634316335363264623238643134 +66343134386636383865313662653339316465666234653761353361613938633962653862663462 +38343664636266636162653137333836633362623063333764313963313034643463616638316139 +37353237386266316438633735373066333461613731336538343561353364333936323230623038 +39303133633131373136386266303162306238373233386462313437666563626133353931666338 +30666531633232346232336136353439343039363731653661366132633130383862343861363364 +35356234643932353838373133356563353562623566663437336231313134323038356230306164 +37373130653537396430636365643865366131663235346537353135303231636335326432613138 +37373333643064333531613438376436626666346435396433333433346564366430626631373335 +39303830363161666330633937376631666331666231633334343264303361323039363334646538 +65376531356164363261653133313239353064313861326130323533366664373462396362656233 +37323361623635353234373538393838613436663262636236643533336161323966326661626263 +66613837623436616161363661316534663836363138313838383832323438663533653339333633 +37663465613038356161626462626162613862353231373163653066383262643937363534366261 +37316632323134323832323361343134643366343066306661393932366634376333656332663363 +31616631666439363132356466653432613233323532613065363961656232376463323364396635 +36376337613566356363623932663031343635313630306433663462363739643438336235386130 +62323964393533316666333035643738343738333433363064313137616637626437653931623234 +31653864343533333064366632323239336133633763333362643935303439616439343962363935 +31636336613461303931343335616339623535326634363464653132313264343234623832623633 +31653132376532333237383162376435616562336531303536633537313434613234343530663937 +65376234383165666663663934373637323730373835396435653265356665646438363365306533 +36333234616531653534666465306361333136333236613530343566366430363434626239393161 +32336132326662313065356563366437653135643565653732333731373065663266623533623832 +63323235373337356262353132383566373363666634346137363336646132613764653433646430 +37356561653561613061313632363563333531666338393662636538636164613634323463643734 +61636463633331386330363735656134656261626564373237623934663130333766303437396238 +65353430363833316433366162316164633638376434373030353135616530373437356137636362 +62343034656338313338346466366431666238663136313432663039613962376365353535663964 +37326535646332363262663034303132333535373135653261313538633738373865383435336134 +31336438313637346262313137326261656632383062316539326166333661656136613363663430 +61313637313033613439376532656564636536346164643261646563373239313737383363666132 +33323135636362616336663338646335656239383633633935663331386135303133303666643335 +33303831663331343137616135396334336235383866666363383335616566616337646438343335 +65353130366166626132323033393536333732616436373263636331613434313431373434316266 +63313064653531396164623865313566373339393962613263343466653161373764353163646435 +63333932653730313630323931373237303630366364306138373661353665666438636636323536 +30393263653465663732396538373335363236323531333735306638323463393436373634623331 +30643838323161386563616633393933376163356136333065616661643937616166333338356437 +30396435623664343162386163363131396265373865383635356432653063643437383533396633 +30363165376333376337633334363134333061376533646237366538663938393038666162613965 +30326339303536363537346437326133656462333166326138656638313135393961653164356137 +63386261353031313963653034303937666235633837353464353634316163356634656666396437 +34396263306565393662313930633834396466613662313563666462346336616431616664643333 +39306338323037653966633166316565663738363332393234343566373539353334373437613063 +32333736383431666632333335386335326366643134626332633234343131633532663734306633 +37353233343133663739313838613232363066646333383161656431633639636362623939633661 +61346335633338363661386534626232333866613063313162343735333235366336616436646132 +30656165346530643261636331373832636130323164613132646634316331306266333063343665 +33373235393239343563383532363763326538663962313663313661303563326236383839353163 +30643737626335626565323031643434636266303538353862393964373064666630323436376263 +32646532623636383235303932353335366364663437393035613761643836326136613836393363 +32363938396132346235363331653837333762356464313161393832656532383532356137333037 +38626235383133306261313735626364613262616138626431343538356266393132343335333361 +37656163393032613163373831653436626137666238343737613030343839633766343030346239 +32303232343438396430383864323437626566343866396534326330653462303531363233303764 +31353035363739656633613265323461623961343062393662666539323365363466356130653639 +35313334353039353165356538343864356534376431626366613630336438343365336538333965 +63326565356632613334316563633436303766393230666231353837333832666461613833346464 +64656365356264353139396231656437663636376537353264306431613138636366383161333030 +34393530313136313138393035346531343037313337383832613364343433376130656661636566 +36373566373936383932373934323739623736623262353561623437643431326139303133663865 +36323933643130356266396534376665363462343534653434346162386535636164663239363933 +66656631343535613931353361303232363132643133306438313264316339393639656439326536 +34313833663536646364316635643432346338326136643462303437353239613165323136363834 +61346462303238656439396438663965653533306330623235343632343437663266386135386632 +39326336643232343364633562356565626131653462613965323839353333613232623763356466 +65303737313135656339363664616261386363356438373439613239356130346263383437383462 +30616233363561373733313338643837643561353263383766346561356433633037326632323630 +35646436343539663166643163386235336630383565323331316334653431356230383732323039 +39383235323266333166373235373338373266656439333466323464303134343166643638353865 +31623139303033613439326334633165343161313532303639353530363266333431656132303935 +39623061353065383666396231653539646538363439616261343062353133646662393561623862 +34323465323061376531383238356630333566306564633061373433366337616561613366383631 +36643538646339646535303235636563626434336231363437303364323239636630393038343437 +62643037653939636563373630633630633635336463366264633638653137643933656362333366 +30623739313631666266366639396131633932633037303031666663653131663662373830653265 +37663064633762346631343730393532386433343734616330316466383665656131613866336563 +30386439626665306666653834636331646539323361303331323564623036656663393638396465 +64623331643831376437393363666237343339616365376538323534653939356332353136656638 +37663962646363386532613438343935373165336334363964623334326538316266383738373863 +62646235613339366664616164383533393838623765303633646664306338656339373334643563 +30313762643531633639633762376365353737643533353637316634373033363166366436653865 +65346430383437373762303337643639306231333361353734663534616465333136356263303838 +30323663333638333832343663313336616637646265343230316166333238653364353838316536 +39383830323661306438333065363466326362353066613739353736623365343535346135396231 +63356561613638353430663336653266613266346663643762653338663566646263663632663733 +36626566363062363863646164613565303661393335643665646139633332316231383934356531 +31636132316363363232633038656232333138396336386239666362393561383632356430343839 +64393931346435646539333830323832623761626134333037376637383966653336623263363332 +39373638646662646430653633396262643435386635626663343434613064613338343062653339 +39396264393934663563386262346634313362646133393739643563653334323064636239303465 +32366139373131373530393263666632643864306332396166633564333631646434663663613663 +62316166353332356137663164306562353335636331626232393533303961306664373661313763 +30663132346635303936313239363938303638393936353838343163316561323066663763623939 +36373139666139656164346230643530633833643161306363373334666462646634323130643064 +66323966343133313634366437633561326437306337336663306432623930373563313432373330 +65663131356330646434643631323033303662343065373632356637303962613266633832663463 +66663133373539333964323732626662623566643465386463383835653366393764323434666638 +39653162353135396431656236333532323334326163653933396161613638616133313838636639 +66366430663635643437613432313337656337303237353963393361663762356331353636653533 +62316533663262336530666535613864363132366233616565326432343462633061363364336366 +30363533323733623464393733396638306635303465616639333231616536353530393838666330 +31376161623130663836333835366364613163393761643432316438623864383265323765666139 +31653537376631373432396539623531363239396165613438613036663335396361326237353466 +33646232386366633565363164316136313832636534303539653039626234396263336535376339 +30323739396563656261386336363038353733346434346339643438346263346266306434393836 +37643433653934646237353338653631393138323263333964363662396433666664396130653766 +62646135346265653263643966613633393831633165316638383831383333623964356630323662 +39313838313336326637396464666462636365636635386465623338346165356430323362306565 +63306561343033323431383365656365346334366463396562643363383664643162366137373439 +32303664623732626635343535393562393839303939363931636365356564333039636266363930 +34303137383332376330306638316330343562643938623137643134613037353662373461613863 +39633461666233346365313032333237363831303764366335346238613639346337653561376337 +63356333343331396239643437306331383639653837643831373830666232386462663361343363 +32623334326238663036336630616438343165386566383334323539373637386634393565333433 +33306138613864653630653031333064323765383338396465373439383836383432393731663565 +33393263313462633864366261373065336162366130366337626630373032636333636136363464 +30393736383432356465623466663539633234613064396534373665633936306333383437303062 +38303136626331656362666238333436653734393637333234653335316262363832373565633834 +37363061323432306162376464333965633564613132313661623030306431363931383166363235 +63393631373538653032316366643734646436616134353164643061363138623536323333653738 +39313838303830306138393435363331356331343730363866343530616465393265363464313633 +64373261303335303466316430373034363838343931633962393632373761393364656166373032 +61303336336530336236343337626233386435396131663536373261386466373737366164303366 +32393639613661393038626633363231633766393066366462626364363232373764666133396537 +37323739666661333638343566616565316630626465386362373264363764366437383663303838 +32636132633936313736623963626130393934323835393935336363656261383933643334616265 +37666535366366626633316635383039303062383138643038663930323166393936326664616439 +62323430663734633934373138633938353935626338643435303035323137353832323430643465 +31393433363835376461633061373761393639316366636338656437373236636334626236643231 +32643231336639613432633664326630633630326636353438326132333032346439653234303436 +66653761393735653532376663313965653639396166656338393735383433363731313735643031 +32376563326461613463346632326537306132613735353836336264636435386164373039313762 +32613161303964303235393330613235643431353432336138353632306364336636633631616166 +62633039343464656166336566373062666363313061313739396363376565326665356532373963 +36623232383334333761383739386134346333346331313237356265373233306239663531643539 +31323936633032633063643936393233643338306135316665663666353132306166663561336461 +63396633376336613661323031326239393233353864656464643633366535303539326463663664 +64633837663561343730396337323065323630343163356639333761623966363638323862313633 +39323534313662303261633730343930313734393836383534626466343930303162616264653762 +61666363353434636435613837623266383730376439386532373766323834383238316661333966 +65666662373532663861373337613936333561616137303266663531346433393863383566666662 +63363863613539626365613537376236646461376134373666663835656565343064343831313931 +64626531383235623539326137343031653135363738623833336163393131353438353035323830 +32336234363734363632626431656137643935626461373138396435623138333162663839326363 +31646234623665643963383130623935656431636439623037663761626662323635306237383164 +35383137313137663963353266353761633461356238313764316432373733373637323361363532 +61613839373236366532323339376235383731643265353933303034656364323731613731373166 +30653864343964613134363930616461613531626431666232656433633839656238663963663930 +39356333663431396364366434306563326234316665623339663336373234326539373136623364 +39356439363464363639323036643631666364326265393562386138633936643538343234663562 +38386664636233316662353932386536343364313132336132633165306530333633356230633030 +38383031636338336266366265316530333934353531343264363736653234663139316662373533 +34343438636532633732373365373764663731343833653661363062613566636564613061373566 +65336261396463393661333537356430343239656461353365653061373064336137323166336666 +62633263663830396338646335343437393235613266396433306362303866636530653730353135 +62626435343264303837313536323532323264633362336639316362643439316464666362316166 +38633234636263613732343335353330663731626335663434313239666461636134353835303035 +30656562393961626637366533653639623066303465646631643765353163656165623231613136 +37656135376236663835356634373636303833663331363332383231326439623333323837343339 +65313638376634356539616634656636656434316332306439643932373135333063653131313165 +36323234323862633537363962303332653137393335376232666331373363616133653235383738 +65383534643561346262346238636335333462363665373238623432373639363162323463636166 +66323365306636393065323035633535383665363737386138663261636433396261326333396364 +63376364333632653261653135643033353964643132323835613134313433393862356235643765 +33353933633633323433323564383131386434336436623736396231656661653062623834613839 +66663063326439303237643235666361643535363937386535306538643664343033386164323462 +64343330643262656637326663363162653164363535363866343331623738663630336162653236 +38656664356164326333666564393564663963643034316231343430383538643236653133306430 +30663161323335356532653761633061366630353833653431363631343334396462393434303935 +65666632653161306133643633623561636363623536346538376166323335643934636136356262 +38663262346332323231623763343364346561356464306438313662313866623639653666326339 +32646531376239633935303939393635633230383838623062356138363230656561323665363032 +38346366323033366466326566626237373432613634386365613330346436393039383839653437 +62306233363933373931636233663364323162656662656432356630613235333134326138343633 +38666365326530313333656338356239306237653836343438353534386533633333656633383164 +63306138363537353965356336366362393138393363636136376232306331323834656134313835 +30353631333561623732356337373761346638636631363737613538376330333162663737306632 +36326633333064306239393536323136346462326232386439393134333038643132346461653439 +32643065613962316139363334343866356232353236626133323436653735393839323236613866 +61323564373966626232623265386565633534623534363564326439383736396265303439383831 +38393434323765623630306537336464373538373534633038313730303038303463386230303064 +38663035393662313161616534383933323566343238326631336234326537323736313433636134 +37393834633133663031383565343461643364396366396139373737323063316661333133356633 +62306534666466616538393964323563633030333934323061653732626565323035363661393639 +61616233306334306134373565633034303164373666373766616636393264373536333434646265 +61363062616231616433366139343565666265346266323230323930363438346266636635623435 +66666261396365636438346233373765396534656535353039383835353332323333376563373866 +34393661373434373066356235623363363161363362666566326662306633326465636138646131 +65653439383263313865636135393339366336346430366338643830643065613234653062616635 +30313963376666333236633630333865646235616535376637623432613264666437333361396633 +61383738333830323831316566343833636539633666666531393265333537653665396230333730 +35636333646361313861623135623335376330356136323234666164636439376532633137643932 +34383866306262313264333738623237303464346230383861666561383838636366646461363036 +36616364353733316465323638666434343363343430383433356364363434333362343232383264 +32363864646135363261363537393033386534666437333833386363333866333234653865653364 +66336531393335623566316130366263366335376432383964326463306466623033666665623632 +30393365336563333330653638646130373066663133326665386138353231626131363637613834 +33346137356130366634396465643163303537636462386630303163393830326439346330633435 +33376463313062306136316330633461366565383662353564356233656530376166643332326132 +31393565363066383365303539666163333839356538653230643233303436623832376461393039 +63323664383864303336313266306338626234316130363130616630616462373466303134636130 +34656263396339623137613037343566663131636437663534626531663835326532313461633032 +34626131333734376530383830306136656632636666363132333534653766326663303562313130 +39323330326334613839613936306137666231626662626664326233626337396137653162613165 +32346137393434626539623365636662313933353736383361333736346639343336323038646466 +65306265356136303662336534356139373662376566366532626161363561663334653262313863 +64656563323434383638306337383630653065633461356134383166613164323265313033353830 +38383134313332646632303330373632633939333562363337666166633633396533323464346134 +37316366306466653830303133326562663030303034366631313338353533393732383133366432 +35343531343934616635646638616435613232393266343538656465636535383264363666383463 +37373065326236323833663838383539336335343266643961313666666362356439646666646132 +61356134396330666263653631396461653564663233646334306337366566653462636433313532 +33613462653961376437613136633436393864303664393234393262666338343038323134663232 +61306633613566393062643438386535323030303365653231623763366432393439353538313931 +34353637326534623763396331623332303930623362313938346163333738626439366330313035 +65333262663237666431363831393462633535373238373930313237613236663333633739323330 +33613139346138386334656438386432663231616365303038363739303038373231376239656264 +34303336666664376133633430663536386161383832363833613737343233613333393335313766 +37383261613630313332633163613832316565613564396539653030353932613531303332313631 +33343738393162663537373433653764373863323164656266343766646463343135336136663233 +36626532666331623238306162363766366665383530363832303166303538306438626437336434 +65636631343763636231383762656132346138306464663437313239366434383761346635623932 +33313335353335613561393831356537343061313461663465313566393839303761316163393732 +35333630666535623134363561303235623432646333623364326236306365313461366239666566 +65383035373033303733306231306531613763313935353531613733633632623037613832383131 +66656633333630656434343538383062616134356137306164666533326163346639633063333065 +34626639613461306135313862333532623733643863613961326461626562663035363132633362 +66323431353738653834663461616266373933353232346461333035313338396331613664663532 +34313636396263313032313736353139343463323135313661373663383531306639356365663462 +30333937626666366361643238623261316564373263653561396131626264306163336433616234 +37626465333439633835323833303963616338306437316565623966633336613561626136383630 +65393537653832363066376663393062613761316662643732306635336138393239333361366162 +33383832633530343334363630346238363862633364616432616236616431366234333861393361 +66613931373263313631626232373166613035353035303437356135653062323435306466663337 +63313463666664313163396336363736373830353730613533373639663430313937623061623563 +32316362636235636465326231393938663332343365363538363730383061313233393232643464 +65613633366135653730633732366266363532303633653562366231376534643930323666303931 +37313861623934323030366631326565396430366565643966373733353734343635326462643265 +38666339666164396332346663363664303833653439346261346361363936626462663766616432 +65633430383236343262663961333165343737666664343361663336326464616463613031663038 +34386433353236613732656463353362343833646233626234363932343131323033393964383739 +62356631346530383365653435313439613232316231346132356362653266323031343438306130 +63353332313530636361316132363938386639333136646364363265313963666561303233313333 +64326136613938393161313531313163663330353736663239366131353961313335303333356366 +38363964616233323233336631396261386265633362396639626538633637306663323139643531 +62623261623731653237306330346236393166636231363738326264313364396332376238383831 +33636331323036646535663838373861633461343730363333383635383335613636353664373337 +62373265386538646236666131396535323566353739633762653163313839323565383735316362 +61363664316463646561393539636631613761613662653632366332333833646262356664343532 +62613436303739316661666234613462616566323539343536363332346265376131336462373736 +32323336313533393835323536386334663635626138666430653964313362623063373936616336 +30643861343233643635363838393632646237666338656661326336393864383432356165366532 +34346661323030383837386536666463336231663964306437613336643934373566663264646138 +32303664656134323431376464653236393935646266623732616138373930633864313866643962 +38303063313531646233356135393863633261643234626665613062626638396135626434663635 +34353834323134636230653936313235326132386432386531396261633832343664386236613163 +39336538663063343762376161306364346335346635636361323832613639336663326335326333 +33383263363866343562616464366537313835303534336636316166636165323666303034353065 +65393061336461356637363831306564326639373133303536363536616236653230626464336238 +32653164323332343166323862393834623963613838353032616365386531346333333865653134 +61383063663362663466613561633438633865316138363965626235343665646232663762396663 +36663466626332346239333830383461663838656434343234653332613833353336366563323133 +37643335323165323332653739373233373261356437346533316539656632623336316665643538 +39343662346663396136326465396334663365616366376262346230613262396136626330393531 +64383637346264623135633539356534306239663163393831656633353539313166633235633836 +61363937646134323433303635613435353839313661333332633634336235636334353939633935 +61616166386539386362333937653161383961373662353333343736346438323633643630663533 +39653938613965326265386430343636653261366631373738356534326337323339326331653661 +64313966343037346137336335626137323233646361323763363037663636376266386164663563 +62323564323434383566623438333536643262633731333135666137313332653535663531353933 +32333463633037346566313763616163376638653638383336373636323164323834643662653232 +39366335666339303539343866613565633664376662643864313863343337613836373638343233 +32356530343961343662636266633537353664373566396132623532626132366630343432383931 +34663464393062386366653266623662346261636566646564376536303337646666666139373539 +65626239336338303334393365366663356232316333376165373361396165363533396337623235 +35346166363631343466646233373538376536393030643836613366626338303532326433636339 +65343961643961366264396637633264616438303535663739616630386237313435643362383764 +37626534336564336332323766326664643263643930623836303630323731386562386631303761 +64383638666537313530633131376363616336383338383737326366386436303634643133663036 +66643461643533633732646139336538383565633964633465316431376238356563336535653465 +38373438353664616239643035383138643438366136646664633264356165383661373064383730 +65653361356632353233363664386566393232336438303930346236376435373839313134626664 +31626337373934613866353233383736643532656265363439313865656231303739643966643065 +61313339393266366233323630323264646533653036366632636535316564323836323235376363 +33666435643165373433653530393564356630633532636466623432396166663530326462646532 +32643562376335393861353135323836653639333961303435336332346135333163366462386138 +33333865373666396638303337333661313461326635653866396138613133663763393935623932 +37393865643830346363656135343937343531646638336363643831623466656131333431663362 +38633933356330366662613164383362343238636661323764653936333438303330636335613065 +61383462366436663662643264313130323563326638396237323634313730343065643961326566 +62353339303266663738383335366336316162326164613866306232333337316139336337363137 +63613635346165626264663937643037303831636165643938666663346636386437353466653832 +38356438306333663930636339313734643062376462663530643934643662306532616266343530 +30363761363361353466303762373633646461633666616137363831303037306537366332366631 +61656132623364386262393161613334353737363731323233396665613538623530316563313032 +32636566306664373933633435636239306564323861653137353635653762386637646632656662 +34383630363830363564646565383435383136613437366363653332626134363366313761396334 +36363530343531626363376536333131316463613331316437346537363838313633393961303431 +34626639363436353837313764323664616635356534623635613765303031396162373531383837 +38646364653837363464386634373665363039313935663136643864383134396362656132633762 +37336331323962373362666431666165336664313763366335313934656534363132616132343963 +34613165346133636534353439323738303237326263323434383162636131383230373731643837 +39323035613034636634316339626134643937653633343036373362343732383637326239613435 +62353737353434343435343536646633666235326430343232346636373638393538346332623963 +38643436346461613565326463313931396538323838316333373332356531633636326265663661 +36306237346135396230626332646362663339363737663263323532646237386165663433613763 +65636139633532323261313831326664626339326234353561333637373465663666343338353233 +36653338373866316435613432373362386434353237303662316636653334323136383030303331 +34653234313832616337366536366437303631333366613561373132366466646562336536306638 +65376666623664316537633863346432326165386437323662356533363237343832373734393861 +65663237393830623632326636656562663035653630323263313932356535333137643563306536 +64353862633230333037613265646237663363363661613534613662386530356637393363386464 +32376637613265636236393639356463616161363732623037306162666236333862373532396461 +66613463646439633165643735393035326635326634356633396263396534316561643964386265 +35396630356361333265653236393238353635323535346266333661396134366465616137376632 +30343566376264376564636636343865393239356465383537333932393462666131366131653266 +34623763313063643838323031333237623436323134373831323439643864313765326363313637 +66636539306534653637393663663235343630313139613433303532346563646433313139303461 +37363763326333306637616130613534316433356263333436326330303231343734303831313530 +36323465386535353131383437393463393634303666633437323634353430633866623032663935 +33356663326233613837623331656339616638333964623034656132376531663931343334346535 +65666133386630663235613134313565383130346337303166393863396138626234323533386263 +33303734656639366637376162376331333436356263343931623265653838663038636531646133 +61633830303236366263363861653039326163376137366433626161383261303135613737306134 +35396335323434303735653336376432343333306632323338653339303134626339636636613837 +62666262653230396662653763633766373262666530376562653634326133366663303734303562 +37323635626332373465616631616165316262386231386533623333383835383833663137363338 +63343936336535343261613763646534383530393664396431626166623832616266316136393639 +31623035623336636566366464623633326135613636653061663537643431336335633964323362 +32626163383932323037633237333963393138626166663335656262323037376363636135303132 +61656334663738353761633236383636333064383832643036343963616338356438373461383133 +64333633383432303934393736636236373437613636343431613331376264393364343635623338 +37393135616334306336666239356432333534393434666562303736306163313234356532653362 +36383439636562316532303230363434343730613462363131373732656532306364376233663164 +61636662393361303664663835353837646332396232376638653430323634366266646166616566 +31656463313533663137366332356638616339306539343965363734616364613261653735303339 +63643230373131656536303035616663366564303439376162376237663461313664373463363064 +36656339626162323266396433663666393865366134636637623266623163303239336165393666 +31316335656139633136313531323363356462313031353063613430313132636134346666396563 +30646130376338666136316138663432366566326231636562656235306161653935643432343031 +34373732613438333166303430616461396231363164663534376233383633303361666164373232 +33393365653162353363356332663231306631346466303838333135626138343932303463353837 +39646163306138633236666435656135306338306439663636346461323631303962633231363030 +63316631356136633063313361636364313762333062616537316537393730393835336235613161 +35653637656438356663303162393436376362666262303264666433323866316165356137383261 +37363162623331306361333236353533306335346563356562313039656335353937646633616436 +34623661633339386135343137363737653963636530613935343035393765343664313834303534 +32643933376436393938656563323661656566336437616432316631363831623233346631633461 +35313734306661343639613035656466323330613933316364353030396438323138336464373864 +66356136613135653038353264633439386565656362336336313135653830343530616361663239 +30323031303630366338646239646138396336666136613031316336376537393462396534356639 +61353530333066653163633438623039303237613538393964646431386565616436653938366466 +66326233613462313966323836356466616636646663626434393835353032353365396565316530 +64313461336261333634376535333335306632326632633366366438343630326230336561613838 +30373065663232363131343766653165366462613338663566616337356135373364333961623237 +38366434303137653435383639623964636163393165623936663830646139353962326139386336 +62383962333761376139633665333264393431623764346365376662613564623761333539663232 +32353238343233626162383564373465663730616135383335616432366664646262383732396566 +38396338313939303435663838613739623130353436336134633732623331656438623665333535 +64626431383364326539386465656562333664353938353636653430353230343262323334346439 +38313363343037343161363336633835363638663662623263363266663535333036336634303031 +62396233326661643330393831393163333434386331653561646436646336616331333262396631 +62613031633236396533323335373335643131333437323732663566626561343434303364653663 +30656163386630306539373333623635643934316534643937653633313936373837346134313635 +32303834376533613832333961326263653762613337393732393631303430643463386132343138 +31623432303264383933623762626230653065633661323536343961663636626338383465316634 +65663263643664356238343034373333353361303165653039643134373931393363336435363733 +62656564613630383464653463383334626135333166396166663466646461366565386663616561 +62626461646462333237333833623336356164653334323230633266346464616666313235346437 +32643763646263666436393661663031323935363663656264616339396163643639323866383830 +32346662333232303164633130633731636631366636633462306631353361373939333931303164 +31363432663134383861383739396135323330666530363637643931656434653137336266326361 +65323938666363653935643363616438353461303061666464386139653336313761346266613462 +34383834396662376263633365393331333863646263663563303732313131636334653630323561 +66383032323464373966383030323365633661326536623563636461343536623634303464363839 +37613630346333643266303333333263623064626231383432376566323165643536363834366461 +37393365356663396165376462303065623231643734373865323237663638326635326236363062 +37313739356565313366623933393432656162343762386262373833336461353132396233383337 +36353835623639306366326463376362663566396534336662346334613231323764343031383835 +30663932373235636639396532326637366239666237323062356463386138633264323533626635 +34656461303665346439613661663131353139646330633763613765626462373261363465356137 +65373431363631306261366230386634613337393537353565373463653530643366623562663230 +33313835663062363834316234643238643434616131383538303866626233633433643537303036 +63636532313137343139383135613665366361383938663066653730376363626162633665333362 +31376362666163636438656165363762623262393939626333373336363837336561646338373239 +33343436383832346639386230353630646666353435363062393664616334613132663437306432 +64333766366362356163623038393236656232643338356638616165383033626463393466393739 +30393034356133303065306164656134366564623566373031393237303833633736303266343361 +37313864363037333561393934623734666138653361393865643566393065336531613161643537 +37613133633039353566323865303163373234396464353436313363363664303864636435363766 +66316639663632316634386664303466356165343062306236343631373430666539353265326130 +39346230613037353333363161366365653232623130363531386631313238383038613430353937 +36656131376236356161363261623334613631623739396538336361343131346335386433366435 +31373139343531343934393564386666323465663063396462393531376463326264336436326539 +63653134383364346366656262663737366561336462346461633365653365336530373338396238 +38376530333034623231303938373031366433343566386565323365336464316662643030636632 +62316364653738393963353337333739633261316532633861636635353432303338643865383838 +61396235343437353435383037313261313333386163356666333035373963613635366435393635 +34666563383337323764306366343639363638636432633832303364303934653766623738386365 +32343637353432373862336361316261333463323430336536396132336265303765363139316635 +65613165616432366336653930323730353264313632386332616139393536333366303530306531 +37353837623337613363386465363662623430653039646431363935313166646131623164393262 +61656233623431633032656539666633656539306539383633633135386632336434343736326135 +61623962666566643539636666663138656532393363356436383231383933366535656536373831 +38626139386664336632646466366234396463656161306662626536303637356461363936356464 +34306430636666353836616532346639396363313436306363323830306131343730386265656136 +39623338393864393335363637393539656234306637373062646265393463343435663638376461 +64346134623333323534303938636265343166346638613865323732363435303138363764326631 +30313233343431626566353735353839626538616331306461613331663663326137333139636362 +37323363393565333363643364376662623365636138323930333632353731386132646531316265 +34326661646662313132346164343963626333373665373632356138383030663831333334313837 +39663533383761646161353232323236393733623634333533376163313264303865646666316362 +66316632303833643334373030396534663935623065313866336665333430363632343836376664 +62356630303830356439363338343330346636323466383230386138393862333764346532323161 +61343937356536646138666431666536336433363938616663623337386232363931623633643035 +36353734343563353266373137656564343733353862313262393334623764346131303263356536 +35643864366463386463333032346432663338383531353962326335383662646639613335636238 +643833353134643261633162653065393961 From ae24b747f3bb0d7fce86dcdec39c9585208d44f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Fri, 3 Jul 2026 11:23:16 +0200 Subject: [PATCH 40/49] Fix broken config --- environments/kolla/configuration.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/environments/kolla/configuration.yml b/environments/kolla/configuration.yml index 529470fa8..a25085e99 100644 --- a/environments/kolla/configuration.yml +++ b/environments/kolla/configuration.yml @@ -123,6 +123,8 @@ 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" mariadb_backup_s3_prefix: "bfe2/" From 64cefefbd6812a7f40a049714bfa4641f4f7831f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Fri, 3 Jul 2026 12:14:10 +0200 Subject: [PATCH 41/49] Rename backup types --- .../roles/mariadb_backup/defaults/main.yml | 8 +++--- .../templates/mariadb-backup.sh.j2 | 26 +++++++++---------- .../templates/mariadb-extract.sh.j2 | 6 ++--- 3 files changed, 20 insertions(+), 20 deletions(-) diff --git a/environments/kolla/roles/mariadb_backup/defaults/main.yml b/environments/kolla/roles/mariadb_backup/defaults/main.yml index 183420876..2b5af5569 100644 --- a/environments/kolla/roles/mariadb_backup/defaults/main.yml +++ b/environments/kolla/roles/mariadb_backup/defaults/main.yml @@ -96,16 +96,16 @@ mariadb_backup_retention_monthly: 365 # --- Schedules (systemd OnCalendar) ----------------------------------------- # systemd timer schedule for daily backups -mariadb_backup_schedule_full: "*-*-* 00:00:00" +mariadb_backup_schedule_daily: "*-*-* 00:00:00" # systemd timer schedule for hourly backups -mariadb_backup_schedule_incremental: "*-*-* 01..23:00:00" +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: "full", schedule: "{{ mariadb_backup_schedule_full }}" } - - { type: "incremental", schedule: "{{ mariadb_backup_schedule_incremental }}" } + - { 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/templates/mariadb-backup.sh.j2 b/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 index 4329d53d4..d5505d622 100644 --- a/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 +++ b/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 @@ -5,7 +5,7 @@ # config is rendered from Ansible variables at deploy time. set -euo pipefail -TYPE="${1:?usage: $(basename "$0") full|incremental|weekly|monthly}" +TYPE="${1:?usage: $(basename "$0") hourly|daily|weekly|monthly}" [ -d "{{ mariadb_backup_destination_dir_manager }}" ] || mkdir -p "{{ mariadb_backup_destination_dir_manager }}" @@ -21,19 +21,19 @@ rclone_run() { # usage: rclone_run } case "$TYPE" in - full) + 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 }} - sub="daily"; ret="{{ mariadb_backup_retention_daily }}" ;; - incremental) + ret="{{ mariadb_backup_retention_daily }}" ;; + hourk) sudo -u dragon osism apply mariadb_backup -e mariadb_backup_type=incremental -e mariadb_backup_host={{ mariadb_backup_node }} - sub="hourly"; ret="{{ mariadb_backup_retention_hourly }}" ;; + ret="{{ mariadb_backup_retention_hourly }}" ;; weekly) # promote last full backup to weekly backup - sub="weekly"; ret="{{ mariadb_backup_retention_weekly }}" ;; + ret="{{ mariadb_backup_retention_weekly }}" ;; monthly) # promote last full backup to weekly backup - sub="monthly"; ret="{{ mariadb_backup_retention_monthly }}" ;; + ret="{{ mariadb_backup_retention_monthly }}" ;; *) echo "unknown type: $TYPE" >&2; exit 2 ;; esac @@ -42,13 +42,13 @@ esac # pull encrypted subtree from control node to manager disk (Copy 1) rclone_run copy \ - "{{ mariadb_backup_sftp_remote }}:{{ mariadb_backup_destination_dir_mariadb }}/${sub}" \ - "{{ mariadb_backup_destination_dir_manager }}/${sub}" + "{{ 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 }}/${sub}" \ - "{{ mariadb_backup_s3_remote }}:{{ mariadb_backup_s3_bucket }}/{{ mariadb_backup_s3_prefix }}${sub}" \ + "{{ mariadb_backup_destination_dir_manager }}/${TYPE}" \ + "{{ mariadb_backup_s3_remote }}:{{ mariadb_backup_s3_bucket }}/{{ mariadb_backup_s3_prefix }}${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 %} @@ -58,10 +58,10 @@ echo "mariadb-backup: ${TYPE} complete" # GC the disk copies (non-WORM); S3 is governed by Object Lock + lifecycle GC_COMMON_FILTER="-type f -name '*.mbs.gz.gpg'" case "$TYPE" in - full) + daily) find "{{ mariadb_backup_destination_dir_manager }}/daily" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_daily }} -delete 2>/dev/null || true {{ mariadb_backup_remote_exec }} find "{{ mariadb_backup_destination_dir_mariadb }}/daily" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_daily }} -delete 2>/dev/null || true;; - incremental) + hourly) find "{{ mariadb_backup_destination_dir_manager }}/hourly" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_hourly }} -delete 2>/dev/null || true {{ mariadb_backup_remote_exec }} find "{{ mariadb_backup_destination_dir_mariadb }}/hourly" $GC_COMMON_FILTER -mtime {{ mariadb_backup_retention_hourly }} -delete 2>/dev/null || true;; weekly) diff --git a/environments/kolla/roles/mariadb_backup/templates/mariadb-extract.sh.j2 b/environments/kolla/roles/mariadb_backup/templates/mariadb-extract.sh.j2 index a19f6efeb..69f0126f1 100644 --- a/environments/kolla/roles/mariadb_backup/templates/mariadb-extract.sh.j2 +++ b/environments/kolla/roles/mariadb_backup/templates/mariadb-extract.sh.j2 @@ -6,7 +6,7 @@ # Ansible variables at deploy time. set -euo pipefail -TYPE="${1:?usage: $(basename "$0") full|incremental|weekly|monthly}" +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 ------------------------ @@ -62,8 +62,8 @@ parse_daily_rel() { } case "$TYPE" in - full) srcdir=$(current_full_dir); rel=$(parse_daily_rel "$(basename "${srcdir:-x}")") ;; - incremental) srcdir=$(latest_incr_dir); rel=$(parse_daily_rel "$(basename "${srcdir:-x}")") ;; + 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 ;; From ecdbb4d28b7b2980f4a2857e63d602dc9f2c0856 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Fri, 3 Jul 2026 12:16:47 +0200 Subject: [PATCH 42/49] Fix typo --- .../kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 b/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 index d5505d622..2e966f2ba 100644 --- a/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 +++ b/environments/kolla/roles/mariadb_backup/templates/mariadb-backup.sh.j2 @@ -25,7 +25,7 @@ case "$TYPE" in 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 }}" ;; - hourk) + 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) From 191d99eaeb9c7867d85440b98d2a1f40f5013dba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Fri, 3 Jul 2026 14:20:26 +0200 Subject: [PATCH 43/49] update s3 credentials --- environments/kolla/configuration.yml | 2 +- environments/kolla/secrets.yml | 3158 +++++++++++++------------- 2 files changed, 1580 insertions(+), 1580 deletions(-) diff --git a/environments/kolla/configuration.yml b/environments/kolla/configuration.yml index a25085e99..db4ac132f 100644 --- a/environments/kolla/configuration.yml +++ b/environments/kolla/configuration.yml @@ -128,7 +128,7 @@ mariadb_backup_node: "testbed-node-0" mariadb_backup_s3_endpoint: "https://api.bfe2.teutostack.de:6780" mariadb_backup_s3_bucket: "backup-testbed" mariadb_backup_s3_prefix: "bfe2/" -mariadb_backup_retention_hourly: "3" +mariadb_backup_retention_hourly: 3 mariadb_backup_retention_daily: 7 mariadb_backup_retention_weekly: 28 mariadb_backup_retention_monthly: 365 diff --git a/environments/kolla/secrets.yml b/environments/kolla/secrets.yml index 4cb72f952..af3fdb147 100644 --- a/environments/kolla/secrets.yml +++ b/environments/kolla/secrets.yml @@ -1,1580 +1,1580 @@ $ANSIBLE_VAULT;1.1;AES256 -37643231333766653831383833633133396338306666616633643039363261336533373239356639 -3639393137653266373762393235353037643330393962360a393062663333376437626632666535 -39363534623635333637353261663338303164363033613766623964626331653463333135313036 -3865383135373366660a633634356435396231343638326163396362303061356439623039306238 -32663734336162323137663565376336376138303135643931626532643263663731356266373133 -65386138333963396563306339643663326435316338613566346432386235646135383264656561 -61333538613930303765386163313330613035636532313833656566323363366161643739663764 -64303039356363366331666232306132383236633965363236316666363237333036363466666463 -63613965623234383662336134653565336666636430623735363866343838343033646239343732 -34616338316162633338336265363365353335393866303138653466353563353431636233653833 -61646662346431336361306132323738633231626462633733353864363635623838353939336462 -33336666326237636234643461653563363163363439306265393062393662616165363762643561 -39643534383961323764626535383335623266616430336237616562663135316665373961323933 -38303334663239643732306663303437396234323466363464313066383965316665643935623766 -36383261636232646239616631353136356132323533393633623430316134363661383730373065 -63383665613932383865396564633866346135303762346466616133373138623764316332386239 -66383761313536633266336330303965616430653162306364366230623264313362633430383466 -33303732356430633031383064623563373666616632633031653264396561623863383632366363 -64643964363066663164343638633931666665353765366166643335626437353465363136346261 -35326535353239663761333833366164633232383737646363336364306435386634386137643136 -32366261616436643762343331393735626464646338376636636461373139363434316637386631 -64623738323464646637306538323434393537666231303234333932623966393733623462343936 -61326436356530666664363034343338333537303765343362626163396236613739613230336363 -30653165313463363833333465373535343564363163393464656236383462356337346530663066 -37663161383132323365323936313733303431363262616566386438626566306433613236616164 -39623335626261366438376462666230346537316335383735663832323662316239333661396365 -30323766333963333436353335356564376633316336316334313063656332373730666138666261 -31636336616164343634343164386439333331633431333562353039363636346466663433663033 -37643933663831343163633439343330646430613339353831663831636330663438623234643434 -31306438313265313165346534663331633238623466373835316333623033373831333439306234 -37313039306462636337313032663665313031346462323738643030643932323239663430643536 -38663436343834613732363434613535396261636233306162663631303236653731313765653863 -33626636393033363566383461306536363335383764633637323236313038326533323731613339 -63356436656361383539316436643633383739343638623632613364373664316163343834396538 -32616537376433653465613164346138336430323836333164306537346236396237623664613766 -66353033626463346266373761376631333339383334643661386335333131373732623265353735 -35623462663138613038633939613734623231333933366662333138316166366365643466323361 -32613465333063623261313539356335386164383232356334396330643034386633323432393835 -63336365383932656233306236336631623736393837653265353239313435333132353463376230 -33336561303361356633343532326663343534383432623164653966336631386661623530333037 -65353732303336303333393232386266306331346563323564653065626266346538653434393439 -61393633653334653832326363386533663662396366643063326332653938393561383134616364 -31373434383063393832326264613035613437326235373035653930656435353635666466623938 -32636561383762633635636462373231623762303863303435643362663762326561623131343639 -61623838346465343537636437336233333534633263346461353834386162346430393139353162 -63383230363864333266353430323930396539343463313739353963666362333462623431623563 -38666265303464303264313133323030343732616165633765393263386466346333373262323763 -35326362386361363734373731643132326265613966396364633132373530343638336461633662 -65386266316437386639666533353465396265343336383865383633336334616665663462393331 -32373134373930333165316339383762623562636138336561333431343338623665623932326464 -39666636353431666666333336376433623331646433636366306563616663653338306538326562 -64643332613965653337393235343238333132306437613931323931663663376238323537626662 -38646237366565386163303633343466623131343363383233356564306265363734666131303931 -32646439356561366630623763356132626563646438396365356362363136356436656332623338 -36376364346661306163613763663932383239386637613434653932363364326364643039303938 -66633139383738653533363534666164323066653934343066393938393766353238653739323761 -37663538623238616638306334326566636362336461376462316236646630366633373563336466 -38623162383230363263376662346235313366376134633864646636613838616364623934336465 -61646539643337656262643039393938373865646361313561376238303031316230333237386562 -66303264386265346265643764343939383832386435613839303736303266373065653537663232 -62613839616466356431336136356632363130363862633039663263653635316330613838633233 -30376232356434383737663164373561343364643263613864376331313639666537656465653263 -64666463313465643334383866613165623566303863643362303439346462306237323339356362 -37336432626461616233383765636231303233313061663536363234313966346261396262363639 -64643637343766653566373237306462656131356432386463316461306264373733353062643335 -32346462316164366130653033313532326363303434383036616637343533333436313934626661 -32313132316163616662323761633539353238323063663166623866303066653532396266336562 -65383533303539366461313030666439396563313032366663343162633766663638303531303132 -31336464353932623364373965366362626565353031356538633964623033663439653061626465 -63653335396536343138663361323231353536613265653735333031303335313033336463393263 -32353139323163316230313034313933313561303734306264656339343937636638626632316235 -61333338373338643230336439336335633366396238633837336232373733376231316364663934 -31396331393963363232626531363333616162316533336562306237343430666539663530396663 -62336164386439663937333063396230386432313664386636313434623434343130656433336432 -38383561623436626637393366333235656234636132326634643736333432323630363531386537 -64663562626661653263343063383133653438613562363963333636646330393232636231383839 -31383530356439383138383337333539356666613235386631393530343961653038646463616361 -63353836663563343231376536376465633933373066343134386130306638366261376634333466 -30323633313039646533313436323336396662656235313765646237373533646133383632346133 -36343762303965623762386166356364373236306335363963613037393333336536376635303665 -63383135353334383230643137363533333164303932353462326662653361643539363233306134 -34626632613839373464613732323865363039373636303237383564383531633632613530356661 -36643832363463613037316639313432396537386465373332363064313864623662333935616630 -37636133353661373936373564643631643939373137366335653461623833343666343062386435 -31623063383337663337356366393236323534303332366461626131643932363530393931383566 -39373566663863613933333330353734336262333530363463613533386538343765333731393736 -66643036383264396134613561373030623736343263303732383961653738333439393839326435 -39323338656263336566643834363966633065613533326233656239396632646165616366646636 -38616164316130323163323066623163633563396661623362396539353363363633323339666437 -35353836323162643565363566643465363762333336653435333830313033333534383062333436 -35343230366162376264623537396432383332343263346239386562333863643336633239303339 -62336539643734373564386431323766643232613761373535663336663039303939363363643466 -30613438313731343936613739366233323336306635636264356531306165313734393736333661 -32373138663964343037323064666531623939313662353966643530666331626338636364343536 -64396366613364303133643036613539333630636138363239373365666339383832636330636538 -36333139373463623062633237346562623931323132356638393065353862646261613362336166 -63653365663034656333396130343162663439636131656435643366646238336161656261346634 -61666332626237396665656233643532396439396366346135356566663736626634613931373730 -64633439393362633965316665646461656366383036323437333463643331653639366463616638 -35633862346338383139653436396164623230646438383136316364656537653561626439303365 -34616566353037383863323633396639613735386235346365386461306139633731646366333066 -32656664633362306638376538356139613661636464333163613137393033306232383038356233 -62333738376630326566613835396633353431383461646566646433656165616365613634353830 -64376530393631626537306666396435373563646439343933623365373835646238333039633832 -35613666303735303133386665366564323833653034353237656233366134373164353130363337 -34663862303562353332316134366334303434613764346435663137633031386138643039333066 -63303366356562393962373661653334353832656536643466343865663861623332396432346534 -36323138616237386536626630333639666564306435303639386163323932393166616265613064 -38633330656164636534633831356636343539303336306436393630333139386238386631356239 -31393838333933323061623731656635336430306334376437653263386634313137643438616137 -62376161373331393166306165623732346234336236363066656136333831656364623938393039 -32313431663430663361633732666133353863643132663238656134643931373461613166386463 -33653161646666386630346165313736356235333331366266666162323837653430636231656533 -35653934643634666534353264353131353162376664643730343332386364663366613065626234 -38386239663836333330316566333062333265363938613464343435386466383266646263643738 -32633139353066623262303933306333366336306630626138323531386664636366663865316532 -31396534653332663734613062316563306365656164383162393539363138643565343866336532 -64393963313937373566643630623163323738663465643037386664643938373662376332393965 -66316232616363373532653761393031376239373038366436343462376435343766376330626366 -63663832316635643639623866303263333433656134336662626433373262376164326233653262 -39323231316465363663306436376531303536656462643031323963303739663737626463623436 -34356336616136666661383831343836353961353062613539313664613265313965623835333464 -33343139656562333031333564623035333738303732356462306339373063636337613865383764 -62316362656366343862376565396536366364346366393839643362616434616363656533623065 -63653161346239343434333436326365303066393861376463393339396633353838313538333135 -33623031373938313765613237656232313565333564663665343439333661663463343238356463 -61306234666535343538316161636132633237373761646662383263393863313365623738343534 -39353438613235323935613362343234346238666164623339313132386663323666373962616639 -66386161616338376132396364386135343932643465623330653662343733653133383961373237 -64623936613833613539646137623564643937633063396432386330343664343164383532393363 -64346435353733636361373332353266613735393166643163353836653935363238613761333636 -64653036383561323133656164383933613138343262613638376138303833373461616261643362 -35356537656336376337653336646265336266373739663264613165323038643662653338313362 -36643062303037386438653165356366393961393866396361663364613133346665613537633866 -61323861626132386230326136326330393461316433656232633062376235636139333137316561 -61303638323532373636313465316466383639663665663464393736336534313337333433656537 -35646634373064646465663166653636616461366134643337303433323630363538393436363564 -61366238363635376533613430373535633737653138383163343061313237383366623761313332 -36353132363361303639306638376531303338646531336366356630333535613739303264363163 -30303364343233396562646635633665343238343230373335623633626333613539653262343162 -64636136373533353231376332393230396630643764343337656232663039386333373834323630 -66646461613264376134643131663132343964353831303232393162623432306336373332356666 -32626432323835663631393136633531613962326234643935643464616162373032343130353333 -66356265306637643239316536616264313963393634323631356261396237393937363266643930 -66353032353137373739623633633539373661646630616430643865363539623161633833316135 -32343564356366303764656333323235333030366662613737323038346565363033316262656237 -33336137383834303335643439643865626462373032373930666633656434656461666335343566 -34343564353162326537303430303139393263323739356636313666336233633233353436663766 -63346337343334343662656631363730333466353963383563333137353366373435396365643234 -65643163326334343065306366616535646464633038633363323433643162393563303365616235 -31373963336364346133636262373237373733303239326435663962323266363563323363633134 -62646538616137643166393831373137366161366631356534373633313038323432383766316162 -38376531346164393061343838356634393036343666633763636430363333663738646436313239 -38653038343931363165323861363964376433326238353639313330643834396135653336373236 -34353538643235616461323732313238633566666130623366653139636238343734643965303437 -65343661306538626165633565383365623261386531333436336262323037333731343738343935 -33323934396465623530613364643531386632633862623735643565316531336462636361383962 -64333432663164623761336564386433616438323163326664303533393034323863336233326636 -32323761343337336366393833323562616261633536663930623038326263353534626538653735 -34336232616463363164376166613434333436316263363465653532356530366131396236653364 -62393863323734326538633034366566633565313332316361613965643761313331633037376363 -35313631636533653233316539346266363834373964373738623532353232383935373936616461 -33353836636461613463623064656133336565633733613932373132323764303234393261353662 -36643535633230386133633963396339386333366563626165306166313566646430373439623062 -31383965383262666263323438326338363564386163613735323132663766663962623536633533 -35333136663664306137303566626631363764373330623938353732346236656533633238326538 -66353439363538383162663262633466656531316139313135613365616261356464373233363430 -31333462623637373931333964353938373134333232626263386539666565333831623466333237 -38396333656637383138366437613064333630323865626264393361643837633537306461613131 -64356430373266343339343363393530303161616437626130346564633761656435353133326535 -34326137316132343834393533643730633637363061646664653566626536366365383033663661 -30363833653834633030313136363831306461636131346662636261333036306361346563313035 -66633731633837623162626339326562393534653037373666636533636265376362313330643836 -34383837383434336564666536623336343335396135356135353538333637666139353163613631 -63333361633435333133616131383238323163376239303332383862303437346534623765626333 -64353366323966663035353361343365343435373338336433393761343966643734366634326561 -39346261653338333465363865306365653231326663336236303362316537386138653836363433 -33636637363061636630303131393236303362366330666335386136613135383733633866313735 -38323536616532313065343866343631383366373531616466303031356462356565363861313831 -33633636393561613639303232336165313766326265303635373239626236326238373237356665 -35666438333130366236383062393137663436643633376563383234633962326239316166653064 -32653031663432616366616537656434623765363630363239383663356131343633646162636565 -38303531646133366238313866396537646238346432656665353532663437333839323131373163 -34323239343533383635336335626638353130666563643937343065353635346165633932343334 -62336434323961396363623062363639623662313066616637386233373933613131353432623230 -31316365666366656465623132666137626338633732373939323035393861623661356431343734 -62373062656636666235383066636165346135323963623839646139613161396563663262626165 -66666230666538656564616638306632613731626237633732626339306437613563356431316661 -35396666613038343737366135326366393135646234656536366338356331656161336430333932 -65636637333336393664376361343831633138613739393234393633656364613863363130626232 -62306530343862306336613664353736613434336137633736366532303461653033353365303436 -63393236616339376534663132316239316238643138613330373234363762366238323936363234 -36303435646166383834356135363231313663376336396366356437396136323636346566623636 -66656233383565333636373536653261353634313663616337353562313639313331616462653733 -36613161613138313531343436326461353138353536626363656532383334383664353139613635 -63353964663739353935313234383130313435653665366266333831346430396365353933326664 -64653336306439376439616362326435343430626532383662356565643565313631383333313638 -62643535636261653235386631346533336434633161363230613431313432663063363664346434 -62616362346463613061313063666564663336656632326337316433393230343562643165363564 -65396135643835616166333463306434613431663537326537313331346231396634623032326532 -32303932653264343865633135386265396566616330396362616465376438323964333737656335 -32663861366233353138623664366535613666633865373933393361323062333464373933373738 -33633532373263623237376634353065313237343332303531313733613634373362646235653062 -36643833383732396637643062396561623938663233373830663931666238316362626364656566 -65386533333030306562336439383066653234303635393032653964316163393033633365623333 -31343139633738303565393533633061366636333432663766383761623362656434646362373464 -63636462326666383262363764643037663666373466306330386265636365353763653639343564 -35396463326464363736353666363537373562313066666330366366643135653938323136383961 -33643931383738623539656335623662616564376133343730356466326265636135396432313935 -37653266646139383065326562383438386334353663393231306337313535346431356231343662 -65313238386532623031663462303433346232353663386666313534623363346162336230323834 -35383534373332356633396538373337663465653366653732323937643836373432613737393036 -33663331616264666161306263613937666666636236663031336665633537353233643339303234 -38613666303538343131623964353738643531393866626565393563346234613030353235383936 -32333335333938303736363836383330346261326139333237626165653335366235633837323233 -63626431393062313338623234333961623263626635326363343065643066343861353266313364 -37616264326166376263613163383134336136396236353037633236326436313333666365396361 -33616534366364313537346136633430356435356337393532373238633138353636343132313735 -31373165333235323866656165333566643434343735333435613532633638623062656266346236 -63633539383832663766363330353965363836326536393730313530616264356638623435656333 -36363862666566363434363335643664343535386164626633623166383438303932373733373364 -34373531353736623239653238396430303938356136316533363035393834633736346464326162 -38353130356661383332666462356330653562663135653338653034376332616531316566353033 -38376338636262646166393464383162373465313366633138323336666632346434633963363735 -61633664646466613132316630646362313961313937353261353865636165666434393430366335 -64656462613434346662303030373730336163613566643538373136666338366563396161633137 -35336639343866303865643934333461626665343664616336333135636437643835663466383562 -38323636653836643335633064393938653330353634343863376264643638373538363965336631 -38383638366630303766633833386262343462663737653532373531646662386363333630393863 -37346364386564333064386464346565613432643665393230636565366439623934623530623239 -39343966366137383839623265333835303066626139356437653231643461663761313765383531 -64633739623731333063633935616332653033326465393038663938313037623164383239393361 -30646434333362366232616238663333663164626531306664343761383532316461383935656565 -35363931306162663632386463656339303364626433313433636234333034306433333162666339 -64343530613864363239303061353462323161633461613837326433366362376131646564306164 -33363166653031323662343732326331656138333238363732396633643530666631653864366131 -65663264313635633537303566613630323761376265353034356133633432376134333430373135 -37303031316636353063373531663965346462363536613261343561323232613861613365323735 -35376532313864336337636365306638356637393865333432366132363739373337663465306265 -66343038393430346531633566663135616166653961653534613131306431343530653234383566 -35373263346163396364333063646138363363333066313935656430383162386231333365333561 -30613831366639653962313135313938646232653932646431383739363034316232323833373962 -39386638386235303438613266393936346232663931333763633933663662333536633735653833 -66383666663335373837313966343730616337643065393364303831346164376138656638656464 -62363035343265393538613531656436633233663664366138396361313438623166306537373631 -62653739303739383365666461656138396539333065323863363665613266313933663766643561 -66353333333835303737623234303231396632656134356139353639663634656666343366353034 -36343036636432313464323363363931613031306161366538663037303538316236306435623739 -66383030353261353963356538326531623736373735343464656433656566373365333232666339 -34653537373263656563613131666462376239346262366562373531643764633564616164623435 -64323638313361346538386531666234393166376134643331653065613334616537373165626632 -36383161626664323965353762613839303935393935356234393033393338633036323562663033 -31623039626161396261373935353665383430323666376464646535396538396532343763353265 -38653738383064653935313332326462623734666137383338383466313264666130353634326338 -35663963646537383936666165633561326135366139366333353866633732343865636437306339 -36613435323165393161346166386137616164666232656664666535396537306136346361313036 -32356330303835373764383835326663316431303835393563393633383561613837626266393262 -32653433363136303133353862636130623962653439623566656633666534356532393236656439 -32376435663063616565346561366632663066383866346235653938396537623662306339356232 -33323462313133326130316235626532376237613661343531366131643864613936626434653731 -35616130373363613333326636396166363130383931373031373761373764636632356239303066 -30626332393738663561643862616138366430633263626230663635663938353631383862396130 -63313136653132353363656462663264323339393463346430313265396136346463306564623939 -38633563396161333263653265313237313437373737376261333037323230376564393165663635 -32383864363735636130663232636237653536656265396239343336386430383363333662636332 -63326636343939323633636539613463393864636432346663386366373332326639613864393863 -33656338623465356361636331653464353532303039316235643233656434353934633232363463 -30356361353232376163363935663762633065303934663038393639393161316139613830303963 -33623932643762623033373030636536306163323234646338626535353665623332353666396662 -30336334323133303566313437326636653830306564633838653039623738363932336538393139 -64336462343265623963303966363765383531393736626438323565666365616438373137653631 -33643133643866663430393836623937373837633337643263633935666162396239653230393336 -33396636323162343262376137333834353237633239623062373834646132633465323062353939 -62613436643965336331643632313637626139396465396138386361303930666166633432336465 -36336661386439636463666165303131363739646434636464626537373661626436643565343236 -63623632396238323333306366376138663662383231306361633832393035333264353138316532 -30356463383766663639386139636332656163623038376163383462623865646237343433376235 -63646664326665643937653961313039336538313931383438373332353433343235666233353138 -64353465303865663136353662323139313434363333363966383761346561303061646561333566 -62353662383731373366383235383931643534653239383832333161623633366434393061383630 -32326363396133323038363765633163613562343866353166316161386537626564333462383466 -66666434653761323830623630323063383636306466663464653130356237313266633332656464 -61623035633935323332393265626237623264653936303166323634303438633961383761633763 -39613162643635666262643538333933343835616162373135373264643462316662306235333430 -65303933616365333730623365363239626565653233663239633534383563343137383838646366 -38666363386339346437346164306633303961323339653636653830626437363330663630363436 -66646332646232616338346161653630363133353633366330666261353261343632656661616232 -65396232633238363834633338356664373337346632303439386235313932373438633437303463 -64383630623238643239616231346232313132363064666163363133356161343935343338353931 -31633631633162616239653036656130363436663863303233386566336639366338353738316436 -31646233633566653531336332356664646436323733653037626436303632383634303066383736 -33363663636166373535316265336433633036653130333365363562636138636533316138333839 -39633831353038353437396665633632636262666663643239326465626533313766613730396136 -61303031623535303065643565306231636163363237336532333937303761386237323431343836 -33633461346133646634363230353735366136323937323964323333353435613538343635613433 -63393166396163626364386137313066363733333965373361356562343336613839356639373039 -33396161663065623164623136626635663463343536356233626336316130373962343062343233 -37303661666330343363346163393030323166386430353461643566636439643762343764626638 -30383061376138383564643934333766333631323766643465656265316439643433653532343637 -66326463383035366366373732396366646632313265623161313761663663316432623365373333 -64353435643038623064303561323336326538383235363264336334326666373038353238306130 -30323539643565303830383035373138306662353836653831363531363765623837306366363339 -35613337646638306132356261323666346139643166336561636463366163653734633238363930 -65376430363031636435356637643639356631383866303038353432336465306463663337333337 -35613838323536373733373866646531623132323966303831613239613735363162633262356536 -31373438353866353332336661366434393461366562653036336433346337646664353537336665 -32373165326238613566346365616438356336626438373034383637343666343665393462633562 -66333737366263326363323738383133376661363666343032633236326365643062343862633633 -31336664613636306535326366643335633763646437623465336465656565336333346362663838 -62356332623734393035316561353832366564373933353464376138383237656234643837373535 -64666533666461653030376436616234363834623630366435343633646431326137666461386432 -63363437623039663064353535663234323230343733356562663231646234626531336662313133 -61636564656437623666336264363863303637666632613334383262663833663762323062633561 -30383235633938333763616137613431386461666564343265663263373131623033323666363239 -64386139656633353031383937623230636531313462323362653634343161333438373964366438 -35363931303633353561626162363238623738633634353033656561393538386435336331326538 -62613836663131396536653336623336316362373031356664343533373464353961633130373732 -63616166653834343330663934646266373336333038383732396362333364663961346231653331 -36303232653139633063396361313932626630633530643464653263643039373838656163386637 -38323064636635633534346336653439383730383564373364363539626633323364343130393063 -64343764383861303535393838313865313465663061373638616565326363303562353062633038 -35393036306533363730626137386539373862373835313061343631666532346131633161303461 -36353862613763303730303265343662376264356263633234353761343638643237626165323063 -63323836366261663239316134646563666361663165613061343738303633393730643065353938 -38323164626561323434623135383962303763623764616630316332623938636361633431666430 -63353261303730353837653730386538393730613435346665313662393561303761326638316632 -37663335383566613931653633343562343662333363353936613933393262653161316164336532 -62353134313238663133376639386263313137633839303065643361376431323863376664333331 -32313239636332623566356534626135316239626163643064346465303134613330306230313932 -34386636323532356536643664356135616230333363366439346161386463393732373964636164 -33616530323436316462373535363764633865666564313166613837346537333431346664643561 -66623638653565306334616439663437373837326565626631626164636339633732383834326231 -62323361373034306361323634373563666664663735363731353835343361323830633863623636 -65613131613838336566396563383962306337636265383761353938663736336231373330383463 -39643133383537363436383262386130643366343139376639373461626334663230373630313966 -38376565613632616234613737643931356631623739643434393263303232366436353437383232 -37363035666161326566373263346566646164333166366439613832363331356566316239326264 -61353032373961343737643764623864303133626235336566626430366264336263323864643338 -36336339623665643364373466633964376463313465653463616531643261346561316334346132 -36646634336431373234333233356362383865393430303664626330376236383733313438313766 -33663937386330376135613836643764623863306533636539353365383232616439643030343366 -35303932646132363064393162336330663937633163643162616361383263366661663265363833 -61376330353235313231383536393632383938393463393138646439613562313964316638643338 -38396261633838386633313634633339303330363234613437323835306262653630313362633166 -30613535633938343862326662373063383162613161326637366331383064306463633564323438 -64323536356561356565636331353130363565353531366234366537353263363133313064363732 -66643761303633653766336239386134633663346563306138373931326661393630626339613937 -62383336393464393531343037666663643066313239383833656462386164643764316661343239 -34356630316262313439303364336663653266363838363637616139303166336264393566356338 -63373532303463383633613435636131336637343733353165383934333934316263346438326263 -32666233313531616534376435636133383131303932623036613465653237636433333535666630 -64663164393630666366343031313435393461626137346564356665386536333864376165333862 -37343535663166393866376161393865316562313337366364303333663939373836303431626238 -66353834646639353335393333666634656431613664303034353337393933643464663366323238 -62313839306362613938346563356539613630316335303664616530383861326136323961363637 -61653039353365323631393932376462663234306634393633616638383832653732386537623861 -63346138346466376336616532633939393736643232626439636537653133313834356365666235 -61343361376463353936326638383439643862303736386432643932373835316233376165333465 -39336532386636333166336463366330653761656635616634363162383765303761386365396666 -62656237616239316133393236313039633765376438373236306561376636303133333130396566 -64346265396666353132636538623537623639663161346235663861633832363939393236323836 -31613335653931643432643934636263633561316366346361336165643964626232323061346633 -33366535633936333562626566313662353135313738613934303532323066643534323366316461 -36373166383332373266616366333834343039633466623631373333393939316230303761363134 -61303666343931353031643830376162353437613839386439353939333439366566656233306562 -37373332333666656663623365643131393036303032313164346661393465396364376234393563 -65356630663032636661646537373463613438306439383761333766316666373833636339653361 -32353165373839316137303937643765306662316235626131323166393831373931616635396636 -61643737613536636532303135326263613132323263313933636537303133346138616363643736 -31313137613763353732336161323336646161633362653935313762376339613335653465346130 -63623863396636616431376133633239366235336665336561333731303230636131613130623466 -38346130336162373332386364393838633561386436663932333038663733343032613436366562 -30366534376263333536656336396162373962323963313863663566653531306563356332346661 -38366163666136373437613366386661653236613437653632333166613463393434666361346331 -61373761633763616234383336386438333264316563313032666237343238346562396136326565 -62336466366266666665376339323965356536366366653265306462336564306664636231356262 -30643639623132626332613139376264386362636237613138636262353461653938353035363636 -62633039393766373262643435623764623439346135663537316565376664316636333264663338 -31316362346166366530636537323564313462633534613964396562643039366132306330636638 -34303832303131373136343465656336366564613831333531333862363538633833326636373964 -63336463323738366337343365613333373637333136663566643665366236333830393834653965 -30633563646137613737303264343165386235333638613931356538343963613137396133373230 -36616138636132373437613735303931326261353730363366663139666635666338666633643161 -39636361346333616636333233363165656561326235643733326531393333313535333639346137 -39656333633533353363313730653436353862353339383864663431396335383638636461653536 -30623236336432383263363366633438643338346266383137313333323766306266303135663137 -34376163663736613833376362636561306537643764623238313331663039353663393137653838 -62303738653330626334316539643536623866613535333435323237343764386665323261356534 -61396164376134616339376237393262653637303663353461373230663466653939623262646165 -32663566353835613265613866373964626266333736313234393236343436393033333731303537 -35623465653639653561383666386634313638646563636235326432306363383839313334663037 -36393766373532663039663133383734363663326139336464386463336635653633343532633465 -64356431366136313139323165356262666533623465646437623539333863333334663666626231 -34633430396432373363313636626334373464656237316565623666613834333363663139383535 -37353330643638306636623362653833613265653163373466306165363866663937623832653939 -61646431373561626138363738353639393364383335646137333436653730313034303564623766 -66373135636539633461393534396439336465613937643965326433356139396137396131343236 -66346162666462333634366433373135356665346361666365336463633266613838346639396363 -62393935616634626233343064333665643963316230316238306330626531636432366332356637 -62666230646436633637616433333636613265633138313062336132373732626161333966633931 -36343534653163306538663761663030626462363733636637363765393932646162323331346565 -62346535663465313135303063666463383161346362633466313736363965623934623637666534 -63353237346563323264666464346638373939353932626465303839623865626636316130656130 -38643261653963323931303330396264646438646537623434376337303937663630356534326632 -39373439613231663265663062323761323831306666316135303037313531336435386261363632 -64323430336234643134356139626238353032636463393361396534653138386663346134626235 -33343664626635313934313034613630643836643763313466313766323765346666396462373038 -64376233633262393233346239313239363064383134303134613635623964313762666339333464 -31373062616538353234306238613866303563656262373930396335353339633735643261653162 -30656137623439343161633538326537353561323335666236323833616332653139386231313132 -62343033353337306664363131653431643963386561313832646637353663376535663164336565 -35303339353563346264656535353434616239656565303565383231636363336433646532343234 -33613039393234626634663732333930356531333264653461623835356336373032656135623731 -61366539383233633935656439353536383738663531353063323039383738383364336130626363 -38653830366636663966633537666364336439393563623561333666346265363661616239613064 -34313136643665656539623265363033316464386564393132323239663933616236653966306537 -38306138303830356334653630633761373766326262663031313732366665333764643533306366 -31306531343730333433356234383333393437346236343863663132353033386266303666396434 -62646562643439356130333435363231316261313537376430343930643164353036383139333837 -39366332343132353839383134636565353131623733366165633237356533333737326238313763 -30326639323361323763663239363034356563353661306632353532316431623263646433353937 -31623836373665666539616136633933306635336261306430643464336162393131313938306433 -34626130626631626465653964323534376138313166326663313761616166386336623636396230 -38306339313363643664366430663734356336616562646162646231633163663936636435373438 -35366662356630656637306336313232333031353139396134383961653264646363366333363966 -31376436326333343037643038306464626566366663346661633130633161306164303635636335 -35396638653437376662373866323234303161343362366139386631636564343462393832663338 -64363033303863636134303436666230336637303733363331343030306165363332366663383263 -32623530383061653830323938616437663063393866643361646431343038376232653032623863 -61313334656163316163313430346666393035646165633266616165336430653330343437376563 -62393839306330643831313964313730646238346162373531303030383633383535383534303465 -39633435333932623263633632393837643036303430333033393237363139313631343830326632 -64326432356535373131386437366663306236646265633634313130366330666263343934323230 -62323235643062656332326664666639666135663964346663626266306138343533623031343732 -64663063613235653237306465306132313934666563636539303533363333656237386532633062 -64616331366239393665633465626232353433623263623930313033373734646666623632306464 -61336238313863653530303631613232613965646166356630383833356535303331666530356166 -65666661643161373431346639323839616264623237653466373665383366346239363136656337 -63323730626165353239653638336239623135386465323534336135316462613439333937306134 -35313361323931653737396564313037303731313030646561613831336334646663373066343832 -65653739333561323337396637616438376239653433336238313863613763616163303062366332 -64646533316235633931653264616136323736326165353163643734366333633565656333633735 -35326536613835373134333336383031363162393136646666346236323236383931393439383362 -32326666663635316332343862306166633666666137346338336336346235383732353132336132 -39666563626133393061343566626132336335353838386564333736363263323636326639643736 -64396237313730333639383161303731653136666234333933653632363061633138386264646539 -32623863616365383536643463396635633362396131643434343562343734643362326139393864 -35373762643262623236393664323531643362633334616536653262333536303838316631356539 -39666133343061373061393634313465306264353236323733346434393961666666393037353231 -34663930626361623665653036343333306431313832633537643433343161313835303439643233 -36636637613035633662333461306464643562366566313732643836646566613533396261313362 -63613063663030616638663533636565353761613432353032356635646434353766386266383062 -36613333623835376363326235303065343261656331353133393763636331613836633666643663 -35316132316261623665393562633136313364646530333461316131613734346538653165333730 -64616634633163396563653435383534643535393430323166633265626461303264333133373766 -39383530633961346131303638363861636233383464303965386265636633623065663365306661 -37393932616161313032336335623364656139313133656566383030623630343766343663346135 -66643463343832623864373935663234323364316136303565613665396436633339613662626234 -34633932633364616535306231353966306132346266653361366663366165303965326430393831 -37393838396637396334336666633332346663373832663566653463316333323066636633383966 -66313165666330653964366135616533356363356161633937623930393464626366363733633436 -34373263303839653064633539643438653032306537666564623134303133653038613131383832 -33663034323733353530336537636366373539663137343965646331623163643164366364656137 -39303839363465616138636332613563323132666233643531656332636338356466656361613061 -61663130316465306266313336313237653838356134643764333337303163643230386563383166 -38336364396161373631396339366136336436333163376161323731386363316661323637383030 -37346565653138363133323762656636353630343264316436633535643932353136663730383532 -38383761636539383834663232626233383833326461383463376132613432616239353430633865 -62663532373932393465646339656135616137326234363566666237656235626634353131613739 -66623734373336323633653337346165353765633933363665646235313533636566323861653562 -37626661303331646234393435356361363164353735646430643932343062303139656533383432 -32333031646630616365326461363363393961323235313935333266646262363238333163333034 -37363362323734313266653438363432393733323634393538346537353736396364633230643934 -32313839313866313330316533393135346535613664623666333735396336353961356337373338 -35653762393462356562616434616563336330633462383664646439363161386265656131303738 -31336533656131393138356339316631666461616138346562333039386539656631613066663331 -62333234343833613730383633346464323933323832623232646531663139346334366139353365 -34306433353531306232366137303836626262396263353163376235386433393037656161333633 -30616232313435303534303765313834373262653862366164613762383864636465313363303831 -65313465656431373834326236336530636265663637643838303234623935633461613466343562 -37313664343636393638363466323730636561666639333266396136323438656631646361323739 -32373662646236366530376362353365346130393937323564343166626434323431393830636236 -64383937376661643534393266646264316434666530396433663538656566663762343131353630 -64366332383133326364656337313265326539363433306433353362333731303163646436326265 -35623737623238643935666432663464616362343934373666356163613932353265366534653065 -64326137343132613465343934663236626437636431336234663834303535616364613139373832 -30623634663234643839656161333265643032363432663338343964373031346134323264336535 -31316433363839393831343935663562363262343435336666313262363034303437663534643866 -39306261613962353938303866626336653632366461663337666365663661656666633761353164 -33306265373633666465383930323433333733386164316365396464626662633966636633346165 -31616462383836373634323363663732613062343435633165633631323531663437353736326362 -30343462663139353534363138623862333337363264613664393938653262346133363331366538 -37386330623636303739333737376136656539633562393630653030353030333239643232663861 -38393533333765373561353564643561313764323739623161366261353562363236363432313765 -34333064303835316462396637306530303936386462396534656561326332333834363365613664 -31323930643431343435343363383132366631396563383263353936393938353739353934363261 -66346633356634316562393538316564623264616632366339633666353461366538646537303466 -30626362393839343162633862353032623065303137396462396564626666323563666531653034 -32313339626266373431343533393262613637363434393366313062366534333366646266303237 -33336665663039623063363261623030316530626130303832386532653336646333303363386666 -64353437386436373534353433393930306532373734653137346132653635666430353930633261 -39373365663630656365626535346263333165643733636134656130323530323330336238643234 -34633631616561393032633435383663346439386639323835323361626362343937616437613263 -33613839326133393065383366346364656564633964316130343161366562393130663462383337 -61666362623338383166663534636265653762613232613433646138386134333233353736663663 -31353766373563343033643265313663323538646664363731396164373937346338356234626232 -31616563383137393264323465303435623236623736333037643462373438633337396266376665 -66326363386534343637333631633862383732656430303938653632333437393566393962383137 -63356232323532323633663532356630383963613838333835663862316631626666376566393336 -61623466363735343335323861643634366633653161323963313630303661613563333265313231 -63396439353832653166633566383733616532666361646662303232656364316465613931386636 -33623765383062623335656239386239376366636237333339633665363230313734643665323138 -34366661333730343033353433383933303662323361346165336666303065396138346364623931 -33313832376665316264313238646462626138393034656237613561353764356362393366633262 -33646232616362656438613732633066346436313435636637313137343335353939353736333361 -61393766656231383235333734616566383462616339663366363733366665343465663530353338 -65373037313436666536303031666539303831633466336466326333356561323865316562346666 -62356631316330373761323061353232623032613039343935333939353562666335646562393766 -64396633613933373738383136353934663865356133653164343461303265326366656139396464 -34336234323561366466386534343438393261663165643338343365663839306438356533623566 -37326432653237653233626631353465323562396164623161323733313130323965333831366237 -39323435346164363432383832663136306132393663306132366366366561326564646163326537 -62613036656164313632613865303138623764353062353034333539653838636261353163396366 -36313163356630623137656233613331626561646333323338646333396131663031303235303861 -64633739303831343531646334613732663838373938646263343033653461643862336664343437 -33343566343866646365656435336133626437353537386133376537373730653631643665666364 -63316331653561376130636135313364346635373665633861623430386331376161656365613038 -34626232336630383865623438626435653033316432303563383833353265636466316630333761 -37303434653838383239383339663032313433363630613165313239326233613830396261653332 -39646162316263383530326539343433363330356136396333383663336464393364393561373336 -35323365633631323836613332646534653963343865303465633131316364393832393538663363 -61333631626330326138616165326530343866633230356361323938623837666461383939353861 -33653432623635356434383964616436626237356437656533666639373661303665346663366439 -38643336653437626566373931613336396666356236313034633065366664646463313330313338 -62353032393735666430643365396334353939333532633430613165303764323737643531636638 -33363363323962633763623963623335323430336338333366623765383265626564386564656531 -33356433616331633331653262646136386664633466326136376430646439393234613336383038 -33336630333665356532633135386136386265343534393637666462386166386563656164646665 -66306531316632373864303231383235623066386661313962636661353036616265633433646636 -38363265336264393064313462663131613439643030346534306364343364363336336435343835 -32313961323731363365386666613264613839393933356232613734343737346431336230333830 -37393538623065656238366237326333393031356635666663636334353131616366366637363364 -32353832363935343333323537303563323035663734323232343664363733623732363163616662 -64313730633437373438623633326432643135633933623631623530353232316633373862633939 -32376437373361353731356632643764646630366562666666303464386431626136323265323966 -32663638613535353839386131663337326366636434643635353863316166643034343731313434 -63386464643131636634333831623261313437313731376566393130343534366139383363386634 -65346339356236326533336430623033353264396264333530396164633936383131633035633330 -63396231656137643964653031323634363235336239373632666633333830373339346333363962 -36353633353761386563363131616166303761323433366434333435613330613732646632316530 -33396336323831303135353562323931346162316132346231333233396462326562353536326435 -38303962363932376639376264356538653633373830343434323732366339653130623031326635 -61353936653730336231376364353438356438373263316663343735313133656238383137646239 -65626164343761396639643336313863356539396333633763323131616361646630356438336435 -64363761396638373234326461623831643563393461316630343766333533623238616237336131 -35376331663138333463363232306336363839663865396565326434353565363230653466613332 -65333439346533343336313938666330393564303662366632366661303666656664633565313139 -33366135373864653730646430656366636633313365376464393136376564636466383737363464 -31323438343366373866386634346236656166646161373731356336636333623064306365386537 -39613633316233393835316464623037346139613534383862313939633734356434343161663566 -61346562623962663739346636636635353665383033613237323762396637373631343936333265 -31613330303235396332643439653665303137386338353135633631393465346165613366643030 -32666136303661363938316133333164336361326361623561373634636564313661383937646465 -38393330343730626461623565616262626638373036346164643236376235373761383361373739 -30323233376339633966396537336262623630656539323731623839363465623532346530333361 -30386563326664363039313336613339353634306464653830623838326338383733373138373864 -38633063663265373332363364386634376338326231663831333931643935386162623863646566 -66633362366637336263656439646131616330313339663538393861636232333161343539626264 -34313439616135623037376165656330396634303739333462333130343462313333613437383131 -31626230363134386166366366626661343634396661373434633739623235623630656464303964 -30346630663932613632623565636630333366666364356138373037343562373665663834666637 -31376634373563653037373338313862306333326638356466636330346438353335356132333930 -61623632346364643137636134316666323865343664363636663862383661313237353839663936 -62666336633132313632306331343863326631616133363237663539616265306664363830646363 -66393932346163333736633839343165356539376431616465363563653536396164303862663330 -66643431303066613139346439366566343335383361383663633936653135666635333463626638 -37653838656265386465363162386535663231656533396539386665316464363838643033326464 -30313162663561656638323232343866613637616334633164396535343731623439333834343966 -35646261353834366263613230353463306638396665353339663932626163633462393430316236 -62633262353733653762343966343537613136633164363933396361323934366336656431313065 -38373533653738653666306263313765303265333938316433386131346534323162356337336263 -30333236396162656566366539353039643362343561326266323761303431626131336335646537 -31303366346465363633636364363932373062633164623636363265373132636262323165326264 -38336665373038633965653234323362376236333464373766356462623835636466316365633632 -64653866323038666565303730613137613230613232663562656633323330643238303666363462 -37316432643465633962303938643937343134353866396631383232343532656563353438333135 -37316437333965613631643535333264323033313532643233336635373562376330386163663632 -38356234636532633437363136343463366533343332663636653765663064653238376363623935 -37633539383365626439633361666133396631393531323863306336386439346164643939353737 -37346335353433303932656535626331343766353035313039363938353534613465663631376666 -61613765326263386134623439353064626135353538366334393234613237316436663933633631 -31333230646632336165633536636139393066333363363263333731613235383462343635396532 -61373537613363666431313561356134396634613532356165633532613135323434623739613930 -30393263303765653334396662626164333131633037643737373463303832393535643133616234 -62383762663561386264343262323766653864343532306662373937333235373733303434346239 -61653965303230363838373263356333303365313031363933346564626533383231646162353437 -34666132643038663733306330656133666233613065313430356366363366663663613734383232 -30396437323234623939616238306131633739653733313938303138613232346436656263633134 -33633730366134333033663237383239396365623832333062316630656333633030383362343230 -63393731366339343036306362353265626636653063633832626463656238356135653335343165 -61636331333731613735396538656431316461303262613933363836353036613762666531343461 -65353539656663373261306532616131643033383361306363623736346230376135666562373430 -32333137376538383438323833623739333265326161643862386536656366363835363865313362 -33633138376634393431646233373065333331623633326236666138313062396338336165646130 -35656461393938343362613130653834373130353765646562353030616132326435643461316433 -61373538373366373664643036626338633064633064646332363961323936353461393733363132 -30646261613633376565386133633062363831643962363064333638396334646333356436643065 -34363738633234393365626532323065396438633133623433666333343036633233653761666534 -33353236626666666239386637643165343439303739303566323839343037643638393532353964 -35666262316634636361393531656435373932633862363664643466313862626431666630626466 -62323536623534393164383962373537323438616236643566653032633561653839656436626131 -65316635366238653562373264626135353162623338313037373239376132666432356366666236 -34363865656165346264386430303766366161376565356635626566636538633830386437623934 -63366538666631336535363062346433633238663135363034346233323665653138646666343632 -61383663303466353239353732633332363639373437363731383366646535636337623765633037 -37623262343262353539616131623330343031353562653638656662636264653232323766373865 -37663537613635366230383331326131376565636361316238623033656233623562386334333839 -36343239303865383733386461663066623232626364633361366137313562376330333435326233 -37376265316535616162613033373334346130323938346434656166656639386538666533386638 -30323335386138323964333461393533323265353965363538303463623534336639646362333838 -62643863613761336130383739353764303865323865633239396131386666643631633532643162 -64353336323837323462633433373663336535613965333531653961636635373136356330353162 -37393663653562383734326661303162303366346338383635366232383438306164643633386530 -63326535363036353666343464643230656139616331613438373835303437343935343134346265 -31303037383166666337636161653363346437623832633663633663396337666261663366643032 -62643834396139616162643630663638646362313238313333323739373866653432303362626539 -38623261373936656438663331303564356539343966663339626364663064313538393061373734 -63653466316635613962663664366431646439383766353433326530376632306135313637346631 -32313362623338623835623633386436353332373761313762353264303339313631653162636435 -31373235376136356436653666363336656561373433393639346364633262623738373339653065 -35373063393666633263656539396339613163323933633466653937326538393565613132666665 -39363131636164613461646463613734343764656133626337616531386631666161313230326564 -30346663343061346436373436656336353564656561313035653661626165626635633533373738 -30386236616337323530663562343338363733306433653939636366343831376430646434616536 -32623334393264303938323235386565383835653433376663666563613038386136613731316331 -33393166626438313539363566393430636439303365336138613535383932323162366161303330 -37393538366461643961666436653536353435323832636532613734643833356130626132346266 -33626639353561323834643565366335333863346439643335663635393539393835356434353432 -38386235646231383939343136343338323066653666656136396635316430323366633663633234 -62366332653431643162393134363561333065316666336236376165653366613539323564393339 -63343939326133383634393766393939326530396231386465303265303233346331633038313937 -30363039386531373533393732643463376634323930313238363265633334343334313765383766 -32663530633837306664343735396238653137623234303338343065396461393133656464376333 -63323565626664646561653664666633336536356166383239376265393361346436626462363564 -64666638366332646164333336316466376532313335666232353136343166616139633430353335 -34393235643332616461343066643562313035376130326230613061643932393038346464373765 -65656434663339373338653431653434353137376639356437363764343932366233316262666664 -39353934383230336462663030623663343566656332653035393162663466313364653435373436 -34623164366637353837653362666638643062373565633365383466623333366631393737643266 -33336232353936643164326165663164633361303935396433386533626332373737313234636434 -62323033663763353836373665653133376331306231313236623035626138643638316663353330 -37333431333538356234346433636637666637663362626331333261386532666137613863353230 -64643463386636336265663637666564386264633631666561633366326665636337366266663039 -64353433396365653036626462313038396166373339326431653764353730383665646232346164 -35396636336238363134336532396130663735663338363939373563623063336235333164323730 -34646638373937626535613965376337386663353234623736373537633031636464363935323435 -63316666653131376665626532643161653762393661633938666331633438376635633439333161 -37343363643764376166353737363261393533363934663338383131363063363339663339333938 -33383132313233616337316537636138333061393735343335643137356232303961376237356463 -38303535396133323464623131393439623566646432323632663365633862323538393131356236 -35323361653061616335626564313737393630653264623664373030303966613938333366383862 -63393831323036646533323932323161366566326666653833313431663666303262306234333365 -62393839626563363166626363316334353735343138313935623264346664613163333631636134 -62636636323362316262336432653334333630313761333437653666343062313563366535313238 -66333361323030373536366231306338323638376664613533623532356631383738326633383362 -63396632613930333835336664363433633035363665643633383163333661383933346536343134 -35393561383966313462663335353564346163323733333765383831313463373765363835666335 -36306635383639323061363335373233333462336331333164373333396361393337363163653765 -32616430383435333131386434623461313938346330316333393239323561656166616464643466 -64393766396239373032646232313434393765306261333961616664663237343531303535343266 -62356335633465303836636239313931393831333730366336313937383839356166623531306230 -64323333636461646536613562376238373339343434376236346232653035313566353462326665 -62363133383430626438616436666535303538336335613466383361366130316332333462383436 -34663663633761616435613032386565623664346564363365343766643634386439393163366561 -31323635366565326465346637383866363535303262356433326230626639393364373765323032 -64653263643765643365393137356636626138623432353438346264376136383863623362613663 -31366236313062346236363863393832643262396238373962626132363039353962336634373866 -37373831383933663664666164613836663739343337366535653062346265393966356430306231 -34613362373136353363346361313333653234373264326231393861366536383935666236636631 -36636330636464356366616231633265333962376534366465613865336439313239643464346161 -61323632376232396461343036633930613833376262653462303762613832336134323763323436 -63386537303964646263396534353964383866653563643034396662623835303636393862396366 -32623963663736646665643161393233373630653164656564383135316339663333396235653932 -63346430373037363834383734373236353361626536613936636236643833363332613262636337 -62323032363235666363356132316630626464613439663663316362643266383837313264646530 -38633237373665363332646334646265323665376264313765393561303432326436383730616131 -39613832396562363065643637623334653733386634386530326565363338653639636435386438 -61396363356330616464646134326531653562346133383339326434303164613261336339313235 -34666633316533616136306330653639346165323332396433306261356136623932626263613433 -32346334363636343961393839663961316537316263376138373030343265363332333039623163 -65306266303563656532346232393330623938636165363366636437626265303438353937663930 -37386665356237393939613064323735616366623636393233386366376239633435633136613364 -33393034636361333835326266393539303837636236396564306139653938393361623730313236 -62363330316535326161653134393630393934313634643335396165306264376434343262613764 -65316331616237316232613332306662323766336333396535363165336532363030393235633130 -66666665353738373833366535373335343865306637383431376438653533363239636630323634 -32396435333166633334343237613633316634363430333863353063616264373830343161383734 -62636338646639613635336132313931343836366233386566363834363863633833633036316130 -62663966656566386330656638623663653435633939643263393833336261643234373534386562 -63333361643463636136313661353564643066366631396234313933623230383962336539303262 -35663461313231323161363132366337313765393662353266366164653339343339633363306362 -39316565363863656662303034323361656261326331313464313364326561376261323539343464 -37656161336666633866663734633537316562336534636438316263396265613839636438656430 -39373861623139346161373339356331303961623433386433386632346363653562653930306264 -32336261333338653561633861306334383631376237386463623031373232366638373539393533 -39333461636331643563326466313036323838333136326537396364366338303661663939373066 -34343334346435316331613930353532363136373232663234636366353962626265356164333038 -38383235643264613636383861316365303730363663633430363335333465386438373666386336 -62623231326235363833613535323765336337646431333733396439666366613762306538623730 -66656365613737363962626630613230376366313432323933363239346363333766333632383031 -62366364663831623836363563396663646439623238656336316136616338306232363534366333 -63663861346663333764306663363038613263633561376162653738616536306461613863323064 -34356463353737666438326665343135633337353534626534663831346230666564643031373334 -33356363343037613439383539383539326331373238333332666563376131303864663766393764 -65626434316337366135306466346633623030343661303830666235396537323032633862663439 -39346531386637316138396137613930666431306130636237336139303133663630303334633436 -37376335326464383537323334633536633565653837366166623034366333613238363663323363 -32363636646432316365313634636235353733383161633666303334373833363164653861313132 -33646161633665383731326464373630383366626665646162643332626331613364643538613637 -61643334346437366534613035363737616231376261336231623039376437353561353961313236 -35653866366665356662646535333339376336303034373763383430623638643637666238643939 -62326164393833396365623365383134383031383437656365653839356462656231663431313661 -66343139336665343963623036336266346231666638636664663538353033656362646437656531 -61373035323631666665633933326236373739316161636639306633356662656132333830343066 -32366236663661393430383339313230373265663138366235386366633963336239633331633330 -37633737353239643462653535656635343962663262653737643537303736653339326430383839 -63323139663636666663383532343463386431663838326162373866373131376634663564663733 -36613263336537306163383065643265623038626535376437393532313062653832663833333339 -66363838623863333262316261613862343236346163303965626564663935373962386633373763 -30343766646136633233376463343764376266303630346265613763626534626539623338383936 -32613363646637376132663533326362323439613964386234356633336633663533306666643934 -37346237616534316638633636303831353863626237386361356538653064363166393634383663 -61346264376162363661383338636364353630396663656237333734613639343366323164356132 -34636163633737336339356563383133363139623131636564336265616432643830633262663033 -36333363613538633131376665396663636665306430373761316166313230393232363431303463 -35613236303737653938333033323932373263613435343234613438333933303766333931396333 -33316464663830623537386237393061663466613238393361306335306663333361346533396662 -37633962373565313166616336316635353738393639393165633330633730623235366131316563 -39366561366237343730303437656563393536343036636135383538346537316262633236333362 -35353562333364316561663336383939663466643233336665383436313239303536343062383936 -34333038636562613763303961613865373364343334303763323161323131393936613762363130 -33373636326536343930366432383931383961393234313834343032653766363365346362393137 -31383862343930633837353230376665326632343131393737626139376366386537363535393239 -39313464613037393433363865633431626538366634323935373761313634343161643339653663 -37643763346431666639356231383165386162613734633662356337333164613237626162383737 -63386532383764363836396230633766653631313837616562333632666534636265353631363663 -34356235643730363261303661353564356163623061383430633338343466636665653863646163 -37393532363534373764616262313963343061333733326330353532376664373434623562616664 -35663663373139313264626632643034616236646337306137353930616438303932653436376261 -35363761333565323731613561316462626466396530636565343436356130386130383239666539 -33343063353632396235646638663830303866336435323630663533623362306132306337396232 -38643237643762356433333566613038376536623736616636333464336638633864363535323333 -32656435316531383562343538626661666465313331333035363739376664653661373164393430 -61643364376164356630333736353865313561323461316461353731393039653236653537626332 -32383937323963333738663234643266373261303565663464323331396532623162333038316465 -62663432623764643638666533616566343739653430363762656332366439326538356330383135 -65313630646430363138663464316465346132313931363333386233336130356562336535343434 -37643439663632326261643132366438633736306332393034633965616136383331623936336439 -32616263656639646337313331666563656635653037643632663462336430326230616232663731 -38633732653036653766616334633534363962333363633631386236333631353363626332323435 -32323631353832376162323238346661373464613132313939323362636165383138633838306163 -33303537643462626238363835373435303832376231376130346330663237663834363662343736 -31373532363130613139623735663461356430323138366265363264343866396538323836393164 -33363937396331643233393639646535383636346136326235613964656439306562333232353265 -34313134313431326363373332363033363866653866366232663330313261313966663362303066 -62646239626331613836306631303130323237343039353131343334373539343765666366323630 -39336335393332656364343564653239393836613864316639306139623333376333376338303161 -38666230313638656633333833623031346438336465353062363936306465663639333936353537 -32616262616534343737396631656266353136353361373236393337643633303139376335383437 -33666532383730363130666233386131653830616565623666363430613539366563336566323430 -34396163666430346637383165663265646634326133313533313861646237386363623265316630 -38393234633932393666396535643331616139366232353536616262373938623039303434666537 -64313532666531316166363738383766333539653434386666666535326632363266623336323735 -32663731303866383665383731613938323862333062366239376465613733626437366232336437 -38643163363766643332663331643833363537383833613531646362663931316138313961316437 -39343365313165616436633763383639363932383238363464633064323964646530613862613737 -63316663373831336136653732633265316335373963386234313033643662633666396539323263 -61386431366365316131383662353232383331656539643165326362396431666636626664333263 -37356163316461396435313563613835373866373734336161313164393535313166323862663662 -39613230626362646139353832636237626263356336626530623366333138333561386631633935 -38333164363837326331303734653665643337366365326639633764353832623432363265376436 -36663931306333366563366533613062636231353339303639326339393662316464356333653735 -38663231336363316565616636343535303266303539346436666232363131633439326635306266 -38663265363266336235393663303965633631643834303763643737303364663664353530373636 -37373930373335646661313636623038653362353034373866396366373034613439366339343731 -39396130386362366666333638623935323133356364346434336636353032366462393334386433 -30656235383536373563326462383637623035306237396562303031616633346131373934626662 -39616535643132643334333139636332323165326364356565663734633836306163373233666636 -35323562376230366264333063333961623438613931353266623731653632363363623236336636 -32306135613237336362313266613734396133616336363261333736373135333631356466626462 -63373330393164336336613535633530323030323230336666333265633336326534343366616533 -30303962306230613633376231636238643538653638306339306235616434306139323435663565 -64313035306334346234393462383930663834633031373730616235623732313733353366656432 -38393430616238323363663161343737316661613561613838666138316265633636356530366330 -39616162366636643634633834366432396666636338393264613634623332306562356638373834 -34306139633361653938646339643534323464616437303263623565333865343930643566653439 -62313330623232613832336562303932316361326237653134386364366330653036623538643739 -62373137353063376434323666626466616239643932636663643133336364663166303531663664 -64393939623362393663653864616233656238393433383461353133343663663039616665616330 -36353835613536303233646138333364636632356237646538373365656366616464366239303063 -33366362303337313733313332633931306136376166636539323237303564656238383139373638 -30393436616437326165303236616636396631323438393037303164323361656435663735376333 -36626462663930313030316163643564343730373461316564633366393766653863356565306363 -32363038656130643936353235623237646535373830643930613335363766306236333234663166 -62643964363830313830343938383865653039383733313736646461393963353231323565353338 -30343465666435626339623862373633363030323338326464313031396136653533386133656235 -64356363356639343862336437343433316532353731383933326234336562343630616538356231 -36613861356539636161656637646462653462643939383733613431313734363536386366396134 -33653462333636356430393431613938313066646631373339383534613939316330313934373339 -37393561333163633366656530653561623362646437346261616135363631643533626331303638 -37303762646438376633306639336239396661376561653936333765633063376664356631373135 -31386432376565653131353238393166363138353762653033613834363837613863353630363032 -37636233326436393230386630633461653862346161656537326130376362306137393735383832 -38306537346339626565663465376661643663353262623864633039636639303835643337363762 -62303364353134613163353331393931613036636261303039313635636534353035366533393762 -30326663643661303630623761346562326339633535653734336266333663613332326562363063 -33646536353238353431306332353963336434326664623931363062663533643232633232353938 -34336439396466646165626264313066636566666236346334333165313232366234643166333837 -31633364643635336565306466353536663562323735393461353831366330383564326335316330 -66663866303534636630336266343063613531353533656230353661643831653861313065356334 -35663361666466313963366435613037626361356333643739663461343037306534333638643738 -30373335393431363565663730643030313632663635613135343430626139356131363938303035 -35616535353531393937623431363239323634646337346266626237366236333863623364616531 -66303761393636613436366137646238383362386437663462336539633365613265646663636437 -39613638333631643431663861613766653639666261323965373035313835626339636536616636 -39336536613331316538373266363838353736373466613930326565636666666261623734363863 -36343537386565303664353863343738633866623734366662396236666661356538303362323932 -32373834626337336439653661653362316133393237386536396664306663373862303030636166 -32393732646136383264613133613432363834343731346432333338633465343237666335303037 -37316535313136666537336638313363643634336163663866316164313336313363663139636135 -35383064306639346433653136373430336361326139393866303632623232653731303539343466 -36336466643861663163316430383866636234623239626266376137376239313063366661326134 -30333437306538323461623338633762393230613332633163313030306366616238393131633163 -34376130616362633465636532366132393065336130323965636261303264366363393366356163 -64333963373264643136633631616233393337633666653436353737316631353136666264333263 -61643162343361633165316637313762313837333932313536623039653538343631303863323063 -30626664643031643437386565393136343131633439613666383036353362373135643433623865 -36386234636535313631623363333030353536323634366332303661633036643866396162383737 -36633764386663326634303362376436643564333762623930616333323139656466373733393433 -38633066356261333530653234316261626665326537393738643062376438653335313165356633 -38656333666238393634636432343661623032376333666266373765383238313765316234383837 -61323864616331643161393939336232303039386432326138363363353462623561656561316130 -35326434643836353931333234346562303666326239646361393735323932353434616231633864 -63343865373232613062366336303936366531303738303139333735363061316235646364303766 -38316266386632633461633430373561336165333831613231336334393235616262316564373062 -35323034323136346638346130333730333932313037316537626533653561373932333737313839 -39376364626266396630626463623466323236333534636438363934396461396639376461636464 -66633130326233656163326437353538666339363534323037313061616237653637666663303932 -39653261353337303363366432363033633436353530663964346230386461343036663862306531 -37343664306364346135313338316631386264386134616336386561383734353732323961613866 -39356234373639336266653737376564626563653961383832303030373436386533643839323266 -39316638616636643230333532326433656663363332663232343831613465343531663232666631 -34636161363664396430373165663433306233633339616264306234656533363932323538336561 -37643163656264613033383936373666633639643261623863313133616234653366633765306165 -38306539316565363833336239356661643661343565386632343033646337313530636637363436 -66653266616233353865643533633830316630613035393761323735663561303137323536666663 -36653631313532616663373266353139393063633261626431363534373534396464653066653935 -38393738343566626561353035333661646361653166386633383035663261326232663433373862 -66363338353338656262323762663430643633646163636263663230303230396461303561376164 -61393866343138636639653337653861343737623034393032336662383964363466346534353939 -61613633343162666361343562303261303338313363326565313633386266323535376662313932 -65633531333265353732346461306633326633323464346534323234336334636461653938633432 -65353464373638373630323238663530373338323731376663366664316330376538393038386331 -33373562333835373634316664346232653464313563326630346663343435613030313130376630 -62366461663533646566363166613662316163666431643262313066396433666532313432656331 -38346434643131306331623539653465313731376531303331316339373238313766366135616163 -61363765343265333534383431366134383233613961643363613635613737366464636431643738 -38383662643331376562303962656334396366613461353561366636396537656361623461353266 -33386235383233333965306138396633366165343430396437316563393561336363666132383138 -31383363306539623332616263363334633138643332353161616361633165386139383736666262 -30373066373463636432303839393034623737643431353534396265663934373362656562653337 -38646231316366623236613437633533343633303135663862396632323235663133386461313932 -66666262326662376332376535363965633463613166663239643632373164383262313338326134 -33326163393139376539666436653334656338366538306239393136353333336132616639636235 -65333336666433393730353632666161386135333066353265653534663037306236303132303334 -30363165636361326638383033636539383264616666343338663631643539323739323733303337 -39376363653133636662313830386638643665633537363861376562343134636635376636346461 -36373962393366386662633138613765653939393566613934653836303664313438333838643438 -65343063633431333433383064393261623339653434663034623539323662353230616531663637 -34336436383938393335636464313034333732666462633232623032653537323765303334653431 -61323134346261333430643734633265333239363961393861663861633763346231343361346631 -64613633633435656661643837376135323539313431373831636136336261333339383135363133 -37643835653933613830633163646237656537383333316139653964616532363464323831663061 -34366666636538623365313163656461353263323230383265306330643234303935653064643462 -65353863616232373265386231623463383862363164663633363134663764393838653434333165 -61323938316131616163346632633237333431326436303463313062313734386565336132323236 -63656131643139316362316666336235313563356662343938316132326332376137376165323134 -36393835653135336361323966336165386638666563366366363539346261323130383639633936 -64616365656335663362313639316361336461333163356263373239313937393137656431666439 -37613737336665663534663265356232363631333666373833393963383836383335366433653631 -32636462396533303364633964633263666130386537303262323737373535666133333964386237 -37663636653434363566623239386336353432376331623435383461633164666238313266366362 -65323730383563323866306265383166646535623062666261646132323631323635373834356634 -33393862626134613835326336356234343236336565373038663335333434343762323430623935 -35353932323065323066353266336262643666303436636137653939373461656564636365636663 -63356130373737613161353763616664636238333233313064313734383234383630646264353531 -65643236653861346138656465373233353933316135333334666331383731653532333837663736 -62336533643138386661653537666136656433336337363232366264333134333832326166663630 -36376631393133393962623234313137633061333766326137626235323939653038376236363830 -34306630663131346164343432313231303635323135323830393137326236633932393338306538 -65383337393938656637386338396438366361663536643866613461333566303136356264326363 -34323534656435306139373630353466616234323733343862633039393265626536393635313834 -64623939386131346230306335336339306636346430633836613330333436393938373665636233 -31373633353634633063623631376439383530333964393437336335306530613033363264323963 -32373438633239393564343430613932666465343434326263626634333932323363303466356364 -62383738323036303039393332343138313934643537313634623661313338373135313765323264 -64383361613035373436336133626439643963663237383862316132666638613737366265373335 -39313335653335653139393434303866396162663366323534306137313531623330653430356438 -38376562303062363163363664663864623864376137633031363432316134643364396637343739 -33623630663839356533373366633736323036303935326363653636326135643337316135373165 -38306239346464356262653565376463383863616536346166353832313031663461343134663334 -64353035353033393838333134366566643333313238346330663333336632643364373536386464 -31636537633563373035346335316638626461383237613561626265356339633536303536656664 -63333535316536626166633037613664386162363331303862353935653937663636643362643832 -65663465383461656639623136653136643532343338663536653161383433666135643638346631 -39343135633438633431303637343839626462626563343965333733616634303662623434323465 -38313039393662363236386564623564343530373264326662303936663565393061633637636633 -37643162356137653431333535613663613334396638373562303132633266383363363763316536 -38356465633362396230383438353633356663363737393965306632633231623364633733316562 -66353539363766656465616464666433663666626565376465633566303564373232383365613131 -34613532346465396264666366316537323339306438363233393634396563643936323131343736 -31666664326332646535656336326662333533623562303731323663313965356235643039666362 -30366334656262663266356666633738613337303365666432303936643664373038363637386463 -38636434356432313934356234636563373265326231636531366130353733613664393338363665 -39383265663564616439356634343938356531663632653035303762353230613061636462396363 -30303133366466313566636361356638666335646566623230623363383039393263616533336463 -64383162323936623639333534663262623330373230616236373039333933336535656434616434 -38633239636634393331653665626262326261373836663531633661386531656561623266306465 -30343539306133326266333331613735316537323531333565336563383738316334656662343933 -32303863373830316635303763363634306661653639396436313039303136666662643734613566 -38643836396364616638313633313334623832636666643034346662656433613337653235663365 -64653861353232636433376336373164623764363463653532623537643831313239363164393634 -33636232333435373962323432653562636536343333643036323636646162363932346136623438 -64373738623166633931623332323033663232333437353738313433353736356337613831373337 -39653334333039383562623837313332633032336435386539386635623866623835376338633466 -38323863393062303165313431363366653864383336613735653337643536373262333632653962 -31613032326336336661626263383835636538376662323535363635363762613638373364313264 -30353766653061373735626134326430323831336234316139636461663632663038346136643935 -63323630326233346131316261376633336539373339393861323762623464616431353338613962 -37373066383262626130666139303564383665653832303637396638646465333832303037663933 -65336235303462623236643032643131383534386536393938623063633532393633383066633839 -39316136376163343961333937363761363737646162613466636433663238356461633739363931 -32376339653366343366363235336530303531643437346338636232303166653663633764636234 -32636534336664386632323566383037313165323331616132376638366636333334636333643364 -35633931653961626333623363343935383266643437343835316365353434623735316239326266 -65653034623361376162303833393062336433373932333065303862646439333661656139373431 -30376436636266316331656165616561656662353463656337653630653832666437636536333038 -34313034623636303732626230303866316662626664653438663139666261653331633835333334 -61613539343664386161343039666337376130306663613064653165663833373130396439636461 -62653338396663363230643036316564386366663762383432386533343739313563353466383839 -64383833656637333239383539363765316366633264663936356266636430646332363737653061 -65373762333465386537306265656262346431336263346634663964633033343661653662623938 -35393934646165303964323231626366633738303465646131376139366636333739636562313863 -65343233346363643664336631343961393962666266656362316562623162323465663637396637 -39303230663962346663633362306437396335333165656437383330633833393338336637633364 -32373065316635313039356632373137633266373937313036393865643232386165393434653032 -64343939303833313439313238663465623365393831666637656336306664373132636535303234 -35366135356665353932373439643164303338363832646565653663346265656639383638383331 -64643737373631656530343034323636313233616639396666633935306330626531366265613839 -64646530303839636430633330393738623536326661643931303962656331316534366162306566 -66636362383039626663616533336438663562336630303638373962653631383563663237373035 -31306231346631393563373431383764303838646665616236383939353234643439323430326137 -36643330643863356134313233636436343965333661343162306134306563376633373265633830 -65666534343635633830323335356531326639306331363534623235653636353039393336343665 -64643436383332346336383631623332653764613364636630326266376664636661333764343536 -61313433363661666637383563643935613435333031376133383461383961356430303663623361 -38303738383933343232633731663163323936393461666438646433393165623062363636333638 -61333237306463663363326664363637343133343432663361366335636333373537353066383065 -38333837366637386437396437356366396230653566363234626539303866303466396230356133 -62313936313738396134643435343166633532363864343537633739616330303530333335366165 -32393332623534313163333761383030626566373231653232313233393565623834653633313230 -31643532343636623330623238306365383366306536623632643266333234346235633438653737 -64623435326130306262326363633436303533656332653031353039353730326334376138643565 -36343839643339663662343538343666363566383439646437633634643564313966363532393935 -30343061323063626537336134316233313739366165326237626264626462613537353934626434 -34333134393633636333613239373465623862663764366238343039353564633064333062306464 -30313732326363356238303834303631323832656561326532663865373234306361333733656436 -66666234333530623062353430333263306237333665323434653061323566393037303738643364 -37316665613332643439343538666133643762663561663831663461323236663863623035656236 -39623737316665653061366638336236666366666362613766623938616638316261333634393234 -33316363323761663439666534663038633938666166316361373534643866396462656264643562 -38663462343865343931373463323036303666303962336530633934313366396236616231323561 -61373566336338636364363863363933313962643239366462323166306138653435646364346436 -63663262353435366435396534633961663464643833326662323533303036393364356463616437 -36306136313535353362306362313137613737393935353963313261633136616639363464623730 -66383461383035363631393832663038643430303764653635386339346231643130616439346664 -34333032653735613739363136316432633562643536633030636134633562306332386437653335 -34666235316562353465353133316530633631346433633830353634366530316136343135343534 -62663961373965393662303236613538636436633066363633643765353439386634396631363834 -35333362366533336630303831663439356462616230343836306631393431613161666564653461 -62343633396161626165366364653137383936303138636361653834386435616233393834646536 -39653132353437326361353565323337623331666331326133633764303836396433366666613132 -32326134636166616162666263313439393965666438633664376535333536323138323966343335 -66336433666339323764396264643365616230633837636164346264376530646235643466316131 -30353532386466343161343230343262633862656562333839336136313535376633343965333766 -61363564313864353634316538386366373739383339366230613333313965646164613964386635 -36666234663965356339656235356434643035313730613638613562623033323332616333346537 -38616263393034333863386566306361353233316635343337633066373631356663383238376561 -30616432346136393536653839616230343364633164343662323639303337383836663737366532 -32326638383735633933393936373738383339303036393866616665373333373230383737666335 -39343464633061376435656231343037663837313532366362396464393330393136666232383564 -35333765623736643532323833336133383639373235356135373931363965636435306366303936 -66666638626334616335353032316435613863326231633861303664623234633734356439356137 -36353636616136336136626531393433636262613630613662633339306232303763643333373139 -65643935396566383965383134336432373730613732316232613133323232326638323261313165 -64626163376266323033366333353038396662313937616334313834626461323534663334623065 -63303461386636336338663565356333393132623031333235393031666133323135316263326134 -65653732373465613666626162333061373266393037633133336530653638613835666432353966 -64333830313530396537636663316239383139353035626431383433633665303738643862623834 -65366635373137613735323634346530626536626631343839303530306565616536396536383366 -64616334623531663462343931336165303265346166316162623736343031653664663038636365 -32626333386136626531613332323730656431336361356637623633633937633236623830663564 -35666166393838616230343763383638353266613432366131613066613131316265613130393966 -33386563323162336337373434303634643665626462643137376463336430613739353635646234 -36653234346334323337356161613237393866386438623534616432663030613433613732383032 -36663339363465303536373239613832313266313365396534303462323862343631396638336638 -37326538393738363761383163396265633261643730613337363533663562333638366663363530 -34386133306233363562333032633037623736613037623033336534626535623731343963386462 -39356131363264356362373061363162663030373230376631386161383837363066613765666161 -30633630303534353136373130313361613431373330343263393238363562383937313864613532 -63386533626663643834663033303232363865626132636433383337303861363832333330323064 -63623130643362653166313461616135316132313430333835643065366433366331323035313935 -63343433613331313539353665363834633262376637663264326339306534316464333063333532 -64356363633634373233393663626639633834643236616165666234326666636137313137653265 -34663163636632326563326565633763306239316535623039623931656538613162343336366437 -34353339353738646434313839316464643937303032343931363066636237336561646264616161 -33613565373261336138306531396138386166323331323939616533356231306361653939636664 -61393335323165616136613234656631326138396234393766663839613935326564363937653265 -35336365353931643836353233636433356261306566306564366132623132323033333761636662 -31653666323666663838363465316263363764306566633366346430353036613233623861353861 -65623433383630363732616138393466343334323564386262396562313130323131373936366431 -30633435616434316466663635326639346334323561656263656332323131643130643133666132 -30343932386333383165386361666231356132353539613265376530363038386633656463613566 -35313863396465376563373732373636623132383265643461333431313337393239393133343961 -61626235613665643436366230386461366134653432343666336663356637306462623762313664 -37646532626233313937666533386637356463333130363464646430383137646533636134366338 -33653034313235393964346561646364333331363662366663333634623731663239356638363335 -39323366633338613063663036643733653864343537336561333539633835313466613764393065 -64343835616134376132616566386461656138356365323964356661326336663561646434396139 -31303138313939353938343536386139653739613661306461373036396162363664613039626632 -36316161353664313236353833616538373130653361656234323063633230623830383035633630 -30663236316435326663303863666462616231356337383634323639313833303935363261323666 -61343032373663356166626663356539633333613939393239643363313266386631303937383130 -32363863633039323365396563343939663737353637636230323136306334636333383933653433 -35386661326164646338303530653539656232353032306533663839353230376430356262316336 -33376262636531326332376439326338373232613863643439636531656563353565343530653933 -31346437666537386165366639313861353239616539336634343039356235323239316435323565 -39326162663439366431383166366236363136666431383135636634663135396364346539643834 -61373764356333343663653662363164393865303361626133376138626232333662613733383332 -34663966353531366463633435373034653433346265303039643164626539326433626533326661 -62626631393562356562613035343835653039306232666437616262306661383034393838393439 -35343138643166633062376437623830383739323834646133393236633532323962306532633939 -32336462626663373236393864336232373961383632393034613631363561366234653565376436 -38393362343330613866646338303134313933353632363034663664373732356635323532333337 -39376634383764353365313435343334306561343935323263326634353961313130613461613037 -35616665613562333530366139353936366562363632373431333164656465666336613365356461 -66656531353837626239336164613632376431663965346631616363666132303365663439386636 -63363461306233643664613663643661393566346663663861303937633038376261353066393731 -36346564616136653064353833626431303638386465333133326362336539663166633431356163 -65633733346639303538623665313064633065623065656635306464636437326537323039373863 -66613462373231646665613335373633323566366231396630663563636635356464326132616264 -37623739336666373139383339393836393038613034333464343138636334636430643563643063 -32383431316133653737343131663438353062623836663336363230666561326439643031373730 -62323732376532653739636339353762316364393738373863316436663362373866336263393939 -61633234653439393631653961376562663935386335373033393862353636653535616137373866 -63306661663961343935303166626335643866373736373231613964613638633864653739346463 -38326666623161393237353630386633323330643637366666396664623032393435363861386166 -38363230663164393035393565353963316563303863656664633832323833633464313331626339 -35333930653031323162636563366339383739666366313266363936663365656639333161393836 -61393961633363333265313364326363353036323930333434623261333639633238633034353238 -33643764316366613265336338343434613132623661363631626338303134346433633433303336 -36333435323838373838313661393036373532373761383234366134663563376231303266356166 -39656165373639353234383464663765646332623835303964396165376366393831656339393038 -30373335346239663166633935663065326139663661393063636638303536326261376131396564 -34363263333733613964646237653364613436653236616163316134366636333063623538366535 -63363535613231396335366364353761363761343732633566323430396439623732333633363335 -34336266623135633333363934373930616664373031396234656635633231343930363463626339 -31363730396566396334323839383932343436306630613834316137386431616536633632373130 -31383963613233613833353335366461353531363766386235383234613466646530643366373134 -66333239396561666663643035393130323764353237343435613261306462303265633465323566 -36633039353265623865316363663435346435636439306133346137383238333666666437653961 -37653934393365363238666164623334373231613066373731353437633564363632623436636338 -31363762323938316237303363653239646131373739383261303130663863323930363765396631 -31363734393433353832363936346336313365643433663933363765373731616438303161323738 -32353332396134336566363332343131656563383333616164623433316239383233623565633730 -30393032633336303662633337353166336262356330333031343065326139313532653431343838 -34393833363538626263633230353761653839333763363332393932653934393133636531336532 -37393131626661623462643438366437666132666434363063626262633237393237646161393037 -63333866633237623133363462666231376365393330613233306635313938383433653766396163 -36333965343264313239666235366563343833633535663031653137653834376339396133326361 -31313765633866653035616638623033653237633466356234613565636264663961663638636533 -31313430626563653365666139393430326663393931633235616435356134396536373065653034 -61636236326435663862383865316530626461396435643230623735303733653234316334313834 -33396264373065626535386332616265396336323333306264613062336531386634626465326334 -30613332326133346161306235333038626565393635616639306138323530303831356531303266 -64306465613662393966306536356232393435613633396462313333326466623466343338303735 -65613161366363376161343332323433386339303639636136366433626362356466396232323431 -65633033626532646362393263393164323361633431626463326361343537323839353337613239 -34363534366331636365646534636566376263326539323132303866366665313237316438636636 -38393162383162333065616662616464663437343461353662653630653238363730633030393565 -38326231383363623064373966396461666135393039373363336262656365643765636233306539 -35333834623532306232306133313365356262316439323766396461333035646139316266366332 -61303033303332366337343836653662313264323565353764383062663463633936616439343633 -62663763353863666339326461343165373232313135643234326330653432623366636638363938 -61666665326233363964646663363430363164393031316563333665333133326661386638343431 -64643063316164373838386632386137326533613163333061333034623263356235373762376332 -32363736366266613430613161363865343037613766633538316362666563383732623064643439 -64646663636637383033613630643435646135336335623735373163333931366264653864353535 -62313632333236656339623530343131323931653431656664613834363439393165303866656664 -63333130636139393835626331346138323565666163333937396538386434356162353830663763 -38373564303533323730363764333663616337653936303536333634646336633838353133356437 -63376661373235353830393334653838346539386665626638313261616561656130323638656230 -30633763613234393831613134653866386630646265643635373962366431626532343631643932 -38366264373266653966643661393863343539383336326136653537386163313038623937646435 -36373438633938383630613734643064396630613139323434333832626561626163646235626236 -34623763323138656262396465633235386637373765393731363634326234663739653730366332 -63373136646630356230626439346332623539303038636363663735613133396466323737353262 -39393838386464393234616432396665653934616433323532656338303566616363613539363438 -33653538653366633065306164363763336361656636663461646164326265303837333533393238 -65326137643762626237343164393166306239333735343937353439353135643361633435363964 -33376338316461343764656364656639633164656166376663383563653163323966663863613538 -61306164393338313438633962643761363866386662383439343539626436666138386536303566 -38356138346330303663363561303736343130633565373065613738323061303136373266633635 -34666533646562666539346463353632313565366435313662663431363464653334313437353864 -65343064306338623963616431373534333833386262326363643734323132313936353663363031 -36623865346638353236303831326234383130343434633637366633386538663134313266653532 -32366137363533646134666630643966383336353561643031343538656665366465336465383264 -63386239343436386166613731613461633435666666303039313138613861623738316238646262 -33643363373761333130323735333866616639383561363236353238646661653337666264633966 -33663230353163376563626432326334636566336638663638643762393165313932303530326464 -30363362366533303337396635313532623531386236363634306362653065373533303235656631 -32343835666662656265636336343961376536396338626237323334373234626536643363666562 -33646265616533393939636265356533333063613466353537663033363633623337616564663232 -61396534656132613037626165663663336132616136393930373763383032313331656464646362 -32373630326635326330626237383663636662323465376261666536653731393032306564306132 -37646233663632303530613835346235306530613961333130366636343435303332373664386464 -35663932323936306334373134653161313063366630353934306634326236333038393437333131 -32363166316666303339373966313966366339326362663930623566643261306139626161663830 -36613035343061303030333239623633323839373266346662626663353161373532653563623263 -64316366313132616666616233336537646437303034373861626363663237383865633666646163 -36633338363831616230333037316262303339366533663130333861643335643030626336366430 -64333864313862356539316264653364653165303462393732643430373333313432643166333166 -64353434376564666535303038303364346630333334653530366530386262356665303864356631 -37343761393261326536666266343563353064353937326666643466333030653731636134393032 -36386135623231623234663333313364393062663931633465656162616331623532366331313036 -66303361636161653838663536373331303762353131613631326335633766653236666439666431 -38316638616536346130356366323261656337346439616330393431666565303331356439333564 -63373161393333656666643735396563653039376634343835343939306164343534343436663666 -34343833333936306163313965623963316661353861356138333335363436313330393032303231 -61313637633139353034396534373639313838666566343264333434373435343161306564346233 -39376435373330316362613961623037613532363261363634313036626331303730333265366137 -66303430323365623565366430383732656463653932363834643730333931353333353837303136 -37373236356635653966636232333433613630653534663463303739373035353832643636383037 -34643262653364373436316539623036396436613730643235393263336663383937633337316135 -62326131646134333965663535653830393534613139316163376565383836306363373866333436 -39396661653866386163376330373631353935353261656334386431353739356364653339376234 -34613066653039396438653164383334616331613331393533326530366564366439366238343334 -65333166313233336637393861633066353430366161323563363061663561343038353538383136 -61626436656134346264643130356531343861393633306535393733333338383562653335323238 -39356663306332613635313234376565396134636561326532386634316335363264623238643134 -66343134386636383865313662653339316465666234653761353361613938633962653862663462 -38343664636266636162653137333836633362623063333764313963313034643463616638316139 -37353237386266316438633735373066333461613731336538343561353364333936323230623038 -39303133633131373136386266303162306238373233386462313437666563626133353931666338 -30666531633232346232336136353439343039363731653661366132633130383862343861363364 -35356234643932353838373133356563353562623566663437336231313134323038356230306164 -37373130653537396430636365643865366131663235346537353135303231636335326432613138 -37373333643064333531613438376436626666346435396433333433346564366430626631373335 -39303830363161666330633937376631666331666231633334343264303361323039363334646538 -65376531356164363261653133313239353064313861326130323533366664373462396362656233 -37323361623635353234373538393838613436663262636236643533336161323966326661626263 -66613837623436616161363661316534663836363138313838383832323438663533653339333633 -37663465613038356161626462626162613862353231373163653066383262643937363534366261 -37316632323134323832323361343134643366343066306661393932366634376333656332663363 -31616631666439363132356466653432613233323532613065363961656232376463323364396635 -36376337613566356363623932663031343635313630306433663462363739643438336235386130 -62323964393533316666333035643738343738333433363064313137616637626437653931623234 -31653864343533333064366632323239336133633763333362643935303439616439343962363935 -31636336613461303931343335616339623535326634363464653132313264343234623832623633 -31653132376532333237383162376435616562336531303536633537313434613234343530663937 -65376234383165666663663934373637323730373835396435653265356665646438363365306533 -36333234616531653534666465306361333136333236613530343566366430363434626239393161 -32336132326662313065356563366437653135643565653732333731373065663266623533623832 -63323235373337356262353132383566373363666634346137363336646132613764653433646430 -37356561653561613061313632363563333531666338393662636538636164613634323463643734 -61636463633331386330363735656134656261626564373237623934663130333766303437396238 -65353430363833316433366162316164633638376434373030353135616530373437356137636362 -62343034656338313338346466366431666238663136313432663039613962376365353535663964 -37326535646332363262663034303132333535373135653261313538633738373865383435336134 -31336438313637346262313137326261656632383062316539326166333661656136613363663430 -61313637313033613439376532656564636536346164643261646563373239313737383363666132 -33323135636362616336663338646335656239383633633935663331386135303133303666643335 -33303831663331343137616135396334336235383866666363383335616566616337646438343335 -65353130366166626132323033393536333732616436373263636331613434313431373434316266 -63313064653531396164623865313566373339393962613263343466653161373764353163646435 -63333932653730313630323931373237303630366364306138373661353665666438636636323536 -30393263653465663732396538373335363236323531333735306638323463393436373634623331 -30643838323161386563616633393933376163356136333065616661643937616166333338356437 -30396435623664343162386163363131396265373865383635356432653063643437383533396633 -30363165376333376337633334363134333061376533646237366538663938393038666162613965 -30326339303536363537346437326133656462333166326138656638313135393961653164356137 -63386261353031313963653034303937666235633837353464353634316163356634656666396437 -34396263306565393662313930633834396466613662313563666462346336616431616664643333 -39306338323037653966633166316565663738363332393234343566373539353334373437613063 -32333736383431666632333335386335326366643134626332633234343131633532663734306633 -37353233343133663739313838613232363066646333383161656431633639636362623939633661 -61346335633338363661386534626232333866613063313162343735333235366336616436646132 -30656165346530643261636331373832636130323164613132646634316331306266333063343665 -33373235393239343563383532363763326538663962313663313661303563326236383839353163 -30643737626335626565323031643434636266303538353862393964373064666630323436376263 -32646532623636383235303932353335366364663437393035613761643836326136613836393363 -32363938396132346235363331653837333762356464313161393832656532383532356137333037 -38626235383133306261313735626364613262616138626431343538356266393132343335333361 -37656163393032613163373831653436626137666238343737613030343839633766343030346239 -32303232343438396430383864323437626566343866396534326330653462303531363233303764 -31353035363739656633613265323461623961343062393662666539323365363466356130653639 -35313334353039353165356538343864356534376431626366613630336438343365336538333965 -63326565356632613334316563633436303766393230666231353837333832666461613833346464 -64656365356264353139396231656437663636376537353264306431613138636366383161333030 -34393530313136313138393035346531343037313337383832613364343433376130656661636566 -36373566373936383932373934323739623736623262353561623437643431326139303133663865 -36323933643130356266396534376665363462343534653434346162386535636164663239363933 -66656631343535613931353361303232363132643133306438313264316339393639656439326536 -34313833663536646364316635643432346338326136643462303437353239613165323136363834 -61346462303238656439396438663965653533306330623235343632343437663266386135386632 -39326336643232343364633562356565626131653462613965323839353333613232623763356466 -65303737313135656339363664616261386363356438373439613239356130346263383437383462 -30616233363561373733313338643837643561353263383766346561356433633037326632323630 -35646436343539663166643163386235336630383565323331316334653431356230383732323039 -39383235323266333166373235373338373266656439333466323464303134343166643638353865 -31623139303033613439326334633165343161313532303639353530363266333431656132303935 -39623061353065383666396231653539646538363439616261343062353133646662393561623862 -34323465323061376531383238356630333566306564633061373433366337616561613366383631 -36643538646339646535303235636563626434336231363437303364323239636630393038343437 -62643037653939636563373630633630633635336463366264633638653137643933656362333366 -30623739313631666266366639396131633932633037303031666663653131663662373830653265 -37663064633762346631343730393532386433343734616330316466383665656131613866336563 -30386439626665306666653834636331646539323361303331323564623036656663393638396465 -64623331643831376437393363666237343339616365376538323534653939356332353136656638 -37663962646363386532613438343935373165336334363964623334326538316266383738373863 -62646235613339366664616164383533393838623765303633646664306338656339373334643563 -30313762643531633639633762376365353737643533353637316634373033363166366436653865 -65346430383437373762303337643639306231333361353734663534616465333136356263303838 -30323663333638333832343663313336616637646265343230316166333238653364353838316536 -39383830323661306438333065363466326362353066613739353736623365343535346135396231 -63356561613638353430663336653266613266346663643762653338663566646263663632663733 -36626566363062363863646164613565303661393335643665646139633332316231383934356531 -31636132316363363232633038656232333138396336386239666362393561383632356430343839 -64393931346435646539333830323832623761626134333037376637383966653336623263363332 -39373638646662646430653633396262643435386635626663343434613064613338343062653339 -39396264393934663563386262346634313362646133393739643563653334323064636239303465 -32366139373131373530393263666632643864306332396166633564333631646434663663613663 -62316166353332356137663164306562353335636331626232393533303961306664373661313763 -30663132346635303936313239363938303638393936353838343163316561323066663763623939 -36373139666139656164346230643530633833643161306363373334666462646634323130643064 -66323966343133313634366437633561326437306337336663306432623930373563313432373330 -65663131356330646434643631323033303662343065373632356637303962613266633832663463 -66663133373539333964323732626662623566643465386463383835653366393764323434666638 -39653162353135396431656236333532323334326163653933396161613638616133313838636639 -66366430663635643437613432313337656337303237353963393361663762356331353636653533 -62316533663262336530666535613864363132366233616565326432343462633061363364336366 -30363533323733623464393733396638306635303465616639333231616536353530393838666330 -31376161623130663836333835366364613163393761643432316438623864383265323765666139 -31653537376631373432396539623531363239396165613438613036663335396361326237353466 -33646232386366633565363164316136313832636534303539653039626234396263336535376339 -30323739396563656261386336363038353733346434346339643438346263346266306434393836 -37643433653934646237353338653631393138323263333964363662396433666664396130653766 -62646135346265653263643966613633393831633165316638383831383333623964356630323662 -39313838313336326637396464666462636365636635386465623338346165356430323362306565 -63306561343033323431383365656365346334366463396562643363383664643162366137373439 -32303664623732626635343535393562393839303939363931636365356564333039636266363930 -34303137383332376330306638316330343562643938623137643134613037353662373461613863 -39633461666233346365313032333237363831303764366335346238613639346337653561376337 -63356333343331396239643437306331383639653837643831373830666232386462663361343363 -32623334326238663036336630616438343165386566383334323539373637386634393565333433 -33306138613864653630653031333064323765383338396465373439383836383432393731663565 -33393263313462633864366261373065336162366130366337626630373032636333636136363464 -30393736383432356465623466663539633234613064396534373665633936306333383437303062 -38303136626331656362666238333436653734393637333234653335316262363832373565633834 -37363061323432306162376464333965633564613132313661623030306431363931383166363235 -63393631373538653032316366643734646436616134353164643061363138623536323333653738 -39313838303830306138393435363331356331343730363866343530616465393265363464313633 -64373261303335303466316430373034363838343931633962393632373761393364656166373032 -61303336336530336236343337626233386435396131663536373261386466373737366164303366 -32393639613661393038626633363231633766393066366462626364363232373764666133396537 -37323739666661333638343566616565316630626465386362373264363764366437383663303838 -32636132633936313736623963626130393934323835393935336363656261383933643334616265 -37666535366366626633316635383039303062383138643038663930323166393936326664616439 -62323430663734633934373138633938353935626338643435303035323137353832323430643465 -31393433363835376461633061373761393639316366636338656437373236636334626236643231 -32643231336639613432633664326630633630326636353438326132333032346439653234303436 -66653761393735653532376663313965653639396166656338393735383433363731313735643031 -32376563326461613463346632326537306132613735353836336264636435386164373039313762 -32613161303964303235393330613235643431353432336138353632306364336636633631616166 -62633039343464656166336566373062666363313061313739396363376565326665356532373963 -36623232383334333761383739386134346333346331313237356265373233306239663531643539 -31323936633032633063643936393233643338306135316665663666353132306166663561336461 -63396633376336613661323031326239393233353864656464643633366535303539326463663664 -64633837663561343730396337323065323630343163356639333761623966363638323862313633 -39323534313662303261633730343930313734393836383534626466343930303162616264653762 -61666363353434636435613837623266383730376439386532373766323834383238316661333966 -65666662373532663861373337613936333561616137303266663531346433393863383566666662 -63363863613539626365613537376236646461376134373666663835656565343064343831313931 -64626531383235623539326137343031653135363738623833336163393131353438353035323830 -32336234363734363632626431656137643935626461373138396435623138333162663839326363 -31646234623665643963383130623935656431636439623037663761626662323635306237383164 -35383137313137663963353266353761633461356238313764316432373733373637323361363532 -61613839373236366532323339376235383731643265353933303034656364323731613731373166 -30653864343964613134363930616461613531626431666232656433633839656238663963663930 -39356333663431396364366434306563326234316665623339663336373234326539373136623364 -39356439363464363639323036643631666364326265393562386138633936643538343234663562 -38386664636233316662353932386536343364313132336132633165306530333633356230633030 -38383031636338336266366265316530333934353531343264363736653234663139316662373533 -34343438636532633732373365373764663731343833653661363062613566636564613061373566 -65336261396463393661333537356430343239656461353365653061373064336137323166336666 -62633263663830396338646335343437393235613266396433306362303866636530653730353135 -62626435343264303837313536323532323264633362336639316362643439316464666362316166 -38633234636263613732343335353330663731626335663434313239666461636134353835303035 -30656562393961626637366533653639623066303465646631643765353163656165623231613136 -37656135376236663835356634373636303833663331363332383231326439623333323837343339 -65313638376634356539616634656636656434316332306439643932373135333063653131313165 -36323234323862633537363962303332653137393335376232666331373363616133653235383738 -65383534643561346262346238636335333462363665373238623432373639363162323463636166 -66323365306636393065323035633535383665363737386138663261636433396261326333396364 -63376364333632653261653135643033353964643132323835613134313433393862356235643765 -33353933633633323433323564383131386434336436623736396231656661653062623834613839 -66663063326439303237643235666361643535363937386535306538643664343033386164323462 -64343330643262656637326663363162653164363535363866343331623738663630336162653236 -38656664356164326333666564393564663963643034316231343430383538643236653133306430 -30663161323335356532653761633061366630353833653431363631343334396462393434303935 -65666632653161306133643633623561636363623536346538376166323335643934636136356262 -38663262346332323231623763343364346561356464306438313662313866623639653666326339 -32646531376239633935303939393635633230383838623062356138363230656561323665363032 -38346366323033366466326566626237373432613634386365613330346436393039383839653437 -62306233363933373931636233663364323162656662656432356630613235333134326138343633 -38666365326530313333656338356239306237653836343438353534386533633333656633383164 -63306138363537353965356336366362393138393363636136376232306331323834656134313835 -30353631333561623732356337373761346638636631363737613538376330333162663737306632 -36326633333064306239393536323136346462326232386439393134333038643132346461653439 -32643065613962316139363334343866356232353236626133323436653735393839323236613866 -61323564373966626232623265386565633534623534363564326439383736396265303439383831 -38393434323765623630306537336464373538373534633038313730303038303463386230303064 -38663035393662313161616534383933323566343238326631336234326537323736313433636134 -37393834633133663031383565343461643364396366396139373737323063316661333133356633 -62306534666466616538393964323563633030333934323061653732626565323035363661393639 -61616233306334306134373565633034303164373666373766616636393264373536333434646265 -61363062616231616433366139343565666265346266323230323930363438346266636635623435 -66666261396365636438346233373765396534656535353039383835353332323333376563373866 -34393661373434373066356235623363363161363362666566326662306633326465636138646131 -65653439383263313865636135393339366336346430366338643830643065613234653062616635 -30313963376666333236633630333865646235616535376637623432613264666437333361396633 -61383738333830323831316566343833636539633666666531393265333537653665396230333730 -35636333646361313861623135623335376330356136323234666164636439376532633137643932 -34383866306262313264333738623237303464346230383861666561383838636366646461363036 -36616364353733316465323638666434343363343430383433356364363434333362343232383264 -32363864646135363261363537393033386534666437333833386363333866333234653865653364 -66336531393335623566316130366263366335376432383964326463306466623033666665623632 -30393365336563333330653638646130373066663133326665386138353231626131363637613834 -33346137356130366634396465643163303537636462386630303163393830326439346330633435 -33376463313062306136316330633461366565383662353564356233656530376166643332326132 -31393565363066383365303539666163333839356538653230643233303436623832376461393039 -63323664383864303336313266306338626234316130363130616630616462373466303134636130 -34656263396339623137613037343566663131636437663534626531663835326532313461633032 -34626131333734376530383830306136656632636666363132333534653766326663303562313130 -39323330326334613839613936306137666231626662626664326233626337396137653162613165 -32346137393434626539623365636662313933353736383361333736346639343336323038646466 -65306265356136303662336534356139373662376566366532626161363561663334653262313863 -64656563323434383638306337383630653065633461356134383166613164323265313033353830 -38383134313332646632303330373632633939333562363337666166633633396533323464346134 -37316366306466653830303133326562663030303034366631313338353533393732383133366432 -35343531343934616635646638616435613232393266343538656465636535383264363666383463 -37373065326236323833663838383539336335343266643961313666666362356439646666646132 -61356134396330666263653631396461653564663233646334306337366566653462636433313532 -33613462653961376437613136633436393864303664393234393262666338343038323134663232 -61306633613566393062643438386535323030303365653231623763366432393439353538313931 -34353637326534623763396331623332303930623362313938346163333738626439366330313035 -65333262663237666431363831393462633535373238373930313237613236663333633739323330 -33613139346138386334656438386432663231616365303038363739303038373231376239656264 -34303336666664376133633430663536386161383832363833613737343233613333393335313766 -37383261613630313332633163613832316565613564396539653030353932613531303332313631 -33343738393162663537373433653764373863323164656266343766646463343135336136663233 -36626532666331623238306162363766366665383530363832303166303538306438626437336434 -65636631343763636231383762656132346138306464663437313239366434383761346635623932 -33313335353335613561393831356537343061313461663465313566393839303761316163393732 -35333630666535623134363561303235623432646333623364326236306365313461366239666566 -65383035373033303733306231306531613763313935353531613733633632623037613832383131 -66656633333630656434343538383062616134356137306164666533326163346639633063333065 -34626639613461306135313862333532623733643863613961326461626562663035363132633362 -66323431353738653834663461616266373933353232346461333035313338396331613664663532 -34313636396263313032313736353139343463323135313661373663383531306639356365663462 -30333937626666366361643238623261316564373263653561396131626264306163336433616234 -37626465333439633835323833303963616338306437316565623966633336613561626136383630 -65393537653832363066376663393062613761316662643732306635336138393239333361366162 -33383832633530343334363630346238363862633364616432616236616431366234333861393361 -66613931373263313631626232373166613035353035303437356135653062323435306466663337 -63313463666664313163396336363736373830353730613533373639663430313937623061623563 -32316362636235636465326231393938663332343365363538363730383061313233393232643464 -65613633366135653730633732366266363532303633653562366231376534643930323666303931 -37313861623934323030366631326565396430366565643966373733353734343635326462643265 -38666339666164396332346663363664303833653439346261346361363936626462663766616432 -65633430383236343262663961333165343737666664343361663336326464616463613031663038 -34386433353236613732656463353362343833646233626234363932343131323033393964383739 -62356631346530383365653435313439613232316231346132356362653266323031343438306130 -63353332313530636361316132363938386639333136646364363265313963666561303233313333 -64326136613938393161313531313163663330353736663239366131353961313335303333356366 -38363964616233323233336631396261386265633362396639626538633637306663323139643531 -62623261623731653237306330346236393166636231363738326264313364396332376238383831 -33636331323036646535663838373861633461343730363333383635383335613636353664373337 -62373265386538646236666131396535323566353739633762653163313839323565383735316362 -61363664316463646561393539636631613761613662653632366332333833646262356664343532 -62613436303739316661666234613462616566323539343536363332346265376131336462373736 -32323336313533393835323536386334663635626138666430653964313362623063373936616336 -30643861343233643635363838393632646237666338656661326336393864383432356165366532 -34346661323030383837386536666463336231663964306437613336643934373566663264646138 -32303664656134323431376464653236393935646266623732616138373930633864313866643962 -38303063313531646233356135393863633261643234626665613062626638396135626434663635 -34353834323134636230653936313235326132386432386531396261633832343664386236613163 -39336538663063343762376161306364346335346635636361323832613639336663326335326333 -33383263363866343562616464366537313835303534336636316166636165323666303034353065 -65393061336461356637363831306564326639373133303536363536616236653230626464336238 -32653164323332343166323862393834623963613838353032616365386531346333333865653134 -61383063663362663466613561633438633865316138363965626235343665646232663762396663 -36663466626332346239333830383461663838656434343234653332613833353336366563323133 -37643335323165323332653739373233373261356437346533316539656632623336316665643538 -39343662346663396136326465396334663365616366376262346230613262396136626330393531 -64383637346264623135633539356534306239663163393831656633353539313166633235633836 -61363937646134323433303635613435353839313661333332633634336235636334353939633935 -61616166386539386362333937653161383961373662353333343736346438323633643630663533 -39653938613965326265386430343636653261366631373738356534326337323339326331653661 -64313966343037346137336335626137323233646361323763363037663636376266386164663563 -62323564323434383566623438333536643262633731333135666137313332653535663531353933 -32333463633037346566313763616163376638653638383336373636323164323834643662653232 -39366335666339303539343866613565633664376662643864313863343337613836373638343233 -32356530343961343662636266633537353664373566396132623532626132366630343432383931 -34663464393062386366653266623662346261636566646564376536303337646666666139373539 -65626239336338303334393365366663356232316333376165373361396165363533396337623235 -35346166363631343466646233373538376536393030643836613366626338303532326433636339 -65343961643961366264396637633264616438303535663739616630386237313435643362383764 -37626534336564336332323766326664643263643930623836303630323731386562386631303761 -64383638666537313530633131376363616336383338383737326366386436303634643133663036 -66643461643533633732646139336538383565633964633465316431376238356563336535653465 -38373438353664616239643035383138643438366136646664633264356165383661373064383730 -65653361356632353233363664386566393232336438303930346236376435373839313134626664 -31626337373934613866353233383736643532656265363439313865656231303739643966643065 -61313339393266366233323630323264646533653036366632636535316564323836323235376363 -33666435643165373433653530393564356630633532636466623432396166663530326462646532 -32643562376335393861353135323836653639333961303435336332346135333163366462386138 -33333865373666396638303337333661313461326635653866396138613133663763393935623932 -37393865643830346363656135343937343531646638336363643831623466656131333431663362 -38633933356330366662613164383362343238636661323764653936333438303330636335613065 -61383462366436663662643264313130323563326638396237323634313730343065643961326566 -62353339303266663738383335366336316162326164613866306232333337316139336337363137 -63613635346165626264663937643037303831636165643938666663346636386437353466653832 -38356438306333663930636339313734643062376462663530643934643662306532616266343530 -30363761363361353466303762373633646461633666616137363831303037306537366332366631 -61656132623364386262393161613334353737363731323233396665613538623530316563313032 -32636566306664373933633435636239306564323861653137353635653762386637646632656662 -34383630363830363564646565383435383136613437366363653332626134363366313761396334 -36363530343531626363376536333131316463613331316437346537363838313633393961303431 -34626639363436353837313764323664616635356534623635613765303031396162373531383837 -38646364653837363464386634373665363039313935663136643864383134396362656132633762 -37336331323962373362666431666165336664313763366335313934656534363132616132343963 -34613165346133636534353439323738303237326263323434383162636131383230373731643837 -39323035613034636634316339626134643937653633343036373362343732383637326239613435 -62353737353434343435343536646633666235326430343232346636373638393538346332623963 -38643436346461613565326463313931396538323838316333373332356531633636326265663661 -36306237346135396230626332646362663339363737663263323532646237386165663433613763 -65636139633532323261313831326664626339326234353561333637373465663666343338353233 -36653338373866316435613432373362386434353237303662316636653334323136383030303331 -34653234313832616337366536366437303631333366613561373132366466646562336536306638 -65376666623664316537633863346432326165386437323662356533363237343832373734393861 -65663237393830623632326636656562663035653630323263313932356535333137643563306536 -64353862633230333037613265646237663363363661613534613662386530356637393363386464 -32376637613265636236393639356463616161363732623037306162666236333862373532396461 -66613463646439633165643735393035326635326634356633396263396534316561643964386265 -35396630356361333265653236393238353635323535346266333661396134366465616137376632 -30343566376264376564636636343865393239356465383537333932393462666131366131653266 -34623763313063643838323031333237623436323134373831323439643864313765326363313637 -66636539306534653637393663663235343630313139613433303532346563646433313139303461 -37363763326333306637616130613534316433356263333436326330303231343734303831313530 -36323465386535353131383437393463393634303666633437323634353430633866623032663935 -33356663326233613837623331656339616638333964623034656132376531663931343334346535 -65666133386630663235613134313565383130346337303166393863396138626234323533386263 -33303734656639366637376162376331333436356263343931623265653838663038636531646133 -61633830303236366263363861653039326163376137366433626161383261303135613737306134 -35396335323434303735653336376432343333306632323338653339303134626339636636613837 -62666262653230396662653763633766373262666530376562653634326133366663303734303562 -37323635626332373465616631616165316262386231386533623333383835383833663137363338 -63343936336535343261613763646534383530393664396431626166623832616266316136393639 -31623035623336636566366464623633326135613636653061663537643431336335633964323362 -32626163383932323037633237333963393138626166663335656262323037376363636135303132 -61656334663738353761633236383636333064383832643036343963616338356438373461383133 -64333633383432303934393736636236373437613636343431613331376264393364343635623338 -37393135616334306336666239356432333534393434666562303736306163313234356532653362 -36383439636562316532303230363434343730613462363131373732656532306364376233663164 -61636662393361303664663835353837646332396232376638653430323634366266646166616566 -31656463313533663137366332356638616339306539343965363734616364613261653735303339 -63643230373131656536303035616663366564303439376162376237663461313664373463363064 -36656339626162323266396433663666393865366134636637623266623163303239336165393666 -31316335656139633136313531323363356462313031353063613430313132636134346666396563 -30646130376338666136316138663432366566326231636562656235306161653935643432343031 -34373732613438333166303430616461396231363164663534376233383633303361666164373232 -33393365653162353363356332663231306631346466303838333135626138343932303463353837 -39646163306138633236666435656135306338306439663636346461323631303962633231363030 -63316631356136633063313361636364313762333062616537316537393730393835336235613161 -35653637656438356663303162393436376362666262303264666433323866316165356137383261 -37363162623331306361333236353533306335346563356562313039656335353937646633616436 -34623661633339386135343137363737653963636530613935343035393765343664313834303534 -32643933376436393938656563323661656566336437616432316631363831623233346631633461 -35313734306661343639613035656466323330613933316364353030396438323138336464373864 -66356136613135653038353264633439386565656362336336313135653830343530616361663239 -30323031303630366338646239646138396336666136613031316336376537393462396534356639 -61353530333066653163633438623039303237613538393964646431386565616436653938366466 -66326233613462313966323836356466616636646663626434393835353032353365396565316530 -64313461336261333634376535333335306632326632633366366438343630326230336561613838 -30373065663232363131343766653165366462613338663566616337356135373364333961623237 -38366434303137653435383639623964636163393165623936663830646139353962326139386336 -62383962333761376139633665333264393431623764346365376662613564623761333539663232 -32353238343233626162383564373465663730616135383335616432366664646262383732396566 -38396338313939303435663838613739623130353436336134633732623331656438623665333535 -64626431383364326539386465656562333664353938353636653430353230343262323334346439 -38313363343037343161363336633835363638663662623263363266663535333036336634303031 -62396233326661643330393831393163333434386331653561646436646336616331333262396631 -62613031633236396533323335373335643131333437323732663566626561343434303364653663 -30656163386630306539373333623635643934316534643937653633313936373837346134313635 -32303834376533613832333961326263653762613337393732393631303430643463386132343138 -31623432303264383933623762626230653065633661323536343961663636626338383465316634 -65663263643664356238343034373333353361303165653039643134373931393363336435363733 -62656564613630383464653463383334626135333166396166663466646461366565386663616561 -62626461646462333237333833623336356164653334323230633266346464616666313235346437 -32643763646263666436393661663031323935363663656264616339396163643639323866383830 -32346662333232303164633130633731636631366636633462306631353361373939333931303164 -31363432663134383861383739396135323330666530363637643931656434653137336266326361 -65323938666363653935643363616438353461303061666464386139653336313761346266613462 -34383834396662376263633365393331333863646263663563303732313131636334653630323561 -66383032323464373966383030323365633661326536623563636461343536623634303464363839 -37613630346333643266303333333263623064626231383432376566323165643536363834366461 -37393365356663396165376462303065623231643734373865323237663638326635326236363062 -37313739356565313366623933393432656162343762386262373833336461353132396233383337 -36353835623639306366326463376362663566396534336662346334613231323764343031383835 -30663932373235636639396532326637366239666237323062356463386138633264323533626635 -34656461303665346439613661663131353139646330633763613765626462373261363465356137 -65373431363631306261366230386634613337393537353565373463653530643366623562663230 -33313835663062363834316234643238643434616131383538303866626233633433643537303036 -63636532313137343139383135613665366361383938663066653730376363626162633665333362 -31376362666163636438656165363762623262393939626333373336363837336561646338373239 -33343436383832346639386230353630646666353435363062393664616334613132663437306432 -64333766366362356163623038393236656232643338356638616165383033626463393466393739 -30393034356133303065306164656134366564623566373031393237303833633736303266343361 -37313864363037333561393934623734666138653361393865643566393065336531613161643537 -37613133633039353566323865303163373234396464353436313363363664303864636435363766 -66316639663632316634386664303466356165343062306236343631373430666539353265326130 -39346230613037353333363161366365653232623130363531386631313238383038613430353937 -36656131376236356161363261623334613631623739396538336361343131346335386433366435 -31373139343531343934393564386666323465663063396462393531376463326264336436326539 -63653134383364346366656262663737366561336462346461633365653365336530373338396238 -38376530333034623231303938373031366433343566386565323365336464316662643030636632 -62316364653738393963353337333739633261316532633861636635353432303338643865383838 -61396235343437353435383037313261313333386163356666333035373963613635366435393635 -34666563383337323764306366343639363638636432633832303364303934653766623738386365 -32343637353432373862336361316261333463323430336536396132336265303765363139316635 -65613165616432366336653930323730353264313632386332616139393536333366303530306531 -37353837623337613363386465363662623430653039646431363935313166646131623164393262 -61656233623431633032656539666633656539306539383633633135386632336434343736326135 -61623962666566643539636666663138656532393363356436383231383933366535656536373831 -38626139386664336632646466366234396463656161306662626536303637356461363936356464 -34306430636666353836616532346639396363313436306363323830306131343730386265656136 -39623338393864393335363637393539656234306637373062646265393463343435663638376461 -64346134623333323534303938636265343166346638613865323732363435303138363764326631 -30313233343431626566353735353839626538616331306461613331663663326137333139636362 -37323363393565333363643364376662623365636138323930333632353731386132646531316265 -34326661646662313132346164343963626333373665373632356138383030663831333334313837 -39663533383761646161353232323236393733623634333533376163313264303865646666316362 -66316632303833643334373030396534663935623065313866336665333430363632343836376664 -62356630303830356439363338343330346636323466383230386138393862333764346532323161 -61343937356536646138666431666536336433363938616663623337386232363931623633643035 -36353734343563353266373137656564343733353862313262393334623764346131303263356536 -35643864366463386463333032346432663338383531353962326335383662646639613335636238 -643833353134643261633162653065393961 +31316162333034623435353835393332303736323464313737653665643832373235313535396239 +6231333435663064343132623334613166383230343835330a363163646565383838313333393665 +39336639333065623264373030393465333364366361313065303937626335396437373731336438 +3134636539623136620a306336366465656161663936383235613833303537336638613966613236 +32343462306634316432363866396530623632323161616461356238656136633431633865356235 +38616235306134373638643364383937333362386166376539633066346661616362663133633835 +33383137393663633963333437616630316261613331373232366166623464383733343862336364 +39326163366230616365613366346430336162336163353031366163643862363132333236623438 +38333737383939323138653130613464616636646132616634626436636461323733386138663739 +38346465353737313936363438396233373163303661363330316537616365346134376130393065 +61656166396433646566643734313937336163633466623066353636633536386536326531663663 +61336430616662323637653464373237636439383361333565373966363634313334303566356564 +65333139343935306566373262646339326338663437303035343066323630373165353239363233 +39656437356634666236393738613662373763656466346363616436633034333633393862306134 +64616133393265616165373534616131363734666132633632303239353837333165316163653730 +62303639333966313564333166396361643665623635346637353939303034353134303634633538 +30306665653931363530653762363465666263613633636439663136356235316430663461386564 +66393435613364663361386538396137633365313264346563653666623665616238336165303933 +34316438316565643337623836663236386333326530613134393039313633393234636536656335 +65353961306233363031653833643033666433633862616636636134616139303665303436616332 +39646566343164333866323538363938313937326135663637313662383234616363656361646337 +32353630313764316631373531656463633231396464613030666635663539303436616165633064 +35653538343662373132373465393666633339613333396261353134303964366637373039663461 +38653434396265336261333538386537303033333237333534346265313332343062303061633562 +31623031306434393734653432653239653363643639643838616235356531653233353264313632 +64353165643435343835326163353734343863373766663535363139376262373937666266353731 +66356130386632626563336162653664636131386331366463646435343366656533336361336435 +65316333653334633738616436353766353263326238646331336335316234623632613463316164 +36363536616439636163626330366433323862626362356231323362626430363634333264343935 +32616361363062313334633038346635626236633061303730626263323163616138366530663431 +38353865303037363232306638363437626232393238363764303064656331303731356437613064 +66663734326630313338323935353232333931386433383663333063333164633737396139323031 +63346231643764643030393434653037326566373634326134316233323631303365646534623561 +30383666663239613065336265383566353261326566616338653932353836343262383665623265 +33356336363265633363663562653239633964623662346662393432623637623463366165323961 +62626337353338353237653532393538623531333064353335666230313637636563653633396533 +35336365326137373736323635383265653430363839383266333166646462653338353837666635 +33633137396163383236653732313261313831393733623435306535383863306339353162333231 +39396461326366313339626536343366333339363630356461666465303732663336656166633730 +64316563623030343961303564656131316537373665313238633765396162313464366664616139 +66393038393137613562333637653834623265346163656238373530613333613833636236306331 +33376230336635656261323339353062643261353636623135633239376631383464356239363366 +61613438323839633266386363643033333035326632626535653736353462386264633762323564 +61363436336431626637366433346661343939316336646265393739376661663962623062623732 +30663563313837646635383134663364356164663764653633353163386534643065313930643336 +39653638366166353436623466623934383433613638656531326437663730373563616161663666 +64383634323633383634333331646663666639643933393735393533643437656534376135663161 +62306538623530663633643933343732633263313963386165346561643134393333366436383235 +64313266643166306633653139613266373534376265383230656533666635616466363235643862 +33313736656364376431613265313861333131383362393639343337623534666364393838303932 +32323566613739313238326538313133356163316437633735643335316338623664616230626366 +37343561326530626638666262653936363434373130363863306435643836376635636162646430 +36363565376236323464663336646332333963333937613132623862613763373738303166636639 +62626133313564626537363466363165366339376262383939303033623732626462316465613032 +61346463393838623633613963303136643364623565616263363564353231336235393632386466 +30326366356232313165313935393937326262623634306635383931636231373436623038623963 +30626533616462643961346666333233346562633366356537663635613962333466613763313137 +38656363333065656664616364336535386266616231326239376136396439313562306332323838 +32636331316261303362306239366664633533376431633931326263313564333434346532666530 +34306136316635376235396535346136313936383830353563653630313430373965643238393166 +63363564306630653462663935656633333135373832656366613034343234656430653630386661 +31656461326331383163643439656664636138383836303865613064623437353162616562613137 +32303833383430393761343636643263383265396332633661663765363864383263323265306365 +31633833343463626432323331656539333235313065306165653439303230613363333235653931 +34663133363631653963396631313938333637323934366565636237343839613938343361313665 +66353536343038326436623162336437303039626466393366636330363235653032346566323266 +38636439343738343961346437373533613037613032343630626635323065626332616533326539 +34643636373665393964613138363432653232383738663065343330363335646462303061636533 +64363133626361656566393139643534633232643333386131313231636238303563636634393338 +66653165323633656633373535616161396632646565373163376434396563343365356265666335 +32636639626366393066333064316664373166633236613064326239333930363230656134636461 +39353265646336393265653261343132656139316637396130323663633863383230613964663565 +64373232376465303137616136663037303432393963326632363135663435386634356438326635 +34643038393663353565633131636530346262643330316431323065316163373665613534316639 +30613235646265643561643963626432623735323332663136623834633130616132396135343665 +32633636636261353238363235313661656462626561636639323130363731306432323665653863 +39353337666137396333393431326339323537343765636230343663646239323431646234646639 +61316238343035646665316462386238363765636335316333386539313563363766356638323265 +35333561393664363161373332626563643236366137366664643165323733613230313166386566 +61333631376537656636316430336131323436613039343930653335376165663534396435626164 +65386364646162363033373431356663303832663863666632363864643030626165653734333630 +36653664623939303161626565306130373430326461366465646362363063383530353433363937 +37393330346531616435383531313566666163333037326662663634303838376430383230326232 +64306437653232666236383537356638353538346537303630626562343534303365656637303061 +30383930663738323935353835363438386634646535323665383530306162653537623037333330 +63373438666234306665366337633564663536366638666138353561323962303131626638346136 +65383630323431303139333465653965666661653934343934306361636334336262663035356130 +66613062393463643934666666353834336462663936373336386565663861396561613231323862 +39656665633366613835363936663362373630343261366238643132376565383737303636333765 +63363765336264646231636632623834313333353833613532653666306539363034366536376539 +66366538373864393536633335636563333437303532323866346466326336613835393931316134 +31306239393238336637356236383130373265383863323663333261646539626439373662656265 +62623930653636383363346334626638346135636533616231663664633436323132343661643934 +66353064636134393530373630333961613035393530373430353566626162653162316566316638 +64366261653365303533343137633266613831636662623234666662383139343366323665373134 +38666436643064366137336336636230623665626161313432323438313438353130373138616464 +30363636386236343063363761333430303664303562653966303762636432343634626561636533 +35366466613539343961633034386635646130623161663632663437396135383063363961613634 +64643738333933393362326137626466653138653835366335386231383235383436393139366132 +62303332306633396431623635393431613033396665393539393334393638613935623538613661 +37653866313032373239623839353035316330323365363233643361313030356233306638653762 +37623732333163653235663434343531346436616534623336643735626633303938363532666135 +38313832656232326362613332633431323061383464326434316437646161353533333137313866 +34326339343164356363643436613563393732653863633761346333636261356162323561656136 +63316664393938633931323962333763626136646532356532663330636531333939363833333437 +36323637633765343165373162386566306361623538303236666365626633373662333966333665 +64303262333162633335666134396163326537616132356432333132383964636636386361333037 +64333461653662356364353436313864616439613261643961363865366539316230643735643431 +65326335643762626463306435633234633134383563663166316663653863626239646631393166 +64626664356338323739333532656537623432643561356531646530656366383537393035313834 +65633234313464666366303661323833356564303761666634393336613565623261303832643262 +39333530633339616637316334306432643138323763663131326638363564343434333364646432 +62336462363736313730343764613930333934396536356366633833326438393066393163643535 +33333364376265366335373031663065663738326532623764663338623034346137303139656633 +35346161376233383365656432313561373235653539373663633363623165646136316661383337 +33646464646239653064623561343161633137636630613039633462306530363035333238613138 +37356130393765373839363735636239383437663461323666356637333330663339383736303938 +66633339636463316534323732383835333731653063626663633665646230396662336434376136 +31646239363533666466366639336662643064643762616130623839393330316138343561366137 +38313635623864323966616633326630323031386262343064316437353634393363616565633662 +64323261306435623733363530666362343964626465346562333735353936316564386637336665 +63636536363433303836353432353030356230643533396362613337643138303535353536393035 +39353939623066623433323463353237346439663430383039623734343263633863653265616435 +61623061343066323838613661346631663464306336353139356461663135343530613130333831 +32613864653136346631316363383931363234636531326535653666353062393639613930303030 +34626535333265313633396133646334616365633563363238376439353736393438616666363330 +37616265646661653334326236396339646161386338393530326662666230366532666438363530 +32393538616135626366643266346230316636383037656430623033656430313865383338656532 +34336364393862643237623030303030663762623661343530303363363439306130643362386539 +30623832323633353439396635313832343639376465633665323636653663303831653932636137 +39383839363236326433663132646666306435333038343438373334306166646266643732353831 +34303863643631333063633637626231326236633733303765646337633639636133653865613165 +37303437633731346232663865363738636531303138663839343566373762313930363634383837 +38623961363135383266366236343363343466666133626534613566643935333639376339616332 +30613032353132303833636462353233353062653836373932356563313937333530643634306533 +33353632383333373661616130643262333936613864323063376639386261656233336262376464 +35353733303033613566356261313137303166623931363763353132663933323566373666623138 +33386231346236353830663165613564393662303239623930326639623736386163623235346132 +65333733376339646465393338393334303638643335383434613632623961353535336261663330 +39313366356436373162326663323364626537303434663266396561336663633666393764396635 +35623132613933313333346266613939323964343839373537356261383633333562376238343565 +32643263666234623633626465643939323936663063383737663434383333386464393865386461 +31656132356563306435653732613562303461633765653036623562656465343464313936646566 +36393934376136343434386663303637636533386435653666323930373630323962336438303134 +63323532643565613532363264343930623764343438346362383461356537326632616462313739 +34326466316166383535633230353434613165316532316566386333363130626531653965316431 +33643563646431333935653835643939343766333466626238386661613135323737393935336137 +36633965366535613336386538376264616636383531663035336630356434326637353833363232 +65373236653166616235346636626563363764623335623639363232313764623561643865353335 +63373465393639306435343666613437613465383332356139396132633566643431376138653732 +61646337643339386330303133643365643130666662303936646362623366363539656438643134 +66343534633365626635303065643438366566363738643937303061383564666339373634306562 +61643164373931333734393937356566653266613337623364353361333636643261666665383532 +35373731663039393839356535346632613734333861306365313963363835366363396666383564 +36303134383530396637373730336463636136383737386664646164646431623833393432366439 +63386264626134633961373533323863633438316262386562356133656665646330653334326664 +38326639323663343834663139336665653537666561396637323532613836623265393836613831 +32633233646339346264353439356466626263376632323631303231353839656661316136393438 +31306266373666636465646338336263373131633164333962356235383037316562396337613033 +65666533636430656635336161303339393839396162393363633662613131656637306664646431 +35646565623037336564663765666632363461623664376335616539626463306265613935376566 +65613566393237323332303231643637316130383838616433643033636435326638626262346330 +34393462336231363934313863646636323164663937306237613261356535333538386239303136 +37333238623165633866623837373739643665396630366238313330636537313362663038646137 +64353438383934653366613431646430636634363730303366323932363963393461613032323135 +64393334396462383836363932386232643634643836393663343832313136613535613966343535 +66383161326338666363313533313565633033663636353432346363656135636138333739656661 +63306365376435633633613236646334313966626161346366643839343637333963376162643836 +64333739323133366262623137613466376434343261643162633435396566613731303966663962 +62306135623331306130326135313261306162663764376561333831393837396433303835613435 +63623364363033363962306338356334373836633535366562643164343466303762653735383737 +39653339616439313530626265376233666139373765656139313165663131363438663062613937 +39326364626566303863393966323931343838386264643238363233656165373036653338383531 +35303236396534396437663161306261366430626437623364313563363062663132643239333833 +35656463666631643538666135336236326162636532356563633838323539346164346634616531 +37626562353735646132336433643535663236393438303238366339616661323564396639643430 +39356662653363326166323866376561616364663063373030623966646338666235386332633765 +39306530363461653935386462643735363635366631646264363738306534323135663433396538 +32333565646466326133353532323338663731653738366131623266393366386562373863666633 +66323733326136666366333361383339626333633531633565303362326435636239386139313239 +32343130366338313938316566663064353434376465326461356461333732663362396337393333 +31613665633335646663373739663566316466633533343032636564366437653333386230346439 +33613836386132626430336534633064306636646132313366323437643063363537346238613039 +65323765356439316362613430643066323633393563333135346565373666663439343930626439 +66323965623337666135393966316438353937633230326663366265336531643932663263666362 +31613432303661626163646532396339303933616464646462623339373836333762353165626262 +65366464333638326430643630653266316339376264616633393665373638653832623839313261 +30353737316466396665623735313431323636313233643035643630373137366238306134626364 +64333037343034393665356266363966323433626431663836373963363861316661316463323138 +37306138346261393538356630393032613037363162306664666235646632316135313139633462 +35643734363834613763656164373733653963633136363763313932343335626131616630343539 +39633232393934313761393565633264373062643863633339336165323439303865383966663236 +36353738316635623437336361376133666637306661336562636139663735663730666562333439 +63336334333166623062396637613962616332353336353132656666393632343334643531623763 +65633833323137366362613832646465323634383064663433386235313834656436363365376161 +31356133346636386436623137313839623632356536393865353462663964616230333630333165 +38326263656162336430636665643965353231633861373165653135386231373833393839623630 +35356536386236663835373562346563333033346532356636663130656431393331333032336630 +36353733353162643735613533633562636532393135633432643664316466363033643139313133 +62303164383664656636373434623465306639303136636235383038393531623936393663613364 +36643434356362636639336233366637666636323737323066613430393663643237643663353365 +61616136653066346263656564336435396630623537323632356634383835626634353534333263 +64616266373938633439646233656635383137326530363762666463653235353032376266353537 +62313336356233343361393364336263393534623764326364633938343430633835323131343034 +39666164366633363339366262663632643666636465616533363339633435333065616532333233 +32366264666165623838333466313637356339383430336330646538626364373465613362353864 +38323665343062326664396232636635613836316434666333363563353662393435623030343939 +39656431356238626231313235386437663730613636653139623161363863343534316663386531 +37383030333835373064616330616231366565633563333131313930633034386261663264393766 +63323236613435323962653035653039376261383565366331373763633432613937333466623665 +63356332396239323334376362346139643733333361353932376166313761376133316338356163 +65376335303465666231333536333233326138666365663037643836356261363737353438663766 +62363739366531613230383864333233343861663362663165353966613732616137326162353566 +39633839666131346661376336646462383230383533383162613963386138366364343937373666 +36353434303131636636376230666263373834323339346331353164316339383566636562316634 +61356532666264323663663466666638643836353036353565306430363665303662343861373861 +62383661333430303865376538383731383265643863626364623764663037323765653662656366 +39613730323630326365373263363437373537353366666131376630643133636232303435353962 +33633835303934363730376136323265653061633265366539623864646239363065363337346564 +35373365616338323835613630613361623830346433313130363238623964623532313030393532 +66303934666530383233646131363537626163373036376337323661623730396632613539656139 +37346230633238363637383166626633633261613336383832323761653437363939353862336261 +65353165343332353233666433643666353235316431373361643938323939383130666439613432 +35636364363961333934313236386334663534363639623563356364393766386664323161303965 +34376235623030353737343261333833623233396437336530623732393636313734656263383336 +35363836343539336262663235663863366361643035393039656665373133326332653739663665 +62353736666632363861386366626466303766626264636334643834313261386632373662633537 +62356161303065306438386233623363303630633561366137383038363064323231643165373332 +38323739646133303837303137616539383364656631356461626632653061383363336664393030 +33656535623862636134643633306232356364663964666537383862616364633762373864303739 +37396538373666383737353637653030333637323737666337363266613261613562343731623130 +39313263313630343062633930646235643635613439346136666330383364393338616539303063 +66633239663231356338353632616264306561343164663865303431623037643962343231393433 +63613836373864363533626162613262396465343664363936613664363162666430663234313465 +31386634356436626231646562646639303765393336666565323433333135653333623464613234 +35666630343730343961356135666362386235313133363662616134343362633834386435356436 +33336163333663336536626238633133613333363232666433646564303766613235623434633730 +65366438313161633132303630336263333833336133343264663363383962366365343965346162 +34333466393733656463646264386438636564333635316164313266666439396637653135383433 +32396263333439303532623564356633313931343233643837323365343031346237376361653663 +62303935333138306264616633346533323935616631356261316337336335356461376531313939 +34386630623563353433303562386564373361663738306562623030653030373236323464653563 +63353639356632316236343062626631373230613534663337386365356662386138313663646165 +62303263343164393733633837346237613264636236396361343138313137323261366337323061 +62356537353031643639646362336363616232666266356133636638663762343431646565326134 +66336632646537376335313438366138313266386164646163636264333863353562613833363430 +62343733356261653332393664616535313937613732306537306538343833336463383239366534 +30663533396463626663306233353761376638343935353835346666666436633237376539313038 +37653366323739643665393130656363363930363362613835353362353435656138316261653134 +62313439383161363430643839303931653539363537636232376534396663653465346636303034 +65623264653033323834643431383863396330313838316164326435633566643961626464393861 +36643432663562363764616533316666323966656663613963373632626161666231646432376232 +61386163643630383033653166323164653532306333396564333262653231393233373535393962 +37323566343533346463396466643634666437616333353666323165333161313564383836346138 +32653838326233383736323165353230633132626162616230323666393662613138653236376330 +64363930363734316461333564346131653438663561346230323663626436633739323336303339 +63373334313839366162356439636539633234323833306262646538363065623934656663616663 +37663866323462613533316333326437656134333232376139626433646564396233633863366532 +33396234376562623762373739333664393535626438633038393466623336333031613862633062 +63656563623730626636336361653832313339363631373232616264393539363465326238383434 +30393663333339376133393933393762376264373937653335613634613563616632343930643431 +39613866393034346363616431386264643633316432626663663965396435393463633534363265 +61313737616237393832613963626330383237353862366165373965383534636362343364336535 +39663131626463363965666637326234393666633939396466343561656636623862646135373132 +30376261316135623161316334393234666661636133376231373237383132383966383631343234 +34663765386433303965306335363234313764316565343830613834343933363733656638376130 +38346138346463613739666266386565313865366237653037323334666331356361333437316534 +31656332643337626565616332613235643035306432663461653161366336393932346461663336 +61306365643761343035653866333039666566333639393332326237393963666665666635646361 +36613733356334306335373537376438393662393834353837346138323138316536313963616664 +31343966663338623436626361616363373130313730383261643861656561303235376464353662 +39366338326238653163643066353936326435336338623637646130373162663562393633613832 +65366435326363323830383639323639393662313031656637386433343262616263333765363633 +34363865616262663834363962303662633035326139316334363061626637386565353039363938 +66373966336332633161656237643462386330633132336265653833633032346237376463616137 +64303162383039666666313232613539656233366162336436613831393163373463633861663433 +39633362346631626266353862333461356333323233313130646130653537323462386336356131 +34306561316436623139366332303132363035343330346639623838613338343330646130613734 +62336330393237623930366438656362353533653861353732623565636133373465653664663566 +63386363613432643732313833636538616239306339663938316539653133303938306331626262 +34393463306264646539616637373065626666383032313633633231633362336232383563623436 +31333736366265383631636136646330323635623638313438303664383361623830663639636436 +36656237366265663235323062616135663331343263613532623161383465376634383665373862 +62636439303661363766356135326633316362336666383563373264383635313835653162313433 +61326461383261616535313739356363396364653431393463623731373931333761663065313532 +32373934386262653464633532393536393464356362636535666537393565646438313938636362 +35343036356464363832303238343038386265616537383232633735613330336665346664646439 +36316639323265366332396436323431333833633437633431646436646261303234336137616562 +30316663383564303238363965633932353830616233363235616335333661373964306261316364 +37386535653938653234623563303062643239343864303533653561663564313538613233336461 +35343130353138636639623765323165373337306230353766663230616261666365353736383933 +38363062356637613265393133353234336534653631626235326664646535306435336137613865 +66333833353464393765306333316133616234396436663433343462336331643136346236306636 +66336434633039383665623265343337316333636232373537396635636634356363326235646438 +30626564356434633338633962303134373765313662353538363966333037653934393837316438 +39663031306363393730663534373132333337356438623238633830363937356136643338383135 +66303536653739613866623664613764336163303830323734666365616535323737353563336363 +65643639303563303431316166666336356536313130633932396435353634346535303161643435 +63323265336363613865333734626135323431396562636262383839363832326634316331336631 +34353435653564353737353664343234353539343062376530626334653763623031646162316436 +31663239643966306338313865323433336436653163653933306138653663336130643339663232 +34653330303235346361623031303936373439613734656165656530313135616538363836343139 +37343731646132326538363732633732393833363039653465353538643666306530393937316362 +36363031656639653339323039336139373933313837643339643536623539633832363332383534 +37616363656538643437353864666162303861396162616463333837353535643366326531393861 +31626561356531356161303238343834633035333965636435306639396135356238303735623263 +62303962616134333532386666386437363639313764353733613061666131386431626561313162 +66663964323731386630643733323866353631363761393433356163656234393562626232316564 +62353864613664636132626637383137626534626362333331356365303336333262663266313634 +61663639316634313338643134656139646238626439343862613639633561663833323235616565 +66633038666536356632323031313237396465313235653632636239383233646264396132633364 +33376464343236373033363339633535333939383961613865303535336165343737663537633231 +65633138383532666437313066626365643963393137616162356566306633303064333538383237 +31343535653063393233303931303336353631636265313133613664336534396334393832333131 +32353935616565366230613936326632636639376633366336306339646234316133323231396335 +38373665646462326164343963333264663065613531373333353931653865393936663661643830 +32333864343831336336353538623332383063316265623135396133393532626366626232326631 +38326234643362663235386462353030663331636233666136383430313237333931313566356237 +66663061613034383533396636306331613030626433353564313238363063373265333836636630 +62363031313262343261626465356462343539316336663666386530663165656434376666393366 +31623034383265326231623734656138303839376137643238633465323631363165336534653037 +38663230656532653665613464323832343830666335353766366564393036643535333166343631 +30306333646237356464346331643463383036303665656537336361653463666539363233323561 +32656161643534303636333530303330303937393539396135653930343135313734386662653935 +30663364363363306561326438396136303135666366333332633764376466303762353037613261 +31353833666464613436303765306536336330343736656266366163353665653038336634313839 +61363731323466613766353665303035353734366234353236373264613732393736323031343836 +31663732663664326430633936393465313433373664313337623961636465373664316361613130 +62396563633038336163323133366462623061656461626537653435653466646361333637343533 +31636539343434306563333230616364623461613661646233373632356131366563323464636561 +62306237643037623231663730613266343530633439383737363061343866653730356432386231 +38646437393262626363353765303766336630663236343931343166363932343539336538613764 +62386465643439373963356461346363393464303935653963626534646462653136343238663364 +61323462613865613863383866356163393565393166363766626165343337313039306133316264 +66303137363933626564363236336432336337656661613938616438323261373433663030663638 +34386362616539616530376236633532386565653831613861346437656562626163373666636563 +34626235313933636239336136353330303935363934353635393565623561356564653837383830 +32313762366331633930373537326231633565366637363330656439346238306464336539303235 +32373630616635636538663530663332383039326131353534303664383838646435646333313862 +64663663643665343039326165346132343538646333326333623931613636613066326365323232 +38356263326132303433626335356261636263636465643838313534316534343433626635656638 +34656238393732353064386338613364646266663130666662333362306661636638316163333764 +30363138663261363061623162643138333063663732666131323262303939653366336563393437 +30323138363138633535393061303739333562353535333737346635626134356136346466336233 +36346433386539383061633439303961643233316134383736323833356335306265613939653862 +37633263316462643562353039636666653937613131633434316533343236633230316339316430 +37663433616632393765653635313635633765323863343631616532613138336437316533363630 +31643730313037663763356631633635633662313431656532316131376332346165313462356163 +64616635376230653139616539316262656136363763326431393737343132366337623630323238 +35373833643130373435663161623064663661356230326238386365633137333765336231353831 +66646365306264326362666661373964356238646266623736636139623664333939323965636265 +32623934383532626535663561316630646438383134343562363764353336666237333261643235 +36366264623934666338396333393731303937616565326437333831333463323366346634333237 +62646166376634353265353166653963363639633164303765376662393139323637656662613061 +36363563326362336130343730613839323038356238653038373961396634616462306530303465 +31366363383035316135663466363363336164393666373935653937396230626139646234363764 +62393635393363613538366166386665626666663366303565353131313466646562323664363138 +65316334613565303463623639613865646363353939623164616464353833353665383366623534 +34363739323565376461396265623661663062643331616130636639353034363132343834366339 +32313435343061643535333733633433336235333736393733653262663366626231336633333061 +33623030323963323562386637373933316537386333376330376236316333356134646131613931 +34643730383764643462343264346339343232326232656533663534363964316366643065633935 +39666633346366333764613961393664316336323264633562653862643533363739336539313933 +36326331663336383831336163396133613763613764396534636339313131363266653564666237 +36343563313066383931356236333533383761343763316336613133656439613563633935613834 +37313939666434623434353336656238383862613039633366653337323734373236326361396664 +65316465636562666135633961373031666232373037323237303938326633333030346235353337 +64306137313335633763613839643631643339643861393334343164373834616336323438336264 +63393133373266643065353563396436626663336435336436616330373833636162373636346531 +33343562653338363738373238343262663334326432343535623439633738373263343836313764 +65306439303631316136303063663133333066663062653535303137373530303261646436393530 +64353864323834356363323161373432303435623662643861663832613262326461616330663362 +65363433323361633334383263336431383031646538373736313762643238313935363863653831 +65643830396138383638336663363064376533373635363537356563393565646335333565326339 +31383533353734636433383631396439653039616431343861323764643532633666373530343134 +36396136643033613232306338393033343931656634363462383433653339363839353862303730 +66306238346164396533356565323462643566356262383034643736666432396366353337636438 +65313963666234313464613164633738643432636335373438333863663234633334306361373465 +37353532313561303531363265633438623439643839383361353065333939343431326632396534 +64633139386361366164636261313235623136313132653765303134373536646538623138623765 +64623561393666386461616335303264656530663839303236313363376562623837626166386662 +62336266323735373834383431346561383362363864353534636438326166616565666630343663 +65643965616563613066336366356639303239356131626439323737353364376335363731386436 +33326563663938643538643439346265393732623930323566633662613239646665303064393761 +35376365666661653964666365373133666265313765633864633634383036383636383830313966 +62653539366632303966623435643464633334656537636262336335376337363336356265333431 +62613332393932366332313937663437653335613039313263626234363164333932353063356431 +62346433383263656164316339303534363766323733623630366432393036643264313837643337 +31366636626166323432396635356532313665626234363139643462356236363037303631363235 +64646139376235373930303033356661656563316562346635303664653732353766363061356636 +65653466396264353631386531313262333834356435656335323538653264323632613234386637 +37356232313038333962653035333537643634363135343939653230353661376364616130666532 +36353838333239343337623439393861353635303365316162346464613431663730616165643366 +65613730323036303034633837303533626263616164356231666365666132363533343532363665 +34376336373933336531396439663732353364353866356438666634353736366233343336373261 +36626230663536336230653862633865323361626631383038623863623039326532666561376331 +65653037313535663364616166363435323632636365303831363134353539346635373733353537 +34363135623365373661653832343630346232376335373566366565323561306662376566633763 +32633966323863643431316436343433663535643432346563316366366437313363646435666130 +36333237353465333631666163643230303333353835333765396439383762643437636538393637 +37643463613765366165363939643038383832376335343336613238626536396566393466373063 +34383934306333646637353837343431396237323632613432343863636665333630373036646531 +32336565386662306565366235313733656432353639373965303434373366333539376138306333 +65363665643031636538343164363461636437353461393139653639336166396235363439393336 +39306331663037333264366435616635623865643539646533356330633131326130333432373366 +30326533396163306165666638303661353264306332366361326233366637326263363736643362 +66363735656531336333663963333139613264393634633736313131303432333165653437623935 +35383732636265363661396663323761333464323063653761363636386431323331643063653766 +30643061346565643430313233666136666232643533333839633664643839613363323535653938 +39323561306234613134633538353732363935663734373139373132353935326632313531316230 +32306466313261333934663932323464373666653034376135653966353235306530343061313138 +30336362626165653330376135633063363636313662663635613532306238303338376565663732 +31313266646238373431343864643535343133383532363234656432653839666530326431393739 +39643238306434333439613933346539623338626536643561373038393066633133396235303864 +36303030613935396264653836343634396433336566623761313531313961663639623433343238 +30383031656337663031343830396436333733646263326333396339656564346166383962616634 +39666165663934346436303430396634353234643134633832356338633832346238633833383338 +39653663383664393339333533623263666264313161383563313936336665373632383762366530 +36663634623132393733353230633466323663396262323864346230383662343265333138343134 +38373635616663366131643166653835343639643063663235343431643836343862643431323132 +30623061323966396331376162373032373963613866336139366134376238383765313530393233 +30616336383939313531643130383137333365653561356239386131303765363562303064623262 +32306338623835623465343838326234623762306531623632313432336163323430356237393731 +37616664373161333736613433353763393533386334626331376263353831653132363534373563 +35323237326663356363343138636333333133666163396461316361633363623561323331646164 +63383331343737643835356437313963363231326463363665653638313466353731653938353661 +34626332396431643963663836366633653732303166666532393361346531343531666237636630 +35363966386635613864376636313237613662626137336566336265636337393239313132336237 +64336330313036343239666363396630393137356238663131633538333236626464393836666535 +36613965373261363133393737393265333836366630613430316431616539313434393239373830 +39363835343733353738316337343461383161356161383139366566613332343638316434633632 +62633335663638356335353933326665393038303832323131393663623032393766336536346138 +33396566313664653863386130393436396363386634656135333233316364396534333132663034 +63353230303966376630613437336665393436393363663561633364386663623339393430656266 +30306161633663343934653037343262653037313366326261313231663431636366643765326139 +65353435303865303035386563626432613665326533306433343637643936346234356234666361 +31323239666566643962303433356235336531393231636437643462346463383632633737653437 +62333565373036313161303830333039633563343230396633346561663266616664303037303366 +30643138356530326361636432663236653139663136336366626662306236333831316233376266 +63323463326536663437323865626538653366393238323765393731643561613063376633636434 +63666631363364643630623364356635663335343837616137623439336666386162326131353061 +31336239313863373931306330663961633935356337626265363833316136336638666635333336 +39656338356436626164323663636662393430613130643238633636663639353362323330326138 +35316634323934663365656430653637366630636161326561306164353466383364396338363032 +37356239656163363163393361343461366234646336306435393663396535636466346134643839 +31633661656535306334646561353065386236353837613930633538336236643732613833366433 +61633037396664646566616537666663313564303238636336306338373530346261663538303631 +66313764376439313962653864353831366234316137643030666434373161326633626130336263 +33646238373437623532363939626631613133386366313361613662663137636361626262313039 +32333935396335313338633233663531663733343036393666306434303463353936663935313438 +38623061323061343064303230626162333163373237306436373732353164393535656262643635 +66356266323933363964346466663337653962363539653133623831333563336633396366323536 +38626565386135656438666233366135326166626564383362666139303336616561393835366538 +31373865613230316437336634646238626461313736386262633739356535383238383363363734 +31313066613061343966336630363033616465373634386435383933303464376431393064343164 +37663766316364633137393764393065333964366265626262386135653063656339363063383832 +39313163633830616539383239326363643262343536326664316232613135653932306332343332 +65316366663430653831663736316338306663373035336363376134303133393438616666343938 +34356233393730323861323934323439306465383933653638396263626463373965646230333338 +31313361353264643237623863633332396462653264373030366634393239656563326136636534 +65323132366130653431306133343932386238333832383265353863376638376331366563343636 +30376362346338656165656539616439376235306238336237666436306530373964623338666361 +35623961383061623138366161643338333731346466333366383163343166653639353865636131 +30366536663663313531643636333036343861393039623834613034646436643735376336616363 +36313836373862383135353536303264643337326334356662623265356366323866346266376533 +39366435656631633736616266626230343363313133323335373834386338343736363661386331 +35613461343966303932653336326433356334646634306532396265383830316139653738383139 +37386332393336336530336437613138663666393136656263323462643438633837623531383166 +63336263623732636638393966336662656661383830323463383064333436376539323235346562 +36393632363933313363303734643838643033303164323965373734383964303066636138616339 +33373938386263356365373734393237383133613339613331623062323134386133376631643866 +33373733643336643962633637656566643638366135303930356662396637373331323765626133 +36653436346164646637313033313033306361623964643863336139313838663064353565333132 +64313064343461313830616334633436303964323463663565363561386230346134396335643663 +38306639666637323736663238346637383738633465353963623566383337366161343135373339 +64666533333061326132663137623661633335663564613165626665346364336466316431396166 +36643936316566653433653735383238326636626638393961653161636232613161656164633162 +62376433323838333935616439653233306261356637313031653435373633303965346139386165 +30306530623537633962383364366434623462396465313937376161663731363034326262633561 +38613136353934626232623363363062343939663262356463663335343761636533396663663836 +39383736663630633231613564373865353465643737373030303961393434653265616437333530 +61376264626237623262393464643361316366353363393939303130643235303165383834396532 +36646162366532636435623536653131333066313462383065613562343536333034653164343561 +36353464643263633332663633313366336533313765393236666262633132306436653065646632 +35643635663930666462393762333539643933326666653438313936663461616333306139613138 +31336432313334656230316665316435316134323662306164376437306263313635626162343231 +63613535356334663332313533306233666561303435386663636266623263353936616561636332 +35393438356130396432626261633537316134616535656334303034376461663533326662396635 +36366534376661653133393936346531306133326463626235663461633831393237366538376464 +65643464663764353534353230353331393965633163626236393764613934353839663738626631 +63396633663931373265656466313664383031653434326336366436633765613864613963653563 +32353162663465356539306465613666323963323433363232386336663736633965353965336537 +34373166303839346232653535303764623263313435336238393561386261633534386131326362 +36356136316234333437323039623238376233636363653233356264666366663438613364643731 +34356339643430396539373333653732613839663130303164323735653939373662666433653833 +35653964393032336165326535333437353066623239313835616432313938336263316632303435 +66623865376235646432353961333934653930643232313132626336343532323961616533346630 +62613335323465306539663639323830613934376632653965643062346631646564653066303362 +33323937393831386164363138656538613563396235336631386263316563646164316565616334 +35653737653337303035623133646135663330663062643931323333356664356631383738376465 +35333437336664396238633736623765333238656563363363336665613064313461343062303333 +66633863323562373330393366636263353935643832346437303064353664353734386135353562 +65616630323933313031333430626639303530386535333034313965366361383963306366613731 +30623661626338393466363934336238653531363865646433346535313336616161373465643531 +66626263303764613232393437363264663931663862313435633233393634363339313835333964 +37616565316534346562393839646164656164636137393938613938323866333636313935366366 +66363832396433336237353036633761366362663661333239356637366365313435633132303738 +64383636663132636462303164633863396234663339613133393363653362306232663061373930 +31623965353230393535313861383131303437633630373566653832323639383165396561323466 +62333136663432383261366231356334383830306436353566646433303966386565326463646361 +63363165326431386165333365343734366430646232396161346534623635356631666230613533 +63316233326339626563326666363665323766383836316430363430383664643038663333633230 +39393236303564643530393134316332613437353062616633373438663463356334353039303230 +61626265303465383636376432653933366363333234626130633531613230666237633565333536 +31363434303864396139373863306639383432363537386138643039393635316166373463313934 +66373536363764653635616562623064616162303733393832626336316566646161623363663838 +36633538383866623538616135303161346439343438356465333139393665656362623938343434 +33353837303233616231343863383235383362626630636133656536386530396535333939336238 +62393433383866353765613937613239623838393861626534316533636331653634393636653963 +65393237636461363263353136616231316564663561373661616437383836613963356465346438 +34343333616331353433306363303463653132343635663262373039636632363639373338326563 +31353734663332313364306436626664323563336265623065373035643563626137653739363865 +34383132393330666232353030343033663365363562363861326133636363633764623231626436 +38646335303131376535386436313132346161356333373435643034393037616331316234376466 +30663932643939323764653636313439653565346633363030323139646536613161393663393334 +65383762386134363338363131383934356462376131306264666363366162316439353063636337 +61353263383061353538383165633161346635633131363134373634653637643231393565306432 +38356661363465643963656432653764393539343430626135663362666339383234316134613633 +36343236626639366630306434363933363861386639366661616636666664663337616233323735 +30316330323337636139306235363031653935326361326238323234323765316565336531363138 +64373863303537623265623466346530336533666132666434653562396333623434376638306338 +65633336623237346233626666393937623933303066363666343831326533383637396535306335 +31383838323632623265636665316539653664376236376262353334636538363233613964373730 +64306331613765363031613734323063383036373930666361326337626630306339616134333433 +66326663653866646161626265306236313065316263373733326333316461373862363164643664 +64626430636161333733663930633236666265356437373563353566656639363934353861353631 +38643536343139396337363365326334366466306162353134336536663832303231373231613464 +62333931363733363534353864656632636462333162356461396261373463363566346664653461 +65343665313532386339383735303162353563303936333164656135366632393666653638663330 +35383331313731623838343539666538356262643039353538323031303064353763346261363239 +63613861353037336462656461363435313431613233336630373133373963623462646631663263 +33623230636563386164363562663336653261313063333230366164316464343538366461346530 +39633432313465373332643737623136626336356664613366616539303335303832343036643636 +32623064373637336436346261306466323530623363393761373630613364353733316131646663 +64656539613838333336333965386136646634653266623137313932333230346365366564356439 +61356230386261623837303437353439323134646266616662613136636336613731386365613834 +34306437653735373961353330316361616666316231393862393030393136643135616535666631 +33323935343036653432326338383262303261363730393830633939386332626439373235383366 +37306130343933656530376237333035326231363462373932623635306461663165373338316462 +33366535306239303630626137343233326436343436326664396631643262663866363661393033 +64643838306637313666636130313963396361326533353835326362613936386636393835373536 +32613933306532363662333531653865303464646565323666353762636236623132636638303636 +38363630396566346132333634393636336264623861653461336236613363343736303330366363 +33393464613530303762393464303039623661366133323635366265383035323438353032333765 +31623739393535303564333138643534366530303464353763316530383163386435333734383732 +39646638313734616537393931666135326538356430623836663332323631396234393030313263 +63636337333331383834323638663961303031393133366135303161313731333763323461336666 +37623266386237376564386237613130616434353335343765663230353761616164353339623234 +65343830623462636430313264656665636134323333323134343962343763356331663830346564 +39386436306663393162396235373764333231313239646161366564333330336136666239353261 +39333061616533346533353536643831653462313862316661346364346439376365306134366431 +34306632336365643463396663393863383436396638333261633364343734616135306131333639 +34663639663263393933656233343233633338373266393433613366303662663563326633363765 +36373633333461393863643763633265323861376461303464323038363535323934353465616362 +39366231386266383937616561356230623237343730373438376430386164633164393735373430 +33363134636435333439313666383038643262396666306536633839653636643834333961616333 +38353764383137666163313730373231613162303662303734646138623362303831363065656537 +66346365333137326261353236363833313664623633613365653239376262643262353334353163 +35316361396635333361636665303463363066313034333033613962653131323661383131636166 +61376439656230373237323539383430313138626432613561663834653961613262356539363538 +33363863326436343763303362646264656364323839633436343335623332353435346165643865 +66623233636665313765653562333839386633613839616239313265616561313635646361363732 +61623730633066366539633337666265326137323761346631666136373531353237363136316365 +64383664653063636231633465333561383964313531613861646239316531633532373666383430 +65353365663431383963666530313038323237353135623261393662383764386265393433326432 +38663437633663343232633861346232356133323430373532343062643632613735363433386233 +65633263313364623232376137333263616365356637343161363838383863616230306663663836 +66643331623032373632316133303231393161353231363861613437336164343266376535323739 +64636163613436383664643765386531336663326434653163613064663132396635623334326336 +31666133633265666432346262313838666566373964633135643138373432386435366162376231 +32366532396636663636643562613333343431633436663937313561336435616664306635313637 +62643532366264323737396333656266656662383962343166663463346334373332393663396335 +34376536323337343564313336376630323138303861333164306637383632386434653930656364 +62633133633930363331346338636365333065313930333262353262353933373862316639343936 +39326535393430343166666431353265363364663730393666306431376664396132623038633535 +66323635383735656166356264383064653232363530356531636138663534386339333866666534 +65623031653733393231333733353238313234373432363233613339653435333338656461376134 +34346463653066383862363764656139663062353736386561356361626430343266616662636664 +37623335386464313139643265636431323737336262326265353431613736616437393433393665 +63333230663233306265303332346264653231373066333161373564613638336537666130636638 +32633364376132633562386565656533666438303335303761666261626537306136333031393363 +65353666363764616131353733326465353830313331313836346165326330356437353863623062 +37393436326336616634613162333966323737656466366235333261383835333764373266616433 +39363735656563633664323034396232366531353639386161623530663739306439633438383063 +38626638303166666266323063326435386138306534346231633039336336333562363431373834 +34393538623837366464386364646231656464386132313366373634616430646632333461356437 +61636436613635636437643735333765393066663566643562356264336133346366643333383632 +35316662633432336564656637656366386137646263333838363338336665653564366666636137 +38386136616265633734663264333938643637313361646638613736626338393939353933313162 +36306262383666323465626235383035623836303332663934373838616463633734666464643434 +61336135323630323933663464323662356130333665663733336366383137336233306666303864 +62336438353039633636316237643665303865653634313537616565646632613739663930306135 +35636263303734393065303434643836306331306262626361343135396635353230383166396263 +34353836303961323839616631376439363532343736306631643131656638643565623961613634 +62343933663766373030303838376463313539313933363066316165643830363938323236633063 +31666437346164343933616532633334363665376162313666383337303266656562396338653734 +34623534383930623533653236363961623432653135373234616336633666373631613230353866 +65656539636465323832666466646531623432346639386235643133356134326635346230613836 +61663162646133363062336239306135626335383530616238616531333563373438353132363539 +61396536616133356136633536393763643733363734343232343539656335363533303562393139 +37636235353139623231396135663365303961376632613031326430333231333439653532333639 +66306534383438623130623963656266383361633230623362396533313938316130636634386364 +38333434373662343833633835633065613138666431626632623565376135623931303239623464 +39316535323866306337333363313661313061353237626561616330633464313931373238666537 +61316632343837386361323435353437383930363763376536386362363761366136636639623433 +64383962356464643030323761313662326233363639353232646262383431336435623832623563 +30656139313165303030326632323639623333646334326135623535376462633035363162623161 +34363138613566396232393833363537373165343933303262363635333663613935323439653737 +66376539646465373833626566383361613039313461373530393333396662336236396138613763 +38346463646539343933653966393232313364303764373336363739646632346332356463383338 +32616361653261653663613930353264613132313537646561313330303863666436386137363263 +66386235633635666238386339373435303134643266636363336366303661366135643031323139 +66366335393163323338393861363033343335353766383061353865326564623163333936373935 +31316635653466656637666137326262613734333361653432353635393837623733363430313765 +39623730653337303237336439373464313163653664303233623738343864343166316335616165 +34383330626365353632373866346231363335653861396534333135376361616331663562653734 +34343133656538643738326665343134336536636561643830646637643636633335326364373062 +62663031303963356237663862373535646539393237373761306637333762626363326261366563 +61646132633631353462656137353931313663646463646433346665353233366437643665386634 +36613362636633623737383634653361353865336532333638343837363862653331323464333865 +65356232353238356161653164666665653530376161383133323636663437663239343565326666 +38346161303763343236393766663232623436666162333435346233353739386632383838333466 +65326363653763386264623539306332383134323463373232343636363966613934633039613936 +35333630303736393862346230333232306566313634666363613565366532313935363764323237 +30663333353934343136623963663136336533333137356536303163613334323061386433653030 +37626230666530313763303263316339666663396334356665653636616232316465633064346564 +31633537393130383136306439616361373931633635636464633331636439366337376333333239 +31646134373932376666383134656563616638316166303663326463343534663466313036353535 +38376437343638643738313639343565393032363634356663323866613961346335636364663934 +61663235656461303565346363353263373032393435373133636162336530643736646633393761 +35313034663161313966303764666538373234643332663063393036333739303839316662623239 +64636562323764663038346464353565636530376430633365646332303866306338353030303239 +36666438396364353231363534616238383337343334663465393534653535636135613462306163 +35393338623861386131626438346432366333363632396638373465366333313337376430663330 +65386235663064373034303763366338343436643665336432653735643562663261346263303731 +30313936313364646565653363386366623934396632626436623438303530393035373539323534 +38663337333566663763353737393931626362313039366566666662353138656430366534343831 +65643565313062383733346165326466316434613932313461323731643766373564323830346361 +39333436383462353064303662623663326662663161313535666365633533356336373332343838 +62303934393730613139353866623738356136336630316534313165616439343565623866313863 +35386531306262633930643466343434613862373963633663666461663630346134396231373130 +66396461306434353361386233393538613234386635653066656634653532353039313139383765 +32633731663834343331643633613434353061663836363061666534646135383931643039623661 +32343030613330623435393539383334643036623862313561303632326362623964383165643034 +35366137373437656562663636353833333539653962616265303464633137646265383136366461 +65663262316438396137363433633137633738386564393461313061613063656634303733303635 +39323035333736643066316638343738313936323361613632613538346464666365663936393233 +63363864393161306365663732663536373062376166633534356162643065373834653736356139 +32363938376366663737383232323666313435353564306533376132396534633764333236366134 +65386130623632396533373038623361323334373064333033353136336237656633633538303565 +34613465356236663834303236373437383334303834343231613533666133336166326532356131 +63386362646536386331636337343864356366303564663430333332393832613633356130386331 +63616533643437656337346534653439656230376466663365396432343932663933616463666434 +30336331376639633133303861613961393532626263613562653864323833363130306339303461 +39396661393532376532363564306238323361383334343764343266623338316337643564396566 +38313866626662343961303766343864323263353531616234316538633466366336303735636530 +39353539653535636465373236313638373032353939653730316338393063396561333337666265 +33666561343866346137333835633537666434363231313331366662323163336435336233316161 +31626635666331393164353462633138653432383961653865636133313666643661336266306532 +63376234663535346439653537623638643266303238353963393238613135336665373334323661 +64613264323561373730343339353439653835653964346661653039333338336535326463303330 +30323164643564663930356130326163323961373432393733666364333033383434386666396264 +36333365373435613539346435336465313562376637393539613831343739306262303662666431 +63343238353634636131633830353265313135666234396466366634343038313065393631323131 +35336633613162383464663334343331383330643331613637346234393036396538383933323934 +32343864306136356438636265613366646166316563653933633135373631656535636230383032 +64376234313935653761326631383564386661616164346636313661633261616265343935333039 +32383565653635363365343037336230633032343535323461306131633435633565303038326431 +65643738643634396634333334373632633063636661373334313131313134653436386339353763 +36646538666434386138663437303332656136353961373162663165323364343634656133303561 +62323135313562346635396165663439633462363563363339396434333233346133623535663532 +63663832373833326135323537623764636561663136353966366465303638636163613164636361 +30336564376434376163326433346230346236313135346137353730343238643564313032643334 +32623462363162633637623861303735363635393362333834366564303665366264306661656233 +66386437356539646161393965336161653436323662613063383061616663633764613235336436 +62363233656630343032303838666634346639373031326138656331626535376434643762633231 +39376565653037373434356266356562646334633437306565616439386437356661653466643733 +66373266353934316231343634376237343238666239613039396135336631313633383037623762 +62313562663766376337313566393236376531636431613634643939623433376466393661646437 +32303364613233646666666230626563346633633564636564343230356662633336363533393731 +38396639313361343261366666646237396266616533633961663466343230316265613963616137 +38373933623434646332646530396663383666376633363161303930663734393736643538646433 +66653465393461623864313331666537643062313839386537306331333163316138663837363863 +31363866376339396264303332383935393931343039373131383131373065383363363737643932 +65633334636561386239636238623833303834656261376565663439643838356137333962666435 +31646461643732366433323461353437643432343664323164316462353434653061636237623766 +62636365626539326430643338343362326461316538316561313537363762343731306130376261 +38366438643164336262373631663564613032363731346537653563353538643736316239623163 +64303336336437313632363932643262613135376564303135613035333766646131326264613735 +38306562363033356136343661643662333031623561353362383339623033303032623838343934 +32383133363634633639613861643736653439356339626637666632343138633839626131623762 +38363339613239613137393465333930363961656131636666346364326635636164613266396665 +65353733646161386463386336336432353330303331326361643638636265343633373533343530 +32636135383962396665363765393862353731353537343239636130663433366337386433613330 +35646336616238646466313366316638303765343831633431616536353461626562646538393866 +32613865333437663837303564363063633063653439336266633565626364313338636462613639 +36613564613062363833333466653431356134313432343737366634353738316233303935343930 +35646464656631383534643137373938393362396562646633376138346336646333643666336230 +61656532373631386263653065316439393765613937313631393536383266643239616439333764 +62396638373739353238376230323030313536303264666432363838306665366339643535383738 +30646536373234656330623332366130323033366235663032626664386537396535663565386265 +64393332353264633831646463313361356330383931343733313365623432656363346439303762 +66653064383964313231386332613632333830383064323435633165663433663131663566623866 +66303465376464393731623533396539616163323135326566303466313865356465643539613035 +65663131326666333937653865366565306664653837626539663063393761353938653530633731 +33316434363266373863386561643236303034613932326166326232396139333164626138323664 +36643230633737623166633866656230346536336237353431326364376566613035393863333566 +38373833316336343031383531336463356237393462333363353131643535643661373938356231 +65633563613034623264663535363838353032326236363533323364376535623333376134383466 +64376233653462363866396362613634653638376665373036393266343735363737336364363961 +32393666333534643261636436386462646630353636316234326265393363663537383230316133 +37386265623466393833353030366133306666633338333165336130656562303033383334303536 +35353962313837663939356537616135616462323833623263656538356639326130646263316465 +32646638383865383439396235393463373933356365626234346462326537643838386265326265 +38663238353239336663616431373766653431393761663266396261306263366663333261323866 +38386330363465663961653036623634616262613163353337366330346434626666623761313536 +31633837623431333465343333656336313761336530303761313632333532636464346362343637 +35626165666436373336626539303130393339626266386661326630353365643861613135663364 +64626138333538386238623535356235643964646430313834666563656532633636626330363061 +38333164333239636235313138633865343630303564353239356135353136383639346133376231 +35326632646536326430623535346662353937343436336232353437636533373036363738383330 +61636662356261303861343337663136656461376436386266343439663933633437333634306361 +38656535353432333961663037373130326238373561623930303537613361313632333363376432 +31383930643365363066316336313765306530636263316134376661653661663436383365616465 +33653033326337653038636634643337663831386231333235653262626666333531316637383332 +39326639326364653530346139323865396638383061313131333163393539653461613264303863 +65353433653436333339376338656263353739643766623538386336343732643964393137663561 +30666133393630623038313561643363663163393462306538656565303765323233666232356331 +61636337316639656637383031366666623963323733626337333762623835666435313566616237 +31333462373164353236313238653963343265323866353537643961313434363164656336393030 +38623732663535656666646433643432666333663739646438356663356237353339323937376462 +39643635313461343561396466633964366364383964643464303835623163373463353233386536 +31626238613464376130633233376438373738353965613432633863666631346630373030663738 +31326264623736313538386362643231633461333632373462306665633035303532653566353437 +63373433303738343631623933353835343537373434663466643833366136353431363832666330 +37613033333335653662626539383337633266326336633761633137653662373833306534303238 +39633264346130653530393630363165333730363566323837323033626436383830623032653633 +65303732643066346238393461383436353838323730373836623131396464313436356362386239 +32663233633738643037663132623363643266363763353866653463346633326135346632646239 +34346166346331333065303139653562353265653965643231613761346361386562343132353237 +34313865303638383065383836303465623363353936353431356133643832626339616633396232 +30643065323534336338646235303239613966316465373936323566623335333636653131306266 +61613437346434393938636331366461383337323830383030636437616136336466303430663730 +36363733333833376365656566636364333437643166303863643133653534613138633032363035 +62363963353234336438313965313037663966323964646438313535386535386661373063303264 +62376137376565353537366430373337383363383339313732656437303032376562373766353131 +30383639343936316232643564333932373365326563666161616539616166376135643230646664 +32343236663030353738333635373831646162326434636631663533323534633666643532623539 +63653237306331336238386637383864313136386133616432366431313433323232623838323865 +31646166613863663537663930393863663530326565626534383262323436313462663931623932 +35323534666233646661653134363566393232383966626436306132663235383934636236313136 +66386331393035626334633665366235303539376533336331623364303531613132303333323231 +31663133343534623465303239623931303335383739323863623431336365363362316338303934 +66306365356134626161353461633037626631313030353634643564666663376561613639613361 +62393661343661383431623265363838653165343832663737333665383163613238386462633966 +66306539636563653139303430333233663332343763366131626430333866393639336564386461 +61396261386366366430343738303961616461373039396364306630333938393330303661636134 +39623635326633383165653362653337356430633262346535643063353466343432303330653665 +62393932633137386436333435623432623166393061666236323239383639653361396536303036 +61313463326334376438313465306366313035643963316130653335396236616563373637646234 +37653363303431396336633663636165623765626265313765376362386266323431653966346261 +31333134663163616638633432643231393032386634653165353530313265616565366163363739 +33323331663766386439656439373931353137613938343663383236633638363337616264343832 +36343539663164656639643838663662383931366530363235656438646438353933643061373931 +35623234326234633731643063343230663766623631633939363439643935366630356639373136 +36626334633065653232356464636235653130653762396361626661343037313834643536313163 +34653763356333396261373766626430323139326433323765306333663163313539363139613166 +64313632383166363664376331623261633831623033303566343836653665346333646536626233 +32393638313333643432623930343139343133613263616631383364356664616166396239356437 +63353531386435303535643238633761346262663738343262346133633435663830313736633339 +30663837346632333766663333623464663932326339616532373434636536383336613664303238 +65306130616437343337316438356136336230656233363763396338656531393765353262333037 +36656134333037346263343666666164306161626564333561613039393364313739643639366234 +61613261646437363763363834313237326630333035353862346132653966333038303662383039 +35353839396236313033396530333331656534316361393530306237646364353461663936343164 +37326437643238303966373666356236653962666264633162333065643732396664633734626133 +36343432613266626231313666343564373432373832316163303537306134643835373533373263 +30343861343531326536663035613339623334303863643162393131353034323930636563356135 +36623763636465386665653333633239613138303861326633623461336361663631346431346233 +33386131333461663266653961303433646638343636316233643963643738343932613866326639 +66336530623339363833386237613766623931616439366162303365313366623662613663646162 +31376531316534346631306534323162373037303533336639383638666662323634333436356232 +64343837383034353639373064343336313134356331386365656262663832363331386363633830 +31643237366438313864346531623234373661346236363832623662323837626230623635323062 +66623831373235396132666633363963393863636363313263393039336365313465313836336436 +62316537373434613132636234663335643365653261633139333837336434333264363233346234 +38643164323461653466356432373466656235396365383966326662363966663965616231393436 +63653035636235623134613132373263336137633662373339323366646361313466316230396363 +65316434313436383965353636343031633532646530353235386165356564633761336438653866 +37653332346334396537303537626236633535383531383866373135656538393033343663656438 +65373035636233363034626133363462383438386639353866343561316366373937326434306339 +39663938376438633933363263373439356630333132633734323863363231633264356335663364 +35663630666536336439383335623936663934323363613365613530343431353262623763666661 +33623834666461356631623565636361303839333366303364376664303264366431356230343332 +35353933303836393331383065303730643963383631663263666230353332623536353663323131 +35346662663538396138636664313964396530313739363565316536383833663132356662353061 +31386432663839616630363861373138393030376535653965643566326631633338356531613830 +31316133343961326432613164623266343331393032633632323830386366616566353437336232 +37306465383861356535636433366433313065323265636335663736333564386439323562623030 +33643636623861346463646236643465623961393439373033363830333035333633666132616638 +66323562656165313064393738646138333331663936393431646237653864393332386663333262 +33343638643935366538366462383939633765306334633736356263343337323231363130343231 +38653132663062393932626161643034373762376130633230383061626464663861616530613230 +33613834326661323837646132356162316665626263313763663132376263613832353165363232 +66626434626462363634633931646530386631323061376331373163383139643638656134623734 +62386662323831386133633035633739396532623630383232353465653733353032323339353035 +61333532633635656137623162633937636161356136353739663634316230643031343366353561 +34303336313365333436303965313832303339353162393339383938613065663431393738353266 +37383462623732666437343466373338383232373630346463326639653237343935366264363634 +66663631393236633866653234353933663165376333393864346364666437396566353439373132 +62353162313764616161313563363534396338336466643136356433333639376261643664376261 +61663031623365316434633438653830643365646161656536666136356537396334666662333137 +37383938303434633838393466366236323035316531623262663934323730666230656231353166 +38653231393133616130343762306562323539383263633561303231366337336132626630646434 +36383932366235663532343636626430353036623435393066613934653332343132633830373433 +33313139386361323539663061353566613937303834376166313966633438646631353561316533 +62333633353137366630373638353765323561323033303062383938306165386238616334663237 +66623730373936313965636563323238306566613661383030366234623336353237336533626238 +31313939323430626234366237326238316461323339633765326531636531323633616130316639 +65663137636161643065616539616534333032326262643436656435393661386463376336333939 +36373764613965363336373837616337633766346433333264353638386138356364653761636338 +66333033326661373136636636373565343466323765373034386236303637393634353834306634 +65353463363166356132396131653463336331623732353563353066633361666334323163636133 +32366137363837303565633030626362613232356338363137323333333662643635336563653539 +38646239316532383663323133306662643661373962373933383263633664643031356530633664 +62346139363735663932396564383561626230393964386662653636653964393933633338636335 +31373132623263636336373636353265653064336463653164313666363964633261633134376533 +64613732356537323963626463373738646266346161363039666237633136666530333635333739 +35353531303932333864323134613165373561356438366439366261613734333165616164616237 +37333866626462626363393535643838633739646130396262666264613763653438323431363837 +61333265323232666230343336613233643432396237666536333134353331346166326136313536 +38343435326636656535383238643838393533323062336334646533646235386162353233353238 +32663164313236386636616231663064373761373230373961623133303039333766323730333436 +31643137373533663639316437386634626237393335356139306538656463333765663835336432 +36663431363961633963386665636331626339323438383035363337663263643062343661623964 +30616530343435326462633235396536303330626532323437383431653232646264633462373363 +38393962653731656438656466383962623434653832313635343938376132386536366661666332 +37343435386238393037366639356363666132623133623933376466323664363364343863643639 +33376663323264323037666636353264323236373237353034323761393036613334373134336432 +31316638323232303164346237386661383566393763373762393237623837393135656332383064 +37653031666130363665396436363461353163623334373930643165386533356434643262366131 +61643965306335633564623562626565316333666132333835653433356561333739643634653332 +65393438623962633662333031353234663238643036353463326130646365386165666236373530 +62343465633538656238336461376337653463343330633532353432323634393364326463646235 +62633663656138343337623535316436366365396165633262646530636235633531323536326436 +62633730386333366234323935333835373936333533313363336330663937626136383337366238 +36333139643636663135326162383166613132376336646531613062656365333661636438373137 +32393232633037353230653161393331653439616432653364643464643833336539616230393439 +62313134616362356439613935636133636331313065616463346534646338613934376638383964 +64353734383162316235643530616230326164656630626534373136666338613231303135346164 +30323662303636633831353066613831633637623465663637306662323838613531663233386461 +38356439623238646262343236393536333666663634363964336431343334306666646438323534 +35366164393166633131313461383934633961343437383432643661393865323435663630353330 +30633161303532643163633135623465623563393761613931373462333862663035343239643461 +64643335663434326532383562383738623237643732633135366131376633643035303363656461 +30623330633364316639393731303263306336626332376663303031393662356637643330316133 +39653165653464646361393532633764626235376164373333393666396464346464646261356631 +32383738343266656433623164383835376665316461623636396339333631336438633462633738 +66393231666264646230333836306265343034393861373264643339306339306130313765323363 +36663866656533323461613334656465366437623864313261666266353731313966653263383032 +36303363633235336432653262326662613164323864653863313730616635333866613635653131 +61346361633931376334613538306434653965346230346234386263646431333836353535353966 +33626662306234396536323161643237323535623964656265356161383166646634303062346633 +35366561613462623639356136383837383537376333373136333434303233633964633164323534 +64393134303062626666373762393939326166366434313062633862343162313666653666373163 +66323362363531623765636265323065366435626366626631326330306638633636386131653062 +63376161383838616234653431316132326366396633396266313939393761653862366536313236 +35656437313365633562303036313664646137313561346161636336623439383564633931663533 +30323966373265623332653630643562303966313163313030373231376236333261356637653331 +62373362333463376136323462303261626436396564363666663462306666373133383037313635 +36623563396366383934366538343832383531346537383164346662363565363239643530343564 +63333938386431303562313838616335303935376237663266306664376262636634393038303461 +37663433653962653261373665633833353831613935363136396665356439323637396265333730 +36363330346162353831626434333638643433663965633138313461623135313338353436643331 +34353933333462626665363135363732333931313337656166656664313331376265336565336561 +36643664363030373761353331383965396336633438373762313239373038633932623230633336 +36393035383463386463346637636230633830646262623061373566373539623662316236363136 +36323932393233333032343434323962643034343230373164656235663865653436666462643532 +38613434633638356261343234373263343030653336326462393962663563363430343465353861 +65376161646163616564383730306166386632306635303338373136313539373837396431313237 +32383833373863313038333939333230336533356635323164353664666232316338386664373535 +61343035626230333737643563303335396165383936386535376662303532666438336465663633 +66383037363438656535613962393834346234613061343538333739343937613938366432373161 +39383436363131376432323766303030613662313864353834376165363633383165303830356666 +63616466653336313531303565323937303965643336636135663166306332343539656139633235 +33363733303139646430646438393732643339323332366462303234346130626563616432616133 +35636637643266316636373337333537346434633036376262313037366164656235383962663432 +65386663316337636531386564363637366662393432343336396135613565383061303833383061 +63396234653131343166336538613862326236323836376639316132373430663436613930363733 +34663532613539393831373136656137626536316630376564653732643434646531396239343636 +63613765363430653935303663303037303638656435356631383638616462663539656364623665 +35393063383734613335353964376566303130393031633261623161316636626335643462383835 +63313031346261336639326265396562656661396463613731386536666536303161636434383134 +61363635343737636631366465316632623662313132303431363765646238363461383930386432 +35613564613636666664326265393165353534373763303063346366316366383666303066353633 +32316234303933386136306137383363383631373435356662343165653865396461633137393966 +30303138646563316630393361623936393037616461333635356437613764343261363063663239 +33636461393034336364666664356436636365303739613539633962346661663539643130313739 +64326462393965613939633661373563333238613236353430313231363965363030393761386635 +66633434623466623439623231383034636137396666663965643333323838643232373963663832 +38343138643162393030643632633165666535623233356436653665623731333739343762393633 +30653864626364306238386663386431643133653165663265316439663135386439373132366533 +31663334386566633934303836393839333861633230366266626461323431393666626561303765 +31336237303935383638663939393034396466323864643734343838346666346332376336656632 +35303465353239353661316661356365386633333966663838633633313935633166643638353165 +35646664323939353062373862666362396431313062653263653232353661306433373430653438 +30353464643866363533616563326337393064363234396566336636653236666462373135323462 +63396564313734326437626634383864323962393034313030353532313730353834313936323033 +38363663643763616638303537386265333562653139383034326432303630343464333230306262 +63376634353766393062373434376265333233346164366237306233633965336366646361613066 +66363134383066396163303339393462313463333236333634616534363262316366643431343332 +64633366303938333963336261623864663463626634386631363661313033616634303633376633 +39333366333363323230363965343935666634303531386334613534313230366365383337653530 +34656339656664303466653762396238373331636566346332656536623034336138656632653064 +63323762323933616439373238393865646336646332633261633536666630353136373362316639 +32323232353437323163376464303662373162356636633032663233356463666664636233643564 +32646532666161383138363263666237646663646631346133396166623866656562326266636462 +35356661616261386634636165613638643865613438613965663566356434626433666639303730 +32623438353861613934383634333165326663303833353537366336623737396365633965383833 +39383535383664396431303061323964373336383336316237333435353432343564383430623531 +30393434383839383862616331663234656233303261383835633830303464643638623137366636 +38663437393737373762393833393363613664343833366362633538383736316463623466306362 +37303062633039633630383264363335643634353334653536336137396566613236353733313235 +62386537326630656232653863636332616131353536336161303133386139333335363632363361 +39356538656364316236613163646664363366303836316130373062363864356164326261363865 +34623536613035356538346661643939636262323839653664383138306230643366366535356335 +31333065343264313864326338343464336336373634336138663066353863363663613530343066 +63353435656365656233373533316539313963306637356535376239653833356333663661396634 +66363936646530323133613032356236346439623533636636386232626138396431643866313164 +66353437373933666561653366316465353864616163336636643435313332353539646539366365 +30343438323764336431633236303938326565336137653135303031323561373730653061396562 +30386366383236636562383462313261653564653034373863393338633265666333373830313737 +36666162313335613530393730376130386662373766623238633032306263663034383563326430 +64343035393938633934636662656531383562333564656362346262663432386534663266333566 +39396561316363386633393135613834323165343439643339623634656238353832396337303430 +38333731393930643034396231653431303363396430356338353064653862643863363865386235 +38613865666430343163363430356332343562303061653531373233303832373063353730386533 +61353365653433363166653936386530663161313837303464653936373564633566333266633333 +36613161346637633665633530303063316664363431346234363231393332633238306465333432 +32653237346265343834356639623737313734613663353365313630613837353065313739646635 +36643030353130303733353430306364333139613132376665363036333366653165653861373835 +65386532356461356261343866343365643839393030393438333632346235323336623861316134 +65373934363530643338313838376634386638313533316265336538306236623563353861316531 +35626261613463623435326439386632313231643635613232633935653031643236663261316264 +35333931343939303530366366323935363765383166323566663334306532316636653234323131 +34353631313632643238616261623437653062336538373362353165656661653634366535656631 +32333534663162343835383239386437333732646632396631646532656437643438636134346131 +33393039643839306239393663616538656237653036323932353665366536313539386461383534 +31666335633565306264656236636336363931366335626334663634303661613064396634376432 +36363637643434363531363633623034353530363033383036333935323163633633346566613436 +32316235653164313165633061393732636338653166653562643139323535363464313638363131 +64356466376561333436643862326465346636393434663939663364316134653833333162666561 +32383661396266373030623333653035656663383535646661376163343539626463386463373165 +63353862623933396534633333383063323730313638353263323237653064313532313639353434 +33623435613965623339313439353037373733363730346163663761616139393962396262343834 +66323462636137353066353638306435623833316530316531363033386438363032383434616536 +62386166356631633762383233313831393664396161636661343133353164376362373434643833 +62613935343534643939356531303964373063326566633932643238616366363766393534386136 +32383336306132353434613464646137633266663631323039383165613737613339376265333537 +32323137636432313337303033366361666233393535353462623131303536663739313533616431 +39373734366234356466633963626462653566343464346333646636336232613738393932643161 +33353833383865383864663065643062663836336232643031626537626236383566303136326435 +62616365613735386365333431376539313537643631383037326431363039363537643137303932 +38666361363761376537623962346662306265666166613361303338383832626230663131616362 +31613962313165636339396638333665626534666661306466623639313330373763623366666363 +37613735386532613032616462306262366562646136333738373631643831363761613833396466 +38316232653134316137616134616637313437363439313938633830613334353039383834366539 +30346231656166633834333537616138313237633365336332376131656462343938316631393935 +36653862316161373261303137646666336138306131613930653761396235626230333033316661 +37663632633532306663356534386162303838643336633339663336343238343036663162383037 +38616566656530643039373630376234336662376131303561663866636238636332633965396134 +64316532636338373233356432303863363531623365636261393232643533303461333337353136 +32376133643130303139613734353832306539306432623464336638613466366561353031623835 +66333937623935323134636633346433363239303039663561393666336238316330383066383362 +64333932363636313164396430323238623661396262383232616632356263656338343363346136 +35346331396430363733626461643833663238326537343637623964643666306138666465616364 +35363039626166393933386265626238303664383432633034393935613334343964386532323937 +66653234396638393632323964383936613738633039663831623661373530393161623737346330 +39333532313231313633353462303538383562336633316561653230393535306237336335346138 +34616566636534343438353035646436613038376636363264636235623262313733376535613837 +35353462346364663366646230343537636531333936356230616132346434323336323635306539 +32343031653766353565303532613462313136623834373239346638306637646166356439373834 +30393165356330633236666330343732396230643835333635313163653063366234643237646335 +65366530336536333432623864343661623735653231323131653162633666666463326333353765 +62316438383931366630656465313433653235656331653663666431656233393236363865306335 +61323561646332313562643765386636653131636330313965616136353036626238373031353835 +37613262353335333137333766396230373261623137396333633236343533633264313837636131 +35663435613634643564343734393061313236633232313563613537313563386163323037333333 +39663362643863396436393838333863653030653330366339376335366361666239643962373932 +34336664323866333263626466383061386532373861623963663836323233653731306163313961 +32623761376166396361363466623134363430396539323263636132666564396166613865366336 +30326466373236346663633436353464393562366535323636356662653465666234316235663163 +61366230323663306230353238353639633435633435313862396564633932326539653532313666 +64653534636432656233323163333538333934396664386163313536343934623531383230336231 +36306565326531383232613531643430663732383137343134323337636632643261643966383131 +62643462663735613264623232353961393233336461663632346337623239343130633261346365 +34646634383162393162303566393639643239623166643463323036373335386165343530373935 +64383435336135303966353833386363353439356461613834366232643135336364313466666538 +30613938393736333736333466633933633932383838386531326662336230643862353331653439 +62393734336463333938623036306239613262653530376463633437356236643465333331346562 +66653265316131666261393665643966656334666131616164313734306436326464363436336334 +64653132343366663933663233366230343033303837316232643235356364613232356664643762 +38376232356662663233333137613633656134623937323966343238666465656434396131656134 +31643232646535633736626232383931653937643535666436336130383230633861323436366531 +65303830303262613935343262613131663936316233356364613539373563653938323234636131 +64336461363034643263313262376561306536643430373364623637663066343233363339383732 +33373736373638383831396435643130343633356235343431336636626137663131343733313534 +33386535336161356562306561613462636463373933633064306363343236343164333466326661 +39613235663036373332376163663635633238653333343832663666623138353031363666646630 +66306439333637666365663262303565316562343135353239383766393133313963383662376334 +62613738633030376364626139663261326237353131636438306166643561316434343565623333 +64333934623433663237633334363564323938636561666365393266323166373636353231663938 +30663039636638383835643931643031366166663235393038313264333434333666643431626162 +37316161343634643235306530336437323439323961393437353737633963333666653066626365 +64303964663738626662386639383763306263623436373764333266386131323535313533643038 +31633130623635333763316362643036636233663365396138643738643839373639323162363062 +61313635333763626535376262653030623436633937313237363530353765303735356362643036 +35353664333730346237323039636232313334613665313132646131343237313837643139313938 +39633065623666326436643531343938366361316166363136356164656337373735383338323637 +30383039386361313834663064303337313937313635356632646162623765633937383462353438 +36343831386430643463663063616536633730386532356365653165396332656361633836363963 +34633238343035313236323465353437323636336364643736316230383035306230323065326631 +38373038636364386235333065633366666461653631383934623233656638363735386262656361 +64333863376633633463653535626334343461313130666463613338323661633331313136343363 +35383235383363613264333663633939333436663032376236336564666131323538633134313535 +34336532386135633163316134633665323634363832343335653762346234623464343235356265 +32396639666562393235636532393731353730353738393230306661616666643438386363306264 +36373730666466633732333862323036623632353565343333663732646535656339393064636261 +34346366636635303264633662613835613933633339336432383365616137336632373461333132 +30346231646235626332366566353066373564656131613365653061633266333536643331353237 +32316162383830383033643932303862306534623433353233393931383035646135636465333837 +31396364303335343166613661393335323565623333623832666164386634306664653663383462 +39616462333438333036623165653832646563336261333865386131313363613835613465383339 +39383161323334643533613935373062313638663635633034646466326461666233653564313539 +34376139643866356137303139616266653066633435623930656163653661376464633861636164 +37663566326562336365616164643634383164666463353264353061323463376431383530323665 +39376136353634346362643262313035646230373162376264343530353364643832626366353733 +32623264376330323566373935633062386435616436323137393934306333356537636433353266 +34623362643836313730633132393737316334623562373133616662636438313935643533316438 +33313964666232663664323365303131613630306365393764326537343963653563626538383861 +65643033663531376235346238613630326336643538306238326465373937393365336564313034 +64316563646135343535326363396465343434343261653366613063623862323263353633663838 +32326135356530326434663864303330616637316337616238323263616463343332396466333635 +64353734363761613332616432333461396539633235366231666263336631313736333161663661 +39363530396231393235393661613036313632613365376563373638616661613265376539656466 +66643963303931336433343064396561333236643465313234393264623338626266366434626461 +33636134313939616661636337663631613065393436653937366363663937383536666233323237 +30613733383735653539373937313463363038373034653937636236393638666464663865333139 +35376365343566646638343263383563396638376161386438663332326333333663316338656463 +34346632653465623836383336613336386663303439393965633061316663343337396137623561 +62356664303539623436396563303736656630626435636530363737323130313966313236316165 +35343766343831353765653661343362666364366338633963633136636338386333326631636631 +64653161363732333266393963613033336334386338356538353039376266616232343462393063 +36666561623335613334663666353635363762336665313666343934313232303164613631336465 +38653337656166323036653132633233343363383262353661623733643534653262393964623539 +36303066336662333862636634653433386666303237346661306633306637636562643963393539 +65656439356538663135376566323337323832386436313039373765383039653665636265613034 +65636538616631363336646162653533316261346430373461613261616437656165376433313432 +64363638633839306335626361623531346333333062316137333432303562613262336336393962 +39323237383963383234303937663134366461313661366266396637366330356461356531363735 +62336537363865323461383633333464633732333233303633336434663034376365326531353766 +33643464326539656262366530373339646633376634373334343237666533626437636531633738 +39323461376433393336396638663761373034306335376261623438306362656532326363646231 +36326264373064316634353763633838616336653039373238303333336665313136366632643265 +37663734376234366361376162373535663934656331393762643237353261343333303665616335 +66366332333566313135646138363638383838383230303331643331396634343761303539653836 +30613164643361643861323637636238313138353065633534656437336132303330343938396530 +39633532373239616131653938633832396165633330326564363563653565643738316633363433 +37356536353935306432313639653762643862313063343238316236346135616632336361653936 +64653163343961636163646165333536323266636564653536646330636136383930316633666432 +32393566333539323865366235323335663663376263393661343165353533333235376435646465 +30353733383663646464336534336232643833336362346165613563663132653735623565386131 +35343331313138363536363463633964346261653535313135326238353064386634656363653137 +66376262393336323064623236396263356434666464326466636638366661633139623330303233 +61396235323365353939663533643063376133363466643565383665663064323633393762383662 +66316435643762653165316231366465616334353363386636353861666461616464633230306362 +38653663363831643535653230633163666139663337333465376539646261353234353236336636 +66383839353761366237303530636164346130653336666262373137643836323737383066653734 +36646264656234363936353331316162633538626430363136313265626333313739336364323764 +36663934623038396330323734626137613837643865653039643565333132616535336530353133 +64613730323439663662663863323437663061626239353631623939303234396163663564663066 +66316537613332373136643164626536323236303939343362653033323765326631643535623035 +66313935336562373938316435656335333630373566383939386266343761343465393036616538 +36623636333834306339313337303863616136663139653365613230306664613961383634333839 +36633838303664326161383363643566366264383132343630653931346332336638633135633730 +65383234323537623137663163616232366131633235666532333263323661363461643836396462 +34633861633532653964383539653465313338616236396435646338353639333163333736663264 +33366261356536333161333931373538613562626432636538333266663366373666333136616239 +34646431373837366133363038393331323036326531616561323935356532356365333566333734 +30373538383839643066653963643336626561646135386136656433353462343235316435656364 +32383166623437623664663061313333643532363230396639366366323632326462653533373566 +32613131616666323266623462336665373966653539623730653237643864643437633764373166 +62386639613137646365346165666662386266663865633235313232336461613133313466326237 +32616431656236333130373331313731636333643731663231633063353064613034386462356439 +34313538373866643166643165323265336433306536383862343866373237386462646362383333 +35373831303130326235663530333862383661643164633831373261383432306531316431626433 +63373536373737313366353864636334643433373238313763393635373431656637663562306163 +31303163393239656330333530316437373932646265303039373939356330303033316332666531 +65323836333335343332633362626133613936663663663930306535333337643739393936656365 +61353837326361616132343931373837353834613830666364366534613433666439616230663061 +63326339303131363432366138303931623665313464366235373733633833373366373637386433 +31636137343532616232613236356234303334623964323961623232333765346361663031343266 +61636532313231613466363961643139653636613765633539666338613066643034343735396631 +36633565323239616266666134646636383661386364656530306530353936376431373136643235 +36323332663461383436383364376130313730653338353237346638363632626632316137346532 +63613437386534353064646634396164613965666537663331616630343062623736616230313865 +39613639646139643438313961376235633864316135303138663636393337393333356464653464 +33336235653064643463653666643766306336646337336335643865306431356563313564323664 +32626265616637333535303433323864643134653631333361343031623265343233303930336437 +37626537356566366164353637303261393135303534336230386634653830363236323834636633 +62393965616261646135396366356266346532306261653664666232656266356133633139653561 +64643237393038353431353239343263303136383534643263353764303663646266376662373930 +37373031633536306132373732626137643633393138633565326539343065303932616230633637 +35633761323564306339306564376433643031363536363730393765363734656465646436613961 +38346139653966623262643865616430656634616666316230393935653465346363383662666336 +33323535326466356532633965316134616534633663383837373732376130336631393564376436 +34333233313539376536323331306331373037393137633462386639616338373563636261613230 +37326137336238396637326332653430383833623737313739373036666631303932653930336135 +61353936646466613662633736653433303734343139383238653536306263623334353264323332 +32313830333730646166643637316463386261346366393438373638663265643065336437366461 +34643435393036373662636436313232633134396331653234323939633064663565353736336234 +64336462313761396531366235356666396463346561373634323961393035626665663466663731 +36323336646435336139313732363037393164623164396137623831623331653261623365306233 +38353366616237383130663234346630353135353131393166353034616661346265393637633764 +38646561366535396461326461623836643661383133666133643563623833316239313233323964 +37656164383830353165336438353738616633383139646231646138363664643062343464656263 +39666132313666333266316165353734363534346532643134306333633231396561613466653939 +64396534376163316135313639316265333132663062333232623365656361646430333832356439 +34643236336537356337643464313861393662643333363337353630616532653163363135373763 +35663765396437376539363933353564373132393061643062356564333265303836616664336435 +66343066306639623539386363663433393837623861633230333134316263303763346537326564 +65613136333263303164646663336263363263333161653131373436306161326431656561663138 +37643666663839613634363235363464363834353335663862383564346461613864663563303433 +36633462363031633661373764373639346162326433653234313332636361316332626230666539 +33633165313533663637643433323832396630336366313263303663393434383362383162323730 +31303936626239393538653366666131343963643639316137353965303738386232333537643133 +35636264393933616635663461643337656631313964333162363163663735636233666561356434 +37326365353561663336616136626236303333363633393864623133653335376365643236646537 +37356565643163643935303833616532343639636334633731386461653463613062373534633966 +61353961356538623336653831363633336362376432313439346534656437363366633533663064 +31353330333464326237316234323763666637343834333433626561393762306639636466623464 +30323966623836353762343431633431303636636463623961373537616230613461353839383865 +30356663633466386631303162313163393466393633316666626263613236306131346637383061 +37663531373762663637333135356630613037376133633235653566306236356665616639303731 +39316364323732643961363430316361303464636331316633613037386430363833343064353966 +61646539373334626630396565353662663966306539393065366139616236623139396537333534 +65633061343038363939393430306639373639366262636564646465303338333431373832623431 +64376538663837326530313466616263613165376631646662663536386264336337376661353831 +34316431386437623338303936383339396262363864336661393838613435323963643338356537 +64646539333363663961346634333431343839306433616464623561326637623030643837633165 +61333864653162386439643034363532336632303865306261383762373337643036616565616537 +31383934633439653338646236336662626265633638356462613465623065306437363831313238 +65343537343034313265653536653561663132393639393964663366663532656630356639393662 +38626265376439663332633161646666313866613539386438363630383237303366383436633433 +30623862323363633330313133633339633638313466666637633430353437326165343638386665 +34386632653337343134376132323130336137666136656630313938346166376263326662396539 +65636332343633616161653166323764313661653962623534616266363966333531643065346134 +38306263666433346465346237393265396664313638376335663739366532333638343638633737 +66333766643337346139653735383333646139663034666365333038623630643264373838653963 +62626163633662336438333531323432343665316230653731633366613337316539353063313762 +39343961363832363266383938643635633062366333326630613662326237666538363864303061 +30313435343066613536663865323261333230316139636639383239383465646233333663326335 +38643363303065653930393966353132343739326265376130363663643837633330376236343235 +66346436353164396532616137663933626634633638303065326462373364396564313662646265 +61633930656639396239333737363861363536336364656662623235353463346139366663663966 +61376633366431633930653363343339623365333734653932626164323432376632366130653064 +66643231616330636166313666646131366139353436366631373436623061336164623534363736 +39393665356431656330323239346138326664316164666661366239383237386333343963303237 +30316630393366303637306233393533346162376630666635656162313231333133663834663862 +61663962323433636539333263323261323533333864376236313062333138383034643035373737 +39623931633732663532343936326637613765653335346565386465653735616366313638626261 +35623635316661333463616161623632376537623235376139366535303237393833333537383334 +35646436356139323133326363383638666530353030656534373030376332346537323664373466 +37633039386463316134633430636164333738343539383361363634653233313439653965363266 +39323966393936363233623966646632333133386538396261623838333933663065613232373764 +38656566353361386639343735343338366539323065646135346438303435343837666430353564 +36653135643235613339343430616235346430666565663335316638656466616163653138376331 +63376566396264656535396631303164306337666163643932353531316233313531613633366631 +33613432626634316537386238636434623236306464366564653564333265366532663062623332 +31303830626430333331623432306166373838646132383138316231353465656365653665353838 +61343030383534343930643961303566633834396461363137643937623362333939623762643265 +32313961366464653735373865633066376666303632396263633961663538356635383035313630 +32656538396334626230303861326633303539303235613538373831313338363438316663663830 +38653538323036333463323334363266333330336639333162383063303737373966333063383836 +63653039373232366562383830643762306637306139646361396537383435306437623535636539 +30323339613933623736636333393065323434336266363465326532663734386639356233663837 +33666334636635383136356363393337313630366462616361626538636361623039653635343661 +61346664616439396437643431663037643762616636643431393765313038363335303537313361 +65653361373862366230663565363463373362363865656431363761366665343234366234383766 +38343635623935666433386631613038613265366435316365343239643532386566393838313664 +66646238316235376564303532613434333364336331313232353439356236386534646137626238 +34663433616636643539363731393833663832643232396230333962643766643865646535393834 +36326630646531386461326532613738353765313331663734636135386562336565353262616264 +30313531313961316235373733363133613530306631643434343537303664653631363732346636 +66613233346361313964663230623733363762613532383637633535366563313433376139363430 +36656462656162383431303464653861613230336238323939653132313136366665326233323363 +66376365623031663237346432313964373861333237333665346339343565613364626638636264 +33636336383466373232336364626338303634366133666463373030346136626133386330616466 +63383864373761643937346337316365663636363262393862363134393138653838626131366366 +61663666633430663961356264363531353137313036356566636561333866643166363764623263 +39653631353038303238356337303837633464653061303139663931653932633232633063376239 +34303732346264646666623133303237623635333436356336623239333636636630646462313234 +62353162326565306333373631363761366463386638656336666330373337333737383363326139 +38653632333962343239376531633764363762303239396439613637326432663963313037313935 +31333137633165616465366130323936663764346439376632356134336665303230323136306139 +30356165663262343664376335616436333839356466646136363831383833643838313236626566 +34633332393431376238363939616533363635613161633438356434393266303365373836363534 +30626138666630333364336562316632653164653061653633656161313233356135626635313533 +66373564626238356162623431336134313631306530653366656330353638613937653935366238 +34623938313961343139333536626266313030346635343361613833643632323539626464663039 +30386639303266373066336132306539373533306238316239386661393638316665363033376535 +62363261633566666630303138653764616130333363643362333862613733346162613038616232 +36653964623032656466336137653266386564666230326232396365366531316335343937663835 +34643036646536346132376666663034386432343638373638316335623765383930343030333733 +34313235646564366332643936366435316162383761333565353466613234383431626535613835 +66313065363231623632343363626530343336363766366537356438663230366634383839383232 +37343235346339646665323939313563366561396233303830343731623638366234616666323066 +38383330346564343231386664343735336336383134313631366230656438363530633232343038 +63306566646465323233643936633263363539613561646431636539313632393838383639646264 +38336638396565363431633631636565623536356430393165326464303038313539326561343364 +63616138396130663361653030363462666363343534613561356263306631623964383239356535 +65353463303936636337363231326434316232663235613163336565366231313263623965363638 +64343264386266316530626338323266633030333264396461613837393939646536306363386439 +33666336633661623966353564623239386337313737646337303364643437383836323435666132 +34353162363964333836653762366536386666626632326537396438373232323336313431376461 +31336566346433356663393239346435616234393631333132313265643266653630353961396636 +63356634646139613064656334333736663838623334393537333630633139333564666164636338 +32616330613335386433393661613936363938623063626136366663663636646438313332386565 +38613263393034303563383139363638623132383333646139356638386139366539643065323434 +32636337363630363939313833356430386430346232656332653263353962623139373063666261 +32313331653638623331613438386664383333613365613130633732303738663830373937393861 +37623465666162346536316331656237653133306231633534343735626636383363633335303065 +37656531656161396563373361336266373439623362663865663663326133616636303864633862 +34636465646638323834336365333737333238346462623166333065333934373934653834303733 +31343830653462373765356437663034626165343638346266336435663839333031383434636361 +33346664663233636139623965313530323962366231373465356662303834633731363633323766 +66303766333030303835616162653162663863313235393735323736663537636133633163616432 +35313066373165633262396632303436383734343530313939666162313937323335373631383761 +62313566343734386431333063623161346562313562623063616335663631613366663063303636 +34306135646230323135363561303932633666373064643863383031366335306234376438616436 +35323234333235366532653166666364623234373038336233393335323737643766616337356136 +31363032383337306462633961646337316131633434363066353637613530383362303830656136 +32396536636434363332626432313162353561326137316239336161313664373138336561663535 +61333763393563303732396166383033373939353433633135656161343264643265613264633031 +64363531396432613962353632303433353133353863643633636636373261303039393165326464 +30643136383431663764313539333538353362363435643662633034326561633265626462646439 +30303730356465343262613438633635326263333638613564643863383734633266366430383334 +62303030353338623461616330626662623632356164653535366661396431356237333363646633 +38373765333661646533666434386634653462376334373964663636636134303331376561323339 +31656330346132343533636436623432313931336565353334613137623962626265633362346232 +64316565373238633930306564396238333533303262666362393762393765663766396262323763 +36653337373563306463343965613534366665383736366362393866326134613662333366613966 +31316130626566326461666233353163626666626263643939646365386363353431653965636462 +31666661356638666630663965666331346137633733366466363531633136313038393531343337 +61363136663836356138623264643965323538623730326633623561656561373932333461316462 +61373264393135656263363130336531393461326237356131346434626434313566666239613862 +30383131393765663938376335383331303931643831313931656430373932323934663963366262 +63323837336434383632366237313432646233366638656362353861663966646637376539646239 +35613331316132636466366434613736336331623265376634313738323534323839633166666231 +32336632326135613261613964643439663664613466333031376432626138663734643438376632 +36643561343262343333616666643465653637363234623836336661336633626436633337323564 +35353364306562663263633366343937376532643738623762663133653265656332626337336333 +35626336306138633934383563373438336663313535313161346565653939643233633231333966 +35373065366266306430613536396164313461626236333235653434303263356466343330326466 +31363063353330343561636536343239366339336362373930326462333964383830653166336635 +30376361346132326431643439646665333337613261643065336238343766366634303233323465 +38336439323531623831306364306136356437383538643236313861356330373566336534303366 +35323662393133613561373235326130316364656631346635333664656430343236306636313335 +33366130663937326136366666653065633563323837323162363630393830643533353736346364 +38356137313231653834313430333464373134396663663561643761353263383865316462323632 +65666434343066393734663061353136303763663838656231376633633161623165663834363964 +31336264363465653762613335373130613137313233646637346231313730653663313932623437 +38636263623963343766336330303135333032343063623464633431623933653565666564636562 +65316163656637666138366331323038653665373464313239363732653961386165646431366638 +66636335653163353633616232313264336661386565366235343536346539323461386632346333 +62363539333332313639333833613139333433356634363433363438393733323138333062613330 +35346433356266643937303832323166376131326238353063343430633134373835656263656666 +38613632636365666561383165393732346532633136663236323261393161613361363230386237 +61343864373562636263323166363630386238303731353731383636353536343065333562643434 +30336362616461633931353631366336346230636665303064313435346135373137626565356437 +39663433313634303332613934326335663163373134306361396331383139393437366435363036 +63333438353935643566323563633133376163313162303131653063623764633835306666393636 +65383033613763323564613335303436326362613064353831333135633734666239303762363634 +64656232616164636433386361313432323939393437653630653632616635386431663065363739 +65313261303563643665376437313235643238303965383561396338346332303061396262323164 +61633937363134643839376565633138353936306463363235323061376261656533653239383863 +36376436323266623365316266396639353035323736353233646132333638346264393431316363 +31656661623534376134323531343734363361346130313932653365613434383663373334323330 +32653733633163623932623066333633646439643730336439326162353361626465623063306364 +61323034333963346639643666353937383862336662323738376366663137356331363863326333 +61346466376365313632633831633966623238646534623131326232613336393963393363353534 +36373762613436356136643038633237303966383433373662393935613864626135306334663437 +66356331643735663536393363306663376637333464383938623634643864393431353135366461 +38663731303730633736313033343766643938346439613238366264666235656363656630643465 +65303036633336396139343534653561323736613532393539656437306230653866613232313532 +33303733383632366436633766393335366537306363383533363332396437396630643936353630 +65623339343663623363333738626434316532333830373338643439323665393239616263366530 +39313862343938386361373231333134373239323031636432666166353833363433323463663765 +35343766393139633130303266653434646266636537653738383838616636316538366232316434 +62363631363962653137393935333635623531323337653335343337663935303831386662666334 +30386431373037363238373836653432326561663937353036623162656637653432353533316632 +66343563666466633132386334383265353730306134643537353263336661656334623962386464 +32323635303236333932363435323965653363613630626632316637386634666338346166366563 +37663763333530333466393962363631643563663162346336393965373039646161356465316635 +36386231663431366137353738393966643661666166366137616563333066663236633638616639 +36633765386139323838616239623737653930623233343765373134343366316665323139313365 +32393138663565363963333435633533336438653830656339316135613061616233653762643638 +39663636363935623938303832383463623336653434656534643263653261336162653563343335 +36303239386336666439653037346331343031316364393936636237333733396532633237343965 +65313866613535313637393265643462663562316334613233646264313630376164633763373037 +39346634623433653464303133353732353764326131366131313330363031393466346537386439 +65393139333138336334376530623364613832343031323437383730363863626535633031346431 +66616231333336386134666433666235383266343833323333343537643866336261306365363765 +31383435666439623166643363633536383063633834663136353933306236393731613065356336 +62366232373531353965306232343563616333343630623138323264623565323431336434393839 +36326238643634393435343065383762343664613461396564666364663862323161333063353634 +38613564363432663532333830373162656633346430386434343362646431313638663739383430 +38366463663362636632353232306534353564333865346565663033303362613839613732333366 +64356335306331313039626561613462303830663435653263626566333763626230666338663638 +38323830323465613664333036636664643537613138386238623963363536613435356337383735 +30343265623435643837633337323165336462633761636566356539613735663938353031663530 +39306661613834353139376433376436316531656630343630373539366338323030386164396231 +64626265363439356562343466653835313662633538633737386336613932666566346538373764 +66623139636338383335643836633036393535373430353934373164326538666636313365306664 +37323836646465653439656234396265336361616466383766386536393836393437323133326133 +30373236666331646434306538633461316330626336333631393239373462613365636234383061 +39363566663338333562656161376635666631353364663732336661336461346561353061643634 +31646563666261333238653830383662626638303331353333376132313338363538626263613965 +35333234363036383062356630323839643937646464663364623036653635653463363935343331 +31643664343035623131383039633538313435653666343364303335653835346139633037303230 +62343539376333336635636135646137313333366365316561626462376135613831353539303136 +65353339313933323661663837333437626232306162633066353165396438613865626330303662 +66356337336133306137616438373335656664663762613830303731643530313762303664343832 +38376366326566333030376461326132663437386639653938363734613264386333346132326466 +36623865633165316334643333653766663637303166653931353433366430656235323134646135 +33313963656336643932356665393161626162656261636666336436326638326361333935393430 +63373936373935666332623932633262646233333335326462393364326363313166626232353537 +35383532376663663062383266613234623131653934633565653864633337653665353831356237 +37333063636463386331616631643335336637383164653038323132376234626538643437633666 +33343664383964326635323337353538363538623330376135313566396333306631363664363836 +66633738643661316335346638306261313733663338626261353831386139633061383238373162 +61336263646333663966353335613164323033653738343637623437383830333062643061303066 +30373733303239616336353863323361356162393034386464303239386265653236363563346365 +36313963613063623034653839303063353461336432626236646163313732333937663061333235 +35636239636130363662306366346262376431666638633061346466623961623161613632653230 +62326162616232633433626664323732626133396438643632653437366536306230336433356164 +66376338393836313030363534666536616231346538663963623830363637653435306430343535 +30336233613438323866383964613735353161363533643139323433383762623166343036613830 +30653636636530343364636365323361316666613163666366363062636366376534336133316666 +37393238353564393531353665313065343463616262323638323135663831323335303834333733 +64623330656165666364363061303866643064303764633262376236653265616466323765363266 +33666263666162623639346339316463613464613362633566393332383939393636396231383235 +66643036623133306662363566666531343739633538663165303563386138356464396561346236 +65373232626430343734343664326332656536316461316137613937303334626535663166636564 +32623535636433636162653332663638336634373665336236663135333635623433326164393234 +37303032333831353839623265363330336132336331616466343130646465336339363161363861 +36373831316536316165633132363731633138653238616237653738316163363166646532653365 +31393730353239336562333936643238373830383164646334626564656662393136383239323533 +32633939656633386535623735633931396263343965366638396230366233643232613036373266 +62616466303266323661313338653264316138653264623763363438393436613233333639633863 +61323564633761666463663663336139316461383631366433373533633536346239363766333337 +35306664303839353235373762636461636263313538316537326566656162306536383338636462 +32633636393439396461353331343834323737616563616664306363323633616265313736336134 +38613630326138663034376132633433313163363861323766306139343261313064386631626531 +61656530656463316239363762326366343031613636313434393932323433333735636536316565 +39346133376665393630656135323136383262636532623637666265376135623464316262363137 +35636662333035336239633731643165356333306636343635353863643061323234333362316366 +37646636386466386436383462336636376162383161356164366132396537633335623336303564 +39663032613961353530653666633938656539353132306335636138363664393766613933333937 +38643933653665653437343765633430643230343964643332616638643066346236623663643365 +32643062666263346166323466623133363536393163393065386136363565356266336562373831 +35323264383939313335393334643037633237393931353632653835623133366236653761306663 +66373161376138376636656131373639616263396533666661653630323437353162633063656666 +62313030313566336562396363346239386231616230636166323862626262393338643537653364 +66356262316134303066663439313232643135646135663363323836306537316266393235653066 +36346665343661616434366563663835356266643662343264663337646234313536393761373061 +31333965636464353666396532373737613036643362303661623037356631353433333439336135 +39333566363164333037666161396437613039366234656164653535386537346431636665313931 +39663732383065653663663536363062313666366135636566623038643363666137653932336139 +33323163316431613735306466653036663730333062616563366234363832623839313836303038 +61666134363762646133623438616163376139643861313536316431323337316538646663353361 +63356464376239383930646435363434663034343664613565646435626466323934653663393562 +61623266623362313030333162633035353735353232313165343139653038303562383635343436 +65306236316561643338623734633332623331626561373237626265646630393036326462653631 +62343165353431666333306237356634363764613837633462333261643037363162313161613463 +66663333373562623533643464663430363964303533643531666230366566333634623232343666 +35393939393363663765343335616438383635376465313631376637343761623134363965653932 +31383830636364643533373931653433343936366534353436383164376563303566336433393837 +39373634643330373832333433653439663637616132373635306330373165653434383466663533 +66323339383035393732613038343133623566323832396362313533636137613665346661373335 +32373630366465653231373634333566626233363237643430376463653834353565643066613139 +65393561653833373163643236643264356330333232393439383237333064353837353963613936 +65313435663636346630366239313961373434386231303432383862613366666237643438343537 +37336462323364616261326338613037306362396234353831306364636538313237336432646334 +36383863343237393237363638323330353831363735386661366133616166346232666136343031 +38353535653836363739303861623637303336383839393439616239313632306634653037646666 +64306536353635323830373466373539313635653530353064376663643935643531383837386431 +32346136376538613862643930373438303630646238343735376438666331376432333066636137 +65383535303665396433376338623466636530623636613132383866666665633662303830366263 +31333337373734313861623438353030386133383034306430346561343136643030636635303932 +63383138633366313630313561643330393564316666393266376263343335666363393335643430 +32376134396536646537386332343461323764303161313264326530623866363939643861633537 +64333763666330336264363565356630613462656333633866626333386266336562623265376265 +37366630646230353137326131303230313539353437333535316433316665356437363434623562 +64323434376264396431333735303230633964313933323963343131623936393163663261353236 +61373666616531616238643436613364643365343864303866373665656233313562613366393566 +35316465633438333635663462633838616635356261653637393030363232363532393533636635 +62323334616636643938373534663138613635666661303536343732323735623836333861303030 +66313534303766303365313636356563343135653832316235623230666430376138313639323366 +38376430323134356362666237616639343361303566643732613334343933393261393761333930 +37393733363935626235626630376232623461316530393831373538663034653563366230613264 +39656161333432363064376465646638383861353039393031366235626233666530316236623439 +61323334663061633536313631356562313466316639353434353532316531613031313933326231 +36333965303934303265623834633365643832363339326533383331316263313234623666316630 +35333533306332373061363530653330613634643338623231613364633333323166393938313966 +63653431393637386434626135316264643365646132306430313333333831306234643461353532 +62383466633064613162306238353236373162396637633564363133363632323930353833393439 +62393264623663633063353739346538663638363333653138363132373161323761393934646131 +34396130366338306165326535653266356537396638343362653333306365653161303736376638 +37326662383632306532376161383330373762346362303934653162313133613335636239353261 +30386563333439656261336130346231663334666239643864666562653339616331646433663239 +33626463626262633065613832326433376436343664373264306539356139356539646364303362 +39393037366537303333316161626564626233393434393538626232343831633732373738626165 +66633935316639323262663661313730636465303334633363333361313838353637386536306333 +30643737323935396136373433373938373464663762316530653161353832333263653833323861 +33363439623733376565626634323362356533343232303732353233653036623733333166346465 +30663661656664623263356564373538613038353662343539313131663632316331643333633366 +64383036653665366539373561656338343434383339383563326430393038613364386333643335 +37656164616162613139616331393433343633663066323936353835343831303463666233313863 +38323634633665626663336635353935346534623330343934613438643361373830316462663932 +61303035336164646361323962353737386439653334306164333365656662333631666132356465 +33343363363639363937656263663263383561636631376136616232386664376136393635613439 +39633239336163646238653733616632366135336465333638626532326230356365343732366236 +35396666363337353532636133326666663461623064393066666264626362323939353534656534 +32616565386530613839326564303230313936323533616161376436353632326232353631326165 +31633738333035303639633936356231666537396465616464626166663165323632316163643934 +39343830326233326430653361623964663538663263656430313136336538376564323366316434 +34333534323062303830336533333161626432666336396138663236393633613932306362636337 +36333163663833346563303933643638663134653138626163323861353638626139666566333364 +33643063316636333038306666393635643430313635383235313564316663346265613666343434 +32376264393031363731326262633963393834383261313831363239346231623239363064376138 +62623764626237343335303637626266653334666538303431623131643337646233653239666261 +61636231353163613238383235653932666665356239336433653565626630616234343861613463 +30353330366135376661653664663339663531306237323664666564373163336130653634376637 +31613533616563346661333235646664396232376135633565383830363065396262306235613464 +66313336336135346638383434613936373663366431323435643863386163666132333465313433 +31346638636636313538326230326235336164633561303134393436336363643139313936666334 +63643463623830656565626537393465316332336433666432643761376566346362643136633163 +32656362313938343464326437663863363638613335626465316439646438353936303834373566 +64313166393235383230303165656432616266643862633934326531346463623437346461643138 +63666166343263373133393864656636643834626431616636313030333061653632333864623638 +66313062396631336463353134636265653337633432613532313930396137326230613039383265 +61636633346164643266643462613139353463623065376264633735323838626365323363636539 +33373465346532656533633863396132323263373736303930643262636661393161636266353936 +32633635323233363534613335333734373265323231623963646335333336306334616532363831 +65663064313565393761323030643536373331616337663330353666653636393765316630623936 +61333066663836643433663536646666393065353532393862643735333333626164366362653135 +39316234616664396335383462386130393563326133316330363933653734393630363238373832 +62663139636435353437623266663762346661663334366634633964393630656634663664646132 +37356339363635633163373530373637656364313630373663303064306134386331346133386566 +36663464393365636336636531326338623237333834346636316236633334623532373837366263 +31633533646265353131303436386333386564313831393937396364643530353739303662356366 +30373564643037376563646139343635373462323963643137363832613265633966386535353235 +31356263353366306135623439383137396363656531613235616363363835306338626265636237 +33383335323732616132303866306364303331613563316337386232666131376164633233393266 +38656433373534626332313430303366326566633834376461636338646466313066383530656663 +37386538396465373163663032386235626363653866306666303335336436313366613238326465 +35633062313664616334646632313230313964356365303233383764636233323539636665653437 +36376332633363636536613732653335376139633862313361373433616565376238616566623637 +64373933356435373834633235353239376131353237383031623563646635396664633761613464 +35656633626262323038633464376635636264343033643265343963326462343362616137326561 +65303236326365386336376163393964663637346338653331343331343030663965636463306466 +62323433376261656461373631316363363530313733616630383538666532643739316365646634 +39356234326234626237346336613336363738623765333535393163356361336339376266653163 +30616565383062653665636165623033316431386665383363336566386464363164626563643066 +62643636646632323936306336623233323635373634643438616439336164663864323635613665 +35656366643932666563336435626163306366366334626432656233363039353638613233666362 +30353439396430623130366336333864343861646432666334313734636562643633666637623962 +63386139313131323339613936303564396139656466363239386239303234636264653733623162 +39333837623463636337393465323764323832666138313437343965306662386666383834346564 +62326630383734633535396338613238373035623464613732386131376230313265646636356538 +32343036653339346531356439343535376531333339396162373939306339333939336563646665 +37653664656464623539626361396365313334356135383466326364313765313838346363386661 +66356263366530633936376438656262373532653365653931386239346166313534336137313864 +33666536316363656630353937323633343630333463393032313533306366343463633930653564 +37383963313762313764306533626663646262336536653430343638333665383062383434393639 +62373562333061356436646266376335663237646365386364373765613231386338393538656338 +33623737393162316631623830383637326333616463386632636538333662346630336232616363 +31306335373338666535343532346462313934633639626163303434623131646666343931323430 +65373666636437633664643931346135613135346561376661396236333334653039316236646639 +36643638626464666264393134353663623264356366303066346363386332323866366234336337 +36666636663030343439643131643030623963383130666137633562376164373162333963373164 +34653334616164393937623431663162336538373033336464613631653431353430383830663765 +62613363363632363230613363393265313131343663353437313436383133616664633633376562 +65626138363737663165393831393436636331323133333838366161313362653664653365653363 +63396163353961363039376638376433353262373262353834633332376332366463393665646165 +66656132323335306334326564633939306233393033363763613064323161346335303863633332 +64386230366534356562313533343532653132333235366630353332633365313033393039616531 +61366365326339393966393030333536313535613433653539313638383833633066376662306333 +63376566323630393161373266383732666533353935363563616332623139343533663334653661 +64383266333165363939303935656361346533373734323337373433353161343032363730343137 +30643432653663383065333437643966333033613631633731386563653834643130323765313666 +33643238306237376365623662633937636138336166396263326362326631636538663263633566 +39313633373431633638623961643831326339333739653931323066306163373462396261623463 +63333564393531323365646261353638343630386634333461653433306363623030373266303137 +36306136396132313532633138626661336165376566343865643562626665636466363235616430 +36316561633432666631323535366533613930396232383763623031666630663236343530323062 +37313161613463613266633832353633623563663639353933393336623731323031323339356330 +38393966306531303136653938326431323838363838623131326362626263353635363336326439 +34346636643561313566643564626430336666663563313338343738396366316638333134313264 +36396434346462613536303630383534336530326463616462396139303564376638313837396437 +36643630636335386266646635653830313634623061333164616330383262323938653533396264 +62323563333762343939613839656364633762613833343265613464396232643430333164343839 +33373531636334363663316134323232633133626661616435663731383731666439393933306233 +34393365646137373434363762396433626638616531333764313162653736313862353333356566 +61623062663338616263336164643365373331383430366138383539626461613362366163643766 +61323238363636386365373930366532386236633965663266633536373330326137646530323638 +64636266323364306166626666326134663134353231643031613364393832623363303639343639 +36346431626137613964346337376361643333326639316533376435653835613437323134333664 +39613336366365373137643033303038313863353237363030333133613535323638313065386630 +31363936333631636538636538663064616261333562376334396566393666636133666637613333 +65306238386431613365346364333434393236346239623238386666363539333339373131643035 +30336134623764633966336430346465363032353633336564383130616339643863636230656333 +37323438663263366139623334383630373766373539383434316533333263396633646435386532 +32616163633634656635383031643161643534663231376466623537613166386231353633363930 +64366632316635363063646637633732313964326635393430613134353732646661666162353536 +39633339336462623337363038613165333866383431363735613237303039303164353261616435 +63343465663133313531613436393231636161383338343866396237343038323231613432613235 +61396330353362326337656538363133656136323862363961646632663365646264396134396161 +61333766656135643336626139626236666133333634626465373636363530386135366461363862 +37303065633331346366656434316533613333346464653732643933636639353732666266366637 +65323364306332323237663439623633386666303636373935343565663432333665313138656266 +38396661396361643534646561306530323730346263623930336634306630333434316664636130 +33366338303162623630646438623236653030353632313134346461393237656266353435393530 +34613733336364613530663633343734373939666366623836306431653335366562663263303266 +33633966626135633661363463363065343931393634316461646434333866386638663663373030 +32393236346637653839643435326162646631613932313533306334313734343464613934313562 +65306337613339316530343131623937333939306264313834343637363762313562323431643933 +66373038376135616466386438333039653534356565643263653134393939343130653039636366 +62373734313836633732656363383838653266656665333563666131643538373732353162663737 +61663964376134646438323266303539663966383964353565333837633730346138346431303939 +33386261363831643337623534646537616164373532366366303166303662353861353638663664 +34323565326134313630643732316132643864333738636135363530353565666134636330363364 +36626563643436333064306465353864346435326235343830393336376263353664623463326661 +34343262653139353438666137633064386437633232666462353534343531386135333938663562 +66653061336433653463656263636335303165336133336365623065346636323433343965663465 +66353461393230623835366361643366653037623961313663346233323436336334616464613964 +36353361366661323562633330396663343565663864303934323533666233336363663064636134 +61326335633266666335643565383763383164326364303730383465656532626537316430313831 +33373138623231613133643663356632343633396235373436313030613337303236343634643666 +37356239343662383833656161366365376434373839383436383033313562613831653965666336 +63376432636333363033383362326362326131363633613932336533343734386466363562646561 +37363964353130336265363634386166393930326364646636633162383062636636303966666366 +34383762383438376566623865653231613935383838313133666266313233643661383262316236 +64383734356330333936353638646231613537326264633533623466616338666130343535633639 +36636139633666643732373232323039623733366664656134333363353862376237623837323933 +61393262323431633730346664396336646132353535393230633432613236313737383239626338 +33313637306266366264303834336562616364326566353264666133336466666565323637323665 +37653433643232396133643535373762663531633861396261376138383362393161613666663963 +63653437333533383339643265623264643664636633323434613264396465653366643230326165 +34623837386535623533323162303032376234623964383065333063663632666162663638346661 +65316330663861333064383836643833643064633433613539386663613661643239383834363034 +63346131633435363764396266623961386338653765356232323531356461376535613964336364 +32643037393362313230363263626135633535333334386463383561306466613834393635363230 +61333838326334323866626239656135626666333937623530623963383939656361393137316261 +34396130643233316262636666643663333335356633326362363365616432356230326630336566 +32383934643538626266303336643339353265633436613736303835643439363637653637346131 +35383265323465303032373265373531363937646665306164393662656532356161353639366336 +323164333330653766343462643936386335 From 24d6e2310b39e6ae5c702b8092d5fce736f531ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Fri, 3 Jul 2026 15:03:11 +0200 Subject: [PATCH 44/49] Deploy systemd exporter to monitor backup services --- .../custom/playbook-setup-restic-backup.yml | 115 ------------------ .../roles/mariadb_backup/tasks/manager.yml | 24 ++++ 2 files changed, 24 insertions(+), 115 deletions(-) delete mode 100644 environments/custom/playbook-setup-restic-backup.yml diff --git a/environments/custom/playbook-setup-restic-backup.yml b/environments/custom/playbook-setup-restic-backup.yml deleted file mode 100644 index b30e09076..000000000 --- a/environments/custom/playbook-setup-restic-backup.yml +++ /dev/null @@ -1,115 +0,0 @@ ---- -- name: Setup restic backups - hosts: manager - become: true - gather_facts: false - vars: - # ── Docker image ─────────────────────────────────────────────────────────────── - restic_backup_docker_registry: "ghcr.io" - restic_backup_docker_image: "restic/restic" - restic_backup_docker_tag: "0.18.1" - restic_backup_docker_full_image: "{{ restic_backup_docker_registry }}/{{ restic_backup_docker_image }}:{{ restic_backup_docker_tag }}" - - # ── S3 / Ceph RGW ────────────────────────────────────────────────────────────── - restic_backup_s3_hostname: "api.ffm3.teutostack.de" - restic_backup_s3_port: "6780" - restic_backup_s3_endpoint: "https://{{ restic_backup_s3_hostname}}:{{restic_backup_s3_port}}" - restic_backup_s3_bucket: "restic-backups" - restic_backup_s3_path: "" # Optional sub-path inside bucket - restic_backup_full_path: "s3:{{ restic_backup_s3_endpoint }}/{{ restic_backup_s3_bucket }}{% if restic_backup_s3_path %}/{{ restic_backup_s3_path }}{% endif %}" - - restic_backup_oncalendar: "hourly" # systemd calendar expression - restic_backup_full_interval_hours: 6 # full backup every N hours; else incremental - - # ── Credentials (override via vault or extra_vars) ───────────────────────────── - restic_backup_s3_access_key: "CHANGE_ME" - restic_backup_s3_secret_key: "CHANGE_ME" - restic_backup_password: "CHANGE_ME" - tasks: - - name: Check whether the restic repository is already initialized - community.docker.docker_container: - name: restic-check-repository - image: "{{restic_backup_docker_full_image}}" - pull: "{{ pull_image | default('missing') }}" - restart_policy: "no" - auto_remove: false - command: "snapshots --no-cache" - detach: false - env: - AWS_ACCESS_KEY_ID: "{{ restic_backup_s3_access_key }}" - AWS_SECRET_ACCESS_KEY: "{{ restic_backup_s3_secret_key }}" - RESTIC_PASSWORD: "{{ restic_backup_password }}" - RESTIC_REPOSITORY: "{{ restic_backup_full_path }}" - register: restic_snapshots_check - failed_when: false # non-zero exit = not yet initialized → handled below - no_log: true - - - name: Remove restic container - community.docker.docker_container: - name: restic-check-repository - state: absent - - - name: Initialize the restic repository if not yet initialized - community.docker.docker_container: - name: restic-init-repository - image: "{{ restic_backup_docker_full_image }}" - pull: "{{ pull_image | default('missing') }}" - restart_policy: "no" - auto_remove: false - command: "init" - detach: false - env: - AWS_ACCESS_KEY_ID: "{{ restic_backup_s3_access_key }}" - AWS_SECRET_ACCESS_KEY: "{{ restic_backup_s3_secret_key }}" - RESTIC_PASSWORD: "{{ restic_backup_password }}" - RESTIC_REPOSITORY: "{{ restic_backup_full_path }}" - when: "restic_snapshots_check.status != 0 or 'Is there a repository at the following location' in restic_snapshots_check.container.Output" - register: restic_init_result - no_log: true - - - name: Remove restic container - community.docker.docker_container: - name: restic-init-repository - state: absent - - - name: Show repository initialization result - ansible.builtin.debug: - msg: "{{ restic_init_result.container.Output | default(['Repository already initialized']) }}" - - - name: Deploy trigger script - ansible.builtin.template: - src: restic-backup.sh.j2 - dest: /usr/local/bin/restic-backup.sh - owner: root - group: root - mode: "0755" - - - name: Deploy systemd service unit - ansible.builtin.template: - src: restic-backup.service.j2 - dest: /etc/systemd/system/restic-backup.service - owner: root - group: root - mode: "0644" - notify: Reload systemd - - - name: Deploy systemd timer unit - ansible.builtin.template: - src: restic-backup.timer.j2 - dest: /etc/systemd/system/restic-backup.timer - owner: root - group: root - mode: "0644" - notify: Reload systemd - - - name: Enable and start the restic backup timer - ansible.builtin.systemd: - name: restic-backup.timer - enabled: true - state: started - notify: Reload systemd - - handlers: - - name: Reload systemd - ansible.builtin.systemd: - daemon_reload: true diff --git a/environments/kolla/roles/mariadb_backup/tasks/manager.yml b/environments/kolla/roles/mariadb_backup/tasks/manager.yml index d2c9eafa6..431e2ef2b 100644 --- a/environments/kolla/roles/mariadb_backup/tasks/manager.yml +++ b/environments/kolla/roles/mariadb_backup/tasks/manager.yml @@ -59,3 +59,27 @@ enabled: true state: started loop: "{{ mariadb_backup_jobs }}" + +- name: Deploy service-container {{ service.name }} + 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 # https://github.com/prometheus-community/smartctl_exporter?tab=readme-ov-file#why-is-root-required-cant-i-add-a-user-to-the-disk-group + 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-.*" + loop_control: + loop_var: service + loop: "{{ node_service_container }}" From f4436c45bc581a0a2c08b1ec594dc81724ced577 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Fri, 3 Jul 2026 15:05:53 +0200 Subject: [PATCH 45/49] Scrape systemd exporter --- environments/kolla/roles/mariadb_backup/tasks/manager.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/environments/kolla/roles/mariadb_backup/tasks/manager.yml b/environments/kolla/roles/mariadb_backup/tasks/manager.yml index 431e2ef2b..b06673d25 100644 --- a/environments/kolla/roles/mariadb_backup/tasks/manager.yml +++ b/environments/kolla/roles/mariadb_backup/tasks/manager.yml @@ -70,7 +70,7 @@ image: docker.io/prometheuscommunity/systemd-exporter:v0.7.0 network_mode: host privileged: true - user: root # https://github.com/prometheus-community/smartctl_exporter?tab=readme-ov-file#why-is-root-required-cant-i-add-a-user-to-the-disk-group + user: root restart_policy: unless-stopped pull: "{{ pull_image | default('missing') }}" mounts: From 95210f69b0de241827438f5571d3b2dacda892dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Fri, 3 Jul 2026 15:07:49 +0200 Subject: [PATCH 46/49] Fix systemd exporter container --- environments/kolla/roles/mariadb_backup/tasks/manager.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/environments/kolla/roles/mariadb_backup/tasks/manager.yml b/environments/kolla/roles/mariadb_backup/tasks/manager.yml index b06673d25..ee6962248 100644 --- a/environments/kolla/roles/mariadb_backup/tasks/manager.yml +++ b/environments/kolla/roles/mariadb_backup/tasks/manager.yml @@ -60,7 +60,7 @@ state: started loop: "{{ mariadb_backup_jobs }}" -- name: Deploy service-container {{ service.name }} +- name: Deploy systemd-exporter community.docker.docker_container: log_driver: "json-file" log_options: @@ -80,6 +80,3 @@ type: bind command: - "--systemd.collector.unit-include=mariadb-backup-.*" - loop_control: - loop_var: service - loop: "{{ node_service_container }}" From fd63d0b2f1d918a35feb93ce6352962407be3eb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Fri, 3 Jul 2026 15:14:17 +0200 Subject: [PATCH 47/49] Add scrape target for systemd exporter --- .../prometheus.yml.d/65-systemd-exporter.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 environments/kolla/files/overlays/prometheus/prometheus.yml.d/65-systemd-exporter.yml 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 %} From f414b71cb629be2032d9f7f5ea7a6960ea47da1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Fri, 3 Jul 2026 15:43:01 +0200 Subject: [PATCH 48/49] Add inital alertrules for backups --- .../files/overlays/prometheus/backup.rules | 43 +++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 environments/kolla/files/overlays/prometheus/backup.rules diff --git a/environments/kolla/files/overlays/prometheus/backup.rules b/environments/kolla/files/overlays/prometheus/backup.rules new file mode 100644 index 000000000..2fcd47ea4 --- /dev/null +++ b/environments/kolla/files/overlays/prometheus/backup.rules @@ -0,0 +1,43 @@ +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 }}" From ebdd4c71a9c5a226173afa2d36f334597cc1c5cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20G=C3=B6bel?= Date: Fri, 3 Jul 2026 15:51:42 +0200 Subject: [PATCH 49/49] add alert for overdue weekly/monthly backup --- .../kolla/files/overlays/prometheus/backup.rules | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/environments/kolla/files/overlays/prometheus/backup.rules b/environments/kolla/files/overlays/prometheus/backup.rules index 2fcd47ea4..fdd2f75ec 100644 --- a/environments/kolla/files/overlays/prometheus/backup.rules +++ b/environments/kolla/files/overlays/prometheus/backup.rules @@ -41,3 +41,19 @@ groups: 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 }}"