Browse Source

update name-resolution role

Blaine Story 1 year ago
parent
commit
dd4c1f4b59

+ 2 - 5
roles/name-resolution/handlers/main.yml

@@ -3,15 +3,12 @@
   systemd:
     daemon_reload: yes
 
+
 - name: Restart dhcpd
   service:
-    name: dhcpd
+    name: isc-dhcp-server
     state: restarted
 
-- name: Restart NetworkManager
-  systemd:
-    name: NetworkManager
-    state: restarted
 
 - name: Restart unbound
   service:

+ 55 - 48
roles/name-resolution/tasks/main.yml

@@ -1,62 +1,68 @@
 ---
+- name: Set openresolv to not configure /etc/resolv.conf
+  ansible.builtin.lineinfile:
+    path: /etc/resolvconf.conf
+    regexp: '^resolvconf='
+    line: 'resolvconf=NO'
+
+
+- name: Configure DNS servers
+  ansible.builtin.template:
+    src: resolv.conf.j2
+    dest: /etc/resolv.conf
+    owner: root
+    group: root
+    mode: '0644'
+
+
 - name: Install dhcp & dns packages
-  dnf:
+  ansible.builtin.package:
     name:
-      - dhcp-server
+      - isc-dhcp-server
       - unbound
     update_cache: no
     state: present
 
 - name: Create custom service folders
-  file:
+  ansible.builtin.file:
     path: /etc/systemd/system/{{ item }}.service.d
     state: directory
     owner: root
     group: root
     mode: '0755'
   loop:
-    - dhcpd
+    - isc-dhcp-server
     - unbound
 
-- name: Make services autorestart themselves on failure
-  template:
-    src: "custom-service-autorestart.j2"
-    dest: /etc/systemd/system/{{ item }}.service.d/autorestart.conf
-    owner: root
-    group: root
-    mode: '0644'
-  loop:
-    - dhcpd
-    - unbound
-  notify:
-    - Restart {{ item }}
-    - Reload systemd services
+#- name: Make services autorestart themselves on failure
+#  template:
+#    src: "custom-service-autorestart.j2"
+##    dest: /etc/systemd/system/{{ item }}.service.d/autorestart.conf
+#    owner: root
+#    group: root
+#    mode: '0644'
+#  loop:
+#    - isc-dhcp-server
+#    - unbound
+#  notify:
+#    - Restart {{ item }}
+#    - Reload systemd services
 
 - name: Enable dhcpd and unbound services
   systemd:
     name: "{{ item }}"
     enabled: yes
   loop:
-    - dhcpd
+    - isc-dhcp-server
     - unbound
 
-- name: Set home as default zone
-  shell:
-    cmd: firewall-cmd --set-default-zone=home
-  register: setdefaultzone
-  changed_when: "'Warning: ZONE_ALREADY_SET' not in setdefaultzone.stderr"
-  failed_when: "'success' not in setdefaultzone.stdout"
-
-- name: Open ports
-  firewalld:
-    service: "{{ item }}"
-    zone: home
-    permanent: yes
-    state: enabled
-    immediate: yes
-  loop:
-    - dhcp
-    - dns
+
+- name: Set dhcp to only run via ipv4
+  ansible.builtin.lineinfile:
+    path: /etc/default/isc-dhcp-server
+    regexp: '^INTERFACESv4='
+    line: 'INTERFACESv4="{{ dhcp_interface }}"'
+
 
 - name: Copy dhcpd.conf
   template:
@@ -68,24 +74,25 @@
   notify:
     - Restart dhcpd
 
-- name: Copy unbound.conf
-  template:
-    src: unbound/unbound.conf.j2
-    dest: /etc/unbound/unbound.conf
-    owner: root
-    group: unbound
-    mode: '0644'
-  notify:
-    - Restart unbound
 
-- name: Copy unbound resolution files
+#- name: Create unbound local.d directory
+#  ansible.builtin.file:
+#    path: /etc/unbound/local.d
+#    state: directory
+#    owner: root
+#    group: unbound
+#    mode: '0750'
+
+
+- name: Copy unbound conf files
   template:
     src: "unbound/{{ item }}.j2"
-    dest: /etc/unbound/local.d/{{ item }}
+    dest: /etc/unbound/unbound.conf.d/{{ item }}
     owner: root
     group: unbound
     mode: '0640'
   loop:
+    - unbound.conf
     - local-domain.conf
     - plug-onion-addresses.conf
   notify:
@@ -93,7 +100,7 @@
 
 - name: Check adblock config file
   stat:
-    path: /etc/unbound/local.d/ad-servers.conf
+    path: /etc/unbound/unbound.conf.d/ad-servers.conf
   register: adservers_conf
 
 - set_fact:
@@ -104,7 +111,7 @@
 - name: Download fresh adblock config
   get_url:
     url: 'https://pgl.yoyo.org/adservers/serverlist.php?hostformat=unbound&mimetype=plaintext'
-    dest: /etc/unbound/local.d/ad-servers.conf
+    dest: /etc/unbound/unbound.conf.d/ad-servers.conf
     owner: root
     group: unbound
     mode: '0644'

+ 4 - 18
roles/name-resolution/templates/dhcpd/dhcpd.conf.j2

@@ -10,22 +10,13 @@ authoritative;
 default-lease-time 43200; # 12 hours
 max-lease-time 86400;     # 24 hours
 
-# needed for static routes for Windows clients
-#option rfc3442-classless-static-routes code 121 = array of integer 8;
-#option ms-classless-static-routes code 249 = array of integer 8;
-#option rfc3442-classless-static-routes 24, 192, 168, 1, 10, 0, 0, 8, 0, 10, 0, 0, 1;
-#option ms-classless-static-routes 24, 192, 168, 1, 10, 0, 0, 8, 0, 10, 0, 0, 1;
 
-subnet {{ dhcp_cidr|ipaddr('network') }} netmask {{ dhcp_cidr|ipaddr('netmask') }} {
+subnet {{ dhcp_cidr|ansible.utils.ipaddr('network') }} netmask {{ dhcp_cidr|ansible.utils.ipaddr('netmask') }} {
 
   option routers {{ dhcp_gw_default }};
 
   option domain-name-servers {{ dhcp_gw_secured }}, {{ dns_primary }}, {{ dns_secondary }};
-  option domain-name "home.arpa";
-
-  ## WINS info for Windows capability
-  #option netbios-name-servers 10.0.0.4;
-  #option netbios-node-type 8; 
+  option domain-name "{{ dhcp_domain }}";
 
   # Dynamic IPs
   range {{ dhcp_range_start }} {{ dhcp_range_end }};
@@ -33,11 +24,6 @@ subnet {{ dhcp_cidr|ipaddr('network') }} netmask {{ dhcp_cidr|ipaddr('netmask')
   class "secured" {
     option routers {{ dhcp_gw_secured }};
 
-    # 192.168.1.0/24 thru 10.0.0.8, 10.0.0.2 as default route
-    #option rfc3442-classless-static-routes 24, 192, 168, 1, 10, 0, 0, 8, 0, 10, 0, 0, 2;
-    #option rfc3442-classless-static-routes 24, 192, 168, 1, 10, 0, 0, 8, 0, 10, 0, 0, 2;
-    #option ms-classless-static-routes 24, 192, 168, 1, 10, 0, 0, 8, 0, 10, 0, 0, 2;
-
     match hardware;
   }
 
@@ -47,10 +33,10 @@ subnet {{ dhcp_cidr|ipaddr('network') }} netmask {{ dhcp_cidr|ipaddr('netmask')
     match hardware;
   }
 
-  class "alphasite" {
+  class "betagate" {
     option domain-name-servers 1.1.1.3, 1.0.0.3; # cloudflare block malware + porn
 
-    option routers {{ dhcp_gw_alphasite }};
+    option routers {{ dhcp_gw_betagate }};
 
     match hardware;
   }

+ 1 - 1
roles/name-resolution/templates/hosts.j2

@@ -3,6 +3,6 @@
 
 # BEGIN ANSIBLE MANAGED BLOCK
 {% for node in reservations %}
-{{ node.ip }}	{{ node.name }}	{{ node.name }}.{{ local_domain|split('.')|first}}	{{ node.name }}.{{ local_domain }}
+{{ node.ip }}	{{ node.name }}	{{ node.name }}.{{ dhcp_domain|split('.')|first}}	{{ node.name }}.{{ dhcp_domain }}
 {% endfor %}
 # END ANSIBLE MANAGED BLOCK

+ 4 - 0
roles/name-resolution/templates/resolv.conf.j2

@@ -0,0 +1,4 @@
+# {{ ansible_managed }}
+
+nameserver {{ dns_primary }}
+nameserver {{ dns_secondary }}

+ 0 - 15
roles/name-resolution/templates/statusservices.j2

@@ -1,15 +0,0 @@
-#!/bin/bash
-# {{ ansible_managed }}
-
-declare -a arr=("openvpn-client@proton" "unbound" "dhcpd")
-
-for i in "${arr[@]}"; do
-  istatus=$(systemctl is-active $i)
-  format="%-28s \x1b[32m%s\x1b[0m\n" # green output by default
-
-  if [ "$istatus" != "active" ]; then
-    format="%-28s \x1b[31m%s\x1b[0m\n" # make red if service not active
-  fi
-
-  printf "$format" "$i:" "$istatus"
-done

+ 3 - 2
roles/name-resolution/templates/unbound/lan-name-resolution.conf.j2

@@ -1,6 +1,7 @@
 # {{ ansible_managed }}
 
+server:
 {% for node in reservations %}
-local-data: "{{ node.name }} A {{ node.ip }}"
-local-data-ptr: "{{ node.ip }} {{ node.name }}"
+    local-data: "{{ node.name }} A {{ node.ip }}"
+    local-data-ptr: "{{ node.ip }} {{ node.name }}"
 {% endfor %}

+ 4 - 8
roles/name-resolution/templates/unbound/local-domain.conf.j2

@@ -1,12 +1,8 @@
 # {{ ansible_managed }}
 
+server:
 {% for node in reservations %}
-local-zone: "{{ node.name }}.{{ local_domain }}" redirect
-local-data: "{{ node.name }}.{{ local_domain }} 86400 IN A {{ node.ip }}"
-local-data-ptr: "{{ node.ip }} {{ node.name}}.{{ local_domain }}"
+    local-zone: "{{ node.name }}.{{ dhcp_domain }}" redirect
+    local-data: "{{ node.name }}.{{ dhcp_domain }} 86400 IN A {{ node.ip }}"
+    local-data-ptr: "{{ node.ip }} {{ node.name}}.{{ dhcp_domain }}"
 {% endfor %}
-
-#{% for node in reservations %}
-#local-data: "{{ node.name }}.home.arpa A {{ node.ip }}"
-#local-data-ptr: "{{ node.ip }} {{ node.name }}.home.arpa"
-#{% endfor %}

+ 3 - 2
roles/name-resolution/templates/unbound/plug-onion-addresses.conf.j2

@@ -1,2 +1,3 @@
-local-zone: "onion." redirect
-local-data: "onion. A 127.0.0.1"
+server:
+    local-zone: "onion." redirect
+    local-data: "onion. A 127.0.0.1"

+ 12 - 952
roles/name-resolution/templates/unbound/unbound.conf.j2

@@ -1,953 +1,13 @@
 server:
-
-	# verbosity number, 0 is least verbose. 1 is default.
-	verbosity: 1
-
-	# print statistics to the log (for every thread) every N seconds.
-	# Set to "" or 0 to disable. Default is disabled.
-	# Needs to be disabled for munin plugin
-	statistics-interval: 0
-
-	# enable shm for stats, default no.  if you enable also enable
-	# statistics-interval, every time it also writes stats to the
-	# shared memory segment keyed with shm-key.
-	# shm-enable: no
-
-	# shm for stats uses this key, and key+1 for the shared mem segment.
-	# shm-key: 11777
-
-	# enable cumulative statistics, without clearing them after printing.
-	# Needs to be disabled for munin plugin
-	statistics-cumulative: no
-
-	# enable extended statistics (query types, answer codes, status)
-	# printed from unbound-control. default off, because of speed.
-	# Needs to be enabled for munin plugin
-	extended-statistics: yes
-
-	# number of threads to create. 1 disables threading.
-	num-threads: 4
-
-	interface: 127.0.0.1
-  interface: {{ ansible_all_ipv4_addresses|sort|first }}
-
-	# for dns over tls and raw dns over port 80
-	# interface: 0.0.0.0@443
-	# interface: ::0@443
-	# interface: 0.0.0.0@80
-	# interface: ::0@80
-
-	# enable this feature to copy the source address of queries to reply.
-	# Socket options are not supported on all platforms. experimental.
-	# interface-automatic: yes
-	#
-	# NOTE: Enable this option when specifying interface 0.0.0.0 or ::0
-	# NOTE: Disabled per Fedora policy not to listen to * on default install
-	# NOTE: If deploying on non-default port, eg 80/443, this needs to be disabled
-	interface-automatic: no
-
-	# port to answer queries from
-	# port: 53
-
-	# specify the interfaces to send outgoing queries to authoritative
-	# server from by ip-address. If none, the default (all) interface
-	# is used. Specify every interface on a 'outgoing-interface:' line.
-	# outgoing-interface: 192.0.2.153
-	# outgoing-interface: 2001:DB8::5
-	# outgoing-interface: 2001:DB8::6
-	outgoing-interface: {{ ansible_default_ipv4.address }}
-
-	# Specify a netblock to use remainder 64 bits as random bits for
-	# upstream queries.  Uses freebind option (Linux).
-	# outgoing-interface: 2001:DB8::/64
-	# Also (Linux:) ip -6 addr add 2001:db8::/64 dev lo
-	# And: ip -6 route add local 2001:db8::/64 dev lo
-	# And set prefer-ip6: yes to use the ip6 randomness from a netblock.
-	# Set this to yes to prefer ipv6 upstream servers over ipv4.
-	# prefer-ip6: no
-
-	# number of ports to allocate per thread, determines the size of the
-	# port range that can be open simultaneously.  About double the
-	# num-queries-per-thread, or, use as many as the OS will allow you.
-	# outgoing-range: 4096
-
-	# permit unbound to use this port number or port range for
-	# making outgoing queries, using an outgoing interface.
-	# Only ephemeral ports are allowed by SElinux
-	outgoing-port-permit: 32768-60999
-
-	# deny unbound the use this of port number or port range for
-	# making outgoing queries, using an outgoing interface.
-	# Use this to make sure unbound does not grab a UDP port that some
-	# other server on this computer needs. The default is to avoid
-	# IANA-assigned port numbers.
-	# If multiple outgoing-port-permit and outgoing-port-avoid options
-	# are present, they are processed in order.
-	# Our SElinux policy does not allow non-ephemeral ports to be used
-	outgoing-port-avoid: 0-32767
-
-	# number of outgoing simultaneous tcp buffers to hold per thread.
-	# outgoing-num-tcp: 10
-
-	# number of incoming simultaneous tcp buffers to hold per thread.
-	# incoming-num-tcp: 10
-
-	# buffer size for UDP port 53 incoming (SO_RCVBUF socket option).
-	# 0 is system default.  Use 4m to catch query spikes for busy servers.
-	# so-rcvbuf: 0
-
-	# buffer size for UDP port 53 outgoing (SO_SNDBUF socket option).
-	# 0 is system default.  Use 4m to handle spikes on very busy servers.
-	# so-sndbuf: 0
-
-	# use SO_REUSEPORT to distribute queries over threads.
-	so-reuseport: yes
-
-	# use IP_TRANSPARENT so the interface: addresses can be non-local
-	# and you can config non-existing IPs that are going to work later on
-	# (uses IP_BINDANY on FreeBSD).
-	ip-transparent: yes
-
-	# use IP_FREEBIND so the interface: addresses can be non-local
-	# and you can bind to nonexisting IPs and interfaces that are down.
-	# Linux only.  On Linux you also have ip-transparent that is similar.
-	# ip-freebind: no
-
-	# EDNS reassembly buffer to advertise to UDP peers (the actual buffer
-	# is set with msg-buffer-size). 1472 can solve fragmentation (timeouts).
-	# edns-buffer-size: 4096
-
-	# Maximum UDP response size (not applied to TCP response).
-	# Suggested values are 512 to 4096. Default is 4096. 65536 disables it.
-	# 3072 causes +dnssec any isc.org queries to need TC=1.
-	# Helps mitigating DDOS
-	max-udp-size: 3072
-
-	# buffer size for handling DNS data. No messages larger than this
-	# size can be sent or received, by UDP or TCP. In bytes.
-	# msg-buffer-size: 65552
-
-	# the amount of memory to use for the message cache.
-	# plain value in bytes or you can append k, m or G. default is "4Mb".
-	# msg-cache-size: 4m
-
-	# the number of slabs to use for the message cache.
-	# the number of slabs must be a power of 2.
-	# more slabs reduce lock contention, but fragment memory usage.
-	# msg-cache-slabs: 4
-
-	# the number of queries that a thread gets to service.
-	# num-queries-per-thread: 1024
-
-	# if very busy, 50% queries run to completion, 50% get timeout in msec
-	# jostle-timeout: 200
-
-	# msec to wait before close of port on timeout UDP. 0 disables.
-	# delay-close: 0
-
-	# the amount of memory to use for the RRset cache.
-	# plain value in bytes or you can append k, m or G. default is "4Mb".
-	# rrset-cache-size: 4m
-
-	# the number of slabs to use for the RRset cache.
-	# the number of slabs must be a power of 2.
-	# more slabs reduce lock contention, but fragment memory usage.
-	# rrset-cache-slabs: 4
-
-	# the time to live (TTL) value lower bound, in seconds. Default 0.
-	# If more than an hour could easily give trouble due to stale data.
-	# cache-min-ttl: 0
-
-	# the time to live (TTL) value cap for RRsets and messages in the
-	# cache. Items are not cached for longer. In seconds.
-	# cache-max-ttl: 86400
-
-	# the time to live (TTL) value cap for negative responses in the cache
-	# cache-max-negative-ttl: 3600
-
-	# the time to live (TTL) value for cached roundtrip times, lameness and
-	# EDNS version information for hosts. In seconds.
-	# infra-host-ttl: 900
-
-	# minimum wait time for responses, increase if uplink is long. In msec.
-	# infra-cache-min-rtt: 50
-
-	# the number of slabs to use for the Infrastructure cache.
-	# the number of slabs must be a power of 2.
-	# more slabs reduce lock contention, but fragment memory usage.
-	# infra-cache-slabs: 4
-
-	# the maximum number of hosts that are cached (roundtrip, EDNS, lame).
-	# infra-cache-numhosts: 10000
-
-	# define a number of tags here, use with local-zone, access-control.
-	# repeat the define-tag statement to add additional tags.
-	# define-tag: "tag1 tag2 tag3"
-
-	# Enable IPv4, "yes" or "no".
-	# do-ip4: yes
-
-	# Enable IPv6, "yes" or "no".
-	# do-ip6: yes
-
-	# Enable UDP, "yes" or "no".
-	# NOTE: if setting up an unbound on tls443 for public use, you might want to
-	# disable UDP to avoid being used in DNS amplification attacks.
-	# do-udp: yes
-
-	# Enable TCP, "yes" or "no".
-	do-tcp: yes
-
-	# upstream connections use TCP only (and no UDP), "yes" or "no"
-	# useful for tunneling scenarios, default no.
-	# tcp-upstream: no
-
-	# upstream connections also use UDP (even if do-udp is no).
-	# useful if if you want UDP upstream, but don't provide UDP downstream.
-	# udp-upstream-without-downstream: no
-
-	# Maximum segment size (MSS) of TCP socket on which the server
-	# responds to queries. Default is 0, system default MSS.
-	# tcp-mss: 0
-
-	# Maximum segment size (MSS) of TCP socket for outgoing queries.
-	# Default is 0, system default MSS.
-	# outgoing-tcp-mss: 0
-
-	# Fedora note: do not activate this - can cause a crash
-	# Use systemd socket activation for UDP, TCP, and control sockets.
-	# use-systemd: no
-
-	# Detach from the terminal, run in background, "yes" or "no".
-	# Set the value to "no" when unbound runs as systemd service.
-	# do-daemonize: yes
-
-	# control which clients are allowed to make (recursive) queries
-	# to this server. Specify classless netblocks with /size and action.
-	# By default everything is refused, except for localhost.
-	# Choose deny (drop message), refuse (polite error reply),
-	# allow (recursive ok), allow_setrd (recursive ok, rd bit is forced on),
-	# allow_snoop (recursive and nonrecursive ok)
-	# deny_non_local (drop queries unless can be answered from local-data)
-	# refuse_non_local (like deny_non_local but polite error reply).
-	# access-control: 0.0.0.0/0 refuse
-	# access-control: 127.0.0.0/8 allow
-	# access-control: ::0/0 refuse
-	# access-control: ::1 allow
-	# access-control: ::ffff:127.0.0.1 allow
-	access-control: 127.0.0.0/8 allow
-	access-control: {{ dhcp_cidr }} allow
-
-	# tag access-control with list of tags (in "" with spaces between)
-	# Clients using this access control element use localzones that
-	# are tagged with one of these tags.
-	# access-control-tag: 192.0.2.0/24 "tag2 tag3"
-
-	# set action for particular tag for given access control element
-	# if you have multiple tag values, the tag used to lookup the action
-	# is the first tag match between access-control-tag and local-zone-tag
-	# where "first" comes from the order of the define-tag values.
-	# access-control-tag-action: 192.0.2.0/24 tag3 refuse
-
-	# set redirect data for particular tag for access control element
-	# access-control-tag-data: 192.0.2.0/24 tag2 "A 127.0.0.1"
-
-	# Set view for access control element
-	# access-control-view: 192.0.2.0/24 viewname
-
-	# if given, a chroot(2) is done to the given directory.
-	# i.e. you can chroot to the working directory, for example,
-	# for extra security, but make sure all files are in that directory.
-	#
-	# If chroot is enabled, you should pass the configfile (from the
-	# commandline) as a full path from the original root. After the
-	# chroot has been performed the now defunct portion of the config
-	# file path is removed to be able to reread the config after a reload.
-	#
-	# All other file paths (working dir, logfile, roothints, and
-	# key files) can be specified in several ways:
-	# 	o as an absolute path relative to the new root.
-	# 	o as a relative path to the working directory.
-	# 	o as an absolute path relative to the original root.
-	# In the last case the path is adjusted to remove the unused portion.
-	#
-	# The pid file can be absolute and outside of the chroot, it is
-	# written just prior to performing the chroot and dropping permissions.
-	#
-	# Additionally, unbound may need to access /dev/random (for entropy).
-	# How to do this is specific to your OS.
-	#
-	# If you give "" no chroot is performed. The path must not end in a /.
-	# chroot: "/var/lib/unbound"
-	chroot: ""
-
-	# if given, user privileges are dropped (after binding port),
-	# and the given username is assumed. Default is user "unbound".
-	# If you give "" no privileges are dropped.
-	username: "unbound"
-
-	# the working directory. The relative files in this config are
-	# relative to this directory. If you give "" the working directory
-	# is not changed.
-	# If you give a server: directory: dir before include: file statements
-	# then those includes can be relative to the working directory.
-	directory: "/etc/unbound"
-
-	# the log file, "" means log to stderr.
-	# Use of this option sets use-syslog to "no".
-	# logfile: ""
-
-	# Log to syslog(3) if yes. The log facility LOG_DAEMON is used to
-	# log to. If yes, it overrides the logfile.
-	# use-syslog: yes
- 
-	# Log identity to report. if empty, defaults to the name of argv[0]
-	# (usually "unbound").
-	# log-identity: ""
-
-	# print UTC timestamp in ascii to logfile, default is epoch in seconds.
-	log-time-ascii: yes
-
-	# print one line with time, IP, name, type, class for every query.
-	# log-queries: no
-
-	# print one line per reply, with time, IP, name, type, class, rcode,
-	# timetoresolve, fromcache and responsesize.
-	# log-replies: no
-
-	# the pid file. Can be an absolute path outside of chroot/work dir.
-	pidfile: "/var/run/unbound/unbound.pid"
-
-	# file to read root hints from.
-	# get one from https://www.internic.net/domain/named.cache
-	# root-hints: ""
-
-	# enable to not answer id.server and hostname.bind queries.
-	# hide-identity: no
-
-	# enable to not answer version.server and version.bind queries.
-	# hide-version: no
-
-	# enable to not answer trustanchor.unbound queries.
-	# hide-trustanchor: no
-
-	# the identity to report. Leave "" or default to return hostname.
-	# identity: ""
-
-	# the version to report. Leave "" or default to return package version.
-	# version: ""
-
-	# the target fetch policy.
-	# series of integers describing the policy per dependency depth.
-	# The number of values in the list determines the maximum dependency
-	# depth the recursor will pursue before giving up. Each integer means:
-	# 	-1 : fetch all targets opportunistically,
-	# 	0: fetch on demand,
-	#	positive value: fetch that many targets opportunistically.
-	# Enclose the list of numbers between quotes ("").
-	# target-fetch-policy: "3 2 1 0 0"
-
-	# Harden against very small EDNS buffer sizes.
-	# harden-short-bufsize: no
-
-	# Harden against unseemly large queries.
-	# harden-large-queries: no
-
-	# Harden against out of zone rrsets, to avoid spoofing attempts.
-	harden-glue: yes
-
-	# Harden against receiving dnssec-stripped data. If you turn it
-	# off, failing to validate dnskey data for a trustanchor will
-	# trigger insecure mode for that zone (like without a trustanchor).
-	# Default on, which insists on dnssec data for trust-anchored zones.
-	harden-dnssec-stripped: yes
-
-	# Harden against queries that fall under dnssec-signed nxdomain names.
-	harden-below-nxdomain: yes
-
-	# Harden the referral path by performing additional queries for
-	# infrastructure data.  Validates the replies (if possible).
-	# Default off, because the lookups burden the server.  Experimental
-	# implementation of draft-wijngaards-dnsext-resolver-side-mitigation.
-	harden-referral-path: yes
-
-	# Harden against algorithm downgrade when multiple algorithms are
-	# advertised in the DS record.  If no, allows the weakest algorithm
-	# to validate the zone.
-	# harden-algo-downgrade: no
-
-	# Sent minimum amount of information to upstream servers to enhance
-	# privacy. Only sent minimum required labels of the QNAME and set QTYPE
-	# to NS when possible.
-	qname-minimisation: yes
-
-	# QNAME minimisation in strict mode. Do not fall-back to sending full
-	# QNAME to potentially broken nameservers. A lot of domains will not be
-	# resolvable when this option in enabled.
-	# This option only has effect when qname-minimisation is enabled.
-	# qname-minimisation-strict: no
-
-	# Aggressive NSEC uses the DNSSEC NSEC chain to synthesize NXDOMAIN
-	# and other denials, using information from previous NXDOMAINs answers.
-	aggressive-nsec: yes
-
-	# Use 0x20-encoded random bits in the query to foil spoof attempts.
-	# This feature is an experimental implementation of draft dns-0x20.
-	# use-caps-for-id: no
-
-	# Domains (and domains in them) without support for dns-0x20 and
-	# the fallback fails because they keep sending different answers.
-	# caps-whitelist: "licdn.com"
-	# caps-whitelist: "senderbase.org"
-
-	# Enforce privacy of these addresses. Strips them away from answers.
-	# It may cause DNSSEC validation to additionally mark it as bogus.
-	# Protects against 'DNS Rebinding' (uses browser as network proxy).
-	# Only 'private-domain' and 'local-data' names are allowed to have
-	# these private addresses. No default.
-	# private-address: 10.0.0.0/8
-	# private-address: 172.16.0.0/12
-	# private-address: 192.168.0.0/16
-	# private-address: 169.254.0.0/16
-	# private-address: fd00::/8
-	# private-address: fe80::/10
-	# private-address: ::ffff:0:0/96
-
-	# Allow the domain (and its subdomains) to contain private addresses.
-	# local-data statements are allowed to contain private addresses too.
-	# private-domain: "example.com"
-
-	# If nonzero, unwanted replies are not only reported in statistics,
-	# but also a running total is kept per thread. If it reaches the
-	# threshold, a warning is printed and a defensive action is taken,
-	# the cache is cleared to flush potential poison out of it.
-	# A suggested value is 10000000, the default is 0 (turned off).
-	unwanted-reply-threshold: 10000000
-
-	# Do not query the following addresses. No DNS queries are sent there.
-	# List one address per entry. List classless netblocks with /size,
-	# do-not-query-address: 127.0.0.1/8
-	# do-not-query-address: ::1
-
-	# if yes, the above default do-not-query-address entries are present.
-	# if no, localhost can be queried (for testing and debugging).
-	# do-not-query-localhost: yes
-
-	# if yes, perform prefetching of almost expired message cache entries.
-	prefetch: yes
-
-	# if yes, perform key lookups adjacent to normal lookups.
-	prefetch-key: yes
-
-	# if yes, Unbound rotates RRSet order in response.
-	rrset-roundrobin: yes
-
-	# if yes, Unbound doesn't insert authority/additional sections
-	# into response messages when those sections are not required.
-	minimal-responses: yes
-
-	# true to disable DNSSEC lameness check in iterator.
-	# disable-dnssec-lame-check: no
-
-	# module configuration of the server. A string with identifiers
-	# separated by spaces. Syntax: "[dns64] [validator] iterator"
-	module-config: "ipsecmod validator iterator"
-
-	# File with trusted keys, kept uptodate using RFC5011 probes,
-	# initial file like trust-anchor-file, then it stores metadata.
-	# Use several entries, one per domain name, to track multiple zones.
-	#
-	# If you want to perform DNSSEC validation, run unbound-anchor before
-	# you start unbound (i.e. in the system boot scripts).  And enable:
-	# Please note usage of unbound-anchor root anchor is at your own risk
-	# and under the terms of our LICENSE (see that file in the source).
-	# auto-trust-anchor-file: "/var/lib/unbound/root.key"
-
-	# trust anchor signaling sends a RFC8145 key tag query after priming.
-	trust-anchor-signaling: yes
-
-	# Root key trust anchor sentinel (draft-ietf-dnsop-kskroll-sentinel)
-	root-key-sentinel: yes
-
-	# File with DLV trusted keys. Same format as trust-anchor-file.
-	# There can be only one DLV configured, it is trusted from root down.
-	# DLV is going to be decommissioned.  Please do not use it any more.
-	# dlv-anchor-file: "dlv.isc.org.key"
-
-	# File with trusted keys for validation. Specify more than one file
-	# with several entries, one file per entry.
-	# Zone file format, with DS and DNSKEY entries.
-	# Note this gets out of date, use auto-trust-anchor-file please.
-	# trust-anchor-file: ""
-
-	# Trusted key for validation. DS or DNSKEY. specify the RR on a
-	# single line, surrounded by "". TTL is ignored. class is IN default.
-	# Note this gets out of date, use auto-trust-anchor-file please.
-	# (These examples are from August 2007 and may not be valid anymore).
-	# trust-anchor: "nlnetlabs.nl. DNSKEY 257 3 5 AQPzzTWMz8qSWIQlfRnPckx2BiVmkVN6LPupO3mbz7FhLSnm26n6iG9N Lby97Ji453aWZY3M5/xJBSOS2vWtco2t8C0+xeO1bc/d6ZTy32DHchpW 6rDH1vp86Ll+ha0tmwyy9QP7y2bVw5zSbFCrefk8qCUBgfHm9bHzMG1U BYtEIQ=="
-	# trust-anchor: "jelte.nlnetlabs.nl. DS 42860 5 1 14D739EB566D2B1A5E216A0BA4D17FA9B038BE4A"
-
-	# File with trusted keys for validation. Specify more than one file
-	# with several entries, one file per entry. Like trust-anchor-file
-	# but has a different file format. Format is BIND-9 style format,
-	# the trusted-keys { name flag proto algo "key"; }; clauses are read.
-	# you need external update procedures to track changes in keys.
-	# trusted-keys-file: ""
-	#
-	trusted-keys-file: /etc/unbound/keys.d/*.key
-	auto-trust-anchor-file: "/var/lib/unbound/root.key"
-
-	# Ignore chain of trust. Domain is treated as insecure.
-	# domain-insecure: "example.com"
-
-	# Override the date for validation with a specific fixed date.
-	# Do not set this unless you are debugging signature inception
-	# and expiration. "" or "0" turns the feature off. -1 ignores date.
-	# val-override-date: ""
-
-	# The time to live for bogus data, rrsets and messages. This avoids
-	# some of the revalidation, until the time interval expires. in secs.
-	# val-bogus-ttl: 60
-
-	# The signature inception and expiration dates are allowed to be off
-	# by 10% of the signature lifetime (expir-incep) from our local clock.
-	# This leeway is capped with a minimum and a maximum.  In seconds.
-	# val-sig-skew-min: 3600
-	# val-sig-skew-max: 86400
-
-	# Should additional section of secure message also be kept clean of
-	# unsecure data. Useful to shield the users of this validator from
-	# potential bogus data in the additional section. All unsigned data
-	# in the additional section is removed from secure messages.
-	val-clean-additional: yes
-
-	# Turn permissive mode on to permit bogus messages. Thus, messages
-	# for which security checks failed will be returned to clients,
-	# instead of SERVFAIL. It still performs the security checks, which
-	# result in interesting log files and possibly the AD bit in
-	# replies if the message is found secure. The default is off.
-	# NOTE: TURNING THIS ON DISABLES ALL DNSSEC SECURITY
-	val-permissive-mode: no
-
-	# Ignore the CD flag in incoming queries and refuse them bogus data.
-	# Enable it if the only clients of unbound are legacy servers (w2008)
-	# that set CD but cannot validate themselves.
-	# ignore-cd-flag: no
-
-	# Serve expired responses from cache, with TTL 0 in the response,
-	# and then attempt to fetch the data afresh.
-	serve-expired: yes
-
-	# Have the validator log failed validations for your diagnosis.
-	# 0: off. 1: A line per failed user query. 2: With reason and bad IP.
-	val-log-level: 1
-
-	# It is possible to configure NSEC3 maximum iteration counts per
-	# keysize. Keep this table very short, as linear search is done.
-	# A message with an NSEC3 with larger count is marked insecure.
-	# List in ascending order the keysize and count values.
-	# val-nsec3-keysize-iterations: "1024 150 2048 500 4096 2500"
-
-	# instruct the auto-trust-anchor-file probing to add anchors after ttl.
-	# add-holddown: 2592000 # 30 days
-
-	# instruct the auto-trust-anchor-file probing to del anchors after ttl.
-	# del-holddown: 2592000 # 30 days
-
-	# auto-trust-anchor-file probing removes missing anchors after ttl.
-	# If the value 0 is given, missing anchors are not removed.
-	# keep-missing: 31622400 # 366 days
-
-	# debug option that allows very small holddown times for key rollover,
-	# otherwise the RFC mandates probe intervals must be at least 1 hour.
-	# permit-small-holddown: no
-
-	# the amount of memory to use for the key cache.
-	# plain value in bytes or you can append k, m or G. default is "4Mb".
-	# key-cache-size: 4m
-
-	# the number of slabs to use for the key cache.
-	# the number of slabs must be a power of 2.
-	# more slabs reduce lock contention, but fragment memory usage.
-	# key-cache-slabs: 4
-
-	# the amount of memory to use for the negative cache (used for DLV).
-	# plain value in bytes or you can append k, m or G. default is "1Mb".
-	# neg-cache-size: 1m
-
-	# By default, for a number of zones a small default 'nothing here'
-	# reply is built-in.  Query traffic is thus blocked.  If you
-	# wish to serve such zone you can unblock them by uncommenting one
-	# of the nodefault statements below.
-	# You may also have to use domain-insecure: zone to make DNSSEC work,
-	# unless you have your own trust anchors for this zone.
-	# local-zone: "localhost." nodefault
-	# local-zone: "127.in-addr.arpa." nodefault
-	# local-zone: "1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa." nodefault
-	# local-zone: "onion." nodefault
-	# local-zone: "test." nodefault
-	# local-zone: "invalid." nodefault
-	# local-zone: "10.in-addr.arpa." nodefault
-	# local-zone: "16.172.in-addr.arpa." nodefault
-	# local-zone: "17.172.in-addr.arpa." nodefault
-	# local-zone: "18.172.in-addr.arpa." nodefault
-	# local-zone: "19.172.in-addr.arpa." nodefault
-	# local-zone: "20.172.in-addr.arpa." nodefault
-	# local-zone: "21.172.in-addr.arpa." nodefault
-	# local-zone: "22.172.in-addr.arpa." nodefault
-	# local-zone: "23.172.in-addr.arpa." nodefault
-	# local-zone: "24.172.in-addr.arpa." nodefault
-	# local-zone: "25.172.in-addr.arpa." nodefault
-	# local-zone: "26.172.in-addr.arpa." nodefault
-	# local-zone: "27.172.in-addr.arpa." nodefault
-	# local-zone: "28.172.in-addr.arpa." nodefault
-	# local-zone: "29.172.in-addr.arpa." nodefault
-	# local-zone: "30.172.in-addr.arpa." nodefault
-	# local-zone: "31.172.in-addr.arpa." nodefault
-	# local-zone: "168.192.in-addr.arpa." nodefault
-	# local-zone: "0.in-addr.arpa." nodefault
-	# local-zone: "254.169.in-addr.arpa." nodefault
-	# local-zone: "2.0.192.in-addr.arpa." nodefault
-	# local-zone: "100.51.198.in-addr.arpa." nodefault
-	# local-zone: "113.0.203.in-addr.arpa." nodefault
-	# local-zone: "255.255.255.255.in-addr.arpa." nodefault
-	# local-zone: "0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa." nodefault
-	# local-zone: "d.f.ip6.arpa." nodefault
-	# local-zone: "8.e.f.ip6.arpa." nodefault
-	# local-zone: "9.e.f.ip6.arpa." nodefault
-	# local-zone: "a.e.f.ip6.arpa." nodefault
-	# local-zone: "b.e.f.ip6.arpa." nodefault
-	# local-zone: "8.b.d.0.1.0.0.2.ip6.arpa." nodefault
-	# And for 64.100.in-addr.arpa. to 127.100.in-addr.arpa.
-
-	# If unbound is running service for the local host then it is useful
-	# to perform lan-wide lookups to the upstream, and unblock the
-	# long list of local-zones above.  If this unbound is a dns server
-	# for a network of computers, disabled is better and stops information
-	# leakage of local lan information.
-	# unblock-lan-zones: no
-
-	# The insecure-lan-zones option disables validation for
-	# these zones, as if they were all listed as domain-insecure.
-	# insecure-lan-zones: no
-
-	# a number of locally served zones can be configured.
-	# 	local-zone: <zone> <type>
-	# 	local-data: "<resource record string>"
-	# o deny serves local data (if any), else, drops queries.
-	# o refuse serves local data (if any), else, replies with error.
-	# o static serves local data, else, nxdomain or nodata answer.
-	# o transparent gives local data, but resolves normally for other names
-	# o redirect serves the zone data for any subdomain in the zone.
-	# o nodefault can be used to normally resolve AS112 zones.
-	# o typetransparent resolves normally for other types and other names
-	# o inform acts like transparent, but logs client IP address
-	# o inform_deny drops queries and logs client IP address
-	# o always_transparent, always_refuse, always_nxdomain, resolve in
-	#   that way but ignore local data for that name
-	# o noview breaks out of that view towards global local-zones.
-	#
-	# defaults are localhost address, reverse for 127.0.0.1 and ::1
-	# and nxdomain for AS112 zones. If you configure one of these zones
-	# the default content is omitted, or you can omit it with 'nodefault'.
-	#
-	# If you configure local-data without specifying local-zone, by
-	# default a transparent local-zone is created for the data.
-	#
-	# You can add locally served data with
-	# local-zone: "local." static
-	# local-data: "mycomputer.local. IN A 192.0.2.51"
-	# local-data: 'mytext.local TXT "content of text record"'
-	#
-	# You can override certain queries with
-	# local-data: "adserver.example.com A 127.0.0.1"
-	#
-	# You can redirect a domain to a fixed address with
-	# (this makes example.com, www.example.com, etc, all go to 192.0.2.3)
-	# local-zone: "example.com" redirect
-	# local-data: "example.com A 192.0.2.3"
-	#
-	# Shorthand to make PTR records, "IPv4 name" or "IPv6 name".
-	# You can also add PTR records using local-data directly, but then
-	# you need to do the reverse notation yourself.
-	# local-data-ptr: "192.0.2.3 www.example.com"
-
-	include: /etc/unbound/local.d/*.conf
-
-	# tag a localzone with a list of tag names (in "" with spaces between)
-	# local-zone-tag: "example.com" "tag2 tag3"
-
-	# add a netblock specific override to a localzone, with zone type
-	# local-zone-override: "example.com" 192.0.2.0/24 refuse
-
-	# service clients over SSL (on the TCP sockets), with plain DNS inside
-	# the SSL stream.  Give the certificate to use and private key.
-	# default is "" (disabled).  requires restart to take effect.
-	# tls-service-key: "/etc/unbound/unbound_server.key"
-	# tls-service-pem: "/etc/unbound/unbound_server.pem"
-	# tls-port: 853
-	#
-	# request upstream over SSL (with plain DNS inside the SSL stream).
-	# Default is no.  Can be turned on and off with unbound-control.
-	# tls-upstream: no
-
-	# Certificates used to authenticate connections made upstream.
-	# tls-cert-bundle: ""
-
-	# Add system certs to the cert bundle, from the Windows Cert Store
-	# tls-win-cert: no
-
-	# Also serve tls on these port numbers (eg. 443, ...), by listing
-	# tls-additional-ports: portno for each of the port numbers.
-
-	# DNS64 prefix. Must be specified when DNS64 is use.
-	# Enable dns64 in module-config.  Used to synthesize IPv6 from IPv4.
-	# dns64-prefix: 64:ff9b::0/96
-
-	# ratelimit for uncached, new queries, this limits recursion effort.
-	# ratelimiting is experimental, and may help against randomqueryflood.
-	# if 0(default) it is disabled, otherwise state qps allowed per zone.
-	# ratelimit: 0
-
-	# ratelimits are tracked in a cache, size in bytes of cache (or k,m).
-	# ratelimit-size: 4m
-	# ratelimit cache slabs, reduces lock contention if equal to cpucount.
-	# ratelimit-slabs: 4
-
-	# 0 blocks when ratelimited, otherwise let 1/xth traffic through
-	# ratelimit-factor: 10
-
-	# what is considered a low rtt (ping time for upstream server), in msec
-	# low-rtt: 45
-	# select low rtt this many times out of 1000. 0 means the fast server
-	# select is disabled.  prefetches are not sped up.
-	# low-rtt-permil: 0
-
-	# override the ratelimit for a specific domain name.
-	# give this setting multiple times to have multiple overrides.
-	# ratelimit-for-domain: example.com 1000
-	# override the ratelimits for all domains below a domain name
-	# can give this multiple times, the name closest to the zone is used.
-	# ratelimit-below-domain: com 1000
-
-	# global query ratelimit for all ip addresses.
-	# feature is experimental.
-	# if 0(default) it is disabled, otherwise states qps allowed per ip address
-	# ip-ratelimit: 0
-
-	# ip ratelimits are tracked in a cache, size in bytes of cache (or k,m).
-	# ip-ratelimit-size: 4m
-	# ip ratelimit cache slabs, reduces lock contention if equal to cpucount.
-	# ip-ratelimit-slabs: 4
-
-	# 0 blocks when ip is ratelimited, otherwise let 1/xth traffic through
-	# ip-ratelimit-factor: 10
-
-	# Specific options for ipsecmod. unbound needs to be configured with
-	# --enable-ipsecmod for these to take effect.
-	#
-	# Enable or disable ipsecmod (it still needs to be defined in
-	# module-config above). Can be used when ipsecmod needs to be
-	# enabled/disabled via remote-control(below).
-	# Fedora: module will be enabled on-demand by libreswan
-	ipsecmod-enabled: no
-
-	# Path to executable external hook. It must be defined when ipsecmod is
-	# listed in module-config (above).
-	# ipsecmod-hook: "./my_executable"
-	ipsecmod-hook:/usr/libexec/ipsec/_unbound-hook
-
-	# When enabled unbound will reply with SERVFAIL if the return value of
-	# the ipsecmod-hook is not 0.
-	# ipsecmod-strict: no
-	#
-	# Maximum time to live (TTL) for cached A/AAAA records with IPSECKEY.
-	# ipsecmod-max-ttl: 3600
-	#
-	# Reply with A/AAAA even if the relevant IPSECKEY is bogus. Mainly used for
-	# testing.
-	# ipsecmod-ignore-bogus: no
-	#
-	# Domains for which ipsecmod will be triggered. If not defined (default)
-	# all domains are treated as being whitelisted.
-	# ipsecmod-whitelist: "libreswan.org"
-	# ipsecmod-whitelist: "nlnetlabs.nl"
-
-# Python config section. To enable:
-# o use --with-pythonmodule to configure before compiling.
-# o list python in the module-config string (above) to enable.
-# o and give a python-script to run.
-python:
-	# Script file to load
-	# python-script: "/etc/unbound/ubmodule-tst.py"
-
-# Remote control config section.
-remote-control:
-	# Enable remote control with unbound-control(8) here.
-	# set up the keys and certificates with unbound-control-setup.
-	# Note: required for unbound-munin package
-	control-enable: yes
-
-	# Set to no and use an absolute path as control-interface to use
-	# a unix local named pipe for unbound-control.
-	# control-use-cert: yes
-
-	# what interfaces are listened to for remote control.
-	# give 0.0.0.0 and ::0 to listen to all interfaces.
-	 control-interface: 127.0.0.1
-	# control-interface: ::1
-
-	# port number for remote control operations.
-	# control-port: 8953
-
-	# unbound server key file.
-	server-key-file: "/etc/unbound/unbound_server.key"
-
-	# unbound server certificate file.
-	server-cert-file: "/etc/unbound/unbound_server.pem"
-
-	# unbound-control key file.
-	control-key-file: "/etc/unbound/unbound_control.key"
-
-	# unbound-control certificate file.
-	control-cert-file: "/etc/unbound/unbound_control.pem"
-
-# Stub and Forward zones
-include: /etc/unbound/conf.d/*.conf
-
-# Stub zones.
-# Create entries like below, to make all queries for 'example.com' and
-# 'example.org' go to the given list of nameservers. list zero or more
-# nameservers by hostname or by ipaddress. If you set stub-prime to yes,
-# the list is treated as priming hints (default is no).
-# With stub-first yes, it attempts without the stub if it fails.
-# Consider adding domain-insecure: name and local-zone: name nodefault
-# to the server: section if the stub is a locally served zone.
-# stub-zone:
-#	name: "example.com"
-#	stub-addr: 192.0.2.68
-#	stub-prime: no
-#	stub-first: no
-#	stub-tls-upstream: no
-# stub-zone:
-#	name: "example.org"
-#	stub-host: ns.example.com.
-
-# You can now also dynamically create and delete stub-zone's using
-# unbound-control stub_add domain.com 1.2.3.4 5.6.7.8
-# unbound-control stub_remove domain.com 1.2.3.4 5.6.7.8
-
-# Forward zones
-# Create entries like below, to make all queries for 'example.com' and
-# 'example.org' go to the given list of servers. These servers have to handle
-# recursion to other nameservers. List zero or more nameservers by hostname
-# or by ipaddress. Use an entry with name "." to forward all queries.
-# If you enable forward-first, it attempts without the forward if it fails.
-# forward-zone:
-# 	name: "example.com"
-# 	forward-addr: 192.0.2.68
-# 	forward-addr: 192.0.2.73@5355  # forward to port 5355.
-# 	forward-first: no
-# 	forward-tls-upstream: no
-# forward-zone:
-# 	name: "example.org"
-# 	forward-host: fwd.example.com
-#
-# You can now also dynamically create and delete forward-zone's using
-# unbound-control forward_add domain.com 1.2.3.4 5.6.7.8
-# unbound-control forward_remove domain.com 1.2.3.4 5.6.7.8
-
-# Authority zones
-# The data for these zones is kept locally, from a file or downloaded.
-# The data can be served to downstream clients, or used instead of the
-# upstream (which saves a lookup to the upstream).  The first example
-# has a copy of the root for local usage.  The second serves example.org
-# authoritatively.  zonefile: reads from file (and writes to it if you also
-# download it), master: fetches with AXFR and IXFR, or url to zonefile.
-auth-zone:
-	name: "."
-	for-downstream: no
-	for-upstream: yes
-	fallback-enabled: yes
-	master: b.root-servers.net
-	master: c.root-servers.net
-	master: e.root-servers.net
-	master: f.root-servers.net
-	master: g.root-servers.net
-	master: k.root-servers.net
-# auth-zone:
-#	name: "example.org"
-#	for-downstream: yes
-#	for-upstream: yes
-#	zonefile: "example.org.zone"
-
-# Views
-# Create named views. Name must be unique. Map views to requests using
-# the access-control-view option. Views can contain zero or more local-zone
-# and local-data options. Options from matching views will override global
-# options. Global options will be used if no matching view is found.
-# With view-first yes, it will try to answer using the global local-zone and
-# local-data elements if there is no view specific match.
-# view:
-#	name: "viewname"
-#	local-zone: "example.com" redirect
-#	local-data: "example.com A 192.0.2.3"
-# 	local-data-ptr: "192.0.2.3 www.example.com"
-#	view-first: no
-# view:
-#	name: "anotherview"
-#	local-zone: "example.com" refuse
-
-# Fedora: DNSCrypt support not enabled since it requires linking to
-#         another crypto library
-#
-# DNSCrypt
-# Caveats:
-# 1. the keys/certs cannot be produced by unbound. You can use dnscrypt-wrapper
-#   for this: https://github.com/cofyc/dnscrypt-wrapper/blob/master/README.md#usage
-# 2. dnscrypt channel attaches to an interface. you MUST set interfaces to
-#   listen on `dnscrypt-port` with the follo0wing snippet:
-# server:
-#     interface: 0.0.0.0@443
-#     interface: ::0@443
-#
-# Finally, `dnscrypt` config has its own section.
-# dnscrypt:
-#     dnscrypt-enable: yes
-#     dnscrypt-port: 443
-#     dnscrypt-provider: 2.dnscrypt-cert.example.com.
-#     dnscrypt-secret-key: /path/unbound-conf/keys1/1.key
-#     dnscrypt-secret-key: /path/unbound-conf/keys2/1.key
-#     dnscrypt-provider-cert: /path/unbound-conf/keys1/1.cert
-#     dnscrypt-provider-cert: /path/unbound-conf/keys2/1.cert
-
-# CacheDB
-# Enable external backend DB as auxiliary cache.  Specify the backend name
-# (default is "testframe", which has no use other than for debugging and
-# testing) and backend-specific options.  The 'cachedb' module must be
-# included in module-config.
-# cachedb:
-#     backend: "testframe"
-#     # secret seed string to calculate hashed keys
-#     secret-seed: "default"
-#     # For "redis" backend:
-#     # redis server's IP address or host name
-#     redis-server-host: 127.0.0.1
-#     # redis server's TCP port
-#     redis-server-port: 6379
-#     # timeout (in ms) for communication with the redis server
-#     redis-timeout: 100
-
-# Adding DNS-Over-TLS Support
-#tls-cert-bundle: /etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem
-forward-zone:
-  name: "."
-{% if dns_over_https == true %}
-  forward-ssl-upstream: yes
-  forward-addr: {{ dns_primary }}@853
-  forward-addr: {{ dns_secondary }}@853
-{% else %}
-  forward-addr: {{ dns_primary}}@53
-  forward-addr: {{ dns_secondary }}@53
-{% endif %}
-
+    interface: 0.0.0.0
+    access-control: {{ dhcp_cidr }} allow
+    hide-identity: yes
+    hide-version: yes
+    use-syslog: yes
+    cache-max-ttl: 14400
+    cache-min-ttl: 900
+    prefetch: yes
+    rrset-roundrobin: yes
+    do-tcp: yes
+    do-ip4: yes
+    do-udp: yes

+ 2555 - 2680
vars/vault.yaml

@@ -1,2681 +1,2556 @@
 $ANSIBLE_VAULT;1.1;AES256
-34393035343062323933623239373336623532336665333837336339303038626638386234666535
-6563313231663039356261386261636565316366376337620a323562356362633863616561393631
-64643265656564666264343635313731336437316564636666356231643937633066306161306263
-3664343730643765320a363536393930656263636634303834653232373665663639356163636362
-30303739323034656236316133396236633837653065333666353165383633663636613362616561
-34653139363334626161333233626236316636333133303537363638316435663630663231373964
-63366130336261333531356332383537323638636230643364656232326537373035333766626133
-36376662653632626562326631373036616165663466636437313161643363323461643636616162
-65353561326139356535663664666535313762663865323166383032616465623638353261373561
-63616234346538353662333566656438306262343264313162363262363931656432663264343431
-66626234643962623931353531366562653435303435323835656262343931343034336435373365
-62653133633435653330613735316565336661383134383661346334643231643131326637313734
-64356431646165623534366466376433666661646537333563313235663064303464353931323433
-38636231353162626164373532393863373064633064653735386563333931313164643830386464
-61343935363435613230646330386335393031326539353634653035396133316533396566613762
-36323332646262636637303666663132636364653938656637613138626137323565313036353435
-62303731343136383132643764333733636539303436633431613833636264333863323032326263
-30646332313730613333316536303264376139633961363166373033646439623866396235386534
-31393936656462386664366466383163613836373230636463353966643663633165643139343764
-61326239646633643439343838353364363663306130376366643536623334336562363036646462
-36626137646635303531653236373464626263346362663136363536323562386430323739323665
-33623037633562643266386638323838333431636536336430333730663166633536386333653533
-34633863383634376636633065306464656630346438666565653863366234336163616536633464
-39663333316461373233363633396666306561626430346438633165656435613935383863623062
-39663238626238356531623035616566383636353139666663326365316237373438643635643538
-39356131316564373864636164363136643832326530353332666166363166363361336431636634
-33353966613537323239313333646463383365633936396137623864366138373934666634316135
-66333863356466393536663363393832343238333834353837353830316134663234366563323938
-30643261666338373830396635616434366331313137393432303032326334613337373137663231
-36626365336539323537653962643038626162373632383234323339623764373038663430336362
-33336366623030366431383337663531656634383034363539306263376435656336646637366538
-61346632336638633363656433653933653739346532306432666636346462643830653838333666
-66333665653930326139333239623933306432623066373436316630396131393839393861363965
-66313161626266373531393231636361643463366434326434633532353038336265373463613830
-39363435323262316366656365386164313030316535663030666361306139653564333730616261
-37356633666435663939643738623236386565373634636535626262356331313933666233396133
-32643131656534343238646166346364316566623936363534643830666166636462633636663965
-34346131623631663466656466303665323764363534656165313539636231383135333664613634
-62336663613438376462313038656131336630663633353262353531316230316530373331623965
-35393238656264363838306336663831623262363333613232333136393732313562336164643766
-38366266646165663637663030653062633533653033613039333266323261303634363437336130
-30363431323635313936623937636431313136613636356163313532303761316330623862613865
-34616138323534386466303537636633666434333430306531346465323337623265323566313232
-65373935303134376136376139376363353462623661373132666334663166313637316131646365
-64393133323466623836373865346139363438633365313361626631393766316234643438653063
-61366561313937643737373438353836343136393665313539626230373664393431326366666562
-33666231393461353434346565393439306433396630633330636636396530303237386336613939
-31666532323566653938653137373336336532366365633064373232336231326430643664313535
-33656561613935336264356162636461623832613666306263336638633866346338376630653539
-32393833316336653162376365353538376632373733363264363131356539396365633736316564
-32393264323733306462323432363436366537316134653832643630306435366539643462663736
-65653134663836306562393435646331316264316566623064336139393065356334353338636664
-37303537313433623632666132313831353137616330333736363439346134636465666663613565
-39386665346137656238326230353437303038333462616364313333636431623736363666356335
-64613234643033323161326333346561353163306637373661646533373061346534326338663934
-62386432643465373338363861333564393831373465616431386638306636313866393164356364
-66313839356535313636623462303837336230323661663865386165383166343534313734393131
-32346439656661303132613066656563333665383239366134646632653032313166663537346139
-31353065393731633431633237613238393065616565633661363266336162396562643737653133
-61366331633434376163633366653332303937376234366639653538636435653932303639353365
-37323238323937396464613366646664623034623864323033303032313834343531643830616466
-33313738316430663363363930663666363334653037653766373466613765646466633039633935
-31616264633361343066373561313262363335383065393066623036393562363930343466623162
-36303638363561643135656563313063396435616330663234303738646334363938663931653638
-65613731313632343962313739383433346233633232353237346262643135376466366339313833
-38653035366337306338333236353734666632393732366630666138623930313030316662303763
-65356637613962656163626336643465663435326138356634666532366234353134333133656666
-62316336643531633534633062623839356537376339336563653363663237643939396262636332
-35636237636438383330633233636166616564633964616637663830653265663333666261666136
-32663431303532613431626263666662643537626161616462393566653838633932323664383166
-34353165646438393665633330373935366637383838643533363334656265646463323265653236
-33396637636661323731643836393363383835653235376339393638393235636237393430366139
-66363432616534636362663931643030356531383562306534373236613732663363343033323733
-65396233366634303632316434393130666664623862643863623638393762373665353233613933
-39666264633237623136336264623632626138353531323335333533633531633039333064393062
-33323638613934313964303233306464366432643232363539396639633263633534383765636636
-39356565663335363033393736313834396636396462363032636338303964636661303663383736
-64623566336563316330613961356364653163333961316332306436343361353731643862646430
-34333066636235623037363637383733613264346461646664646435666234363965303562366337
-61663564346638323338333061653339363539643035343538656364363733363236653130346364
-37323032323062313733653338363331383338613361333838346137656139313866613639393765
-63303763656366356465356366643031386566373239373132353135313263386262373365363839
-35386634383132386565353861323264363439306232313336656532626636326631323331393365
-34393333336634313836383530326635303934626431633136316436356335353133363963386461
-31633538656539326131366162666163633634373062333065363833336633323665373535633864
-62346339666564666332303266636635306431643834656463343837373361383034636537666632
-66373162663165383766323439623564393935633335303033393365626131396632613335323637
-30656665613634653335336164363463663934396361306465663165373931363937373362666235
-32326365313235666436373836333361643737373037633031343265623466653734306138313236
-32303462333761386638373839373839366538613239613164303537643061306434326131353530
-61303134383835363139333439386332623338323831393466616535613065316134333638366436
-36373966633336636365623231383533353333353537316463393635653466623562383937343237
-32656133336434663131653064303632666336386365376265623165333432353331643736653339
-64353837653566646233376363343966366238376337336632636131306331356532303964343931
-36613135373239353463653837316266626164633964303464646436396336356236623335346664
-35383334326231306433323434323162636165646338383839653937643435656333376336353531
-36386161343532653838326634663830386437393737653934636137656239356262656132386330
-31353532336439613261323932393632353334323430653265646330336634373132656531313962
-34366134643366633237633136613036343936303764626161646435666265376139656262373465
-37323434326638313537633063343134613137356339333563366234326436653031333362326561
-38393736383037313537323464346638383039393061373433386637356130643534633031653762
-30636564396237666230616534616365353133363832656236653065666562343834353735353663
-66363161373765663861396136333539346661393066373736326164376261383830643830643665
-62643961393234613234636262613332306230326638326639303765326234356133366334393965
-62666430313062623433323934663136343032363935393364393061343637373237373266363061
-65373839636130303234363161303039383633373430393830346633373265303732653663653235
-36633831623137666132383033333933666161653065313433373433306231343362393631313437
-62613137326232636161646439366431623839356238373765656432353363366565373430653461
-31653835643535623365656262396331626363306634353264656662636263313666373164383138
-39366336306531376334316662343465616331626564376335313037363830643930623237353863
-34643065626135366338336133363862373739343030646436326538343432353031363537393761
-36333766616466623036373266393237616366303639353861306130303932303461613265616235
-33343165383436383132616432636130646434383336623231616161313465376139323836386538
-39373031633830363334366561653930303130636664356264653939336635326335653964383031
-66323435393666393534623536366531383166373363383739343432653763656535373662656233
-63343834386239346130626330386164393663393066613064336339656537313563313630356433
-64366439323065646235383931393834633762313136636362333037393035333834396633643665
-30383936313263383339353737333239313831336164393565346562633965313335623838616533
-35363631343466643434333665383863643032343065646166636130333865376637643964653734
-31383538336139373031656638306338653666383731646262323337386262383631393937656566
-31386363323262366534353162636665653666316264346436326363376163373665393332613566
-63316330626236336339336137316631396666633934383334363863323062383530383566313231
-65623362323064623362386231613938343630653165613662653166356230616466303464646163
-34653462346164383266656633376539636430346664386638313434396665336465393639616237
-34386537633234336463396163613661336262303334393464626235336135316361393635613531
-62326636356237356338313737353931306666346331323962393262316363353861666664333166
-66393061653732343134363131316366313935306361663661303562666361623634323236396164
-35343761333636353131336464336666343231333335326232323535663363656566333638306136
-62343161623836353837393363316532313231306661316538383864643635303637336131356665
-62623535363238316161656464343030363134353663343763656164383662646265313939616434
-30663031343564306336633631636131383062623962363732653933393066643232623738646662
-39306163653265353332323566666638333236373361643333316534313933653935656430343031
-34643437643032373437306665653131663765346564646535316235356661386331313738626465
-35323565636164616262346635613162643830633062303939303361363037313239303932326134
-35323163636431633038616330356436616436376134336330663837363437393234303462343333
-36303138343864643361353266616535643261336535373635363238663662383562336462376361
-62366432653430356662393532663431626261396536326139333961336632343865626633386563
-62353035333039323438373633633330653365303166333338396333326432333735343238343765
-65663566356532616132626531303732616533346439646337373565646264356236343734643439
-30363732613337323561373666633865303938363534613233633839663565333563356663643233
-33356239633233653466663830636632636266303539366431633332656534336637626437626335
-63646337643438636333353235623933396236383666326566653766626564646535393230303435
-37383036393138393438666338626334646236656266373436643161336539653638666633306636
-31343839313965613365316539336130653435316236376133376564653366393533386161306237
-64643636303234323833393065646534343332303164323936393331323239363634356134383638
-35616636636537626266613366323633306530393937353964333130646432636532396137326631
-35343266306561303364363139613834393763333335626464386539323837383762653032313439
-66613232643465633037306239343061653834656164333065323138346133333461353638613337
-64326533613731643134336230643832353865396561386331383965346166383838626662353130
-32623365616561376438636561326439616261653138383338626230336263343236623861356335
-39383537653964666639663130333163623465616338323733386231613736663631373338623736
-38323330383764376237306237623235313861303937363961653934393962313736346635643663
-38666461366634316562343338633039626237623764643433313162316333623163353166326133
-38356364653662343731383366366663373434613230393533643037306563373161623231393731
-37303534653233656537656137633964626664386436386137643137303063346637356237623164
-36366631353664373637306431343531363431616662313836663263336562373566333139393433
-66306433356363363033643165346666646538633262636136663466623463363631373138653933
-63333064356435373262633166336130396464636562373830326362306262326664653438623635
-66393333623463376133383766303532616166313963323466333633616230613161366364623937
-36636261346639323338323335343165326434633264393336633737626635636131386662393838
-63643932343937643136636535326538333264653834643032366634313361393161343539633030
-61316536633433383163303038393266396330323564653339396563356266356464363665386135
-33383633396334656330386437376436336662376532366530383730633865383262653865343439
-31306365336162306565376262613166646635623166376434373131633438393730353839313139
-31373636336235626664656463633039636261306166353735326435376361303339336262663031
-34616132306230366634373737386237393136353637306564306531623339623932343830356661
-31363665633565623239613737336339653939613039643063666534333261613232326235663439
-34656633353632316133356338303633386263663733303532613765376135643832646638656564
-65316164623738353831623239333333313030316333306334626438306263313930396237613234
-32633962393661346532323130666462393836356139343937646661626636386134376238306236
-62633865623536633939353535313436373131323362346461393464373733333239343138373037
-31376635653633343365393463313638313066326664623038623330383066646534623532316432
-33363031613366333363386366313931363061333864613738646438303937376361343865336434
-30626434366137663235643732323830326233633835333566646537633536653064633037343137
-64366664626234653038363662353838363564626563623535353064633663323361346662336665
-31653736346366313262303062613135656565313333383737326337386636623861363337386238
-30356361613762656534663539353763623463663031336262623563336337613531613362366661
-36343633386637613534316338353237393163653635363537356330633037383135383766383337
-32343939333734313239306265656134616261623961663461653666656336376661636632303531
-37643261326465623966353836623134303639376164653565353164333030306163343134336439
-31386466363435376236383063346533656465343731316361643433656266323764396636353034
-66633730353465636434376634363031326238336636663037613438613232336362636432306463
-34666461396363383164363966343966336230623137616436346464646335356665636339613636
-31623732336134636464343062356435366535343731386437343832303437333764636538623163
-37323765323062323839366238333535326461313563363037646462653531386334363331396562
-64616166313938383733656333616139313337623265333263313064353535323866366435643635
-33323934363432323365326433333364656638353561303131373239653430646465623264303464
-38643962343135333634363930636566316339356436306166303664313366386536363164643230
-35656237306530356362323530343464666430396431346161383732376535653036643237666237
-33346139646237356266666439633631626534396436393430396231633663313831636639313037
-36656332343935646139666239646363343966336162336465666332326335326663626437343266
-65316663396665346633363331623938336561653334653862303137623236613764666261363332
-36303738653132666663373463313930356661316462363334663435326362313339353762336165
-64306336313235313832663363623836623839376537383735626132663965386263336362313239
-36303464356439383233656338386132666433313338373832663538653836653066643362613138
-38393337656436336139653461633662333835363736303663303766356462383837346466343939
-31346336633361313736323032613036326435373435346235616636613863386431623530316266
-64366433643066333262393964333863363337336537393266373163646335356239643235303832
-65346163626233663330303339323138373439663732646265623838653333313864666332396532
-61366662303536613534333134356261343236303963333830313565656164316530323364656231
-65326535383135336630393838373837346238333263316333303631323136306365656538626437
-35343038326133363236383064323165383031373239613431613665346464396235646662636535
-37653162633737613638303336653534633137663834386263313964376266323066393932373534
-33343537343461653939333836303966383938653838316133376137383563326430346430636438
-31323435623132323066623530346166653933626361396231623333306135346136353566326431
-38383064313336633263616366663961363132643564326263366461346461333964383132353065
-35623062613564663066343635623866373366613361633033363766323032386361376462346239
-38323961633963353730633438373161333464343666323736616535626666666465363466343933
-37376263346530313033653266313361333466623162653539653262343264633665646636346466
-35393237316534393435633639386231346630386566313533336662313937313764333061636131
-30353833613761633562333131316630363864356364333465316137316232626534613839313332
-31333837343334393036356463653533346666336138333133366337356561386335346666313161
-66663935356662353430623334353835376661306332336433613865386565333562316661323232
-30333435323033376132303638333762666464346135333232393432333139346336393337663239
-62353134396565346633303666396237313834333238333563353933643263316663643334303232
-64623232653264346262343138383963376332343634396134643938633233323333623461666261
-35626365303165316436353763316532633436306537376136363366396133643834643238313130
-35386630303532666339393265643161636663636363336330303530373738386633623334366361
-32303666353130326364633934643336363838663265623261313637623437373538653234376334
-66626464616632393534343962383664343833373463333235373332616333313133333630643061
-37386239363730646239333338666165643462303338336338313939663539306531326638303261
-61656130383664616236626666653066326330313863396566333634336265303834653166396434
-33396533636531356634646666623635666462656262663761393034653761353737306236346164
-66333364363065333164633231373839666130623837313032616566353766393637316139373434
-61656235663635323134313164303236333361653666363531396366303634663331343361313733
-64343438393065303633636438336239346537616130653633613861333962393439343665646464
-30316439313461316135383637376438313133623333386333353665356136323333343732313462
-33653934643262393436353537623465323762366464353262363438613565303764373937386262
-33616434626135613336333734396163636265336431363239626637366537396363383363646336
-64613135376661663133626564366333653430303133643464373666616533353632313533326363
-35303332366561386661623064633539356437363162383633316134376165646633633832383337
-62393736363563386334376161353337353738626231363739343561343862363561326261613739
-65623164306565333436663934396166383765333665313334363938356264373931626564613262
-65636139306239343538343138663637636464666361323037663666336432346234363936663566
-35646231353438323737626539666538316238653265336330636466306432376265346632633236
-36653238386338323463326233376535666632306166306165323138353535316461366533643034
-34383632643131643137613731643866643266373138313863326562623832346464343939383063
-35623264386362323565333165363966303133343038333463323032643166383032366166396634
-35643465336461343639616431646262366336386463646635393765623033626162646337363239
-31393565336138396432663638663465323766653638623033393363646432653538363366653937
-32343833333161353232376239383866346633356133356236353330663732303136353634653630
-62333336336138393738636335336631366166663964393231636534326232666161366136306263
-38613035363562383434376136393837663962646638643539333662343063326331303061666438
-63393131356265303361613465386463353539353263323133363832313035393539616663346538
-37626661386637306661396232643237633131653237336364623866313039346363343432353666
-36396130326134663230656631366337346234663535616332313930313666653838396664386165
-39313566373134663030643161636237633733366463383766353663343761303339393033613032
-35316137623136343235623465363631336337643864626662636530626464623564313233353835
-64303935656562383536346561306637393933643964646537373131656437633730366138343234
-33626566306530363562623662613564363163656633356434383438616531393532633536386363
-65663031306363346162316130363964663565383736346264633930323361636336346333386134
-31643363626664316164326531306136616138313663663535386435626639666663636234333035
-65663466346237633337356336366663336339343530623931356331653766313636306432303833
-37616339633861313936373438356265316332653436363739343566333465643763343235636532
-33343762363834623933326130626437336138393834366638363330386332363833323065343364
-32623532386261363664643336663462353531613231646236623865383831396633326531623238
-61333932613937636235303336306331343637326334653362306333663031326133396333386235
-31316361343131373730646136636665353639663561643462643461626338323236663934316261
-61383938636337323835383966653830316236656637643132333939376238666535383435666661
-31623138646239613437663933643636646365343839623138643137643664636333666132393734
-37366232653963363061346336663333306337356532633931346531316633626531616364313434
-39613232396564363864653032333661373930383533636334373232376561666662663832636530
-36323239353235613432323534623334616564383261393031313236326362313163373162323737
-64666165633837643035383835633931656632376631663232356362353735626562663939356363
-35326232393231313064376239323364373338616532353664353563313862663762316335313264
-61376137343438626538303639326536363961643737643735643765376631653837376434646337
-61626361343264613964643234313931353361393133643333653465303832366135313534636463
-39363433326564313330663666373132353230333934373739626562303163386434306261333461
-35346536303732363364343537653036633634653036326137313766366134633938363063616634
-34396565366434333835383664613732666265643636373839316335616266636165366131623338
-39626665626561396237373934356365663765393162326133656163653534363066613437663331
-35353330353336323436383839376162316164356232363438663963633463616430306161626564
-32313236346163626161663665396164666531313437656434373766623366623933373834623036
-38356236353539346363383036623936323638363135333239653864373365346462303261396637
-32333137616538333636336537383535376266316537343733646531376539636333623563636630
-30643366363333316339623162343761613966646638656137303763376164313539313537633461
-34393564363566656666366563316231643235323835646166616164393466353833646639613963
-38663234343539666461343630313264663033363332343163373533393233333631353039623663
-64613964626530306561376439646563316463373834386633646630393939633135326662363632
-34313163623639623366626465353637376630653565366662303061646366656363383132353733
-34353433653435666465353565363835613636396666393537373332326133636532663831326263
-65353638656161613663373162663538653464656430333530616663323431376563396232663433
-35656366626633383430396431623961376532363838653761303430663337383835636364646130
-33613233373132396561353336363534383961373335666335616132356439323839643632386561
-37646434626165653137356438363466353736316161653438646464653234356132666439336635
-64363933613932323336303633636363323330363734343364646235323735656132396633393535
-36363939313266646631313739343561306433383965356538336332663633323232343039383863
-35376364343063663435393961363532633061336264653433343162373038303930346231393737
-39386433333365333435363431653839353935656562373434383036623038373961373865633739
-61373862346532613830653637343433653365363937663436353261396536623263313637373962
-30373064643365306465653032653061653131383065666363663831323663396362303163626632
-62373436393865326139366262626364326132643361643138653936386561336230626330616138
-30363830353264646232386539383463613531323439356164336439623539366235303961323961
-32666666626162306634326466653637373262393138313766386332356263396635376163613464
-39323937326132636366316434623730366234393063316163383162613861626537643863623539
-34343336326232353165373332343661336234333862656330636336366432316135343034353833
-35613236333530303362353935393564643935663461343465633862623934653465663530393437
-33353937616561353965376165373361323037343263326231323237303363363333386430303461
-64386265636632393561356365386239393530343533646531623532656365623930663565653834
-32643230316530353833623966323462343538333766343434336334386338333665666665336363
-31613838363066376432663833643733643935346535623934343337666363393538633961636234
-39663530323734306661633034656538376566363665323063653461386132343761386233393931
-63366164356266656135363138663862333730613464313565386333376336656465396232396532
-62643033363563303930376331663164373062393161613431313830316436613838653838626264
-34363661383533396233323662636564653135643332656132386332333163623633633665363163
-35333366633864306262363539336333306330333730303465646630383564663062383932623736
-62386662333030666134393036643534363262343330346361653262656336373039643436366136
-39396564346135393638613036666134656134366135626535353064373162363962663736653837
-34633763323663643466663234393963313766373364373566616265623262396439623436663133
-32386533346164633661326236343934373939623037643535323463316665626335643237636563
-35656538386434353739623434643134393830393666316131383263386638653336656261346637
-62356639613862616234356430613733313863383731336337376363616233393164613836366265
-65333361386663623932626636356230653533373364323136346539313636653364396237366163
-61373238323835373364656239396338306265303136336635636330636366393938393863316666
-63366665326633376566356236396636656236663063363163326363653535613739326339623337
-62376135373461333265323664623637626636396135623564303539363635623362346339613663
-64363765663630353064316633323266353433336662366139336236393033393938626637386436
-39383836356337326330316466656466366236343239613232333563343839353063636564343761
-39323562346364623764393433396439356337666364356430663130623930653362343231383639
-63623430343531383763333539306561663032366131353130303439623866616663323036373062
-30643166343263643835373930393262303232336339393638653134326266393833613434396534
-39326166663035333364393362396565633737393036623036323531386634383264323538386233
-39313330363864653563666532326665333536373162653536373431396364303366346634343035
-34323263303936356536663264643436626337393631323932366434653364636138333030373537
-31326437393339383132383636653330633762333634343461646238306337616266623635666366
-65346363663539363034633634613961343233626561336461633764303534333962326530646566
-62346532643239633134613863666365646132393331383932626164363233316165373133376565
-66336433316136363338366666363864636538336436616135646662626361646533356635343164
-62656564376665393065643138386664333864316263323330336539626435613239323731643665
-65616238383338333736383333373037636631626632633661623835613861393534616237303338
-37306237653861303266623239623130666637313462663762623963656164356333373965613636
-64336333623865626434613739306535313964643130396664356136366535356633303563656336
-31656434656263373936383032306437386464303935326634373632323337383065383865613334
-33383462613237643936333465616434346261643737626532353332316136383662313231353136
-32316165336661363835323961393938653464303934636136396539613838376139346163343261
-31356364613132356364343733623036636536373937623737386162326439373438333135353366
-30663830313662663835346135333837653962336365343235353038396131376631666531646437
-34303166633738303362643863323437643964653535613339393563623462396332393338633265
-62623834393238663637353464373834633536366537363236643862323134663039623936646265
-30663333643466306633353039666464306230303639333633343334356539623166396162663539
-61636235313634383666376137356166353065393762323965343730643337333937323864653237
-33663862343965323262333034323863303635313733666639323235313932396561643738306266
-32336462663534383336393732353836613061653230376463323965616538313032323833353137
-34396639393036383139343836643938643933393266333131613864613433613834613963626136
-37396530386365323332623365666463663538343763313366643166656637356561613964326263
-65326165373237373266333562633535333436343830656261326566353135303430343164313238
-63666264663433303334666638366336386364303965356462323536653039303332313438326164
-31306464303330613734613736613062656236323665636261323430353836353766316366363332
-33313833363536313763323031313738653637356631666332346435343738633935393734336239
-33363964313237623162393735396138643632333766303764613362646263303035633732316465
-34306336326135643366383961353630653035303564366238366635336438653139356662373964
-64653334346662323736343566316339346564346161356531636161363361666137613932336230
-31383631313330643936373663326130636139656436663331323838643939396463383137346266
-39376564633262316664346633613830363931363930333630393735353834613736613666613230
-63313738323761653862333165386261623564656538356334383337623163353933326464373936
-32663031376332623231643732613239326563653330343439663036313637376632326232356637
-63396464396464376130366666616434393639373939323463363830623430626264343465393237
-63343665633738333564313238323538393830663162383066643763383237373930323436306537
-38396638336536363131303737363036666336633933396161666562613833393363663866643031
-65623236636135313139356432373361366132316437356266363036656437383233373964356564
-38393531313061636333396436656336633165633864623730323662316139303635346231623632
-39333035306236623861663038383861663964376237393661306238386332343339346337653362
-37336662383633366462376536366431393835336630373035316562353039333864396530393232
-65343661353363323132303636326431633565613732623632656431343638356335333835303966
-63613336373865643238663364306438623539306161386531643066313833363135303864653635
-33393232383262306564636430306132383532623830303139353830616466366163313238383539
-34653738303638313432653261613938613265313432363036643932323165633630386238646262
-30666165303661396334643362613432376436613533663461303232313265623932383139373333
-32303964303130313934336630383633336230353035656137386232643634303938393263613366
-38643037336235303236336530613532366632623061633236376365666363656236386263643861
-37663364643034626436613165363638373230366432653135313561633764393364633763386532
-38336263643238656133653465656538653265626634376534663462313935323264363031613634
-39653566326164616161353763643133316235656364326261666362356130323436303634626638
-31663634383437653235373632333038626539393363356364313035383339663237346262616165
-38363136616134356431313339633461333536336334633361343235303335663631353130653137
-32646134616164356430653439393435323132383566316263396262643061633539663932396564
-35623237366262363662666430333264643065656630316366613861396332396632366437666563
-65333962306438646331316164326465336637303033386438373461616266373936666439353730
-65663433626230656534636563353837353061393939303234303062636133366637626366323165
-65663362333636626261613938636134346338343661376536393165376461396264306535396139
-61643438663464643932383435353136393334633033386165626562656332303261613835626261
-35656665353562383563656165613066633466313665636462393465653766613963306537623333
-31376462353939613930663264336436346666303163356432396633303235343337306238613063
-35363762346434316261646162346438346539666530326235333235643364336561363032383061
-61643239656663343338633264316262626536393632396637393331316339336465613431646361
-66316335366263366632333739356339353963366262356262336135663935613230656533303032
-30666665653534383264663463353836373638613339633434323766646663366430366535663332
-31346561633235383336383234393334313966346138623363643636326365336166386637353765
-66313964346333336439346264336439646433326239316163613032343232653366353464343362
-64663732313739386138616335343366633331326438353033656564626262303631666466376130
-35663831653735323365336636323835643139313861383739356361373139373235343739346338
-63393662666264393334366639346461626232636665666232613461646139636562343433353932
-34323937643162633030373839316138353366393337326566333165393432346130663566633966
-36393539393566336634666538663962323430646566656461393238396530366264326336633962
-63323831313637336330313466346436643763646439666237396337353663383265376431363066
-32646532663339313334613562633437646137613866303165393263643862616566646437393033
-31333163666562373266363865353136313161323930373630613131333933383464643637383761
-30613163313063626464383766383437623762313432663566393738316535653363346637323235
-62303162343234373261646561613338633964356638633034623837313861643764623066623164
-64636338626130336236363931663563326338643934613835303863616562393135383136303338
-38626532313934373631646638343331373438363166393766376335616264343536303934326130
-34623532396532346262633935643463653032356565623037336561396130373930316235336435
-65373939346435343035646163333433326239646332353031366539656530623532326565316461
-66363061326637356536396632626230616366323166323731633331346166343263396564633333
-65313962366639316635336362363564396238623236666136396163323439316566393834343234
-63326438336535616537343034316632313834343536316432336461356361313862376663343966
-36373263396537376465643135373333356564313263663864353431626638373465393662323762
-34363965326164373730373264646662303563326135356331313666376236616234636337383132
-36393261363538636330633663613633663162336334656539373131646238653238363335356636
-33653161653134346261313531383837613964306261643030373965323631653436333664343538
-37643535373563363832613030633966316332623432333037366631353038356164626365303036
-34323863343138643634323531616266333436616461303666333533303565303234353762613130
-63343734656266386537623933343636393239336161383936366461353539623132303466646632
-37323936633438353563323639643761356636643365306638356635656363666135643736366465
-37303734656437376237353662653238336538653233373230393433646666303730653830373262
-66663334626339623231653236316538373932326438656563633264363835303665653534306264
-39623333663533643338646235616663393136636132396432393834663837613161616231356164
-36393534306465363133366565396432643735373335373835633061366638633566346563356432
-62613338616534666661366632386330396333373134393434313735626266643363373135346332
-31623439633033636237303839623464613437386438333162373162653765393037663537656434
-32396631666365623364663966613232623535373561366435366531306339623132666165643936
-31386631303365656565366133326631356365386232383933613034343437386239393334326263
-62363962383731663535353666616362643237343661636462313062373835303634613839353232
-66316638653832356138323639643265326566646335373836363964326339333161383034313964
-31626365613066343764643731346536643062656563393266313231616634306233643962376262
-62393633643066326562643335646565646466646631666638396361303364343264303263383831
-34333331666136653338616165356337633439343135383235366134663365613766373966633262
-66663432313131626163646565353932626636376338313962343963333965633066636362363866
-66313565303732333033626161366636366439363033353562396635643265306235326138643035
-61306234623364616661386461616364303565376464343037366531356436336633393632666266
-36363332613130386436653761616464353939316639636235653038386538633766373131663430
-37366635653035646562613839386165363330366134346266303762646235306534623265626463
-62343863666464323165396531313638626361646135373461363730623233323833313464366534
-34316431306237393161653437306630313035613938613032383166396337323230643830393264
-33323665383465343161316432653532323439393463633637323165303532643462363134343061
-62393964346332613636626233333030363137363037323364393836363237393963316637386166
-34656435393035633361656432376565623739366462666136326234363964666366633862383932
-31336334636238663937343061393066393063633662323232303563643035336461353762313265
-33353036623366646231313466323034616166386266636666636131323265396435363130666330
-39643464623335313934656637363966643235626530373762663965323863393230383833356139
-33363932363936363331363763363161363431393337333536326131333831323563396333333365
-62666161343537373665306234363337666263636663643230376561366436663238376137653137
-38376137633137383930656665636234626136376162316531373762386432613632623234386265
-39323463663963623630306633613233653032663936643534333333666561613438356665333837
-34656631303162346366656536376139316239386133353063336365643533383764373639396666
-35373861643533316131393137306537623738633938343236366634363863356336376637313736
-65376166613864653734663033623437366137383531343832666361653033646663306230396235
-31393661343239346566643633333231303232653338343737383766393034306632616565636361
-62623065613366333139313862313930653139333933353261326565396336383034323235633239
-33663538616434623364653830353737623238373637636163333966303661636333393739623633
-34373735393232623461366563336164623234633539373533383464373261396666646634656338
-34643832396630326362383136323466373134393635313633663962353161363039623962356666
-62323064636664373162383335613730323032323934353462376266343532393266333232366632
-31353563333130393564633163613863303765383565306165653234346663313633333438643235
-38343635613232323761333833653330336661386437346238356631623430663464333865336563
-33353532373534306462643235326261373962656362386365643864666233396461386363633334
-36653538616163616465303763376533623936343534373363343639303134643437313533366338
-30356166346264626339326634626563623030643636636433616561323939653634313138623133
-33326137393638303438303763303137373164316432343930393161633461366139666261643331
-61636132386531613537363835646539343866643337343932643134663336663763306634623165
-30353662643431643566303436346464383130643064653038356632616535666161623963366665
-34306234613062656263613735633961643265383337343030643064636161653035653334383536
-33373239363833393933613634383336616165636431663035333830613435313666653037616539
-36346366393036363433333965616461376235316262313935623965356662313230366233323635
-35643563633731616235333762366433393266383964303231663937333663383632356265326565
-62343537306435313334343035353862313635326634363763623263623833616535333733643963
-64643661616436356638396339323139373432643833323039393362663234353739393830633363
-64313166303962656561313331656363643334346139633631376665393030613262316361376166
-64633233643463613131366638623930386162383866383335613832333363306531336135386434
-65336666656335343663643737626663356536636663376333313230366339373662643465653336
-35643230373935663732373434393638396266623437386664373338396337626436386235643031
-30396532313432643035336561613965376561303238633030656435316264323436666134633637
-32623265623962363432623062353663663631636338396339346136613539393839633463346439
-65653366616238323637343531323239646636363636356130336534353933373239363238663737
-37356430623565396464613861326634613235376162356663356433303066323033323961653762
-63373739333362316361376636646236616564626630396632356166376137666266633035626465
-61336437643964613465366634616234623038383336633632343430616264633237616434373563
-35643339383231336334326331356638636235623562313134306435633634373135376165643538
-37666632333635616436333337323638613635363666356661303664633233663739653931336361
-31313961366338343330623534646330613034656565393566666435666133316662353238646438
-35653235353537323863653539616538663734326332303736386335343636393636613763663638
-62323165383830616336636363663639326331613333353931396432613634326235343130303363
-38363965613533363931363238373136316136376231306664613662623462346432383163306434
-32333465646563366133393436653566306562643166376236643231363835636266346238336562
-61333133636363313262346661333730643631643135383530366238363261336364653233386637
-31656131633239646330396338653537346131666434363835646362383163343565663063373530
-63646362623139663731356238333339646435663463313633373033356561666661623337353436
-62613362303137366435373933633234613735343566356463343732623731663830376335343130
-66656362316461316336646333376566343835356137363262343565363333343331323733343530
-66316362616534623037393862323833363461353530353034616364646562383531613030613864
-36613537336464663130386663613161313434383137633433313534623236393233636666323935
-66323665303132613761393531633734306436663533653039376532633838326439623362653230
-37663236653463356237363831313264653830653730303836623234386161336338383662333565
-38663366396631633733323332343237393235663433343062356635356663653361353430346139
-31633361643964376266346432306464663964356233386135373563646161316631346364623439
-64383861396466666438393931343936396431626463306163303339316338643035316231653464
-33623763643431646363383635336431633562623262393239323934366635386438333131323037
-31616337326331666266303565336133643531323661396564373932626463343533393237623536
-63616630653731633534376635336337636261306161346439653230366634326335653130396665
-32346332623638633261383236323334316663373739623762313437653666366162646231656630
-62393233393731383533666139333633613663303739393063656235336133386164623030393665
-63616437633830396138386330353462366364333063306536316266656165623666636233656366
-62366365346131393132353266623933353865346334333131383737363161343064366665346138
-66366434326336316435356666613636353263633131656138366661393063646230376334363264
-35373661333034326634653537356430346663643334316630633164383135616538346237646638
-61653264613536663130633534353666636231336266653234376566643862353538346666633562
-31393664313938343866653964653861653731353766623261653230653365613839333134393262
-64373364643965666130363238616661356439356432323134393931646562343830653630663666
-30626663316633366165643731326166363366356664643032333264323134353561616633306332
-35663030366238616637636164373864333735393130353236303633356333366130373462386138
-30343064393162643431386535656637383938313239356561306630613536303363646365666330
-30623034366464653231666637626164613530666132313266653264346536303361356365323363
-33366465326533393934393931376362396530643161663363356632393566643433326536336334
-66333262646666643965326336366637343563383737366364633037343836356233363836623935
-62316136303465646230373965653733333432383062323062303330313761386132636337303965
-30646536353735326434346433326665393730353736353161326165366630363231373938653763
-32613036613066663731653061393037623766373530303032383837396237313435323662636263
-63346166333063356431333935663739333665303838343465393936633961326431366231336234
-34623662383637643132346665646234393833303964623661386632353463653931643537343435
-63303339623438383661623639393539333131613564653263663566326533623466306232343332
-34613837393433656266303261613664373666343738363862643139353330303538346335643966
-32653331373263636534376232336130336134643834393461643439323665613937623735316635
-33336666366633363430306435333965353034323437333730383230396333353030376336646330
-30343362636133663332316364663363613031353038666530313166663531613866383461636236
-39336439353032376338396633383063336565623233393636333065353138326163313436663236
-30373633393432663139353937326634626565653033343235656164326239616333633738326431
-65653364316464653661353937656333636637306437376363303538323066663831643735396466
-38633161356334636539333631393062303265326231626438333930363639333332323539336565
-35643131633464393834313131393965663332643233636235633435386331646633386436626634
-65643665366563316161326239383639636664336633396633343662666339633164663437356535
-38633538333737306563653163316563303961303831633130353661646561643261323437656132
-62333132643933363565303537646239376262313166336532336232646461306530376362303832
-30613232363362653833326338306264663464356562353338313931303935373734313236656435
-37333766343063333263343031353733366464393035643630643036333834316339336238663061
-31393537373138623430333430323735356461663933333562613265333264343231653965636262
-61346135653335373964306162306665313065356533316165323937343463636465313934313136
-64623337613631366662636136326237623139636637623939636336376166313566333939666239
-36613166353634656531366238306530316332666163386531313836363462313630386133343339
-36376533376339343834623362656463626262666235663262653833633433393535366261323130
-37373533656630613536316665613232633336346661353337366532393831343361303136643964
-65643637333532376662623665303935653662663131326463316437616363313764363235343936
-38343263393932656434343237653030343835383530303235623230313732643962306366643330
-39303136643439623435643865346535633333623366653834383561363864616636326330323866
-36376234623537656432633538653766663261653566653030323436383961333461363266303963
-37653038643334343463666261663539336334616661383635353233633565346164376234653865
-31346439366262386330333232313032393465313363323333363733396130343062626263396633
-66386262373534616539636164643864666466663962653934343637363230383361646534396165
-31633232346438646331333135636264613432663161346561356436336234326133333230643463
-65366635646538643564356565633437626262333037626564316432316435646163353865363865
-32343363636336303062616262643663623436653936336434383234396236666438356630656363
-36353138353463383437343266613830353336646363303465353337366235326634306464396565
-63336263303539636336373763383865633839303566333536653638643232656237316266373135
-64636161353264333964363565353761613230646531303231366638623263636161326164373461
-36323639396261376361353261363432663932643263376437656230373431613366353365633737
-38373933326234393134356561313562646561663830643239376664653131663561383032363332
-38336238646664373039626265643364346239633463313837363463326165386434613733393537
-31353030633339373261653536626534363665626563356533333639393036663830343764393939
-64633038323531343033633032313736643764353665633865333133326664663265393966353265
-64343238323333643834343633653035356239383232336437636461383935663632343138326334
-32343365303639663232303763653837363731616261343330666163396130373437653531393437
-38623863316363386361643133623763353031343733636662306637343530393933303165336261
-32653238353138653534326339323564623838616265633465646630373032636637393935343936
-30346330613763396565373731336266666338393034376361326363336234376362653934316266
-32336630313166633162373133396334666231396463643031616230653665393861393962656565
-36363832646239336633393662336163633830393862656661636561353034626465386463316535
-32623533333134636331303664666565313837333139306165646266333539303162383038366430
-34336139353837313764303531333738353865656461633530313231303232636230376263343330
-32643534323366376633376135303431326464636162383731343936393764646535613437353264
-31303764633666646263346338313131653336323536653039353538633731393436356361636534
-63393662383535303766373232613464373466633465363530333532313431633031373537633535
-33616337303034653663663432323330323935333763393038363230363538633666326633373963
-31373861353934643162336266316633646131653437326432343430396465353430383432643035
-66663132613337343233316563383637386637366635386130653762303862643264333933656661
-37353331393837633363316635376463363736643465616466646431323335643736623838393161
-39373637663431383239633538376239393435323235363636616162373365613463613264386163
-62633530313063313732333930343434383562363632343731336332396663316537646234346232
-35366566636135383831363163323630636166653831343662613939383638353036653663346439
-62383865356137663331326539333232613832653435333761626335346433353864343665656131
-65373037666239613638653434663861393336643961323437383738333033376564333766303139
-35646362333234326466326331323736613939306464316131656231643330373462616461343930
-31323037353230303834326166303831343033326638363163363765633634396335316263386162
-36643633656133346533343636633463643863303432313831393964393662633764383930323138
-65303730646163386462643033656234653838623332623164303232353065623763373364356265
-30376134333331326438656330386661633362633730663964326634623961396361376163613966
-33386562326438646333633633373236313032623436363232656265616262306361303764306236
-36316565376566346634343435376364356433363733643034313432633430336263343462396561
-39323032373662616461336662363733613736366334613062616235346635653663663333626536
-65666533333135653736653664666265336330313462623333383765303838643133373831646634
-38323266633236333130343234326334653366353162356632316139633161303864663934353236
-30376134303165346331613663306436306231343333666639316338303637353236643437626166
-37613065326464356337633839366263373139313639633161343962646564336565613638353335
-62386133333535313864383631623962316330653735613730626464306239663438653630643362
-66333133356632346536653564623763393835333130303465353834323737616235663764666637
-31386662646535313139366333323934353466336637356237306163616633353532333338613366
-33336363353632333763393865643930363839366133393765303735636564643139396631326661
-37356332333631616363353734633531313839373137356663306337653566613733623161643862
-31653832356235653635383730303436356462636136643832653764643034653335643737326338
-39363431313564396163353134663738363961383134633232333062323830333866303062336364
-34306637343430316531643165633338653262366232303262663066623639383831623436383831
-37633137353732336565636362626164613839353237653832623966356534353034363933303538
-38323736323339623562626632633661393561313866356666616131306535313732373363633633
-62383138633163313633383437666139616533343533386164623962386631383763336562613238
-38646338313833623836373561653332353866313661393030396333346566316533366533353937
-63316630343861363139336666346464356534663461366535653961346339303661303462383338
-37313839613962356164383532373865393737306165393535626434303534313036306661646533
-34363035613534376565613366333062343934626538366536373938393164333365363937323839
-63393864393964646337346531663564376434313230303762386433326265323963313131313466
-63323863666332386530353863303831383263373636323966366332306165336661663630303138
-36333933366562666530343639343330316637396364343933353039323233633935653037336531
-64333230346334636466376439613431306531343436306336326532383064393862326532313930
-32636132653466646263653566643039333035653830366139383336646137376662366264333332
-38643234323562633862383362633761663166386236616562636439666164373239353839383539
-36636561366630643564363934333964323632393636313566303434623662393466343334666435
-66653336373536353338356230653033366266336631623831333432366432306332316639633437
-39303263613962386563616139303035623163313163663162636232616435363035333865346637
-32663436643839333263373561353636306166633262303538353731313464326439356266353065
-36336162383031633762373833663266393364336131346331623430346530646439323133363861
-39316132323764343965333462663030333565613535656539363535613531363666346566393564
-66646536313263383561313038306432356435323733646239623038653866303837343132383032
-61333838333935663539353336323932313664396430633766353835353662366662613062313438
-66373836343763376632396365616335633135376563653764366662343065646361626165396538
-62626163396231643433636431323263633434626266653338643666646264663562353835323730
-63663633626236613236623334376639323364626232663062653534616666646530306638636532
-61353233333035396337656137393436353237616563643433386335646338663639363161633735
-35356335396634623436326632656663363439636539336166343962363732646633333938353465
-63326135306361353631613531313932653264363966363964623066323338656632353366396430
-32623864313763613932313638633066376233643932326134373361663031353230656630363734
-64393666303032316333303964663839373233333836393636653931326637613232366464623766
-34363437626233613562393737393561343531663462306331303630643438383738663835643437
-35616465346665376132623134356237633830376638376632663862373563613533613862626536
-65336533666231363264623866613734393465633064363465323362663638343966363437316433
-38363337363437346237353966633435323138396233663535663032613431323631366237303337
-35303330326264346436383230336234633832303761306235613162613337343831663765633939
-39343461386434613538303331346138633938633233326565353034613035333161613736373932
-38653334396336396435633966373964653036336532323064393532336537613661353363383364
-39316639343563623161613437363966653261373831376264626237623531383135663836626131
-62633134376235336231306139633761623631376265316335613966616161663261376162393766
-61393362393030653436633361376337366536353465333561646134666132386364306334623937
-32363965653639383139646237306365336333656632313237623834333135653438653930356234
-39643032396330343432663134363263323939616261646463653432306533343465396438663531
-63626465656330653664313937636165363564663139383761383038633739336663313664323361
-33366561623437323063623966653635653635643464303565633164613561343638313862393432
-35336135396561386330353037366564316165643635326262313434306436326638363234376335
-32313165643964323865386432316562663138613330626338663531303061313738373733343662
-39363365323765653730623866306566633461636266613664343836616532323638313534393334
-30396135313065356430313734666137363961376538353966636339356235326464343631656237
-65333234326632356337323839356639613835623861633830343835613633313739383764393437
-32666335626235663461303663663965396230636566626436633430353530363065396532326131
-38333264356334623735363039643731393538396462316263366265623165383666336663396462
-64326363613132623634386562326639396233616636386638663661646238663530666631366531
-32306233633233646464393133643837326662386134336266653036383562346562323835306534
-66653062366434663434363632613436636265303639396363333562323233343138393933383031
-62353761353532663536383932643561666131613231646430633465363466323338613436663764
-38323066306334393031363464653366393937326162623364303931313464656463626132303732
-35323462386532323933653165663036353237613732323139613530376530616336646635653632
-31373632666339343064666562656536386537313561313233653236313339363663663634343938
-32303735363962633266313761613039633662656561363334393365306131313965336165383836
-34323334313036356537303130383863376237623461396561616537356638363330313961336435
-37343534643638386331346439623439303438383830363664656462356230653232373463313364
-34346666343230353565346639333932343166313634613861386337666439633633623966386236
-39366437613339326132633532373161656566333966363335346334363235333636616632386237
-66383665333830313232303238383732613861366263363737623939623935643934616234336339
-64653132306434323165636634396266383065373830306339343730653362383765326534373034
-37626162646632373663313463623230653766373463393663323765626265343465636232306137
-62353231386163393266623965643932316461623433356166386438396636376366666464333932
-65353033356439333639333563656133613031303961343761306130323430653463653766623364
-35323462383230616337396231663138626533393234653931333236313761393834663735646366
-61313262653166313965396465366238616535313362306634363237393739346530616236356430
-63383336663333376264633965353237353661386336373135326236363464393865636332326537
-64646337336234373032333939666338623337343838396466333962653562633833616265376661
-33383866323037363065363639656535646533373734363165373230616534663562613239363861
-61393962633765653564336538376463386436333234303932626630323762633530663232396630
-61653238326564653462633666353362353732653964396365666438373539313862313766636132
-35653137356338646665373064626263616434613237333065643464366235363961613466383737
-61303732323231663231383063393933646466623065356237353033393061326564326433306134
-38333338323961393037373763313536393432363934373532323166633761366661666132363131
-34636136623932623063336365323233643538346466373265373933396539393361653930656665
-64633830613431366462616361323034643761626461383538333161643031666465343431383833
-35633337356633336263303131313761643039663765333366663539353266613237616162393238
-30653766636435336563643738353561343335363266383061653139393638653039333263666135
-39666633663565363437336163653263323634623935643138643863313831356162373663646232
-63613137316565636664653963383832343331396430383330303936643735373933653462383838
-34313139313464316139666265363362363564373332626565336663376631356131626138313432
-64653234636135363564373331303430623862633733633161303763323030613330383135313039
-32643034346139353738343166316135373139366339313538376133653662316238616632383866
-31396533303632306535356134323861656262643166623030393437633039633165343837613837
-63353632346166646564313233613466356365336237303537306463393633323737363564373934
-31663335303362633235646336636639303736363563333762376333373934653762363439353433
-62396635303939623036656166356137656336333734343036656230656365353730353438636662
-33393037643437303239376338323838636634343734653265306538643765393165386434323230
-63616164356638663931666536313832306661333561303338613962323534356565633633326336
-64343334363230666162323831383166303538656231323433366138623535316663396634393762
-37326564336466303132363031353230336166353330353133336636633439633462633866366239
-39633863633132313836356634346561336333373530356165393832306432333133616530336630
-39313065646164623262653064633435356133356632393939633664326232323065636664346538
-36356433366335643031323164633231393861313366626336353837333365306334343066616630
-31616535323339363661663237303439356632616537356532313266663766626630663138313961
-62623934333063323534623138646533373663383538373764393630613638343761326461303966
-65366466643538613139323864643638333563313837663036613238613338303338333362653730
-38623930393432303962626362346631666235396237666366616137393438616232643135643731
-65356565633931393432313136333963393235326431356131643731343137343637393638656432
-37666134316462383563663130663965353139393861383737653664633538333663623334383832
-38363339336639323035616631653462633534623161323437383039653232643536336239643539
-33653032323236363134393965323737366138646163636339643539363639356536393438633232
-35353664346261393135306135643461363036633335636231343935646363313961663164323261
-33376437343033656364383034633535346464326530393866623935663363623638633666636530
-31346632313461333131636630336633393033656264613933663735383539386663633938396264
-65623132353238653539656138396266303966383730366434336639666562653031323133373433
-32626230643733373236386338376336666562393736663431386438303639303364396530663639
-64623262613336356362393732613861306439373531336133376463333063373036316161353636
-34666435623931623534373333383537393131303231333064366530626536303464353762393062
-33356534306136366564353236363865653038313765376636373531316465643663623534356139
-35656635353339643566393838366163623132343035323938626364656337616233326665393964
-37616334353335393263383937383331336332633436393761303230656463633832353362613861
-34303263633864313033653231396237653466353233623564336438383432346261643533376434
-61353165646136623034623466333562653862363136366161303739663163363166613630373439
-32623661646331356130386234303861303939373837393030656435646439303465613034376663
-64623937333432343031663437653163383062653236353766623465363637336465363033386266
-63366335383264383133313161343961373730613534346564633939643836323237313836663439
-32336535373531636237343363653065323531613630663265616331396666666535646534376261
-30323233643837653165386239353134363064393634323830613635653537326539323833393133
-30313134666163616133353434366130636134386332373264633437393963363439363633633761
-35316464363264353961303863613862643439383638363738326333386138626663326131353138
-64393765323836336463383566393232636239373263616266313937363264363831636430376464
-30633464323863323462356530613532623662636366343261656134656131616566623336343438
-31363837376465353232623561363831316261633163366561393538636134353133633232386331
-63636666666265663634316238616264663162613432636231666162306439306338376138376562
-62386666346636383861636631303663383835636437376239363430303430353064306161346262
-63653037623732313431396135373136646265353239393662316133653531646361643066663866
-35646531613132333138376534656133343934666238633362353838653436623034313939633330
-61636362646633326564616163633261653235376265633934313464336366303830623438633230
-64666238373231646265623236323734316130613965613338306134363461353831373839623033
-64663938356437623733636261363633643265636235633530336466363733636135356337323636
-33643266313861333737333631643162336163633861623938663630666164613335366334356635
-66346465623664376463316565326230613637626164666164396431653464383130376433383537
-66663635346431373238626231646333636531323966326133343762643262616434643764356533
-62303531376366393732343837333833343334333564346466663833646661346134346135616165
-35373530333433333631613832316262333262363837343330626162663035353861623163313331
-37366263663562623136356535653265303266343735613362313335343436643664393638636231
-66646432653662326331653834653065333839313133656433393361373238323062333438373330
-62373664333832643338666430316337333362626466363533663765373234646639376132666139
-62346133316533626233323166653465666665353839346265363366333539653564653630633436
-36646135666563383466353235303731306535323866346664383735643163646536336664386133
-32616633343533336536653766333962383130323665373437316438346135666366393863313632
-37373964643366313337633735656161666638333134313330326661313239353565373863323431
-32636238656537393635366339376665363338623836666635366166383039613438636232663965
-33376536613838353530633966383538393163323265346432653733393361316237613534306636
-34656561373130656136383235366636633263396438616139306134326566646632663438303833
-38336333303736306432313639636530373534303039336566323566323735346336343333343735
-62333132336332373632643535646132363661386530333863326662303334643531323239666265
-61643431613166373565616135323339393134633265306133633332386232373464393437626361
-32666565366265346137316335626662333234373364363435383637306537396537373731653733
-66656162363861373130626638306562393462623566633361316338306130643764393630376364
-39636532653931373761383835643534376333653030643636336236623162323830666231653165
-66346134376135656565303039396264343031363461376265373434303532366361623064303361
-31343165326264663965313534343361363336316261626534343264353436616133613735326531
-34313734333831316466623963613563656334303032316162613164363563363031303039353964
-66373064373230643063633937373439316232633235316635663065343663343232633063663062
-32396665396136613232646338393332373463393734633138643737613134613864306332336266
-34663933646535383333303730353964363866333239343364373431356630376665396661313130
-32386164313563643038613832616134326132646262396662343561373239336165653263313432
-34353763363331626430393336306332343533376330616565346133363965396563373365396666
-33646339633831363166366364303833646364626363366436336466396133366266666665656363
-32393866323161373838613437336135326237336431613632643534633034616166626461663639
-31636631356264646133353339306364656461653138303161343334396262376536383966363464
-62393461613866353564366131336239306264623566313133613339346235613139316637363565
-33366633366566393966653035363665396166653535393161653239383739653633656634646563
-34313534383966326364656531636134653531303933383130663762373732383833313736646261
-62376138383339666332663435323334333663633934633062666631326664363265353338333935
-34333563636364663763623466333938633666386436663166383031306462363430326338303539
-63393839353433373762386536303739616337613431393932623865356234633861333737373437
-39333436383231616463343730653466383266353037323064333565663765646662373531363330
-35356234333564373839393131363061646132663861636138666262396634393562333161623834
-37663064343865303631393332346663303565376462636536613836343038653034613739616634
-66386365613962363835633638626234366430316561333539613564373131363064666433653435
-34383832616637383836373336346566366332656264633835386666316432636464373534326139
-32323766393235633538306265666637353030626130386331303365326138356564616436313262
-30323835386665643931306466336535636136626630396530646466343464353361373061386636
-31333934653662663639396536393765326537313835643164343334623335313661643831313035
-31653935333964313937656565303039616636643738653139336338303939653232613638333636
-36616539313038313838653733613732646639306432393764613335336139333462626538343834
-39326261336231653765633562633864383135306365313438626666353664323561323136653533
-61643063393963653939363965363838666333626265383836356631653231383864323463383632
-32616466613032376431393164313831306334386437613064333763393164366561376233626633
-38353964656463616535363436353637323335313134633638396636356463346630336366663337
-30346535396532396364643363636566343465306663363738636562663232306536313337343537
-63636363333434313839363764356662643333333066626465323061616634393466386261663533
-63353136643730356561353339363730633632353730356231303162383063373065313932333232
-32636535353438663633346132383761616630646335303131613535653238313033653265333063
-37646634636336643137393461633866313932313832633332663666353034313637343237616463
-33346130363639303738643961303734656538623435656332613261356237653662376132656636
-62356262383130323732303831663839323132613735353564663333326266333437313934323636
-33663262643732613662663334616233393732336261363964386238656461643862313238633332
-65623836336461383739313634656466663435616363653037376133653263353435643232373766
-66353534316162393836363235373039333031646132613663336330356639623963613430636439
-32303538353632326261333366393465646164663635386330313035623935303732373364656337
-33333338323663396338316630363831623937396461643361343130333563366566333133396463
-32393261336433333861643065383864363764373239663136346264363564613630616434643635
-32633736363738356539663131363262323232376363383765623533343333613962313637656230
-36653935386262333961346466376130313064396465343930333338383936326537373563656561
-37363366626535663130316538326531363766663864393133306165666263656332303631356532
-32313632313366613866336639616462626439626361376430353735643963343732656361666236
-30326637623964626637343065366266323534313761313162356263323331303763376562666536
-32623839303630643365643631646537303931623339663631376239626634643235383638646237
-34356439333761326639343665353732343030366466363565386331653162353734633665393261
-36356662663739656537313435343439663037356663363861343263666539393333623130386233
-61333761383133386131646338313835363737346631653337643338386330396261313062643837
-33376136393563356133363934333065616634613261323133306663363934356634316638363931
-38343362333463663535636633616432313631356130363638356639333934343163353030393764
-31313462376362616165633933303532323030646138643762303133373136303162376238306339
-37666431626338633265316361303934373532343164646338376537343138663264653139393963
-36393464646264646565373763353761386563313034386633616130386632326261666161396535
-39633439643439633337383333616464323765313266666662633137383934663835326139333337
-66663039666162353238383933363336623930623536323731613330363562393863356233363664
-34626331653961343230306134316161383565333139656631396262346638666231613736656439
-34343036313136623263656236666139303162613636353734323030366661303234636433333461
-63323835333536333439346333323566393635383034376336343761623937663134643433326239
-30613432613562306666343063306664613565646534383537666334373735633137316165663831
-65646231643763643536666330353932623034323232386637623330373639343762663165393764
-65623462656333663731323566333565643236663266653066323630633062353664316139323539
-39313766323638653034613634613139666534643437383630633663316663333961336538386563
-36306539393032663762303630396431613565616333343031343437666537353237633634386430
-63656661333139623032333435636161623962626232326364303734326666636239386264393134
-65383137303239313030326630396462313637646334386631323535316631616661653033666536
-30393334663235643865383237613861353666303034623863393830393938633837653461323839
-36353264653635333433363439356661373335616266306364666563633762363466353263396132
-62666265326538393362343930346131303362386535626366386439666266636437316264633937
-35643631366632356461323838333464626365633564353734316663393731353331646464363137
-37363038633830323131663861623531333362376438326133316439306165353462383638383036
-64336462363465616530633530373938303666656334643161373235636661663165613538363463
-66623036383434373538626561343031333564653336366239323935643463306232363930366530
-30646465663563323235626236353763636438343539313264643839333662613737346266356232
-37623234656331643537626264613664376266363262313737313238653365306634633962336161
-63353030363537356432663437653765653136353438323130373932626362623937313133346638
-30663033323631633463663265386638363230333331653165393731376438326464653838346130
-65363237326435333963323561666130386263626135396235396263633735643466336439633437
-37396438373062626533386639633134636136613165393465383538393666646234313831396635
-63663063333338336537653061626137303964323935353338353161656630303536636631313831
-37343563373030643165373262346533626636363237353363323164386137383238386435643932
-37363430313132376131313035393465353063313039653731363935636538313062643664633065
-62313130616536616562393938373861326464353032356666313164313664653531363235303666
-33366162333137306133336137633264633733646632666430306636626536396433666339326235
-34356634386339343362626236393066303966306638393133306238393261656561316330653932
-37373438656138353563316434646639323962633364363061373866313836373665303565353032
-62663139353236396135663865386633643561623638643434396339326363376264613066613331
-37323638346230363332373037633365633037646634623965633332386339646633366565356366
-39633331363465326137656532323739623631646463393633366264613235636130626330656633
-62353963663137666437623764373732303934633830346337313938396536336665653866656561
-64663566633463353166303437386437333132646532306164336138323735303638633130616535
-66653135333231383838653037363630343139363034653630366133616663636136333866353461
-37343232373336373832356666353534393537353338653536636439306130623561663664643430
-30653532303433313534646563646433643630656163663435386533336532376430313962633035
-32386536643566616537363836663637613837633362626266653732313864383737303663333362
-37376264663166643166386462303437623537306533386666626232393161303266666332356564
-33303733623034633962333566313065396237393561663038636166333139373065626531316531
-66636362393163356635636237653332353962396231626339646266626331393664356130323266
-38356465626138643431343330653263343063353937653134396166303739323337373265346538
-30376232323130303934666635656632393564326339343464333831343134353963333138303933
-30643661626161653064363138616462343132346333613764316566396131653236633735366165
-35653830356266303237306132323664383439313432616334646466343862366438643537646631
-61333834303533646264653932396535333330353336656565663363373437333437346137383664
-30343965643037666439633637366236363266396531356461383337383730633065616231666436
-38333939633434316336393939336633626662643931373036666138343835333363393663343533
-65313466346330646363363230623331326430656533336465363963303166366439356239643064
-38666165666166623966613533663131326666613337373232613231336532613066616135326234
-65666633393466343637386235376662626438643364633232663833306434343366616162363564
-64316536353162386136336532336263656237633664373830653437636632323761633466336536
-31633838663031396165636338353537643363363730333331616330646363346433653639633966
-31366430326663653736666239313863636532353461346434333831643638333633376665356137
-66633562303166323039323438633561393764363236383734303837393961396633343534373563
-30663432626631616631396333316137633462646235373266333061333939386233643564633839
-61326263643166353233626532653736373063323862336135306636633265326264653835396361
-62366537396261636238633533663535316666343264376465616366363336376562663165616535
-36323431646138633962343938636438313861386539366666336534363538633930326635623637
-39643033306662633761326231613433633465643464323136656363613636333930313335343464
-32663835373536633035616166303266353235323536336562626334343639373134656133363234
-35393331323665643432383264613164646130326565313232623231343339326438326138613737
-63653538343937336635346237633062356463323637376362323830326530623631326562633537
-34336537623864386664346335386631656162646434363338613434646166353761663763626230
-63643162633535623462343830663264623634656536353039323332373764356133653633643766
-34363235356362363835336435333161616535366166666161323234613834343363653664326534
-63396362393935343261306539303663306131666165663435366337636131396161356464373036
-39383335313238326165663764343761623866633635653564646132333139356266363035303430
-38643266386131353863613036343134363734313561623730613035643733646330316565326162
-65356430636662343736343062363961343738613162313332376231353662643137346536373766
-37366362323963323539346235376461353263653462303332393230653331363835316537316433
-34623235383462373939653039353136373831353632393832366164313266343965363964353433
-32356630353735333237376464333631313863623363396134636538623133386538666131363031
-65663764376664636335353732663833356364623135363034613937613036383033313563386637
-63386631303664323861663332623364326532383432376535353537353936313533616132653432
-32393564356332303966623337616137303136303465356565396263373466346665616137623462
-36376661646231313963313964653438393161633435306462353735383736616532356532383538
-36323436363434633230323261666136366336636337636532626262663264633037646264366536
-30633539366432623864393830643530613638396362363532303338306137313130643835393637
-65333462303838366331303634313334663037363634636165326132396361323231396164356264
-30353462303932316534653334313465613262336232616339303561636130333831653036313438
-35386336616633363666666438653033363033613231623964366363663439393361616138343632
-63396139646331386665363965353533646662373763383733363064343033623064396437613033
-31393766343661303033303832613534623138623132366633633831633639343433646235643030
-33633164393838643564373566653061393435623666346639613164373565616530333162636532
-33366239326366653132633834633763616661366461633938633339343435343530383032346635
-37346536353465363136393632633663653062356565613438396266343135626339356661643735
-30626335366335356130613936353261316632616430626666646636633066656436326261636530
-33383565356161356333333937636363636366646139646233666534386631353933383338636163
-66366365396661613938653536613639326563326131333235393834326237313439346437666330
-33663461623635616164356364393233643362346461303039313363623135623730633638383138
-38383964623637383931366532623431643162353964653462343864306235363139323932373761
-61323065313536366130376365353861336261383630623138336565303533316130643537353735
-66643737346263613234303963323533626637306663663936303635303562396163633839363166
-65383931636633616438663463303261663235623039363032323265663165656435393737616366
-66633838653265353934643265353165663639336438343366646363386433646533383733333237
-33373164636637653737303965353338653734626230633865383930613165396165663538663461
-38313236646434333163643534666238663535363539623338343438383633633966323666343366
-66306265303338636630363831643931643337653164386465623265383433633161353264666237
-61656236316332353934343661636661613034323737643938643966343635646130346534353163
-36376266353662663739626565353831393162383162656164653966306337373939356536633532
-64353065346161383831663830346132383437613935633630333466643337343032663537356263
-30363934643837623830396539373734326565343834653762323239333135633165366162393334
-37306362306130646330313931303466326166396533306264383533653335623832333031353735
-35366665396130313264303638653866343130396561333835343232313362616430316565663538
-63363238646533333734623465333831346335313431353333653766643566336533623134303563
-31656235313466666665393161643930326338646364316232343633386237663733373132636339
-39633234316335303665623937633664323338323064656462666434333066313261326339396363
-36626637656237336466353836306466313137363533343637336435643437386234613435303062
-63643435393261626366306433663738386533376163646165663331396336663335346466306131
-32343138643732376238623731656230343137633564303231313362346165376664623831353332
-33353265326435663330323239616435323661643361353733316239343635663365623138643637
-34316636356533623161653036303130313536356365623433613266633765346262326431636435
-39346131643064336434626431633935353432363262366338313832323664643037646637613764
-61623930663234306133656133653936656537393666343030323432383030333636386664653030
-62386337373165346564326138303737363361613139316431303061356236373762653236643634
-66316533636430326430396634643538353037393434383931393534636666333636326632383361
-66663936366635353564396163303662333137323062663933313435366538376235383034663032
-32616231653134636132346336633638363930313931326563393335306664323961623838373530
-36613038613838313361663433323765333237303865383038363931646434326633636236613632
-31323165336432376665636134306433363065393361626336363732326639383266393433373035
-38343339376361306131633534386338303433313332613634633136393332636338336566626137
-36326437623735663866336361303134393962383039386536383035616264366532623236626135
-38633065343338326466613761333364383431376432633637343239393361626562653539613730
-64303866363263613733646435323165643066326462323938393236656331353934623032326636
-64353136613230306666363461643934663162326438376337376136356338303735366638633330
-36326438653866346661393466363232633165613531643532386133636666306530656164633866
-37623063356239613933663263613637613735643432646564343235633135316262373561613234
-64636232653664393436366130396335316531393630646433616466336361623632316663303439
-35616635366432363836343232663837663033316264393937313830653339623839303362396635
-34373862633639343766653037656663343130666166326131663763323963393631623336656261
-37383765663565656134633738663038343036653564336561666662396537356139613664346132
-64396533363332636237623261633764646462626138396365643234323039653562333262393662
-31626463373237363533646165346564633230656332393662326332616463303066343733326265
-37633066636630343432653639363561306434313838353266643163383766366332366637313561
-37376338346165626537376663353163623038303236653439326166666139313836333966323463
-37613933333364633065646337653436616338646133633736333033623038396432633234613437
-66643634623365346264366133643265336364613634393732373962323930363239663930643830
-61366438306537376233373336373834396364396461323838393337306439323734333965306162
-64326330373836336231373734646439363462323861666466343932363536623736323736663635
-66633837346532616432383730333564323163396666383133643265646263633166623632343735
-30316430313762393634373333366461323063393635303965396234386135353838323361646634
-34353938663630643837346137313034663461646238653532613435623737386435366636386334
-37303930376335386633643665663961353763316532343665326636356430306432303562623436
-65313732373436636266623561306336663833353633343639356637323131303466333564393434
-35306162656561363961396561653937306636636334346266376237323036393166303761626630
-63616633653862346538633561636138653132323134636565393334646334646633623731646237
-37323963373961643530636165363064316261396630363939663965363362303431323438373730
-37653561306164623338653139336435656161333236636362663032626331336133643932626361
-36383434613366333531623835623865366233323065386439376134356161386466623166386535
-65653431646636363231633637356665663837386566653638386665376230393734623362633235
-37346632663234343737613637356465356565636664323066386434643936633761623538313437
-35666639373865393530633164643962363139323664623265646361373037633963316537303166
-31306235363737633266633633613730626565343863646536353638326439333162613331336630
-63663032323838396263353038373864376535386663386464306339333365656231333435326333
-36313631613262633539303662333337636266336638333962383034326661346463623264396639
-33623536653837303361623432306633326563636536323936373763333566313163663562636332
-33306163373434373032646236373638616361663334306161306563626438323364626366393464
-31363435656561373364383033363931653762373761653037323539383239616432303738366365
-36363565313438353166656236636439393161663762343839363634356363623162356532656263
-63666566363538373264363239616336323432333531346464396438353164383862626131373039
-39623339383736363039353062666263356637643465633662653631623736373133366635333033
-63383230643238653731356464366665633461613065663437306433333037313132623666363832
-63356432323937363266313262663432363431393062386365623163333162323538646165373337
-62623738333064356365323839373032366136303762323637373935363165333432393935656638
-62633463643361323438333862636137323235326330323238303338323634353836653965336566
-35306363303030363366343430643862383934383662636530626466333465616137356434386132
-66323731633832393463353736303535666566626366343733343539646334326438343839376532
-31383339656166616534653237356131303037656431326263383030376464346131303136613038
-39643961363762303566356139653062306539383863336461643561623665656566336335333462
-61653963353235383233363133623034393932333039386666313432666133616533333666333036
-30656564323239323038623035303037303166636132363764353564333630343361376265623864
-31383966616430316262656337623662303962306632663737613332636537346234613336313633
-32393835343962613764636561393166363332666438363365356664656461353566616563313261
-62613837633661343936353664356239613837613736316137366662633637333534323638633862
-64643435343463613761373863383465626431376435346165326134346663353063646536353635
-65393133383236316436623566386361313936393763373461376133366636336331383662363632
-32636333626264313733666230363034356139373130303230353337333234393535663939306331
-31353531323133306238373632626663633962616431613237326432373962643232633830323761
-64616137363663303635393634303838623164376466633632343030393036323331653637663437
-62326339626239663236373862386631303336353239333865343335656461386262353634333535
-35353062643934356434353364363065356538303261396231613138366638633836643431313938
-33656166616533643363633966383333663364646239633338303136353663663535383739636263
-32306636386265386538343835666630663537383534336266303534393264393031333632663861
-63643939333435333538653030643536336335313039393937343637663265313238333461376365
-38343431666331656332356166623765656631323034653331653132626364636433343563663461
-64626434316333643561663435353434613036333962336437343930626635613733383838653364
-64613265336638393036306565646432323535373064663434623535623738623161663832623532
-62636230613766316234303064353431383161306365333830303039636239663464383430376433
-37323031666234336534616438623739343761346534303733653165373935363666326239623332
-63326635613665653666636635343339323733326563346165303431396465613664306435336365
-39633631346132653033326362363363336166373430613263653566333530303232343337353465
-65353564356430666632393032653335316262613337353732306662616361323266366261333364
-33303538366637316432663030343935663338353232373032356433623165653433303830306434
-34313834653130313038343162346338343763636637666564656535333037653136346639653635
-65376533313964633433356639343766626265366337393331646437626439373330633233653133
-64386561343030336135356162363538616437313366396537363866643963303536376334376636
-66656439383064356561366465323436636634636364313439393765646530636139626232386135
-31616635313039646563616537353362323661626330356462636634333339386430353034376664
-30653235636239313934363733656633616338616262653366646630366461623034633438366139
-39346162666136343463656235633339316365306462393866373034353938356161323130376261
-36623735383262613363356563353765613338666366376639623563343135663636333330343039
-62373066646361623637313062656336353730323534333433303264323466333830666234666539
-33373434663066333533303766613638333836333536326364393661663639616233376661386136
-63633230383565393739343963373566353965363362313863626539613733613139656432633436
-30643138626536363235643237623161666433336630326530643539663031303833336539376263
-34373066663136623230643435613535636139356661353665343261353930366263363961356632
-62393563663031653663633130656134303466373930653934633732636563343937323564643366
-35623338313539613065343935376232356133343836363633623038366130626339633765393039
-34663662643661303432393336363133386138613737643631313532373064303235623334363331
-37363766303362353832356566343130373030376363326561613537316236613333613363343536
-36653831633265323334613430393939396337363664346361653737646534636531316431613236
-62363331646163393361353638303030613338376230363838393063316261323738316636353537
-62656431383031333362613338326564646262313731656439353437323638653931303535353635
-61336134623431636139323965323832336338643464386238653636396364363330306439383065
-30646163303036393633663662383032363839363666336464646532636333616235323035343733
-38633162363535636266303764363033383834323438333336343565613031393433343831306333
-32396634353831626631353838653138643966363264373235363932316238356236323633643262
-32616135623336666366623033336231616263346430633065643464653038346433646138363235
-36346665663539363161323263643231373635383762643666336231626135623366393962343337
-37333265353032343732623965666436393631333133383037376239363331616232376232393738
-62646430313433633062336335363961353830653239663761623764363362333665626161313937
-31383161383731643431663432366634643835316539326462316566613339303962336633643565
-62333838613566383165363163333263356231643764383761653863663332326437626434333965
-64356631666164313939306637646161653031383435353066323731386361623961333232626432
-32656263313064373138373765346535623166336666646162393737373133356366623036633765
-36346534633966653463393164343961616435323339336432653861383366333039633238653338
-32323964633538326366333331366236383232376237303963346131326165336466396632313864
-64323366626165306133653265663363313165396133363166373365326238343464333138333339
-63323463646462376236353537653865633430316330613963663363313264633063356565373733
-36326338393965343936613836366631346634316434316261353537613931663062363130613466
-36336631633665653732393662393133393063613634393735646139373862386432633066356132
-37666362386130663361646334633866333533316432343037353766656566393038646631643863
-65376435363537623965346531363337383535393836643762363635636435636634663136643537
-37376436326166623463326161613661623363366234333534313133313033353664323363343736
-66356334646533333865653561323466373837373838333866663333353662383739626530633330
-35303363303965326162626136326366643230336334616239366365626263633830376464636633
-32623664326433643163636335373631636663633430353435353834313465643433653137326236
-35363233333734323565363033386566663363656264373333343564353462636235633833313530
-32653035353933333866373633623335363035306262303766636633346562666262343531643865
-30643737383861353365353231626233613239353465633965636565343732306361383331353666
-61323562646439656530303831666638633139653936633763363637303239666237343436656265
-64346361353137346262333565326534373533626137653936613135623164656664373563616135
-66363064303564633863653433303866353262323136306331613061313133663732613735666234
-37643439636265313061653732303932363637356633336163343236353438396665636232363933
-63636564396636623037333839363432386133633562306236366262396131653665666330346638
-33303862356565383130623462353836633134376530333731383234666532383730646130373335
-34656331626131396364393435363230303166623561313266366430343639326330386262613436
-36316164653934313661373261333931353461386337353062336335373664333865383663366265
-35366537326138333765353466626431656564353531633738336638333361646530323963363735
-31396136363162373036393731663132306364633764613138366539396638373932633266386334
-32393965373333653137626634643664356135643563376632393861376465336133396666613566
-61623462356639643665393866343766326565303231643161316136653163616537373237316133
-63383936663239353631393837373066303666373265356362373164623839323832343439336636
-34333761633133363537376336383866326435313033303533653739396536636362363964636465
-65353563376434353036343462613930353832386637313937306566323162636134356238326531
-31663634386530666335613031343165356233353733333061356531346163323430643064333263
-33313030323934373330633036653535333366353762303837616166363062626130323136623337
-62653164636434373632663830626632613932373264636161623037396539623839653230626637
-34643234663861626639376338376531636336363862396462333334343133626237393962646163
-32626237316130353532663639656437306135393163316364383735346334353138616335346433
-61356435393535343431633032323733343338326338383036366636326635363834303965323239
-34666661643266376532663230373965633265383332646364643038623332356534303665383830
-35396562373035373563333035336230313762636263663931613764666663396462616337353263
-62316539326633373132646232663732383264323132616230626563626664646236373666643563
-63383462326232633339666432616230393763366538316636613136346631616333386439653431
-34616136663132336264663330323261356636346131373863663435393730343764383561383261
-36613362336366633038393964343463363438633463663938383162346131623932333030363263
-62303165643563373039663731333033643666366430623736663734336263616363303139363139
-63623465636637646563376536393037346632306135363161363231323239313332613362623535
-38326335303461313465616136623133643137623637306563613138396235393964373031306132
-34363365353263666434366663303832323530353863343039333434393862383038663034346561
-38343433636236653036343462653835373632383637313463626661363932366166343132633537
-35343539643831663864646563616430663065363964336432333163313865386366396538646135
-30366363353764336533646136636433316332643361363533303363623261636463376535373364
-34636533326266643334656533306561353435666662343937356636363861346463636339393065
-37353866333030363464353130346465306635633864336632396263326539393133316536643737
-64303331323665333034303830313364643838653937613561656264383433343033663538353466
-36393437313230666262353437623564363538643365613039373631373761663164626233343834
-65656537366630346361613762646536313364376634376564383665393832353538383036333361
-31363932333331353961613934326561363135353635326665346463356431336561396363323165
-66396265626663343363316464616333393138303066313662353566303030653365396564666538
-34626232386362323139613235303239623737363564393862343130613334343862656638613738
-64663466356332653033346536666632303839323739626564383166373935373134356561303139
-35633335363833343163656139633563633566666164663265653435636365623834303763633330
-35643134393435626234343764373532636433376130383362616536623838613737653539653434
-32363138656630643236363732316266396337656162613239396565303735366261343234313139
-63386664663133626264626361366665356230623161346533313062396661303462306337656362
-30313130393534393263633732316532376465353765373237633162353162616332376236663832
-39393339373439636263376136306264316331396665616130383830633836383466653666343064
-61366434633830613138306662613266343132653764623737383162643432626630356665336364
-39663939343464363532383439613064386131633237623734303866343861343763613063353763
-31353134376336303638316632343936343066313966346439323434346664373662353863656463
-62353530616561343433633335666437333766656431623136636339653639646237383764656562
-63326438303339376430353233323765663262326164633430643834633963333235383262663262
-66633232363738633532386134313830323939313630316663333135613034393230653835613962
-35666238316336356166393033336361643061363437303764356339353061636163323162626438
-33313763393966326164643662373339323734633438326163376566323233306231383166383330
-35373438323931663536643537363836383539393230393962613336343439636561333234353465
-30633634643537386463323462356663333233643431366439313837613631626533643865333739
-30373939336633366563333365333538343962633161343961346431343131623138353065306231
-62343038336263653561656430623661636634373137306139376565383165393734646563356536
-66333930366330653539396336383330313033656138306361656234336366353731356235666164
-39663865613164376237633263396637373762613461323861636633326664613664623466343532
-62666430343931363965336331353363656335336563656661313162323061646132303238383237
-34623665333637643737313661636561376432386463373132636238623834653265623638353436
-32643437633931376266643731383032306636633164393037616338393030323430643561653937
-32343732643234623831396631393766663734656562646337633635366661626663633239326636
-62636633316533326237346566306431643066643762326437633730333332346434366635663133
-30383233636465356331333633373064343964666434396632393038303462306631393232366439
-38303939646461326535393334663162373739353339643937653831393931666439346366393765
-61396638363565396632366437366662383463643030666464333265653231636330613033393039
-63353935663539376438616330306132303564663730326262336262626166363933613362313535
-61383837313836623165333235306566313139386439306433326338653966376234656336316236
-36353739653730353539613165343032313534366263363662383130653264646261356365373833
-32643562383361646164633266343236336338313066323238383034333266646166613864353032
-33303234653938626336373838636337393039363636353834363238346538313339303437646330
-31353764643837356233373235613865383837633533653038363161623238373035643936376431
-65613033343161333234636565363934636633313765663163633132313034333335323331346231
-65613164333363333034336139653039383634336639326237333337396335313865343530323232
-61353936353864393036353063656361613733363463646431323164376165323363363531633639
-37366563323435353736313534643566336230613533346263316465653039616234653363323465
-62373535653836656664396631316339653562613839376334353938633463633635616337393064
-63363736613863353739326132333330363333653830333335396535636163313630656334653166
-38613134616466663837343038363735336335383532323865346339656365353339343865666135
-35643365663463393466376633383662633930316130633439393164386264353761393064666339
-65646238623830333465623435363232323537653532366464356431303439656562376633346538
-31666536346464613432626264643232373931656431376466303334656465383933633766306461
-34326436613666363261386463343038333433616233373536313061623661353334396537396562
-30353864356530373636353562646533623532356632663161316562373265386363356262303730
-39333165316439643830616162616366636432633430313731643161306633393239616638663266
-36303130633662353364383363396465333238663361323265303533643938626131313465313333
-37623436656235643634343833626633663037323735623263306433643133613031343833336434
-66363638666139623939646138363330613061663737656335633037323065616434353766353032
-32333262636563316533333764353732303566306430396335656337616235346135333834323537
-39633864666639643665643639316563393635323364373639343836303234363036326563346432
-39306433373462323236623665316234396230366632306330306437393466376130633130333166
-37346535396131613961356366313333633936393264633438356239626562363938613362613264
-64353061633933396464613631363366323366626539306333393863633532346265653266343539
-30356264363330323635316531633936323164353036313734383834653136613933373036386335
-62373263626630306363663837356532306136373735316564633635336564636534333966623361
-66323162663636653766633138383233363431396336643636633130383162366338353861633361
-32646234393236336562633530643437343966353435366537643339313934646261623237613063
-35616237646136386337623534376438313062616133346335663733643163623134633032353265
-66326536303762323066316565393030623534333261373339653434333066613263313730613534
-66336662393431343631666439376635353831343930623465663735343730313166623936323561
-33346561353066333133383038366332633933303338663831653965383631383437323734633738
-37653132363334313437326362636362346633663637663335613563646636383533313463353934
-65393335346562623937613731666366323532366661623365633437656639313832386337396437
-32386334613532303161336462623262386464303634396563303137653334643566363535666530
-65663630363237613234313237376436326664356562306335646633636164343632393837626264
-35346535323865396265663536316365386633616262313061333765396434623835663065393339
-66613766636561363231326666663130623034343136616562316163306161613262346566626661
-66316163663039633334393665626630316266386535346536326532313432323064646661373032
-38396635366364643035353630613638323736643434643934666635336264333032396135356236
-37333537666561363465336439326238326563373636306135613837343166613739336363373766
-66363639396465623266313737323965393731333063323965366633616632613230666461333731
-37643032303838316466396330613330303433316233336331666163336464623561626138323664
-65323836346535663537383433646235336163663733623733643230333039316334623062373232
-62643466393466633835663464303139373437306364396633316231363663396238383038373966
-37373237313435623235613536376635663733363731653063343236666538383031616535623336
-31313739303331346433376561626638623432373738366333303032383230396334653036346431
-33663431323864383036326330356631366235346238613131663566666361386436366434333137
-38303365313730666330363366386261313038343332313039653661386130656338386433626533
-63386566626534653235643939383434666563626566636233643164393236386530323533386131
-31646232303764323837303562393833653036373632346438613733353965323162336135313636
-30663066396463626363323238623864396164653065653435303566663561336665656265366231
-35333834363062376634303636323133626133663862393866646135373237326130373833656264
-37306438633539646137393961653033666430623431613066626231383266316162336438393336
-35396363336536396333306636646337616238323164343635306664386639613930353464353966
-61383336393962656462333935343031613430373764663932306231663931316339626335323763
-32336164613862306363356666386663393635396363323334373265616538633665616235376466
-39333866613133383834613565646162623532326164663232646165303431653836336661386662
-33303932636631313639366131353161633166393636393935613130313063623436646661363965
-66626630396663303238343737353839653565373539353766383232386132636130656339643066
-32343064386136383331636330636131633437313430636562363233353266633866643064363561
-36343362666661373161346335633463383530643239353462353036353937343339616633323065
-63316338663866393437363465366636633230346337616439643162306163303764343932643134
-65616264663165643438353134346631393139326233353835313931376364343162623932633633
-33633238306639326561323339313335333335623537663439376363363065616630313865666236
-34656334653239643139633531376533636235336432313430353236326138393162656530333739
-35623231663535623033333863376634373263333165613632346231623534313666623037613230
-30383265303635393739303062643333633138653332623732353036616330346435613236373438
-63343736306539636530323731646261663364336133383261623732366563333031383531306438
-32323239623737313963366266653762663338353466363639346133373132616330643432343239
-62636166323038323639383363303531323931646133343936363235393934386464613961313031
-39323834666332356366353262373536383736343237666138626634313365623965313265383931
-35353430373439623830313463633936383463336339656133616630666538333131373038343764
-31393763386461393038386435383336366261323835346331653739393836306331656664386438
-31633263643031643964323038343435326435343236363834636365656634653764356261656339
-37663337366239363162633933623066333066306139653263306136643631343839393834653865
-39616164636239326132636262353839393634636362636237653031616530646232333165663139
-34386134303738383038643966643064336639336435383533373366613138303338326361643061
-64386337303766393238363763386363363365616362373238316432376338653735626266316339
-33353465303237323564363630343862613466653764393834666239616461633535356133323064
-66323332656332393561626437666334313164613933363738663438323662306665636264383266
-65663666666333303330626530376631343865373862663663643066363365633162386638646434
-34313839623334326466353036323339373266663436343062656237313566373330363133343662
-65346566383037316232316433356631346639396335383063613438666130653266646639306639
-62326339653339336236313330353730643065313062393134353764306663346262653564373839
-34633530386231333933663361316434653861333634626165343539343237356136323038633161
-37393931326137656364636536323536353963626465323237666631616137373661343436373432
-64356232613130303865353061303265346136656639366566316436336565646639333562663839
-62643762313561366665626437343533393839633834666333623439373263626137323265386132
-34343664623430633462613239356533333165353638343930336332613262366432386139633631
-38623136663163663365353231626134376535343731623730626439643631656265313465333361
-64393063656166336635636365316633663239333333353662653466653738623432643937616635
-37343064363065306237623732613366346164373563366135326531643063376336343532393832
-38663834333238643337303463363436623734343237616432366638623265646330343265373462
-38353864303836636365353863653235323266313466313364306632346363626331373337336435
-38323435363766313835323732326365613030353937343465363866306461346535633732306132
-34643538633162383837346661386533663862376138366237613230306262333464333038633864
-33613038366462333166303030623839343139613136303735323162393834633664306430303261
-31393034386561643261613732633339643233373362663636636331383130396438613166373734
-35346335613237363239656661613435656465383564393966623462326334666162613462643832
-33386263663435313939353765303033343965343666376333343934363630623666346436346133
-35376638346361363966376237333635396135613035313837346638643338663635643236653439
-30333330326436613765356635323731633666666632613162353263393737373838303862613461
-37396338366536313962336162373063326631316335343834376536373865326661363066386236
-38303539656632323263333162663565346135376564373264663062363939386464663431623036
-61303431306436333539613065333436353630633632323430666561306263363335653437386434
-37363637653132323132663936653332376335643538646632393535653934316636363233643339
-66313034376464623338626138313334656532643137376633623636653233313939366164373438
-31613639353835383139396631353431643330663065646233386263653137346664353937313065
-64313032303861356666303832626136333062366238626363396139333137323038363366376532
-39353866386232323062663331663233386633636539616636303234373331343433363866656135
-33306235353264373666643931376362386462336665393462626562393662373263636662666566
-33313132396430323032636539323534393363643239616531336336323838623862313965643133
-39396366663735313037393339396139386538623635393234373361623361306561303164303239
-34643066356137396336353634306636306135633062373539336366333662653535656166653238
-62663962323361653635346637393766326263353233336330363861383136386131376632303534
-66303031353830633037326164646137376235393935653462383736393665376632353630333634
-35653938646531363635336134656664613738656464626438613736373764333862393136366635
-33343962633734376561656537626432363931616133643034626464616337626634623866333961
-35333862366164333431326366363233653966666464346536653736356333353837356538383838
-32316434613261623334633739376139373466653064396664373532336336383862626239313834
-33396234623131313930346662373531313061323538323165363166393866636437366238323335
-37636533393964366465366238663036333263313162336661313834633763323732383064666166
-61643634303266326236396262356134636133306435373234623331633839656637383632653365
-32313235366238666163616539663962326239623831646530656561666338353964316666306431
-35383563366465613262623337643962313839616462633236303432313564613737363431313432
-39623766383264656433633536636439616166626436313961373037626162636231663164656339
-66333165316530383062326133353839303334396433303137636162366438663132336466636137
-32653930363934323564363231323630363535623833393965633338633038353833646332323563
-32326439666463633735643238313633663133656266386633653830343034306539316333663438
-37643839656238663232396562623662383639333361656264353865626239623537303136313132
-62613939626535373465616363373233663464653836373136343139326661613037316331333465
-38666335356462353138303637326339393165396338343839646665323938616438366230386136
-30363664653233316465616434313761326663643139366135393763306364623966393962653963
-33623835366638663363383561623166393131356337373064356165353838356462353636663864
-31306362333865623131343761643966333963616164343166643765646431663664316466396434
-33336265316330336632303531633237306564636630613634386165363935666435383235363663
-64626361663761613465323637613865313763326638373562653339626437306363343732346365
-62393964643162636332633361353662303233643939363463356631333962613336356161376165
-62383461323032613365386439393634343937343761613934323934656238656635633162643464
-35366537386338316238376331643632653235643935303134383937383461633464636336646133
-35383730376665373164346332646361616437313765623436396237363232656231313866333133
-34653636396538303830333764616563396332343931363033376538313032303436353438643064
-65323637313734386134373033326365663662376366366439336333323464383564373137663261
-63633338343334626538366264373038366566386236633438643865353661343063366233636539
-61633765386364636265336531623230636561333863643034663734393739303264626639653032
-31316439353136336161386637373531643162626232346235663165323731343934636135383437
-37346331613439353761386362653839346465643961313931346234333663356334623436613663
-63303061656366373463636139626661623037666230643935346431666336653963643261633439
-62376562633963353432336437313430363634363335663838323966313563353964616261313031
-61386531323737306363386366343537333161363139666633336534323739346639353564343965
-66326663386164306165636239336562656533323234633163383061633966386361336435666365
-39363037613434313639323531363436353738656537626630653662353438626432616264613139
-63636136303532663233633938613961613735343934616563636562316363633764363563383165
-64616434383835316465633332616235353035333136373539326230343966356663386264336636
-38653637333964356362623133346635363164393130333064616633353662663564613765396233
-65613833366537383263646638663230623264626361323163396339616533663636613838633237
-30656634333735333963303739663533646131643965633734646439643031306134633863313064
-65316139303461313536623136663038303939626632343562626335653765396339613434306138
-33303565376666386638393338623031663331376438396333333563666264343862386436633833
-36383630616134653736643631343239663834396266346536643630393465326532393837613731
-61306234613136306539303236356362326165323336323465303235356666626163336363383038
-61663831643961306133666430333661646632666266313338326135663163313038636430363131
-61366331393431306564353065313031353032323262336566616638333033353266366465363630
-65343861396438326363626430623464323435623034373262303762303530343037303161353135
-39393364663866393933653361666165636135383962323234643662653336633131663537316138
-36386430663635323266653839636661313862336137323135366561353565353062363036333932
-35316636316264393739663734366438616239336462346633303361643162383134383138356633
-63303661636666383765623430303930373930643538396162643830643562396339316138623230
-35363932623137393132643836643432363431623738386137303934346138383663653163376337
-63353731663337663666626364326234356362343165653561336231333834373163356139373566
-66313662646465613266396534613636656131343434343634353863393339323638363235316366
-66333636353764623566373333636664356538343034376536313233346333373732313562333832
-36663435396164383964663231323537643736653933616162626134666430326330353835643064
-62373332303535363061393233343562396563636264626166636431613263346165333334346139
-62373233326232353665633331653839646661386364353736643336613966396430303134306630
-63396533656365626235653662363333363963313535633063626639343039636665623134316331
-62343365303835623163376366653966313363363761643738643536353032666534623339656364
-64376265346366316664333931393466366366666433373134376566353034656137663336306634
-35376563346631333134616561333130623838363564633737623139343035353134373835616363
-66613230386238346431393835633032366436366539646631363731383361343632626630636163
-63653662323966356263666132363037626337363935343632653533363638633566376431653637
-65386665333536393633306234376466633530643966653834373832396464623366643366636364
-38633264396164653433396134303432386630636132646264303637343734353334333439356266
-33656131633362613164643437663332613337626433333465373031613533626135633639626666
-35303263623761373964326539613333633637626337343234303330626364396637643735303831
-36386530396561346262333063303630643137313665386264336565383236636632653561333732
-34666461306263633839326661336235323232373962326364393665323465646566326532633063
-65613432353838303365323034336133333631386137636561653237643535666261616265356231
-64383737333739633662306430626638316138626361613131613437316239303732353238653137
-63333437633162396533653965366132613265383263343737616639626430316635626364353162
-64353162656139356431376363303932643062313565313637333038303234356163333763386436
-38653332653334623630666232323533616566363265643466353039316532323637333365346339
-61376635613861346635393864616564363538633438313532333131643232363265636165356231
-33396461363162633663373635313366393566356562336530633662646532323761666234386139
-31373263613235636462666435643931323334363263656634393963623533613962623861633366
-65333632666537313532333962316463613961366232303463386534316362613630336466366464
-38633437663738323839393335343866393332666162363638623431663864363164326166383434
-38616263356463363336356130656333313838363837666163353331366633336661363261383861
-30373766376532346638336561316135353066373632393361633330373632666238326638663434
-66633032376237373264313665356330356436643663643864353563343963353662616235613966
-36346132346130636161353636616462383736663066306132383937316337643632613630643861
-37333532333231366364326439366234643834663839373564636264633639623635336433623938
-35663966333732656436333261663865626639336532633733653337303761316237623363366231
-66323664623633313961386231616438613332633263613261643264396632376536396134313862
-39313634346532366563656635373831346138376531666561396438393864343565353364616463
-36666365623466306636653034386534346664623739343866303966383263383834333539626261
-31366232333039623330373766346461343664376231383233656531363365313534643339636564
-34653665393737363737303364643035663565623435613563303133333565633763313738643933
-65663862323266336634626631383266653463613532633731326662323130396638393263643064
-38323038333439653138346432623238653235346535316261343765353037396539323661656362
-64393434376263396535323866386236316162313536326561386234626335353738666530303632
-38616435363531386238646366663632643366633737386233613230626261646433316466383165
-63353733643532356166316433656134333861363337356561343132663934393139643435356231
-34643538313435663938323533656234613138333434353734393933353563633030313238346463
-33396461646139333661663162663838376139366431383862313536376163306634633330383133
-61663138383937396635363533383635653838666465636436373234653034393339323639333937
-32616161336264663362613264366561326563303939386562313331376631613032633339343535
-30336637313464303464383437356137636662363238363061616436376439643963633364623066
-65316535373231373837313433363964373263336166333033343238386139646565363031633133
-63626665373963636539313337323930373437396638346165336666366637373535396136303864
-38396665616664386533336137343035373432646531663533313531666132383538326264336435
-31653235643836616339353833313932613736353732316164306264313132386536343733363832
-38313361323164306333633037663766343936383635366566333962363237346439633066663865
-32373735356439336562626665303738383164323564363131323834383266663562663262396132
-31656433373965306561323866623665613437383863376233363230663832653131623264376434
-62626133366139313637313365626266633936633663396330346266393562653662623433633830
-62343662343531333261323664386665353462323837343930383534373265373063643564616332
-62303564333933623164393263323437383733663839373664333463323336336565396166383234
-39616236643062303632316336666436346437333932636633393564613364656334336338623263
-33666165383733386634653166393461373934643230303036323537306361636165653431303064
-34356433643966373333396538333834663666323935663766356436313032333563653063373537
-31326335643239653530393935396232616535366666326638396530656438303738383335623538
-37343166333962616164393165303865383430663465343334633664663161636663643663376636
-32363932386639623631343663633261626537323231396332393761613538303130396138633661
-64663736383132353261356136613163306630333564623335653337666337323931646136363931
-39343562656636636137346535373237333633383561323164353231313537343335306336316461
-34386535303662386265323031643038623565356338646532393663633134656466653930616562
-64376564343536393865666431313963313031383330366531353137313030333137376630373162
-62656332373866643166653066396664616561636365616532633563633839643962616263663033
-33306266636262353738656334306339303131333439633237663039383632373435323663376563
-62656663613730343265623766626430633131623435616132666261383233646236326230613764
-33633532313861343838653561633533326235353633343766326435346336376265643662303334
-30396136303633356331316435653137303938383434666637656462613661643031336665353663
-31616630623264386533643431376362373564333862623461656162636234646234656166613531
-63623533656438373135363961343164663539316139653235656535343333643433336133333139
-31643934643631653037613236373666616563366362386634643265653631343633633363343765
-33643964303566656466613838343831316337643030636433623366356631356563363166623433
-63336165383566323961393030373531383932346132636638396565353762646630313366366134
-33623930333464326635303966303463373137323562323161336533643964623963636634323665
-65306335613832626239383261363830343666343232326264633936356666663035363264303161
-36633931306334356262636130373263353063663032663530376337346264623630653630616530
-37663933323637386562343339363835626238353139653735393232323931346364323630663361
-37373833613039636130343861623238383264616237396666303130626433373439616631333966
-64643764616438323666363936633438313635393134326433383237636261373761323339653537
-34343032643038653032306637363765363762393362313236303966316162323564663663353035
-39386363623265656131303864386130323865616366616463363362343337616638343937353637
-35346430323961636661323263323165363438343736393430643537303138613262396136646334
-37663261313334373335353139663035383836613736643965333439316636393938366562326564
-35323931333363303138636333333635653630373734333838373235383834643037386337353165
-39666530383739643337643335383463386433333237393365383063396335366361643131333532
-38303461303331303461333766653664643434313537643065373661313533326330346136336238
-34326661613133393333313631636436653666646535616433386333633635396538393736633339
-32386564333835663830393937613136303237393236373335313534663533333432623865663434
-37653030333537373331343663313533366165306333366139353434313333613835343633656231
-65333937656463303637353537656636643931666436386138336636326135316130656530616435
-66613462333731353134343563383730373963326162383137306239343034313133616363633233
-63326665633234383735383835393733383435346337653638613965393733633030616238633564
-36363262656662656137666537393061343131663061623563663638353861653431303431353036
-37306163653635373431663032373532613063323833636432346533613130356639393530303137
-33633166363038636263316565356266303939353039363832376434663565633434646632353334
-37656166653533376364343830363030376165346333343965303337346539393366366461616533
-38383336346161373739643837393337663037306335343330333765326362636364663366333864
-62356233643830343634343566623638633238343261646563393130646566633130653433646136
-66396661646635393539613133613364356139306465663463356339653936396364323839656263
-66643539653531656432343338326661653730336331656538616431366366326461393161663863
-33633537333836333932636663313736313234373661323930653737386431623632643236616561
-36663431666463303137383934353437363366306465396263626330623634396231386634343932
-64363436383734666538313034326234386132303563346463663965663138396435353132373532
-38326364396635323564343362323262333430333335346532346538333638393763643039326632
-64323663343063333364306531623532616363386633353762313565373037656537626362343661
-34316631336634343766323163306464383263313636353631663332663563643564643336383864
-33633938376137393434653566363735633661383937613432316265653837363062346465646537
-61323864393636353965653364383462333434373535653634613639363966666562383661336232
-31396230383036663330356634343064636638653832383561646431633162653362303839393036
-62306662386563616561373166663866383137386466623865303631323236666565656566326662
-64663135363064333162653730363537343137343539393138303363333837396134306461396165
-30306464316134333237383666323838303137663334313564373532356638643962313031313335
-35386366323039383635313736376331323266386433313439633731666434613035386432643436
-64656364363363366464383835666334376233623834616661306635306539383838393831623232
-61336530346637613965383630373863353934383938323230633039633238303138356231356263
-65323864326339376665376136306133303664643263313132343231353063663038633665653735
-61306166363062623565626463656336663762323131323839306262326363336333663865653264
-38323366303639383362343933633937323738393235393262393533323736343132393066656364
-34656435386534336562366432653966333863393563376534396632306565353462663466653161
-31373163663435623064366332646364366261636435653330313230356162613435626565656665
-31313265303865326239656435343430343934393730616264613032313835653631663162383564
-62643361376265343961313765383066313234653666623861376636636637306631376137353132
-34393732663439623437316664646164313665353062383338633935393838323166643530363764
-33396239346433656536366536386663353463633939383635303038613161616635326133393432
-30356538623638326433383236386564633965303766366162636639656561373434306466346233
-63333530343337646130663732633637326461643838646532616230653434653264323634343230
-65326233646533303163333064313834393435346532383062353166343735333133623764643964
-62333134616362383866303539616637376536303166363931323235393337633264303034333065
-31393437366135393037313338653239326235643066323235343263626237356331343637356435
-63326365323436306566353433303335343861313530303731656136646433393430393462636462
-33666633643734313539626363393765393731366166386231323335336634323565623730356563
-63633738336664313739336134313630623138623665343263346638366638633332383131636630
-61643531323766643833313134616131613362353537623338643063386534366363616262333433
-66326237373130646233383334613965366339653236353437646338326530323236366263306531
-61396166663737306566353134386338363561326465356237356139656234633038393133646464
-31653137373561316137656661303062633635373033623539373863623666343438333164373561
-63633931366530353763376261613938653535623337653138376235336161356133333861393232
-61643837633265376661303933373732616437613935653862333665313962623233343133396466
-66626130633339393630646561306137393034316262303531353539346534373237356532316531
-65663437313435393938363239366235373066643138376639643964333438633962636436313863
-66336164356263316661313939326366633961303262636431653035373862366535303563653465
-64633130633034393061633735373438366434363332303931323265333335323261313664383331
-63393262643962643363346430363561636662393539666232306633663965313730353636653037
-61353732383035303730363765646433313066376430353737613235373036333735663832333962
-64363739626436633132326637323030363439326134336532363236383138643361363161653163
-33393132316139346461663435656336303863363565623134623637363233373163353439306365
-31346561353838336466666563663537393836323239663465323165393365303964633134303735
-33373538623331653333653739376133353036313663643030306261393864323665663238626231
-30613866343032363436366330303334383736313864386330613734373566633033393437613463
-63633162373736313832316463616661613663373863646461336163313365646530666338643461
-61663631356265373930653130616164343266323537353135666464653666343131636364373962
-37313761363864613439383935663830666534396138336430326166326635643331653364643439
-63666434313263323436633763316333363162356461643061326636633936623233636165343339
-66616438393338383262663133323763363865616364396561633261653065343865653636383166
-61306564623363353534313735393763393830643430623730663935343035316539313736626531
-62636134623737643737386564626437396165663030653635393435366161353731376561303336
-32363264316134663431666564633035396562386432303234653830333638323732636364663235
-32323932373162373338313666366331333663663534323666333834396231313733326666646663
-64393439616333646563373665316337363039643634366537663032303737356366383336363964
-31396562353033663039303533376163653132663464313535353330366639656539323438623766
-62643261303735363765313962313366343165656634306465643935373830376435336631326333
-37663364353337313565396436316139646231333632653835653962626435396134343563393537
-35663637356131316363666461373634346264656566353336316161376261303361343237323834
-63343031666131346662363066616466313836333961663534633066303436613435646533343461
-36333962313432393463633339336538323334393831323861303165393339623564373665656434
-39623765356363636231353132356130373164393733373038353637343362383763366464323664
-39396163313139633066363630653562663263306533323930373532333030656164353461363161
-62336564623435653132323466393766373732663235393035623063646462613766323731363832
-34306230633761336133343631646135616433613137353834356639376237623966393532653438
-65663461383738336236356331666136386533343737646134646239613533613862653339613363
-30643665386562633836623233626637353661343533613633353931656434626435326165633438
-61353931613234366233666663636337663930653732303166623733633638393934633134396663
-63303563336564613438646539636464306163346365333363303866323532643330323437646665
-38373665653232643865303536386433383566373530303934326337383030343638353336356431
-33663166353435303230356137323331613061316462663133333964633137646632336435366365
-35653330626231636165323639333437363535376366616563373430383137383532316638386231
-66346361646332313737623831303539333630336632656561663834373633646366373833306362
-62343737323164313830616365316261646461326562373633623166626531663232323833356661
-30383762306661373666653737343463666130383462646162366232393838656139396638316265
-34346361346130633936663132393539613730316536376366383136343936353336356562316335
-63326535666663373530316433396163326635353864353663376435323937396266316136386337
-66643332346434353330393838336366393661313038383264663962663437666134616661643637
-64653139366531333064316166356133316362663534396339306164343636393337653232386233
-32303131636635393762326365653237313964373861356537653334306365353364333162396366
-34653166646664653630656231653932636539636633343534303939316638383265383465306236
-36393033326231306239323535616133313036663332326337656162303238653330643663386161
-61643064663165373936653431336135646230343730313562313639356664356433653337396230
-32633366343331626361646134383361306262336533326434313230383632363433323438633336
-39663431323934623939303463346634613339353036323466666139663432633064316439373235
-33656237336334626230353462326264643036353730613064343632626336316135386137643135
-35336466353166636630643938633664313536353061353134313134653063366535393966613835
-32323135373465343832393037656565383832643034666363353931373935363135393735623936
-63616566633365616363633635616534663562623764393965663161346337613565656663336338
-32313563666333323932323033656335616630613163623366343262343865633066353439366362
-33363737323835373766333330393766626435646131623063656532313234326437633831346532
-34333163333438363565303266393932323236323461313233613964363766343130346231396265
-66613063666561313938363035616234306164626163366361666265326630303363313036663562
-33303232346466666632316335356635363634376161303430373139356663306565333163343164
-65346237623562626532303639313565653037346335656232663535373237366366663064656262
-62383563313234356263353436653161653230393763373661313536316335313832653566623764
-33656165323838373332366331343730326231356632643730383932316339666531303730646264
-36356534343531353732333536653132366131363165313964353737636530323864313031663234
-62343330376462313839373562623733393234363861353964643434653963323162343165353564
-35633636356636326564383237393661666233663732383534363462313239646666646536353865
-37626630333832373566356531343639323565643232643561326535633963616338373833636239
-35346164613732343539653132316236363366383061393465636133303363333664303230303766
-63386261636561663434363666656434653831643964343039373739303537346139333630623862
-35363834316130316134376633303961306366363833363838333639303265656530376639326562
-66396438326166623964316662623835306532353861336639376335393338363564373533613265
-30396462326534333537633433393130646466616638346261383238393038393132633430636437
-63376165393832633438343036306663653465623538366366636462336636666131316131383265
-33353865383061366264336635313430623162366265333231373534666364363062613263393839
-35666130316436633663626634666465663531646539343763313433333336333633373763336334
-35333230366630623532666164383832333238356533393164373832396261663164346335613039
-30323030376433376432306435613334366433633038316533383937646165333937613432626165
-39303766306637333365643164613438353363373366326438376231636636666238393335633362
-34343362633163343564376562326335653863363362626662646239313931356564633664363964
-65393964323862616438326635656433663131613165643439633632663936623236323237663239
-64636533623965306534303839613738663066353764393530386634346566636231656236383532
-36393334623062343666653162373330653330306565656466616364326336396239643963626261
-36613034316465323566363036326439343738653034373634653136623837376563393830326263
-36666136376563323534336564303064353532643430393736353261613362613639663035656262
-39343331373832363333303537383565663565366661643535396630396566663530663133326232
-32383366303330616563636363393335643663363863386136373431663933653631306466373764
-31333662353361633165346464623562316630353330373631616430363030353133653137653862
-63306661653566613733373738303733623736346463653232643233323539313964346139333236
-63343332396436346535633432383839353933353661616239333430336362326233306135383432
-34383765306439316436393936316266336238656139363632313431373666383038643538343930
-34306134363434393339356539343263656464626236366535373763333166343737646133626339
-35323863393930346463333932393931313736316532613131643664313336323264643337383666
-31363831633939363435373163313564626433303334633566643561633033323965373466323834
-33313762313532613462316564666636353661393632343434326435353938616263386563393164
-30616266633531363131393163643338623632383061316434613633643061353830363933326438
-65373137386232323630663831353734363166363835313763303735646234336336336635353963
-37386637633431393830363463323534333337333764383063333761656364663632316531336562
-30373264363163636638316433333035323863346139656236373366626136393066393434316437
-32646662626338366163393136636339633237336564336337316334366163636662663438373438
-35616661323436663662376237626439656139323231333564386265386634613233653338313736
-31373633653234613363396563636262333561373031633439393165333961343866616562366666
-61643564633164333666366334636536366662633764383161646161316465306436393130383833
-31663130643662633965623933653365616465383932373438646663383134626537323436386666
-62656236613131373631653235643562396131313263353833303165373836613939636238643662
-61353835333630303135393537376436353235343033386131646233616630396632323135356339
-32316436356561616663313861383937346236656630303239666630666536396439363232646138
-34316432643231323162373234616663396163363139646636616265613832353934333564353238
-32356137303235343862626433633139653561393163613863623133653362653734633432643132
-35396265376535636235323662626338646664303439333463666262323862356539343462383536
-39663830643836393530393630376563656135346662653635383734643762353963663530386239
-30323830636131313262616537643831383232303430343038353030376138393433326434626336
-30333163373563643161343835636131623237313031613864326664363235306563323463326233
-33643065306130353535373539343636343565626334613665643434653865303933633932343436
-63326437383264336137366633393266356533336436643865363437633666623735643330636364
-31363339666563616136613935633161383661393431343738663638383634363538346463623436
-65653731653431623739343633323966636666663431636161336665613336613266326339656564
-34373935343731633431383538636164363866616437346565366438313665373931333431343339
-33626366323836306131306430633535623032636661663862313062643536323236303862613931
-39383964623934383638336430373330396634346630363936303831393137636237386432616636
-62373532346363616661613838353763666337646235396265623934313731366137363436623662
-66303735386361643437356633353830636631646364646538353264653538616438323935323633
-31613266366137633934316231643262343164613931363631393138316537353436346636336161
-34333436333530313866396339386565623239356434343230336636303339346637623966333163
-65646638633134633561373061306233373564653136323231613532613964306630376535613764
-35346531313934636534663733323137393864386638336562303534333337306539343536666466
-64663166616431336564333837393331636135323637646437656264613036366561313837396137
-61333631336437303466343536646338333965313930326536663130346338613362663439633063
-34316139323065663134316238626438366264643134626636613063656430313332646139633461
-35356361646535616436633864303063366539373964663762643964353162363637363537633732
-39303333616535616333343031613938633036613834303032613937353937366337346330393431
-62633661343764313363393434633961363635326533623861646462396566636130313161626131
-33333334636561376538653433346265643632316535343837313861653862353039376136363339
-37613531346565313039313862633062386463663432373762313165356235306662393261653465
-66613631383362373532356464376533356237306238306139613834633735633631393134396334
-66656334373565613639643839386331653436383237346265306430326438313038626462303130
-62646133343731383934306565613832636439313235323837363863666138643338323265356464
-32333036613134373766633264363561373236343935353238353937633537313461363462666561
-37363238323563653363303337663833663630323435646432346361343065323137343361623431
-34303439633339393766306634633934613730306364393035656231366633333066623961323964
-64396461306661663863326239616430336462653933343061646464393266323534323434366339
-32663930613631666438363739613233376632376631623833623835663731653932376463653563
-65646235366266323538646132656465363736366566316537373563316233323763303465626139
-62333732666339646632613232613066623462636131303862373839316364313037316139623338
-34343133313365336635633637353739373639613464393864626165336130316465326436623930
-36373561623033343037376334646366373064343537313966643433303935346238316637326263
-37393734363930393465623465323362343466313166646236646464303062626539323664646539
-31316131316563383233383234383362663663303733623938643831663861303666616533343639
-66323362323035333962326534643234396462613866333563373133326562333332333935643363
-65373733346432616133626231646661393530303864616232626232666163373465393665613735
-66373438383636333063356532613632386230633638326566623336303639633038303938363336
-63333332623433353430633830303032373137386565616662326661373565306634633933313736
-30663335633533396633383364383536363132306666363165306231303530303838316130633563
-33313863303233333463616432343530303730663462353739663461626565353434316636363030
-61616434333466323332313635383534623633643662366636396437386333316339646261306664
-65336631643437373764326465366436376163623837323835643766323336623735356336636330
-34626436356135353135343030353839303130393436633634646266323936303333333539646336
-37353437353838633862626233343134333265363531656431616432326532376432653736326561
-63373638383233323762663037393336313561383262353463626264656334653036333631326135
-33336437376237356238663664326662623133633561623332396163363534646333623662656134
-34323062663938363666643765653963646339363435633035336366323564643135653665653430
-32303034653361643362656163313335376639663530336336356239613738316665626463616332
-33643939663364316362336432316133646435613763303865333431643239366438343836613061
-65363631393330393238333931616338656632326531346233653333323139643237373438333364
-35626231343134323637386162333935396235653034373465306565393638323564346235373232
-37666162656632383862353638323034363461633266663966626163303930646337393366393966
-33333436383133393935323239353238613737386461386265363162623633383538616130616462
-61646236653465303434326366633531656437306333303938646662626535333565626335366536
-34643161353533346165306338386532303965363936323463393935623566306132326165336232
-30633432356337666634613461393866323764323737373539373636366262636637336563326639
-61353464363763666132613266623966343465383332323364663731366630346238353863653261
-37396464356433336632663966356566633561643939393635653461353564326635333562303535
-37313636643861333931646534636332663333353337383863626264353863616566636566613137
-36636364303137396437323736393735396366623030396538323930376637383033623631616533
-37326233666636373961636439343035333463666632363338643861326165663864636134313265
-64633333653538376561353835613935363936323430346162393762356132323537386661343637
-31373239633839636338613964626263663434626465343636613265666338343432643830313661
-36383266363130303332396262353337616634333439346437373739633064336534306433386630
-65663430616662363432343030386664623331613264613163373738666536663338663134326366
-66306665306430616538386430353735383866326637316332323462376165363230303862393234
-64373637623566356238343764623232303236346666303831303930656666336164393934326338
-62366630353565316136353730386262353331336433333935353563653831363131363034636564
-38373563363763633062386138633465653366336261663836376638303231396437376231626434
-31633639613233613861333366396336623636666539313466393262613336363236643935363765
-66343433623662303437643961663462616630663037363537373861613632303666383961356334
-36396461303961316339663830613561333765393234656265623363313663646230643432363736
-38666434623430306565666638336263613439383235653561386664313439653030383732623564
-62663030353339303564383965383266626565366562386136666238383632306232653239396230
-65393934303936353766393762623062643031306635623466633339363639343261656130336632
-38623437333734363235633238313436366236643366303864663330653939666338346137383930
-63613764393933386162653633376232323031643762623737323262326237313634326237653731
-30613332396533303135343630396139383464666239333635353132353734356537393131313836
-35393266346533646233653439646132333761323562386133326433323965636331383735363633
-30626331313037373331616437646538346362383132633836643865316138313338386533393932
-64626463356131303263646565346266623930636166326663643733616136356639636433376337
-62313966316634393733353739303032353463383736613336343439323330356230303162333732
-66343938386630353837303137346361613837363735653031636434376230623136316565326331
-38313937663230323033353831346535333563373939623362633366616366366333356535656563
-30613039386131653539313631316230666464353431396230663136653531343530393737646631
-36356137356637663939663935303832636339333262346563653035626634386137356662643265
-36303836636538353965383330666436663461383962323935363232633664663961356138616163
-61336334653762633964316439393665363937316230623161336138616432616635623834373332
-63353630616165343935373661646164383838323038373339386630623463643737306639623032
-32343836616364363334653866376232386566363134343230633331386464643637353735343130
-65333265323838646264323937343038316437643334396130303630663666633833346464636561
-38303962386266633138663664313833373236343335386562393462643130306435393339653065
-34333735636338333632353863666462653864633162646666303561383139646665663863643365
-66313965336232623337656436326437373735356363343664613439353164336331323730326131
-34633065313263363964663661393166386533616462383061313466666335353262326137613963
-33623364663061336265303831626362306366356533666632663063383130386361376237383734
-33363161616436306435316532363935303639376638393435313534346230326565383134393730
-63336235306166666633663831386233623565616638643234303431653535356330303534656566
-62366163386336663662613661383439393536393266316663306662623635316335343139306234
-31623863333939653835366238313665623661663033646166383332666532393833323365336339
-64343534326432636264353563373066616339333737383130366563373165306231623836353731
-35303962613030333433326265623338333839636433616363386435346535363534343762646263
-33623632326339346636313635613863626432313565373233383839656435626532393062623964
-32656535663261396366316436646336653433323832616365376433623336613263623236613139
-66303131396531656333633864343831633636623366346566396136353662613461646661643363
-63633934653536633563633537383735646135326564326665663036353963373762653435613663
-36346131663435343030646361343731333730633531383166333531343064376233323566646162
-37623964386434303363386630356238333034383239663632646364303761306466383166306231
-39656632343532313733383737313939616338633735313130373364346135663735666235316164
-37366363363934616632366531623664313330343062376564616134343833646531356431386635
-34373866616463323766616133633763313934303334346233666131366634376362366234373633
-63333637623766393461653435616338643634393836346339636639343830636337383635303864
-37303939666433643364353963333763323764393337343564393933653739303839643764393432
-62306564623238333935323761663534323936373533353234353931626462633763333937633766
-62643530316564383965346139343964616237323838363136636338366335303534383864626235
-35343137666664633930363961303237636536353739396338343661376235646431616661303961
-66346539396365316639306434346661613062353933643031336135613432653235356264336436
-39653761666535306231613233326139663562623933343539316264306330303063353633633663
-66313238396636336662396463613934393337623035343066316461343066396130363562343530
-65333337656330346130353961373232396233316664393334356562353037373535326438386533
-30623364653036323639633733633532393063633433643838326666666637313037663932363865
-65373862616264343639393263663735346462356533326330393363393135396461623635646466
-65343036636364653631646539666565643663346631383962373430353638333537323134373661
-65323233646163356438303361393238386531626331323030663137336363396166363039626336
-35393463613564646335353136633735623530303239373035643866353132393433353530363135
-32633430666263333764343932353261396363353563623930643466376466363337373964646139
-62303562323839623631393538656661313263656532613039633566616336396266623065643831
-37323131323863646566663234316263326539386638376563326535396264643164323261316138
-39656135623134323939326538336239373863626139383531346661643662656336333566653833
-37323461346566386266396164333335326438646266346130383463333361656436333339333438
-62633561383030653738343934646136376337663264613339626232333961623764346530393239
-31613864323737643965396532353537663164343766626132373238663935316131613931376465
-30656238656163343863303263396630353062336466613862616631386333613939623364626536
-66323231653637656561303661383137616439626434376639366463623136346265613631663265
-38623930663831383461366161363431623536366237313537613062633465666539383734643135
-33363061373066366431666437323534646633366162316633393962346366616661653064666662
-30626431316261383365333461636163636134643764306533646561626334633530633333316665
-30303531613934353930323833646136373938356363386634333162363836363733663631396461
-34306438346137653663336165633336373839303337343539633434353830666665373364303438
-64653532366532646263666430343065316231633132336536643164636662343664663737393634
-66313733653666643165333634366437656236323331636539333938373735303264366439306161
-35663235333037353735643365383330356562326430316332353566346361663737356431356239
-64633963633663646236633661323966306334313665633536343739646464663834636439376331
-33626639346564633435633930646637303866366463666363653763386138646336653432326636
-35663638633165353132363339376465323236343036623836353231613034663233303038616665
-32383735313461363537323231326463346133363866313866386361303732393731613162623935
-38323666383865393463336331343764656136376364333030336434653839613139303963396463
-37316237616562333431626534343564373936333366613635663137323235666462323035633738
-61346164376634626631343865373734343366366438353933623434356164376134353535343835
-30373730336661386466343832343366313234373730303037346338306235626533373366316235
-66613838643332333132646663323937636535653665393836623239396465386462303666633033
-34663866626434396535653836356238373230663066313161656465376338383863333163356363
-37636538363461336262313936336238316434363539386463363762376135626163643035653330
-38366230663530626438656232383437393237623866643031326562363362323630303033323264
-39656335343037393833653562353264356135346363306630613632333439386633613466383030
-38663732343235623666386132636134306134653563343465316162663034323838613265663464
-32663930633533373164386537313535623163353738643835306531643964306132316434393337
-33316562373936386335333437376531376665303030333236316532366532643739663236326161
-36393065646638656631306239666561373632313439393364653936346632386439326263376565
-35306465646364643164356432666466646137333032616466613061666630666239373737363362
-64303232373735366464346336303461626531313363393733306532333165333861316237646261
-64336639646330636636656638353062316165613037346435303364333463663332353062656635
-63666239363561373339356438623835343663666239376638656265636339373962366465356364
-38643166306637353938636536393639383831623364393137303232633738386230383265643763
-62633233373430663265656134646137666135396663383663326162653763363566333538663930
-64626265363061373035303265333632343765636333363032313034346266353130336666343533
-32323366343535306138386535346334666663366665343933656131633436633533343165613835
-37306539366635633236656635333164623663383633316139383236303631366531346336633063
-39333565666235303062626638623237613631626335396231326666396465333133323061356433
-63396136633031303463623332396239393230373537653832306565303161323763343064326337
-61376237313836666534363837653463323337316432643564653031386234306539303463383139
-63343433626664336134313935326563346666303539343565313366366134393532313964653363
-31383538376237646536636232626631646538323531373133636535303730393662376263643535
-61303036633639313731353266363664323137656261653631373131376530396234373766396534
-32356236646533343336393136336335636365666336356639366362663236653462363465393736
-64633765616566636364333734366430363737386439366565646434393930366563656431303464
-63376438616536643464616265303439333135373830393632353337623266663032653534323233
-36333432653166373035666162373566323034383264353861366333653138393731643935393336
-61613035653132343039303262323562376163663036343032373239646365313132666162396432
-62323865396664363238336463663138393337643562656561613662633330346431306138653631
-37343064313334383739633961313634393838373463316437613339383361393836386531396265
-34636164323863316632663630386534363637323533656232356436376262613937303430343331
-34643765643863643464306665653262656562613138666635623538363664636565366566636237
-65386631366139333666636131393064613338356631393333663932383566633565363562373061
-65373163366433363534376633653738633631633530323033636466633861633633366130353764
-32356637393737323766636663656231363166383531623537343133376664346433376563653332
-34303432373436313566313836663332646437363562363132393766633731333534636335383038
-31373139313234316361306533323137373264636464396437626531383436353433313063633062
-33656363666239656264373732343066343961303139316162626566396633363639396439386464
-34326461643764323661626330343031396261353263653936623334306332353335396230633965
-30313539653634303735383964353836346134636438636435303764626539656332353238353134
-38373333383437336364633866393364623266303630393061363866343831633938353037363032
-63666562356364633532396561386461616663656136313363373663633663633061626438393936
-63393238353630393363313464363239613434653130396666313937323263666337333261363464
-66356638643035333832393036343335316365313037343063633634386664373866663432353731
-31643234366565633231313064396138353937386434336236616232656263663535663334633930
-32623435393961373239653738363035333235373834633137623035373961393738336461376636
-37653839313061656561313636316130663837663836626462343437353434643031383261373462
-62633739653935383530353839343539396237303932376233393364373265633363373034663030
-66383039636633633835333161323864616635313233303236613764323463363866366538343063
-38303438353565643335383435353361373132633564373430323335373861323031346163306132
-37323337653362376538646261363836396533393439373631363763346437653835656665303866
-64356530623462393161353334666330623438313437663632356636613465363338363330306635
-65346462356233353965363062316639356330336633303539616532356563663035643362346562
-34343962363261613331376438643264343436643662333632613564313661393630313439313361
-37386461623664623934303565653662363662376237666635303564386436613732666434613662
-38316362373465353138613633336535393830343330393238313837663737336537626139393538
-30313835353464646238623332363731646361653464356131666538646262313862346336393734
-33373534373633363739633765626663303362393338613839343465313765613965393066383166
-30356561643333616433343937613461653666663134313934666466313364653330616238363335
-39313632316663653931346631353734386637393434343638366535613130666461623231666230
-31613632353238353333383363343032646562373239353338353637633663313238376233383665
-32303465623662336162316436303936616639366231663537613936393439396136386637386463
-66653366616465636333393631663165623439666266333536633533373964393864356563623363
-38653662306136386235356330343263373439636135613230626637636361323636323230656630
-61653538666166623137616466356531333337303833366365346134326437393231636237323130
-33313431303364663261333364306263376336373861613332663861626236373634636433666261
-61333231633332363566326233626464333062623939363137633437303163316462643361393339
-37303038656135373738313038376330613831333166353136383538633736353365643639376161
-34326461343537343237383433323864656266356335386363353834373033383932333335393133
-32623231383461366462376261393538633433333162643236356565643035393339636331353239
-34393831326537616162343335643537623562316239306631323361653632393635396365353564
-61613033653538313538313665633762613962303637366634393361623764303136633433376235
-33306332323430633135376562656661653432646633386265393130663430353131633761353232
-61643330313565313163393265646566656561393264306365643034653331346139656337383064
-30653439333631646134393562336534636431646266666533386162663463343537316435353238
-34383331633162383938313964656266393636343364356138356131623830623162653666653538
-36343931623635613830626162326566656565643939326634316638353133656562393066616536
-34393133393637333061626163376230393833316564343561626534323764656462666237393435
-66323336663235623038333035393963613366336536353034623638373061326531663461616631
-61343338663939626132336534636532376236393664623939313264653363323236383063396462
-36363636626564343136343935666435383931303335313237613533316562653162643361336663
-33373261323031326533663939643564646566333939653536366432366664383239623363626138
-39386565373465303333616164663037396262653331396166353334613731663563353436643430
-62346364393639323837636637643231383232613463633361396633393035323336613465653332
-31613636663930616362393531623863653634303331316363353734663266653162616234346135
-31613562623531656661613333633931303139323736356364653733376161616337353562326638
-30663037393531653764626131636235373738663064383933373164623361373666306562653530
-66613232393234303465326237313134383233663634633162643830376335336133646163353364
-32363335623164343131656661633038393731343061346461323430636530613732663339633731
-35626464653964386635663464663838353364386538643532386336633033363938333961383863
-36646139333462643836633038383061313235373136396461356234323461396662383432333331
-66663137356430656637653565313234343132386432313166306232643937613936646434396364
-30373433303466326564643330313765303466663231346164343265633562333539303865393839
-32633466623938306464656138376365643563663036323537643533363362313339326630313064
-61613638656464626164373934333337346133633262353235313863383463613330326333613139
-37303931333163373661373465356131313535633461646331663366663338656432616364313735
-39643163353362356134346630356638386332353136326661626539376534666135396464653233
-38356138623431373863346631363136363738353166336662313765356431383438636666653565
-37333563393965356439626232303539353232616162626339373465636637376462356163616536
-34313636633661663464323338646262326230653130616262386565633561393663353533303062
-35376133336664303831663564383730313962386237366166616336643236353466663539663062
-33663565356661323932353233363064646530333935303565366134643135376238356533616133
-32613035353063306439666532346638396234366332313531386537323137366233633936393232
-63306662333431353334376434353131373365336562316266633938313766316164326335656237
-32613334643136303664323261343266326531366261333636326134333832663738346538643437
-31306566616634323266366636613930386664306130333134303334373233663734313363616165
-61613633373637386632306434343831616665386234383865336464643465636231643562643535
-31323532383963373466303266303565306661663163363937373234393362333835346638383337
-66646463356530363637636334346464666162373965623265623938373761313831393736333464
-35613638633136626465623733316463393334343563626430366461376435313538373730653664
-61326635653065326139653934643039643533393236383666613564336134303464666433633330
-37316466656365653734346132386366356532323261613565663839373333393631633839306430
-65663439623338376333666537393864306565363036346539376539653239613333373237313435
-65666432393231326335343430636234366238306334636535613564316461393936373633356365
-31333431613032646136303038373431643139393833316565333538303263646232633537313262
-36343835326632323562633466373632326461343039633938363532396364623163663734396365
-38623236316466373536363433316565386138333230303364646364386336373830386532666663
-62663163303064626131633939306462633062313335313438653033326561373434643566646565
-35613561356364336235663838383233343935376439383338616331396438633366653162356530
-66356366633235373531616233323638343333306366373230653937346336376336333263623939
-32626434326232613933666436663363343137333361366265383831353639626436303232383134
-64383235626636663564333563383332613737643331613236303463323131663063633030333934
-38636532396131336331343233336332663830616134363561306362323836623064363464393735
-30323163633737646439643834363432386331656335326464303066663134646338323038303431
-35373239383064313937663638353736323332363961396662323162653864383933663665666336
-34376363316263396639346131373562636435663964633731373831323465623539366265646435
-66663135633737623235646538623134626135653036313566356666326662353866313362633134
-34373430626661616466613435636133353463313131633839643530356631356133653965303763
-35306633383062306439346231346466333463323166643038353764633438363166613766303066
-36633530353539643661656362356336383934653564616438326238306633323233383836646362
-66666235616433346230303438346139356233316234646535336439663966363431333165393635
-30383535336165396362636334623538663633646130623036663535363932353132396433303263
-61363938333764376137356239366264623131396539373031303565383035363437373634376564
-39343730666338663163636464396131323330616132323737373438343462383165303866393734
-39333766326630323332663261373262366663323437353432303166663335393435633662613261
-66383133646339656236646631616438653762383739333261633339653630353363366639386265
-32336332386132363130303836333138326633303734396264323932356233656435643665356131
-32333465646631666133633339613765306138316139633339346133366135326333653332616635
-35316333326663306138653231303233353831366331333663373130613231386234353838303435
-39636539363061633561383838386533633830386534353065653339643164326161316130363761
-34373338656332343631613166346162616636386334333061336366333162616333393861643262
-64336534343961363762383662333130613064636262373735643962313437346339643636343630
-65356634383839376231343134336462623039646239356234623739643138666135633537303833
-31613933316262643033623732653631396366313664616238616464343531343566383566636537
-66656338386363636464323465356235666464646435336431306466313764333438393432323831
-64663338393666643330333430626661626532333837613561373732633639666435383938666533
-66336235323361633730333733383533353338646335366434306333313737373532343236666335
-36353030356239336635613631363733383162346332383530356236616132653431393461643331
-32383766333366633764303666383637396563353933653463623636356632616263663031376665
-33326465376238313163353335303232613537653961633764663330616232363537663065393334
-33623735653837653934343838653938366361343963346261396334393236303936396635663937
-39316231326636393165303435666163383362386566353264326339613231303638613032333337
-65316164353630316566646661623565306364393966343065363264616562663530306634643235
-34393763323164653865643634656633303062633264356233616239313133613537623238393866
-32626665313730613236353335663837343135623161373138333534643139383533393263363233
-36363930353663313066373866366162363861306631613164656439626539353634383433386135
-33663530373865346165353133353536316665323037316363633533313630316234393738656663
-36363037393532316136636336613435646239613230363938353839303761366630336135636132
-33646135333464636465636335383637653335306666373538623637623339626638623133623362
-35353834643531613235663565306435633265393538326536323737666365653766366430383933
-30666564336562353736306163613265396562346230353130383332623361626165653132363963
-38313830356265613162376631643665396330643461316530333237626461303438613565326139
-32663766626232643539306138646539326635653965376162323665333164306565326335343665
-64366637323839333336303333613361373836396233336162343737646561383132323736346136
-31303064333637316366646137656434313630323464346135333965393065303036653532666539
-32333063613832303161396366393235363137363265393462356332613130363738653934393134
-62313934356639343263306232656463376365646535333562633237626336643061316430633564
-33663135356561353535353036376466356533346333643132383864636461656637653966636230
-62366337666263353462353931393733323939613562613631633366376333373537363139316138
-65376136353236663437663837333665666639623363363762646339343866623434636436626131
-33396531383764623264653434653732333532373838323931333765303534303831313037333332
-32643966393263636335353838366263323866336163383161613065383238386430383238653834
-39643732616336616536663735663336306533376261363133633766363735356261646138643039
-34626532383161386639333262333931313334356665313538613062633035623538666234613462
-63333130353036326262346133313539373762666666363434376132356662333834346432336666
-33666136316234366132333330643734643335373661356566333934393365356130373230376264
-34326139303532356362386634343838303735313436306233326265646266393534396336313634
-35323763323637353164633164626335613664626233323463393431383534376539353235393136
-38353839313366373466326332396134623130316663373266306630623431366130613436336234
-32303732396133333566303166343739646632333436383637633436396463383136623962326139
-37346664323465323439313830646661356439656266353637353464323435313530333265346139
-31643962386334643834323734303530306264656361323734366139663163653661306564346561
-33323233323563633332613463316664653035353862393561343332373130626265623664623737
-34346631636234303139306435373236383166383433306530306534643332353432303462633633
-33393535646638346165363738626239376330346631643761333564663732653033613437383632
-34323138373265666533393436323865303762646133373838313533383266363066623039313634
-30633461396464386161316164326633393935653538643930333335666539656538666335326438
-35356539303639303437313639353161303036656135383432653434303334646233653631653038
-63653661393165646234306565353732366539663237303630316664336263396566393238346262
-61323338663230333266633461353736306531336361313162633130393561336661386165653964
-38663134313461616166656261663064373866323462643432336331613737333933353863373233
-63613164303462656338646132376436336331316132383166663933356639663834393530623236
-65363736346261383731303462303161356234333135626232663565326234383761306463313632
-66333430383236626330656537633033343934373764313333383239316630323165366534653138
-30303631373365623430666134343132386436363838336133353532343163633735623034333436
-31306164353039626135333362393437633963616466353638363563626262313535376236656635
-33396661323037613566643633653533313134346436316533386135333264313031663634383466
-62616630386164363937386462643036653130366632626466333762633564373838393465626435
-63383435373165356363633836376466316230616535393738386234646666656466616638373336
-36376566326335373934646166646531393632326566313765313963646533653132373231626265
-32323136663930353533356665316433386233336435623562623165663838646562386363316131
-31356337323536336430373932356633616138313538663434653339626234363031393538333836
-35656264653435613264313366666235623834336236343565323937343633383431353438613331
-38383234373836653231356464613335376164303865316662396335356363333138316263306439
-32626161323439333464616164303537323265613961303463663465613461623639653366356339
-64303732343261313663633761353063313964303464336132393166383033646532343232643830
-39663432363263366236343232313161636136626432383134306234383632303563613836626165
-35333536323166656661656539343530336639393236623833363135643734616333626530616464
-39613431393362643035396265373864323166323163306161653234346663646264613666323632
-33636234643931343035633465613465643131306166623031343335353436623430366266393339
-33663837613039363564646466363538343638373336343761316566656464623834663435363566
-66383863393835313733316138656530346334373830653364313334343834663536363939613633
-64336639333630363038323631336565653832336332636538373162636231646330663336333164
-32396564336564626364366139386136353365366333396634383263336261346166633761376431
-37616134616639366464616635396139643563316234663430306165303362653265656635343464
-31346534643361393766323638306364383230363534656465386564373435643931313339656161
-35313737623966623565393736666639393963643832666532313834643430613434383866306534
-37623836653833326562663565376433366530373866323732643931646262666637356164633738
-36643464383839303363396536353665613461376530343934313165393931393438653063393663
-37623132343834336536343661613335633336336432656164343432363261626466643239656162
-61343764643362386562353934366632326664383033383964393632326264346661346161316539
-35326336613464666164303865353166623135613035393430303364376665313564346566383334
-39396139636630653239386338303465343232313934396561346562323737636464666463643066
-38636533393630336364633731333533353733356662353533336537363234383332386361626231
-66373466633934663037653332313036346633666132616666333636643334313263306365643034
-63366562313836343863333331326566346335626538383330623761316431643633313165323937
-63616163616363376539326331326637396263383335336237363831336632663161363436333633
-30373434346637353337363932326633393332313337343533336230373632633263363162613430
-64343832366361646338313438613338623861316563326433313233396232656530316535363433
-62396464386539393637396464306461393461336166356135633336633338353334343733653665
-35373933336564366235653531373435343535646362383331396539653539666431656139346436
-65373764646434346330306133623736656138363765306639303164396336653361373134306466
-62343132363438373166353364626162613530323530653835343164666261383233663830663465
-63623935393933636434383663306364343363643666363537313939353663383463343338313431
-30623166356465643165383061326339396239633233363035626664323735396330366635313434
-63666633316237613366613930613636343661393134336538616565346536646564313230663633
-39663134346563383766393730623464663337616632663632353932386466633762633333346361
-36386662643033656661633433623663323731613765663234316366303039643161653031383762
-62613461663263376335343065333037353136373662636435616639303661353363353033626235
-36383935333332336236313563376261646535396666643363663032373330363163316162373335
-39613034613030303366393166353430613732373934396633303563393939643836306333343861
-34353533333761643865353461373133633663356230326665333132356236326461623262366631
-32353863393137663362643664343261636131393962306637613231653730636337386239633430
-36636230393765653433303031303534396535316133343066666537326665316361316533636137
-30326133373132313665333534333861373332366337363337356135613035383965336133653663
-65353935366364373438356133336663633262613530303763373362616432353630663737626466
-39363166633737653366623238303431643634333338316238343938323362393530363964363337
-62653833393262643933363035326663663461353833663838313136626365373239643034363738
-33636639646637656564343836366637303433333866333761396636306231646136313032626631
-66343834316432316333623362383064363235346636306338396437326636613132363863636231
-35343563663534376363613266343036326535643734623539663864346430336462353036613363
-36363262333866393632653763343939643362343735376665353336653137666232316262643164
-38373465623535613065613761646565363062663832646138363766623234316464333062643938
-37396334373439316135616666333435626335313438653833316234653339643234633166663964
-30346536363832306437316261643330363635613137383537653331626634363130623162623462
-61323936613738323465643138633834663962633335353561376537653666383438663130333864
-35613238356631633137623266323732323937333236613939613630306437646164666132326437
-38646133636462396430346534356462313533366336636537623466663333396439383734626565
-65363539383839363162326563313762346461613539326466353763313935626231643234386462
-36376532613138386430646630363263613034336332623431323137333933363138336534303930
-61383730313733653066633635643430373537333932373737323764636363613863333561666166
-32643035333765396235363165623835626230633231363464646566653566356235306232366434
-39333936383033323031323237323430633634626265393463333431306137376338376230303363
-32376537336665353165316430353838326130323035343931646335396166353835303965643337
-35303634353635363565366634663131636466643461393035353237373365386432636365356165
-34366534646135333838303465326436333030623337313230613031363030653166346463396166
-36313464323764656132636137353465363434653035323462353135386638336338383432393935
-33323231646134313462623535633266396161353932316266393235626230376635666432613432
-39373032623635353033353662636666333533633662316230333462646537623538616562383566
-34346237626665343131376361396539316631623165356236383365663261633063326634656534
-63363038616664303635626637343163316635376232363766633634663731326436666365356331
-65313532663263366438343436656539633039613864616439326364613631326531656662356366
-61336237656136633361383633363137326430383530376532373666346366623933623161353335
-37313638333461393931333363363263313464386333663438346561303562623861393866373630
-65393536333736356531313138333936393730373634396138393734623932373863646165396132
-32333765643034356135373830663366636562333537663136633133373634336534343937343263
-35633334353462373036386166313332376231633162353964616139656132643066343233393061
-64613132313365646132633935646430616236383730306436373037396461333437373366626130
-35393039656264666130393038313536343039633130393737303336323138383437643464653935
-62646263383766643965383734333630396464656236316437623436623236316333343031613765
-30383131393163633431633535613530356232363530653032666436373332386231363565616230
-35363931383030383736613866353937383132303563313864396364666263366136366638303532
-66396139373330643535383266326430383935306233343363623938323734613937383538633731
-62393366303136393430626234383961376530393932323566376361303436633034323664613434
-34653432666536613037663637313335373432303139323831323135383762656234346532363537
-32646539343766363762333534653562343865326230646430643634343534616365633966376332
-38663436643564373138653533306361343935353763653831613763313362613330613838373733
-31336539373534386332626438373637643666326463383764323534663834623662623134343234
-63313733663837626137383137386435326465366462663430623265343034666131343332643537
-62626334633338393631303139306139623665633435623730616563313834666466396138346331
-34656435656563306161653730636138653861326436643835366264643566656136313038313365
-38643931396238613063636337383639343839363537623831343137393666396666306335366365
-32306664323333303738353933636138636165653261333033333530653032653263353338376166
-39343031666130636233333763326433386537373433666332303634643962343763363938373430
-30363137323464343461653135623265666464393139353164636366376434313964633236663338
-36623835363533346636323863663062306336326130333336303339373538363235653263336163
-66353462393332343266353831663937653636386564323133316637323362633565343736666435
-35366530386630346234303038336539353431666637356632643239653039343732363630623061
-34383532666564633839623932313261656439663261356333633366383332383662346230303732
-32303336653932623366323434323764623837343034303461653061303966396336343165623034
-31626232616133303938336665663436663237313035363633656232343833613137623039383666
-31363366353338376532343636616130633437376538373936343565663337346133653032353831
-33343333663434623639633737653064336339376339333939366234343636316637653561366363
-36326433646133623830666332323263323134313465393239633066386230643038373836633333
-66663630333965326561663762386134373539306539346663373666663038316462376235373735
-61363930363465653738616135363635376266323638616461323430386239303761366638313761
-36643936343031366630323162363336376639653835313538383633363132323633303563313161
-65363635623361646363343932643261343261373439383733656664303439343565303532363730
-35363265383734656665386366633132386438353466636262656138316638326636313663373661
-64313037363633336665326138313462383065333331633737636533623666333436326439343336
-63656163656633646530363266363238666264313939666265363262643037666664303937653734
-65363138636533346537636336383939613166363763316430656333396266636635323965366334
-37333161383537626532653562633236633461353631653461336364363239613366316164613234
-66383238353038336434383035646536633833613463386361313836646639393138333266353033
-32623837343333343536333562393266323736363839303664343938333566373233633534343830
-38316634636138393764373963363432376630383233623730303565363761393830313437333166
-63653164356633353430656131396434343634316563336630653731316439396232363964376636
-37366365356163343332613534316664323066636631306231396539346434316636376363323735
-65626333393833663839653630333734623630623861316633326363386634633631343266613238
-31336364353737636531346333656130336633393164313764373061346637643538623935323639
-64643462386361383761323537343631333839383464616531373932303331353333396564313464
-34363761316466623664313034373937346461626530383135623335363465633531326361383765
-64373532323732353063616661343963653862663632326233616334386161643930663633393666
-34663731336231626437346539623936656339313737383263623330376132643736653461393439
-34376634323266323931613065653938373763633165343132393037346237656133643536363833
-63356436373264376263313964623031323764663432303431663963626166356534613863646463
-61626337643938316666666438633565373965643030343830346638656430336161313733393033
-62393565633539323631653336376232646261623461363434323739613135656232653130666536
-36643832643230393866643233336265353931613962316537643666396331373364646533623963
-66376432376136393439343066313933336234376333373566363662363135393463643233353764
-34306636353034363262656538666566616635636139643733376236636165383766653639653864
-32653735333464643036633637613765616637646663626561366332393765393364333735336532
-64626338616239613739363435333332303666383930333037376539623637653236313433356464
-63336163613438666332623965613537346463346463383166646563623462333264633231353764
-31323865613537373338383036303061313461393364363364636336633230303336303035633661
-34343830646534616462336536393932663934663764643364356463636133333737613237356664
-63303261636266663230643562363366326637656432346237643939663035303563616339346263
-39656663363239303635396563376136623063333466376663373561343165356165636339666664
-64653834366239376664613935323064646338636563386362386138326337333636643264316233
-65343636316135633761613062623164316161306164333164353666386166383563613462346630
-64313037306530666539653032316237333335356363313636643732653365626130623262303939
-34303961633931393735613263366436313239643539646232353037636166366230626537363938
-32666234356263346366386465313032646334353862313333356634633339373832353134613634
-65313162336666353161353138323232613235346332623734646235383766316333373437666538
-37616265333933343732653664393236363063386530313336646438376137666334646139333662
-33366563313936666530373939396230623835376664373431393839306436346364653636616461
-31376465613564353561383961616134346163663066333638626636643337366537623435653730
-64393730646138623935346439663138663435633231356562653731656565353837303233373039
-65393236663830396663636236333861643164636261613664373236323934366537363361313663
-61656365663464636530313631376530343439646636353339323735303938323230663364363930
-38346630316238643232313463353034363337383831313633663038393631643962383637353230
-62316535393264386131653932646163353530646533633261623133616532363031613639376134
-39366634633833336338336235333438313038303535376163393231333234653964363137656237
-33306635653938313063383835306566346134396562396438373466626465363238633966333265
-66623564383262633366383265373636343765316237643831313437346430656634643365346432
-39363862393038663638366332333433656231336666633938633336393533643138303536653534
-62323562356437376161626635336636643764646534326236376536616430383636373432643363
-39356464393861366638626266653764636539636262363235386232396436316539643338643235
-32313966386337626331353939306236316162663865363764336135623636653166616661633934
-65626566316137393431303466633633343664333762626231616464376132396133636536363337
-36616162623533343238333939373139313665316433323038393763643135393161366266383931
-32383163323061356534636666623930383763653530633032636138386462356335636364383537
-30656565383336393038363366313663303830383664373061653432666266393131633935636565
-37323037343163303337373236386333346466663962653762306630393431656463366265376430
-37623631346364663038336533323433643661343138613362636233643330333332623033386166
-38356632633138356130396566343539396537373937363562303432656162396432653132363166
-32376462333735663439356332623965636266396330393165643964623662633239343130643363
-61633664633633346665326661326362326135613664663031343663613937643366663931656230
-63356262363466306232613434626161383031633165363136616334336664613664363332333636
-36393562656533333031346236666632653833643037646432353638383566346363633463376561
-64373461356663363136393739646361653935393536313830396539393331353138336663313961
-62336430366535303661663239653036396539313035393864353362396538636663306637393633
-31656430633763323737366236323336623830323862303839656136366230333138646461393365
-35633961346332336333383630333062633965373938373437333036376461376563373861643835
-63366530366331323531653064323866323062653332333732343838323734306563653966333066
-65376135323136323738663730366564663432323463626537306231353161353834653930346239
-32356137343430633633633732333034626235306339636638393064653966653337646663663231
-35373732316162616637336339363165333234663833386666353266363464313637343262646239
-61366431333130346435326366333035363430393663323566326661316238303431653634303562
-61396234616135386136346565396534616363333438636437633239356463326334393831393830
-39653561346436633031303735623261663432353661323963373237333330363939613961623166
-33313634376566323030313336376132373562616431663032653938356335323465656165393936
-62623134663665653139653664616461653532666664363533623038663834343663316239636335
-39666130666562303231633262663632313035643463623333333532326236356166613766666434
-32373739613761306130356535373830353363633632653535363939353836383039396639336565
-30383437336336336432343863333463326335636231313961373230616164393966636465383663
-34303035306164393963343761386664343231386335393439646533376134356562326264363164
-63313832386365363765613434653638383263623732646635613266393739303462366136366666
-36313439383737646236663235333663313933626131303931396338323166303636326166323434
-33343165363462323836313165303933656631393765336531666439316236396662623533376336
-33303938616461363238623661353938623131306235356231623832353065623030303264333431
-36303435626138653931363439323839643865396164633438343533383632363735326463636132
-32326464613233326162663334363264316235353530623139353231383733386562376261386364
-34353932373436343433613333376232356631643134613161346565376361306431316262303530
-66353565666638326634333562623966636436626437303937323863316634336535383837636262
-31316439633433313938643230623131336162336466663365303965343233366464623963386332
-35303966323435316136393039373464323832373061303536336637643865343237633132316330
-39313137653932666663316535623237303935636161643863666636376639393631323531356535
-34373965336534613565636163336638313339633263326564323562323734623536613531386363
-34663635643933383664396139333438373736383861323964326332316563346361373239326631
-61363536613034653735653538313765653134393339353933343164643232333865613034633137
-33313337343865646634656534396430303062313732333133383536616463633436393737643564
-33376638663361306461333937396165333836663033306330366661303165326262303232303439
-39633561373762333762303963313131663439636431303062663936386137363237306531303065
-31386161376161626430346335303761346633333962646539623961366563316339333432626333
-66633965666264306162323936616136313233613038663365646661353766353362623831306532
-37616135373139356362303734623361326266383966646463393038343136303233613764393836
-64343065616265346264383739366632336463383438356362643639363665306138346238333931
-66343931653334643839616636333066366234663662363661333737376239333231373864376639
-66613162396436386436353238383136323064303366353066623135373139636461383636663336
-35353765646639383434616166323735393134623235363261336531323965373633386133373033
-32333634366464376535386434613635343337613434343766663237333737333034353331383065
-64643239303466346630313635356234346335313062346361393431343734303163663232636638
-37663034326564643566646434393030326330316635383539396165613432646533623139383932
-33396533663234393739393630666138343330613830376630363732626530386266353461303464
-34663036356136336138346165313761333864376363363932323531623536346435366263303834
-39643535323066613765343865333462393037346666396161353937656639653430333562643166
-66333763643230363934653238376432383233623639343231313364333731616437306264393039
-35643739616138333730643362303830393462353334363462363566343137383035373933643563
-39663635323061613062616139306532376130393838653164373531666362336136326439363334
-61636239326137623430303663353561303366663639363736326662656336346139383464383039
-35616630616261656165343630643230336136353330313365393531326630343466353963666539
-66383831663465633931333833336634626632323739373739653135356266616633353739333838
-38636233383631303239393961623732313330393062346564633362316266656334623433376437
-39663362366230333063613563366139393037303239376338346362343266353538363339393638
-62366362336434656138643932623066356636326436316361393934626339333561373339626631
-62386665303635383431323962323837393463313962383537653761333265623830386332303463
-38653432363064363833613863313263306536633462346230383561376432343533663261323335
-37663234366638336334653336366438663739306636373865633830613837326139316166366262
-37393462363966653530376438336561323035643634623633316163376566373632346234306137
-31333932393964376334623634303439383436663265346565613737376139393734623030633661
-31313337316632613338616132623730356465663735323366636432643662613930326434623939
-35653634616435333033636438313863626337666439643134626564643464393262366332323966
-63343165336362363765393934363138663733346464376264373862316435616162633065633238
-35376536653535373464353533316134306135663865613432303834323638656664323631663732
-61633936643537313064643661363433663738666130366330313861326165666562353464383535
-37653365343062643965396634366630636264646364663134353533643866616237323333626331
-36623839373639386362396139343439633839666666303130373362643664636661646633643736
-33303866343731353137646230636136316266656333323235626234663435363938303934366163
-37643066363832316636393366376264656362636132373364363566363662633563643464383530
-65353661356537333034316439613961326230643237373038333361376631333931636661373932
-32396530346166383334666534316335356631653564666133656231376339623535316432313361
-61383338363362393361306530666435666439356534643832653134356236623838663538336236
-34333439386364643465663164396236373936386235383564353331333564633666396239303734
-32613230353337633936343665363166383064373361373966646137666635333764383863343766
-65623333343633666465353263333463343533366435333039636433653364343563336630316630
-38303261353466343339626234383737646164383435363431303837323232613931616165333665
-62316233303365343534383633333936643935613834396436613332633537356264316535336164
-64346566343165393462336634346231373135383165653635643339323237613634363337656238
-37303661353365336432626539366130663532643934313232366264656532346535383835623265
-66303661363333633736303261383933653334653232616636356438383962383930636437633132
-31373662363362343862666131386563396133353134633061353039303434633866383366346335
-62323833366262323964363036316138343962326639346331313962643433646235663435333366
-33643363343239323136663465643361643162306439353431313830663132666531613435633365
-38396162356638366461656634373139303634613165616462356334363664326364393262306635
-37393862376561346234633961336636656664383862343037656131393866633434393132363762
-34663837633031626262313834333864343634656364346238643037636633313166383661363538
-35323261613834303137383439343334653366656262386335633063393135623366386536353963
-36343533663137313937373561363133343535343434303135653235616637343939643136363666
-38323331373533653830353462623062623431313834366366633233363861303434383162353837
-34373733386163643732346634366161363265333136313063323331386561663033316135336230
-63323736313438303433656536386534383034613561326564613033633261663338393935363363
-66646330643137306263643330366533333531366461396230363632383436653465326334376237
-31623037363366366437306635326563663130666231353261663261326539323233313363333934
-66313864343061396636316665623732663732653962623161306138326236663738326464353237
-39356536313462323834386330623430316630316333636136383035313164663337623461306436
-65356564323038383766626435623661643031363031386235333262616237336464366334303739
-35326235333231343632343939616666366635343163393663343237396335333138326166383537
-62656464643961333531623736376434633138336263363562326364643062623238326133393865
-35663833316535393563313637386461636530623266316366306365646138313538376239323337
-30393338653063323763396166643932366563343363643231356636663633323139383063303832
-66373339366233323266393563323738363436623765313963313438313539326333353738643661
-66616266303863633737333636656663623130313061353330636635393864316536653164386666
-65343835363061623131303562396633393862636366346631313730313733323164383931303462
-31636164613032323130363361353837386561636633663762316365643435663365316462383937
-31313337393530643936353133623136346538373366643638663933396330636433313835353434
-65313661633765633735393337383432313639373432343065323133613932306135343835313037
-66663934383238643533363962393139616232353834633234393134656339303437666130386465
-36303434333934366461666438353333393565613331653031336466326561393330653232623962
-33313239626235646332313764383536643339313964386332373732643337343462373165383233
-36326238373337353466386161306330353633636433313339353437613439643630623537376532
-65343534613365306163623533393335353333383466343938343138336531656136306361623062
-33653137356362353065376539616631313738636433336337316665333430633365373239316436
-62396331643738326364643166616664626133376664393233633761373130336138396462353361
-30643336303534313463616232313236303339316362643966666338366137616539626666616432
-63373134323631643466646330323236303830663533343638353862653239366332393833666164
-62303638643634363964383332353034653064363961353966663831616265343964303438366433
-61383266356366353437653734366563363161383661396636353037366134393938626336343233
-39633737333638333466613534306266343931613639393362373333633438333732646639373763
-34613237323464316264626462396662653561633239303538613962376237336466303533383139
-65333934616130353831616664663031343339383936653834336338613063313762376561633436
-35376635386466666532373636636530646564396462613063633161626563316136353835353734
-66633930653430306534613566396362653731343865373165343734333161373631636131613539
-30333362333136376135393736623264636238636330653431643866623566383562303233333966
-66333561376563663436383866383032623433313935646536313231616338626434343234363464
-38323937386538306538636266336337303835363664646239653732393666306335333132626130
-35376334656536373533663537306434653438663232663764383366336234383861613739653866
-38616463383633666235323763363266303534353537633631393733366135336466313839656265
-65626362656632666666323464356432396633323931383233666462366139366433363262646164
-33633236343434386165303336363730323163313436303634633939633534313932363961623433
-34383833653137386665336330663637396132393232303336626233383830343939663738313031
-30633431626562666562373434356330613932306164613761373961343735326363383938303563
-30623266613936346234656634643163373130663939366433656638346435643533656234633665
-35663337343866613034373534666630323866663332656435343839353330393166303134396636
-31613536663462303162663530333765623337313965393263383337356132646431393530333435
-37363263623630333666343032656164666537383065656464383566393663366437323566653138
-36373230326531393931306636336464376139386333306334356235666265666438613565663837
-39386435636430336437616638343063326430653863636664646637336232356130316230376132
-35323338336235303639623434623335363639333962376235326561633235333362353838323738
-36313065373835313065653537313262633364326463616630323235653631633531376637336530
-34386138333565643934636662333265393066663765356334393966333830316564633236383531
-30386266373536323039666261376631343963333535623136303762383734383935663036643731
-65636439336163666634366431643635623136333166353330663035663439613232356231626631
-37396138353635333361383666353431343334323439613539613038613334323638656631633937
-35663037323538316564323861383865323038353933353661393663366134326137613335306439
-65376433366464393961303566346530313630666464396132383863376364663735353739376436
-35623966356264623433303434356162646265643436646464636134363865353630323037323065
-31336631393035393738643330633166383062316166396163643434326238343661383536356564
-64333866333066383762353832666166316330373230663633663461636636636531643338623564
-38313264316632336262343334356263343737306439386533363739613136626265323063363637
-64666464343265323637393434356130353264326532633538376466633735656164623964633439
-32366430386361613837303563366333366239376637306233386234336365336263623834633932
-39333830663931343166353863373631326232313435363637393564366431663162663463316537
-61333930303764623131346536316337363664323262313238393638303931306361306334666638
-39643838313165363634386163396538323562323539303439626631336533636162343533633138
-38353366643837383566333961666563643931636234353161386135346335393561666161646532
-32326532663333313932303438653530646437653432643438363933653730636264613539633633
-35653761333735646465666263653532306434313831643431643039653939346565643166643664
-66613336356636383430336236666338363438316664356563303864636539396237306437336363
-62356238383930313662366361613633376431646337376530356136386263633936316137636266
-34363735333861353036373534323562343634353935623730336136636166366463643664366363
-62633538646132616633373039373335353764303030303030396435653333616661633135623362
-65386461333566633938613637363936663132313565303639386630643939653533303066306365
-38666164653965363633313661633363356331326264396639333339363437616130633234303339
-63336332356339336137616233656539616438616332646234323034323931393837383963656230
-64646630666630333865636132613538663834376564643532643233626636633538323733353237
-36363532343532363165323339303862303238616438663532353732306634356338393466316532
-36616637313639383838383432643730326564313264303638643331363462386239376536333936
-64653537653664333933653130373332346530343339306131343865303433663038386562366364
-32313761653237363335616139333736656164383236366633313961336661613065643034633832
-32346166653739616531326532306335356238313362346163363133383161613838363866666338
-31336334646466373862626330346561643638303738376233326361383563633539616333353732
-65383865343066663232343734353065636438303236656532616433346462633662366165363533
-64386164616564356534356364316264376233613731656237373765393565613536643534636361
-66646432613365323431373333623439613537636139663361306461343839303637326531386637
-64386536643534326230636233366232323433623736646436376565313463623830346564643162
-34653638633862646661383934326236363435323861343036333531326133633631666563666635
-31383966373930383430336562323763333939313533646638316362363061386531333038653936
-63393938373435643365313162663662316563363763303230383862666230393863326636396238
-65383539613930643765613961323836663736636465623235326563376462386438623636323533
-36323465343964646464353165616632626561656139363635653431613332356161363334653032
-63393234363835616163646663616661326262393634626634366239336431303965343162363830
-61363934323732333231616435396131643633336634396535373632383334656336356163636463
-61626364393463666531653437383165626265666632336239656337323636393462343834633231
-64386339626535613061383065326139316436373530353535313761646464356265316235396564
-30646362646365313331303033356235633931313163366135333435666361643435383466356135
-31346637326538306634306333303430613665316166613530383065333234643738336630383363
-34386366653065666463613331653835373034313431363837636338383764316634333663336536
-37336633336433656233393232666538393364666663323939363663623433356236306232323364
-33626330373939383231316332653636376236303065353735666636333137313162626661383262
-31303831353538313834316239646538646338666562626132383631353736363333343337363334
-38396564613830633933626462316432623232353131353462616233346136356364653133333063
-66356236383162303533386133333838353132353835656637313237323064333432663036623938
-30363064383230373663343630356330313935613563316463303839316433333063616231303361
-65346461373135666137366466636436376461633635343232396335396538336331363134663264
-61376639663766363563643433393265363630633934623264383363613365623435656164626537
-64623961663635336430633561386433383732666537396465393663653035623333336139336666
-33633166613239326366343531363331323763326164636165313566306634616636303933666566
-35373366636534653965383933663536383335343464356665633538396634356366643731363037
-61663066666632313231643631363261666634666339336138613763633837383332653437656632
-33303166313763663430303133313830303862616362383765623966356564393831656331653037
-39313566376235653933386137393136393035343634653437343430663761373237306538653633
-66336437383864636131643561366432326261666232366162316438343138373636326430383237
-64613438376263343965393836656263666232343230656130316264376430353638633766373735
-30333265326565303939626132633936343133306539303762313335363438356435323661346639
-64386139616161646464386465353631626139333836643265383234323437626438373739313630
-35333139613566343835633366396335623231363466666433303738633336356262336333323438
-38383033653932656365363436353739666664626564306239646139636232393166613538666332
-35633934616466306635343461633432356532316236306135666563633537383161656161366464
-63616439323338656337633239646233643665363239393432623634613162386636323639623764
-35666462613431643832393530653030343338333465346434333165663038633337316364326630
-62353539393835396466343264303735623335303264343936333739633563656630376164656362
-66623036363930356465633661336439396332393861336430653862313231613537326536326339
-63613965396537646330346464666233396434626565356465316235383036646664346637353038
-66343834396664313239376236633265383762636566326365363831623232323466626239653130
-32303762636635346536313865323839666134353037353139643864643862363363353135666564
-61343538333033623961336331626136333934313562633333313530633536646562373833366131
-34373566346663346638346335333836326662343963353363633332333131373435313837343239
-66386463333431363764366665626332366466636463353034356135653836613065383234336666
-62393439356433333666383461363364316461613638633263346564623465633164356536393232
-61316133353761613534393562303930353934336432316634353333333966636664636339653933
-61626561366139626438383237383034663866663863646539343631643932616265373735633130
-61323762343766373761623331303330633164623265343038383331363861616261643130643737
-36633438643463356535396632373634356636623165376234666462366162383530343033633733
-30623663376663303538623230313536646134393138623237373964393066626336653132616535
-32666637626537336664356562333366303562363065336537636261633765646364326235313963
-61316165303332646638383936363361616536646630353235363865643862306133333064386136
-64353339353164623332356437666434343365343762616665343430346235396465396538613937
-37393562323563396131613966643262366663343064353034306265636164656239306232383462
-34343066333534643864666464626132313838376339363438663732316139346239623835396639
-39623133396534633937616635613861636635646465313237343930326434343263346234323739
-38386464383830663738636635313638623237303234616364643338303965303162613039613230
-31313830633135373361356463323561323562373631306437376339343033366230383832316339
-30656566653364653465653661623963643632383832623361623039323830336135623763643365
-38326135623834313165636561613137393635363831626331633534613738396362623161393333
-32353934393533623431646661396236386536303532613739303862383333623562633864663335
-35323766363065303135646431393562653466636332333362336134306531626434633534303535
-65623837306136373235316437613030326566663965346663373536373330383963613630383937
-38643662653337663332323266363262623737316631383638333636383833313834353331333437
-32623332663530616663623865303136346536623235396436626265326536383861366531363833
-39626162303334323535346463383335333831356338613136643036636330343934616430303264
-63613837363464353138336461326635313335383632346134623439386439666334383333323736
-66353839346365386562333661366335343862386634356136343932633231313065623234353563
-65326332633565633064666433393336646436343264343335336135346466386233653434636162
-64343931363162346365323137626238353363623961666333343336636435336139626232363562
-34313863363235636462303137363732316230383432653934623761613735616232343630303635
-34643639383333386132313264373834306364663030303039376430316339393838626432373932
-34663664373763316237656535386235313163656536313764306262626665316539613431653362
-38653264613831633630343066383136626361393031346330383237643962316137303430393533
-36323037373563336364633664643330386637336335303365376337613466366637323135336239
-65343861363864656335396564643539323734643162383261396131303462303937386430653335
-35363633393832366162626361663132346234363539656530656131343235376438323663343032
-34373063316463353435366261653638363266333233313138346334383734633430326262386265
-36303330633435613039396138303837666162376634363732343937636233623734383935353234
-31366266373631656330663339363439623334626137363736666438643236323930623433343135
-35666532613335316338376331323065303038363739313863356330346361633761373061366563
-34626236373131363735366465663032366533336166663338396463346330386431316566386262
-37623463353839626334616631646631306465356337326562373034666165323264353039623436
-66663363363134393533383963626162333262376534393436623634643533643865373135363634
-63643766366632333739323231396166333733303435353237623231373335633635326436356266
-32663161396361376332643537303238313566353038383330636331623136653235393537386566
-31613566623739643531306538653331643534633834643431616364333936626531643264336561
-63663839383433646334646565623261356433363134383561626535623235326266646637656433
-37373738643638383638346266666666303332656137613335313266356535333236376536656339
-66343330616530346237306465663166633066313362626336616537343163316636626630303333
-34326238663932636534666430313563353164313333656131333630393564613331333230323564
-66366534643961363036333861653666623162666630303862646566326261633937316461643432
-34363865613837363134326533653330383234396531363736626666616564373062656464646333
-34663031343139363535313435333765383565313431616335336664613766633263366563613865
-35656461383633613063303436636264333835303539383239323730366133343838313035326361
-62343838663566656332646232616463323338386661343334353933373236633236633434663434
-39653762663461373138373230326538653938336239646664666531646562636239313966356335
-62636235653733663631656537376431386637353830363134383164393566376530666130396538
-35656635303764386566623037323034356332373033353037313639366634613130396666343265
-35353464353638666138326263393338396437636134623564653736353263366633333964376465
-30343132313134346130663863323733363333653863363666616535646435383363316236373539
-32666661323239643563326664633761666361626637393462636531376665336133623632353563
-33356637313833343264353838363633623632653635346639346532393931633237646362653138
-66383165646636623362346137333666306132353336333036323036386433343838373734616437
-61616664306139356462613233353633643137316662383332396164616438633038393439306666
-34366539396630333861323965626530333635613835623363663434386238653862373837333465
-63613463643562633832336231346661386236376364373539633932373739343939306663303462
-38616535346162373362363734396138346164646330373032363739376661356534626435663336
-30376430336161323965623936656437336435653964643463366336663532336163363538626637
-37323833393637376334656331303338346533333064626466353431313732343633326465666662
-31633362623132316435353936633162343862643463613164316262623162643364636236623963
-30323963633736626638616535363065663832653239333636363261366239616638653863393866
-66303936326637343163356261313861616265316134333537643866363339633862316538643365
-33346437666664353064663266353134643361323766663065623531616562343264373737663061
-37613166633164333134313234383664643734633663613735336538366562356131343864383964
-64356564303131343036323564313631626362343861363634316163663532376334313361383266
-33636637303639303536383935663039663165383666633563666434363735313230373365653134
-31336432303663313730356263623535356330343834303764663030393934623330623562643365
-36333061626562643333653532386162383464323863326631663064656235326639623264666137
-66363666643539333761363164386238653233333863333631623930356137343962343439323130
-38363864393531366239336261376238633164653665346264396564623937643635623161623064
-62643032623865316638393264313361373933666139313930613438396665323337363062363465
-31623831386333366130613232666336356633613365383336326133663731623364346530343934
-64633234633164653734613562396364313063386363363536613566396431633462353839653030
-62363061326463336337316664616436623562356638666538373635366136613664323961373331
-31303732643066623266333239393463626433373232646462393231353539396364303261303038
-39373062663430373131313138396431303562613962373732376634326462333265333963373130
-66323863636366393234376534613061383033383036323632336661653832363637653238663465
-33323535653866323261326435313535653938623437396365383839616162366139383763656264
-30313361303161633164333466346638363765333636316562333436376365303037353334393133
-64363030353032333663363962663764366137356261313334613537353263373532373631653634
-35633436323964653632613632303462373765343935313638336265363431666662396165366137
-39346161323738366538613530376664633965633264663635333236623233336630303662613633
-36373239646239363535396534643630336163646263373464373537326362326134313365366639
-35633064333730333462633530623133646561326563663835383561663265663931616361396437
-66333365636536326234316563613161363134353166626530353438323735376466306663323464
-32666535333563326435353834666536613136346337663763633636653732616561386661393631
-62353134666332333232666462623733303564323865343437356530653361333433663931313334
-35353339653533616331363236366561383031396236333335353239313561363934343331343662
-35613363363737323933303230323836333333643138313634643361393330353364306662336334
-64386666353763336435313965636665633839653064616436373865666166323234663132616135
-34356662613062613839643433613334336433353936353433633366666464623631366334663630
-30353634633034343264333464303238303038653534306565356638613665366336616165396264
-66346134323539313862383231633030306662383033306230383266663862396661363163333232
-32396265616238316234333937373364376465613863663463393365313633373633653162366362
-35666164393938363461616137356565643666333236313838666665373761343937666133373939
-61343230343162386537376165353735613835313833363665383633663662633964663635666430
-62396239653066356437316163333165366435653163633936366430386539616663363634623533
-34643463376139303738383337306163616163346634663132366262313730343635356662303564
-64326564306165616230613865646139363936633066313765396238613230636235363338373261
-62626364333235343638323131323438336163313166343636323738323331306630653766303038
-30636133383364643461363934373866386263616332643665393138363339663966636664646134
-32353434356333383634663735373865303463373465303562666238363034656639303162366363
-65613363326639656634363666373934376666306538303062396538353839376131363963616537
-32646461396533383533356636626235313231646431323037363430666538353233656135633937
-37343231313430383765313238646565613138373230346563356235656234643037353833626335
-30643465623130366261353264316137333534643736393433326436396164373730303739636532
-30326339623433373439306531316331363239626134393736346136336164353664353737323730
-61303366383835386633643339376632616562343836396132376231323530366231323634316237
-66643965333830313162303466323533313464383031613662373066326533393033326165313831
-62336466363465656336306136643765616131336233356137636232643663626566653830353961
-31343630353362386630306438643664613864643232393265343666373662313061626363316130
-62323062613330393864373862623135623037363039383538363333376664613766643464386332
-32396431353963336139633361383934663239646633393034636636643333643066383739333466
-37633238633430386539346637376235306135643536613330623833393966653130366330356237
-37313461613966386162633135346334636535643835396663393735376661336135643262323564
-36396335353963333666343763343761613632643335363338333765373732633463653337623233
-33316531386333333235396339386430663839363662643835643866643434306435616664323731
-37303836383032383336646331316439363138656666653062373734386261356330613132663239
-36666133306332393164316337643865653763336435326362623762653263343233303938303535
-65633666616165396436336264313533346439643562366633373166633934636539313639636638
-38363738333933623138666465393537303130383838376565636332383966383635633233346566
-65656634326430323035626537343862626636616231383830636133623866313931346337303636
-64613432373662353131346139343133613437373837646566613364396165303533643361333461
-62383835616662366330353737643737383734653665356566333137333365353838663135356131
-34626237653039633964303464656439376661303761383530303935306264383965343931346562
-66663531376266313838323663636338363134353661383939323938643433336362353132363738
-33636237643266303938383963373433633933373964343761333564383566336130363766346231
-35336363333930316336646336386639623034663063343732613961326166313536383864383830
-62653966346466383962303436306237636138313631363966356662653838336539363832613365
-61383365663666303461393666363131613836616632333362613339613138363565373838666336
-37613963303830346535616230376234306631333364643765623065323636666537353039643135
-34663062646230626566396138333136353532643931323735643636306462396132303565333338
-36386465303236646261336266663866663630386335653764653434653864326664393566326439
-35386339383361343937663866303235366161363862353038346239623035626235323364633431
-66663433333030666235613733346636623563333739376361633338646438643030366464396561
-63383836666238626636306636633836363165383838623364313238343962303232323762306362
-62303866646133363866353534386461643036633935383938636534326462613663333364313438
-31636339663033373639366338383031623130643063303330346437656438303966656231656533
-39373633346135323862303761623635363630396439343039636263393362666265383431333832
-39623436353433623461383633373961383037386264336138306536306233626631636533633663
-35333764356435303131626136666665386338386136316137383537643030363561306533316633
-63346366643862326665363864326166636564366266373531343330313231383735333866313566
-31656435613963636261393864646465633462623061356431333439366665646161313431393364
-62333431363135663234363232626534366534643731353362326535383964323731626665313335
-35643933383931323462373335353235376133396363333665636132663635643564633561343766
-66313438633138623736643862353766626231396566326231613339653730343963313833366236
-33323262633831646662343362666339353666653636363737376364653732666261656330653730
-35316239396337396630613365653333346631653131393461356139373437363438653638643234
-36326565396330353632363135373930373435363761373761663362626362393066303064343139
-30376565396139323264653862373837356330356266353962613262336130373536353964373932
-35383362373538643434626535653332623130386133656361313735646438653936663134313865
-65613338306330376633613133333433373331386666373331623138616336323936623234626431
-38653336616136313434326365313163653764383334343563393431303535396365363535666138
-38323830343835343131323462376339303336373833353839303764376662306136666433663133
-66373865346261666134306531393030363561323730326133363732623137343635646334393862
-62373330336139636532666537643162303130303034643736386161633431663165363165383266
-30623634336233356333383361633762623766326462623235363338383135613662656163653561
-63396662623965396531643136383832373964663664636363353033653131633564653333626335
-30623736396332346230353739386137333766363263323833616335313336386365396130633063
-36616533643033666364353135343334393238626133303936653062316533343365326637313036
-64366238613064356366653962363937633263396235623731663635343138653163303536666165
-33626537623230363837366437623062623739623938613965623438353638366238353331343030
-34633939626130333833393831343038393266393332653436393731623237303938343165663164
-32323230666166663731396636613166643664303661376532353938623438313264616131616630
-66323237663838616138346433373561353738316561376537346463326434373730363631336136
-38386666306661663462373431363231303462643965356536633862373862376161393535646232
-66376137663032383439313836356262646335653463313163663765356539313636663437303863
-62663939366265336336323835396139343235303334626639343132356130373132363664653131
-61653539666636343334656563663035383632663931303161373664613061623537343536303232
-35663761663861333464616539336336643936393639633766366633366532366361396631346265
-66376465323266633465393137653231663661383132613636386139303639633632623034633532
-34613833643964653232643565316636363438316433376333613835366366376462383238653164
-32346633373663303632313939333766373538666632643235636434363365356137343335636639
-62333534303734366663383532653630623161633861343236626134646161663139653931326263
-38386637633635366438653638663962343661383039393664303864343534363336626665643232
-30333663326662643565326364353966643539303363343862363332396337333262356264626532
-61643437656163383837626336313833366566663735373665663236396366363234663732653135
-64613966323865386339386663383335323830336238656661326232353533316466356236393934
-35336230366430663363333338393137336239623066653133623363306232633131363834386463
-30343539396562383764666363623939323633383539643835363537373939353337663834313531
-65643366633334656138616238336666323131366432616138316531333863653935626461356463
-61393633366636623066653032343835356138353638383631643764306434303435336563373764
-36306433373561613530333437373339303333303266633464663531393561633566366663356564
-65346338623838633565313730623766306366386262626665663330393665626665393163623965
-35316633303332383364613166343266373536306631396461393163306238663436346335313635
-64323035633630323031613736373237616332306535653864333432386539356533383632353663
-32373036333637316634386263623635333633353830313163303966623435363438363437336235
-31393531643465623264613764316664646331326465316131306166626239363266663664323135
-64646363323166363862656439663463616264656561333833323963613337333565316366306264
-66383466373431303934636361326638386332663463353330643139363466303934363363653038
-63616563666264366365373738336463653663373838343932353036313932666434343833343963
-30643936363435363930626634323439396536303265343961333537653863666338303962636630
-36326666393931353664316430376463613530303839656166376433366237393436373739643231
-36323939643832383136333239386630366462313263323064313765613038336234373939393635
-62653732363162313931376332623438666231323130623263383361636664643661626336316233
-61393735623963386536393965656332363364653431643236363137323732323366376335663135
-66653463383839626134333437316338633337376632333064333931326461373532383437663761
-39383165393338373634663832383332316133666561346132383131633235313834616264633263
-65626534323233393134343334343834373632613066313465333034666564356132323639646235
-64616236383630623936353762306461386463346333356537623436383066393965643430366232
-31353933346233663537383638393932663464393231323966333636303838333337653062386435
-63643666633266653332356362616264643561353563656164313065383661643662333638376232
-30396361356161333735306364333662626461636439623765623930333862623365643937376464
-65646639646531316538343735653165623733633932343136376538636235363761393133386130
-38333730326462653630663438656461633433363439353765396530646261313435653835666338
-63663234626465636165653330343862623766313636646132343431636431363232643733656130
-65313336363565326633303233343966653263383963303439353739393431616132633739393634
-65316262653464316663383036376466613866626637653235316133376466623130346331646439
-38653530663130336230303265616534636432366234343739353465633534353131663932663235
-38656235653931636162343235643138303463303938353139643037363764346137393561636138
-65626430303037386338623530343032386365613934373763333531333736363565373839346265
-65343738633833383764656432616131343032623438656366323166626164633131386136383238
-61383565326665303635623136326330356332663130306239373838366432626164643432346464
-39323032666163383866373866646430356163343164326339393837313939636563666165613133
-30663737396635626435376664626331303136613330613130323231643366633232376161336563
-31323966316436393830646134633465303538373633373430366232656531313864346364373338
-32653963353235633136303736653132616162393734333163323262646339636532343432656332
-62393166646136363365306636303561396236393961653839393166643437653466313439666632
-65333463326432623330383431643436363161326430333264313330376664633761663435303536
-65616633373130643962646463393939663766373533376639326230323464653233643565306332
-39616666323232373537343037333333613734326430373730383064653763393333316566393864
-35623763353337366336396566303739653130376635333139626437636661626564373137323130
-61323234343661663263323237353639323864333535336366633635633364383337306632623363
-31666264393566393330366365363833393433323965366561636434376438383631363736356430
-34623861623231313965653431656463366235313532356461383630623265323038356165653532
-66393164303062613634656238643337616530343732346361663365336263633163333865646364
-33393338303661643463346238373533386131363638353363326331383239373665353835306361
-38633032623931643363393934366561383836663032393835303530623661633364643838653061
-65623366383937383664313161636166333962656562613035356631383264383363396465313139
-36356539343831633935343133656135663638623232383735306239323535343465346266363366
-36323936383235353436646131613835643765333963666165663362306362303735316161346431
-62633339613730616439373262383536353838633062636334316137666661353632633630343366
-37353333333939363334353932373066373761343630376339323231356533633536383065386663
-38623662343337623266326631633534613965353337353235633962303932666138373663643465
-30346466353434646662623435663433323537616430616138303431393862326634646232366432
-30386438343561363239356439346638346635646465376364316366626437623633323133633864
-64383166666432646531383634633264356533343563386533363965393661643261643666386234
-38386163363630363261383035346635306338356639323662333766383930656437363431663835
-34353665646236633162643031303330616532663863373637306564303466336534613236663962
-33363239613535373039303163376439366263356662303538333261323433376537643663303438
-39393730323437343731333732653432393462336235333864613334323033333732303565336230
-30353136333438396632383136346334326539303730613730623366343034346435306430623965
-66336134626437346161663264363964336531373336333966323737313563396531373633613135
-30663466373333373739323430653863383435333762366331313661353036323563313331316232
-33393038336437323630633364643434646538396132373163373634666633343035636563666339
-31346263356366316238666534303833393264346561626332626561373932643031373931613762
-39343266616332663163386530666635633937666464373562303433393937343030306136373434
-63396265353437383139653465373233373234653137386134316634303933323438363837643464
-39633464383263336239313336313966623464656131316634353461396431316538333962306661
-62613364393161623662373430356231313365663863353662663139336166333763333363396239
-31363033383333363262336366613964303531313434646166323430663765643234313862383736
-34356439336164623533323065623433316439373265373862303165393434626638313836653039
-32313432633933646564353663326364393235373037636131643032636563666633323465323137
-65303634316430306362333537623131373831353032616436373366346232303966336565313537
-61666361643431316233366333396637323731333166633535656161373831346436353466396234
-64613330313562613937393464636233636436663430616238656163383638356136626461383534
-34353538333065623162373265353737386663613131363437363064303565353634316266653631
-62336132313035303635336132303135643034353162313433633230623036646663663262343338
-63363365396131366166636463346565343437373765366239316366313036343734363832363330
-36363833663562303965643239666437613139353166633838653434616536373738316162666535
-37353766356233383462396466376466353437613965346639386530393334373939343935663666
-65366139663730366663633037646335373934353934396461333162626238303661636536663062
-65336266646239643132643761396533643933356536393334386265363932303564393935343932
-30313563303535386535633938633966363130356231333830613031613832656538613831346663
-61313263613466313265656662376236353137353466373937313964656535353266313632393861
-38346138363335383562616435303039386539653438656634396662346137643565636664633235
-36633736376365353863356638396639616361646230323635653933663066386633303733643934
-62376264373938383261653166663931383133316535396462386563313366396466343136386133
-31316639306361393230636238663033343262353336353236316435616165393763393030336136
-39616633326635646231376266623165616437353963393738333434366536396464353062333238
-38623236666634346330646132656435653966346630316133616234306561343539643065313739
-30613537646161343538313461633934633836613566323634386533353139633061313435633837
-65393466306432303633613530356632366663313961376466653733616665623638656362613064
-34386439616333363565656535303964643862356362663430626161653431316565323163666336
-66626364363232373432373432653865633037386239313564623031343766396436343037633836
-32383238396564386536303133626432376130373934636634333363613832303464663134393863
-35373930326466363234663336353766376561323130306561306130373534616566336435653730
-31653535313532656636663233636138663833316163393532363665306631346165376163623939
-39666366373362633236643566666139396535306636303834366238336234313230326531666564
-66343563333039366234393434356263323063303033303838393362356365643930346630653365
-34353238653837373131376331656662303136396463303930336638653231636533346236383362
-39336336666464386431346264303030663562393830376264313763326634626239313636303335
-34396437353332623739623266656462333164323133643030303463343233343566316138393532
-37373134313262383366363663396331303937373064626461643130343633643663373630313038
-61643564663565356336353932326633656630323861386661323037316661323036613931646362
-33393835373563306130626161353830323462346365613835393838363261393461343032366339
-34316632633162353733326564353465636433386463623566386635636332663964613636393733
-38363639656533633435636437316462646631653132323330333332666433636337363135313836
-61353530326536383231383033343031646366643761303439356261343965663236623133626434
-36613036373162396466633133663838323462616366663035653365353164646461333463646232
-35383461396232646431323636363039383064313363323734356634313437343462633839643838
-36653438343563663032643331613433313639656339346464343966303664643736613832653631
-30356261613131396131333966333136333666363238633066313364313064313833633031306132
-39356165363363656434363763393832346231396665303765623435313464636239373738646461
-37363635663031633665316563656533346664336534376633333438663238376639643461333137
-64353534343864346633336264633137303332333737323530623863613634356537386462666132
-33396662643861666135376635396230636465356166373833653164356434376165636361626665
-30336339656436656630376133373632396462373735396537313733616636376131343532616433
-32616130356161373263663661346437663466303733303537623565636530353363663235306237
-64353932636566373266663761623630336566336562313862656333343730353132666136366534
-64343762323965326530316636623631303439663431393265376563343039383233393230616139
-63386430656263653636356565626262373961323234633165313563636464303963303135303437
-32303162393439333537306666396231396563636531623236383830366463363934633434313134
-30616135363638386437393233353235393835636330323365323462663966333631383562303736
-39303761613338616466626436643139313039303165663366656665333065666661616535666630
-35366263356166643265333261626163643736316163313962336364333962616530356438373361
-64323966396535303531313231646337336537653538353438633663356139313966396139386565
-33313434373738623532326337353932666334613538313534626164613135386331356536663933
-66376464366466393537393830306339316365626364386332383230636538366565616335386333
-39323930366163316434366139326233343663336666363036316231623436363830376439613563
-35306233366230306333353565373933336533646133663638643565623363646136376631386261
-35373666356433346238356162356637316636383964653861323631393861316666653037663963
-30626661653566396561336264343631626336323438373436356130386464373034326430623664
-37363964643162643562343138623730643239303464373965363631646261396633366661666236
-35326338333061373537616531613833616533316238383261343736333030313534333439343863
-36636661623832613062396562333336313432396537333764373864383634343436373230363738
-61643137366630623666366465303132616332636331336362396332353565346631383135343935
-38353065656261356365373633376630333733633031363232376635393265636135666339326534
-35346166623861343664306538333662393039336531653536303362613166363136333836373833
-36653232363764383035373264633665353736346532326463366662393338333034376231623736
-37363066656561633537363838343661343438633064393631353061623032653130323231656663
-35646230623034383666613632613332666466323064663166303730633365633361323733313336
-66353739633635663230346436663131653764353539313766356530373231393666326338373238
-39376639636134333730373233633037613161616237393634313561383339356434313431323761
-31653636326338393535626638636462383837363638326261396639303166306463623163343562
-66663431656139303065376665613630356635653333336265343565616539353739653965613538
-65346132643661366133363636626161323632303231643965663935373839646461643265663165
-65656466373065623832663163343561656362336435616534636136613362623135383131333339
-31343163343134623766383363393833623865343764663639373762373237616335653538323439
-64306430353261663736363435313339323239366331663434323965313163666339373736626261
-38616166653662323933663931616464333134323038303837386564363134316237323331623634
-66366661366233626261616539373663303434633864363266613563623932396361616662313763
-37346366303137386165343330306336353363353063356266613331643638333431326633383734
-31346661663164336332316339336237666664636334303939656539643938393030646534316631
-35353561663238306333366466333765663338386434326637303537366639373166666630626136
-64613933366132343730356434323237653932663136336563363433616634386565646661653135
-62633738613630636366333837373263656335306632393265326433666661616262663262363161
-30333264343361373834313764666364643831643638353362386366373634646263326637363234
-65343037646639356238313761643037393535633463393232376337336261393835643832633036
-61313766373833313564643635616630393665666439646237383665366562343834393036356666
-34666233653739393939383233376232613563303736373063383131303363336637306238623035
-35333431333366666261303334383164306330386437646361643262393830356562613737393834
-37393563356463313966663638636135366136326139396239666339633838613733613334643065
-33306162383330323335356436363037373238383632323364386230393666333631646661376630
-33303830616338646436383231666532636635343434306466386135333834353335313165653634
-34663537366635613437376332303361363336373764666563613839653863666430356136613432
-31326233323634633765653038316166633233376266323764333334643832313832653532383339
-37626535313565616433353233633332383939616436643862376635393361376432393832353032
-32386134383132376563623031633234303136333063383539303465313562333139326663306439
-31336661346330646233333165366536373233303666373962336632376265633863393261393939
-61383634303461646638303933336565653264303966303330393561363132363162666362666239
-63343666653862623733366561623961646235303766613638633839636266353639343938653234
-63653366303466323465646164343363376266343861646331303661653333386438376665373337
-37353734383935376566313331333036313831633739313566313161376432393136396130653666
-61373064386533323162613438373934643365636663373033396531633962303561303134396636
-63376534363864623332386333646339633736623366306162616431343437363337626432643361
-37356464663262333666383337313532393438383934656239356231646462336132643034303635
-62666533343335636664373230343032333931336438336438396437623635663566353433646537
-33356161393235643761383465313530366337626330356136396562666365363833393030666132
-37353735363431646636643365663466316338333662356139616538346561316638313763663164
-32356137613464616235626164663931633834613131623763316232366130383964383036653235
-64353634656239613166653761393239353634383139373635323135306538373561363564343534
-37633261303438393863633730303864326365653631393735303437386336316161316133653461
-33363734386363613137396535383734616562376130336233363065373962396363336366646464
-38656562373162366631363532653931663834643736333563623733653766643665663836316361
-66643933613135633065396133643538666363633831306566656537303234383337663336333064
-35623233336530623535323137613431323136366137396132363239633539616330303566343833
-32396262303636346333623439353462313039653664613866346565346432656239323066393034
-62613534363033386637313964356365663366303365636265333430323232333539626433386463
-63366638633534303630393834653639313733306530326135383135346335366133656532316238
-37333035373034303338303937313066336339383863633036306237353038376533646638393763
-32373065306432366136366530346138333932626163396330613962626531616661643361333864
-30353365383133636330666132326238626161663835353239653839346138313930656432666365
-61613938626337376332623862636335393164363632303036336238346237333161383231363030
-33653737303666653665383630363437626365363964303838386134353632613464336339386231
-61356263353731323433
+64623136316465333135366631363039326236313163373463346138613237393263366564633961
+3635616438373363653734643366653734373465653833340a363262616431636163653765353563
+64376564663361306335333861633161333031626438643135616439303536643933376530383238
+3533366164373863380a313964623532653863636163373734656639313538346364366239626431
+65396161363664663864333531343832373136666565373234373662326637376533343338393161
+37343030303562626665623163336636623637313861323234313434343034383765386239353661
+34633733333330346666323937343764313065303334343135333532383031653663393736393133
+32666231633665393562393231323363323263623462333966373831663632326639363861333437
+31623732356435376434326338363762343464353830383331663632633135633063623233656233
+38326461616533303961633365353035363666396137333631353031396339643766363339636663
+37363137643239356662306464306139393533646536313937343438613363353132343232616665
+63613938343863306332633339313265616431363032336631306134383437643232396234626562
+33316265376132623333663362616537356164636232363134646665323337386264646239333237
+35643362613766393963346532326161323163323939663834616533643263356233313266313139
+64313862333766386137313735336361663033386132636539656539383465663833643235666462
+33616363343939653238393665623939343561373763356261326539663731306535363736373430
+32626133383036313135356630643234396634383736323738666330313231373065636436356331
+32633566366464613561656232623337383832323064653362303864653031336334653162616663
+66386264643235356361383261656630346339376362386631626539353365313763326632323166
+33666230303139313732386366346533376636313465623439613433343831616231366537363964
+62396363623437313664323430336366633436303839306636323832396430613931653737326665
+65633837376532643364663932393534323431326163366438353563303034326565373563616137
+35646337356132346464373933323734326539356236326339623966613333336139363135343031
+65373262616433623761303865623466353165346639363833346464666330373530356134373266
+65653533666530623733356265626337306139623331666463306265303434383337353239343039
+36386136663236376134396335313738363138353362353465663533333166386563356561313435
+65383237386664333735666434636236313564326364613133313033646462313831663062306163
+39396665373738666137663434306534373633323666373432616665336238333033653661356261
+35373431373136653363643532396436396564303133343638333933343836323537663432373736
+35376534323761393733353334666661393636336632646265353730623462653931323161353530
+34386434666438366561373863373362653562626339656433396634373561386331363865386337
+62643961326139303461303837373230393963643636653738623930393330616562376562373637
+38353734366234626230353164376233346363396433363933613963623639343730643566363632
+37623533353331353539363339646532666234343136613064373932643335373531636233306431
+63316166656534396336313939346262356431616636373837393963386465383733323332313764
+35646331626232393630393134383233613962646164396339326139326430333863646263316435
+38336136636665663861363466636238646534396433653837386638326532333062343339386661
+63353730336662643764633634313163393862666163373437336265386534353037613632643934
+33343666663465346365346532306364336161353432626339653636333336393831646536376638
+32666561643532363836336432616165313637306238346361626464373735313862393163343430
+62633130363332333662356163626135653437396463366432323532313731316139643861613166
+32646330626338303465666365303264646336623035333538643434356335383462363631313833
+39313232646331393965633732333432313562633437393632613633373232303632653034313465
+37303630393762356336303266333965373430623039306365376333623232663833636536313830
+66646533316238356539323332616233363737633631343263386532303830623363616638313766
+36326534393330316566653639343930373437383836323766656530363531323538636265626631
+35373635333361373932653335383230396362663965646662343032323137303435636263366437
+36386366633135633764616539326232366334316234363437366463393831383836353764643139
+35313035396461393164663662623534616636623966346430353636383335666534613965636266
+65306161373261633464623164663632393166636536346662303763616338393033323238613231
+37393661306432393966616331643363386136343166333863313938363030353938303531353865
+35346162323665643139356337323331386134333633303332313730633730343837313836646665
+38346232373364396435376534343239376435613436353065373831373630336234613639656436
+38663662353463353539363163343363366664623630393239383233383631343231636431363538
+31623434383461663537626638656662656233643061623839633138643962323366383265336366
+61373532396136346664656539393031353537653134353661316230626463333064336561643437
+35336665343636333164323066306539653337376662353636333563626366303663393762653161
+30653739373031323663323365363131383066363466636266653030626165333136393639616662
+61373262313232313831613065363830613930353534633562663464343265666430396237653866
+33323263373833653039656361613530333038653537346338373036356461323237656535646463
+37623562333265643566666136626236323166653434386137316538653763643637383466343737
+37366239636466306532626332393132396636306665633237613763656338363035626237616466
+64316165666335646339316237316331656466366364643066303034393662333435303061623462
+38633031316333633466303062633866646465633766616337376332356639323764383635343766
+37356637626166613132313434646633646331313433326165366664346564353436323864666262
+64633566343631326238376162336438616661343931346339323039653639336631383265376438
+30643334396261383937653534316562626138666463343533313265393532653934386530653436
+32636163363533656430663332323364323462353562323631303034616331386262306339396130
+30336334663832326565626462383066383038306266333432376232373262653065623263336433
+32646134393033333034366563303434363563303062346532323364356130633234626365316237
+62386264386238313538336438646465623865306437376432303433383938353138323739663466
+33313938313937313835383931386563373762366531633464326237353136646432643364613433
+39306636666533303631613630306363373165356532656462363139323162626566316330316237
+65356333346163653234306538336133656164316365316638333139396437613366366432626633
+31666338633061383733313835653063366530633264306432663131303538353665643133353363
+63393563326138656333663133633264643461333138646331663137643434326631373236343662
+65643336323332616537393630373237623332333531346266353962623633346232316161316339
+39336133626238656331343236653431316432383163303761353733623031333730306336363463
+31303966383030623339383337363032316338306565643239613664616265633330616239326633
+61316335313466356234393166363961353964343331383132323666626662633265636439363165
+63336132396665336533383431303366643666316666643034383838336237623638343031633839
+62376432626634323636626139396431626435363430333063333431623362303966376537653763
+31633662386461323662646235613839303965623934373632656564306133316639303864633035
+64356632323337333336616336323030343434303866326366623532646362323134336436363962
+38366437363063633963383063363865306330656538363330653331333239303230346230326635
+30353632623361333035623438393534653161613234636565613263393337616166663934306361
+34386233326139306665336337356362633765303532313836663535363166613832633866383366
+64663264373264343732306661643137383439303634323235643433333534396161616562316336
+39313030626261303837393937616630633939343533626266653064643530646230353835366266
+64376539376163653236326263353563653634363363613263303033326331353238386232626134
+32313033613435313033333530333532326362303366653164646161613538343936306664636437
+34656539663332313634363166643662646434636133646638326338323639373561666566396239
+62653634373934316665323232316265656634393130383463646138353361326530626565666639
+30643366633065666361653031396663613264323730656331323832323936643739666565346531
+66666536616462323638303230343062666536613366616539363965313162646361343463343932
+35613039643663656164303339393438373464356137316131303937336132386661336264303766
+65363534363834356530616433313736663038663964386638656438666566316432323237363036
+35363831663532616165666437303134656534663236333535663266636636346430623264343661
+66316666393135386437323739616333383435376464313336366139383434623031653839626535
+63323166306365356139393564656531313139623565633337363131346464623936306636343337
+32623966663838313030643766633330363138643838666330323364373737353466353330643530
+39373436643830363238623731343263663536663634633139656439656435383137333135346431
+36616330353062366431373161613735366539353566323838656130383739653362663561646166
+65656232393631303333633338346665616463343164343031373163633030336637366634356661
+32306134393462396430623836353365623436323237383362383732663831643435376431326163
+35393735316638383530636539356161323332303465633065616363313131313864643336366363
+36326134373666383064653364363838333736656139306166393963666163653132386538356463
+32373463373436366431306363326566663436346361633535623137663637353737663263353533
+31643137373162313464303963383437623733656364626539303932653133306361363463663933
+36366366633332636536346237303431633363623232353263366138393466656339626438643037
+35633334363532383931663336303964373736616564326637396235633039666161393963366538
+32643830303265353737663633396630393536616236616664663733343033333963363036666562
+66306231333737656337653866623938383030656638353261346664333835313463613265613661
+66376536386566393336373164346636346430633532306632343262396636373539386131303734
+30393130323663383063383762313836643838383836303238386133323539316563623264633539
+30386463633061373139396464633135363636623638623436353336393239633038306133646266
+33363037646633646534353930383733646338633739363866373063363866396637323162613730
+30373562616238653832303737343763396439353639396332343761306531626233646235376438
+36643764633237643034663833356638376230646339346131386633353431333736343830306662
+35653531626134346263656461386661633435343565346562616531646337393235666363636132
+39643132663535616638623830636461373435373837653837306132636638643033633362393764
+61343465636536333734373565353866353937353137636566666661643036303331373730383734
+64356661643839646133333038633162393365613031393634376432646162313662323336623439
+39316365313136343434616334386339393532366632383562333764313937653731383663363237
+61646366366566356538303562653834653339386565356336353461633135613833363163663839
+37363164353230363161613862353363303863393837626538666534313230383563366638393565
+64653236633461623139613731323833316539353161366530386137383366373863373632383466
+63663731333562623432386366363565346565336562643664653938353232653837623039643337
+35353036626636616431366334363734303739303665613364333334333063373735383734656634
+30306132343536393532646132633562316135323333303934373236373139306536626535626362
+66653463343465626230666335326665383830373734623233343731383831333133326230656333
+62633061306134393639633436313938653638383262666639396531303465363930633664393132
+61363966653732396435393138323730663739353635663763393039613662626261623532616631
+39636531666334353466316630666162376464616331396537623364383230646334633930376137
+61303762306361373634356338653930636565653266303433333965356663643933646334373532
+31373834613837663930323035393861623733646561306330643364346364343365356537383630
+30353563316661303931393264663731373339356162303335626162316366616437663962373732
+62613235316665633364323866313261333433343237636133616238366435303762326531393563
+36613165373661383832663733393231636535326235363165396365316634363363326162383034
+38343534336537653830306335323065653064666136633765656363626337663464333636613135
+64353766663862366234633836353664393765363431323030343432323065383938376634373134
+62643262663866636434646362386433306133303161636664613435656265666536383632643661
+32663564333638353537396538316163656337393238353135333230643733633234633863633666
+34303538613466353136386465336638333734636166616361356435353466626663663031666361
+31353465316361303837623030313162343132633433306562623430386636626163383537383563
+30353232663030343364383939346564616638646331326434333364386566626135613638303061
+39393432613764303838393838336262386261363434386230636135366539353664313738643364
+36643137376335616432653533633235653534323664336663613133393538626138366465356333
+33346661666361656438666465616465613937396235653965643238613836353531366161366361
+30383434643064663831643230653736393136313562336134323765363164373431343061323237
+34653738663639353631663363653830313064343137616161373030323862656432393335323738
+64633538356461343936663935363735616631373961383339636630666339626238353432313439
+37643839336361366266626265343633313439366431396133623536663332356162306233353131
+38656536323932663363393737366366376564333138383531373032386663326662303130393134
+33323765323062383830613261363965613561343138386466346236366464313736643234653161
+30303932623735653763373139626232396430313030623664376263373164636264306330333838
+37323131333434306530663730336161336262366163633136303863373933316637333937333964
+36643939306361633761663633653434663635653965623463613637363935623061316530333937
+32653539353566633935616336313662633337633433633233346636636161666437333563363136
+65313863616232323933386136363661306539383935376336323633316663356137373065623135
+30653865323734613838623963376335376563343739353966663533303363303638343636313465
+38353433653538633565353632333633336436376561336638363830666263383566643134363639
+33343265653837396161616430616538393563346631323736613731313231636638323232613031
+35616230613265373865353162636536653935633062616335623339316365386464316639326366
+38666666663163623463646235306339646434303831616130343038633537616539653666393537
+32383238303661353733336266366636396461356261356435366266343536663364653531363436
+39356534633764316339636665636461386662373661303537613034326131333434356135313937
+32643861333466333266666331303465316338333830633734303639336535356338373235366131
+65353138343762656530633662336264356137653535643736306336393330383466373539303238
+61356261366337326132653533343131346137313030363730303461313565343730306636313939
+33393866653536373966633764306336363237356563353730373939353335333339343433346563
+62636465623965386134356665373165303639323033383466313362353234356464663932383831
+65396165663838626234633061303534666338326139626663303632363364336362353433306434
+36386466626635336161363365663737636338323230316462333863306333313539303266653261
+62663164643035316438393634373330376266663833363134303666636561306238343839656362
+37636531386334383538663731383966396133616634353461383135383130656530633730363830
+34663535613633366261323863316634623033393331643037343137643231356437663836313431
+32393062373264653939633765323266613238623464616463303338393637643635303266333061
+31373361653939346337323634636361643962303562323665666230323031303265326466363031
+63643730613833303834346331653766323232393539343032333538633637336238323239333333
+64666564623430303333323831636536386265306430366561313732306663623664643966346261
+31373463393833376263376336626165666461376462323132366163653737663562333930386437
+37353163396263316562626139373162356562353733393263353833646164636362306438336466
+64393365633232346666353837326461363065313662633735393934363336643263353337633062
+66363362616539666138363930356431396564393434386330613731626564303535346566326464
+61333165636337346230666461633462356465636537643735653030333063383931333233306361
+30326462366639616531343531373365383632373762356661383433656662353731656464393066
+38373032383136613762353530316631303963613063376239663835303239323061326330383337
+31623961666534393165663939376531353333363534643038363436303765373762633338633437
+37643865613433323661303037306430343362363430383230396539333130303030333430383261
+33656665323638646266316464646538316163326132323731633735656630666464636563643836
+34353839656633393166393030623061366136623463663037356663616464653337626235626535
+34383636643035383365313563663437366634386163663438303965386136396633356136643064
+37336565393335323038386333363330303537323438383930636165316533313837363863306464
+61366638656165626634393861363035613837313931376166613933376136366434343262626261
+38386162393730326430643631666137376261316362373065333630653739343961643864623735
+63306435383131346566316437313437633362316333376437623965306634346165626665356661
+31646464303539373366313266616132646632653036623063313933643232616232383839383031
+65616538616239666264386436376536323162643633386364316235313335633838646436656263
+37386536356365333736346662386537373462633937356262393730646439346230623166633162
+64333964396230626531613265303238333461313166336134336331373432303533363362346536
+65333534613864373235373532383938636637363439376265353162646466356662636139313266
+61393363373865613738333434663265363233663837613865623065666530656565333935633963
+33346539636461636632333861356265383838656132333763386333323636376363303265366662
+34323835316530636635333032636564323333303438313436323634303263396462633732653135
+66373536646166363339306266613831383866396536636233663935623431623865336633653036
+64636162663136323938346363373135386566643761373562643330333937396165393530363463
+33393066663836366437666261343931623132613730346339643966643939336665323964363362
+35353537383061326131313638633338336631323931383061663861316638613164393165346661
+66393162646664373264343433373034323066653361656263313531646239346635613238376661
+35353265316336303336653661653535663761346366656633663066346362346266623665616232
+36653234636565643563313339646335353765616164333361323662636631323931383031653935
+38633264346333393630393437323862333432373261323337313166353431663937616262343265
+32663763613330666366376139626130356536613161666438363365636361363763303166383930
+64326532353966323032373563623931326637303762626463386461316333666362303735383034
+33383831353636323738363330343430333663343137393835656166343564643831303161613438
+65656332356331323261376564376630383532616465653336646337346531363532376332303665
+65336365353036356631623761643463613732343361376165656230326361616632373762393830
+39366439623834346637666261306665306638376239656337303166663135373734386439656561
+35376361336564613163333632646338326665373562363439623238653731323134373834656535
+61656133373831383030613661616638306432376331306638333236636132656663353661636230
+39613331316430633638376165363934366130386364636330323837396139303133323634626138
+64333862386239653665626165396539636364313564663634326635343231616335333032343839
+38656438363962646362393335383564376361306538383337616566393762666635623235336364
+62613831396461386633353230383338353863333939353636616139383131366564396330396439
+64663863303865386533316233343036393133653935333230386463616238353665306661326264
+35616261366464363935386136336538363362343933326130646563313462323533306561636363
+34316366333237316263643566306666346265323530336136623838376338346262396430316335
+36663934663262353363656636336533616538396162656138393138326362356663613161666630
+30376136393530393232636463363265336535386664303630636663666363366137646237623433
+36643232633930316564393165386530633630373065306261343730333765383139623466323462
+33363737393162646137353565333566643337343232356531383638303339643765656231343034
+37363266376466623461656239303964393064373632313731333337346339613936356562313537
+30336162363262616536613764346435326264663230383631376164346362633831313563383231
+61363833646135656436393034633637343434396137373037323532306466613934376563303263
+34653365393961373131383130326166383039316139643930396537663530386661366362366336
+64636536333833353636333934373930303133623933633435663762666534636365656566363231
+62646334613630333532616433323632343561653663313535393561633334386539353862646334
+34633735333062333565313737346633653836396334613639343362623165333862333335343137
+32646139313861646365326566653239636532386130323761623161633830363864656333613165
+38643530613730383532643933333538333135373162633431666337383464666365646636306566
+65313632633637356236323265343637666530346366356439373738333563636533343037393333
+35353432363831303965376538623865353236303565376261643835643265366666613939656330
+36626164366234653130623763633132393466326437316331386662373562626437323361613061
+35663033303161393034623564336235363865303938633333653731393333343034646133663435
+32633438303738396236356331646638343563316138333438636564623062646430326363356166
+36306363666433643037373837313363353238656364373236346565626333393561383239623964
+34323264393135613237373533356264323135323561393064623335303337623836636566616438
+34363264313635376236653666663366623238356431336238633234623331653935616365353664
+65636139366134396565326135616263653733343835633939393231663632393031376566323339
+39346166623534383366386465366435613235653666656161383139323935333331663632326333
+34306365393133323939353863303535656133353036313435376538326133393261363039333235
+35646239663730333032353335333838613362663866666431346665633333316330666162313732
+39643365623233333362653865623961376562623238666465373636633035326266383866323461
+66333331626237646661306539393561376238353037303433333065383137366534626365386337
+36623639376139326333303636373435333939616130313366326562343064373465383937646265
+39396336633831633561333537333438353534353762383761653931393238306332316562336330
+66366335616337326439333562373336663030393162663338626462633036633639383830616335
+64323934363431346630373331373066303333376634623536383365623264343839313032613230
+63353633316138363539393838643835313963663337623332313633323764313235613863313433
+39316234313934303338393938623163613466313732393833653435303834376135613830333430
+30383965343162653938393762623439333861616434353635346137633835366638643231313561
+33633032636633626464393662323062366338363961313265306662613730393731336562663462
+37666237333832626138653534623463346565386261393235623831323566343339383734386534
+62336237646635383635333537306336333031396433643135663039346265333337333964323163
+63303163616164306633303134323538316636656664353862636462613932303337663565306364
+30663733363837306432366533383462663338306363303736663034366139346536303364653264
+61616532303761303730386262306432383132333139353132343630363565633961313561613838
+33656538363438323231386136313033356433616639396639323039666361333062643637623333
+37663963643032663632396566393964303463663232306137386466633935373837363839373137
+30376439666165323530356536323132656234616135313130323532626135386238373662653630
+37366163343365653134303434303563643639623364336235323931633432636538313264636437
+33663530643064303166613338343639396437653633393466343936636334366632363434656236
+36376431636436616330613735393134306431366465623462346436646263613866626236396436
+65306139333637396264636262363261643562363464353065616238656637636262303830643861
+65626139636232356164376362623833653436633865303630323631346633376635303064336430
+61623366626161653234366239613461326164353030383662623064373237336565313930333639
+31643263333632633631366565306435373263623863653330316535366534393063663436646662
+33626130386564383761373563376562626335306233633136333737336664363063336432646538
+34653862616465303864306664336266623930623433363162316632336638376563313836373863
+34656461656132376430323034323861386437636561313862333934383665313834396438626438
+37356465623036306233303830666332313231326533613464653036663134383930396164356565
+66623239613539386136643662343931636430393932386337303538373335363733366364313663
+66643862396434663961656433386330313132313232663936356665366462643033353937313561
+35663866303932333437386135366161303861363638313865633262613339333735346464656336
+61376230336266336662343661356463646631346639663965363936396166333061623362386634
+33363434383462623937626630636261373461643863626231383466663365643538633364366530
+66323031383765343262333035346262663830656465393236316433346261383335633762363834
+62663136616331653664363738316637666335663734373032633331316135623932373133306262
+63373732623838616536633836383332613238373934623862396666323831663736363130393963
+30303639333462383731326634623438316434643931343836333538343166656362616365343834
+39333032663430363764366261653938396532303965363663663563636335383336373966343665
+35656264626538316265323236313764636165336462313137333737383666643565376262363161
+62623762396566333531343836653030663832353465396334376364363965383736653938366462
+66303064383162623636383933643636646663343862323336326630303731646162373164643662
+38646663373235633736623764643038306139626436353530666362373539613638336530376465
+34323538346139343861623036623337653337633439623064313665343263366265356236356537
+61353332663166316130663938363938333639663461366565316333646439346264346131373865
+34326630666366383439353964323831356438353738363635383930656363346463646639313432
+65376135363735633064666462643030396332323366346562316130653963656230636362633766
+61363137613234383738316337373034306439633235623337623365326438313133343965353161
+61353434313965316564363735373236313031333064376435343030383932633365363933363138
+34376661343938626338363864333132346630376630616565313838373365376232323133633762
+30646261303266343066373363303862336464646433613738316366643437646461323332656561
+62616335313761346666383036353636373930626332383566346362326631343061633962373332
+65666535656438633461376533366263613864353232333935656230613165336566383966653131
+65313334613462623666653639373934623166613639643531653236366430303335646663383232
+39383537353438633839396564386434653430323830376661643237633265366638353835336636
+36333664646661663930653865643662313634656432316630343966303663656132306362643332
+33343163313139346535353538623064373432623861663761646238613831643766373962626235
+61313166646261633763323631316566316261336362663230326265333562396332666536326132
+39663562616235353636663764393135396630663336396563316237626339613265623461396138
+31613364316661386435643531663964653936353366393564643138616432613733626533393461
+61323039336232396435653861376162356263656439353438333164656165303830633631393035
+39616238336530663761386531393964323762666531383463636336333330636164323437633833
+36373133666663613465376135636333613938363366613334663964663861613432356461343466
+63616331636235636334646334336632323863393932356435383034363136393533333562633334
+65643762613831313661646132353763386432623966636337376633663130353031646631323937
+61663164376638636564396439393536656232663032653230633931616130313032363638313462
+39313064336661383636373731653239336332326133653137373031373335613064316433306231
+32346231383134316435356638363533376437393962306233306563613161633334353362343634
+66303238343534343333303266343163333238373138663233303938306263633538633435633064
+30353863303864303930646331646136623562316333663262636132366338656639333538303264
+62623261646433393261323663636363383532376638383235613364396361336665353431323963
+63653732623066303432386232613361396266323030396337373361363239666562373864323564
+37393834343765373835386663336335633838383063353839373833633265633433653863396562
+61646435393333393136613234303031386431326165343663323363383965323166366339373738
+64646633383362336266313537373837323936376636303236386631386263333162306161623233
+37303163363632363230663137323036653831386365323833356462633661613232353964323064
+34383565613834383639623961383564373162323064336137356266616564353237313231363465
+37353435386538393664643031383338616461363937363232306363353766393237613362366532
+61646134373863393463393064636561653838346435393137646262623364623737653836386137
+35616362366632666463636330363765356439666635646431653436313163373364323161326335
+35363833653666636363363563666131323535663162356636616436373466306439353834373730
+33333263643733653162356130336662666265653265343136663161393162346436336631313566
+66356633613264643534303934393833663933393733363563343864363933616461393733636433
+39366538356338373162666136636537396237303337316532306564666465316131343331363534
+63373336653836356138366565323732373931656534353162346238666662356138373530393536
+33643761393634323437646234643066383435653434316335616330366333326237343634363864
+34643961393434346665633466383161373633373863393330643534343436643338363930373965
+31373266346163666162633036346330356634353733626336386530373365316539623330346330
+39663639623133663135613863343264336262666430313466306234353236386237633536306630
+37313038373130333766663739623461303566626632333337306636323566353335386432366638
+36666636663833346163613263653165666133343662636164333463376231656337353038393965
+65363765663264623966653665326137663763356435636564363633333535663964646535323334
+39636665333466336332663532393038613936616139326231366436356232653034356562393663
+33613461396234303839653037373633303735373462663466323262343761306536313134633162
+62336534623666353839343636643862393434643934666565326266353732316562636132373033
+63373830343464333361336662376335336138373365613764326662636535373035323835663566
+64396663376463623231333133353135623565303331646330313336343839383630356436383138
+36626436613561396636653936643436333835336131373234636530646565383230613461353334
+33613437626466383739643063663663623363626461663832633832363462333762343262373431
+61653562363662653233633433306335343233326133663334323936343535623231353836616136
+34373531393939376264623866316233306331383361313737343631646135336435636662386363
+38663462666631333362333364333364613766356166633237393138313833613836313765313334
+66393439376531666138656232373063313666333637313361653031633263366537633233376561
+34366461323564356632346565313937333666643037633037343633663731386165666530643437
+65613166626563643566343566336566353163383837386363316431393035663265663630313834
+33336366636333303935376265666535346163623134336430326662326236333135623333656230
+35383739383431303831363634316331316136643136363633633062663735616466373038666234
+62363736346466343733623530613533633237373237646635313563626535663966313963356363
+31623064386364363561323137363466636234396337306636346136633563326363326664376131
+65656638376539336539333138376335386339353934343230643932383530656431356230356433
+62306233306133373734383739663561313335623132376333336336333637626433373236303730
+63316630376235313133616433323365626466333230346661613362393231613435373732653364
+32333064353962646265613935353038656666613837636430303166386465326630356165303033
+37303931396166613164313138383561373862636263366336376664363464393766393135333236
+36663232363136326533613761303064313730643861653163336363633238653537616261376161
+64333930303265613132353664356633353038636135313338643832303663313638363361346664
+64366435353465373030373133373936366265393931663766656232386433663438613861666532
+39633535393263353237613334383365366263353238656434386665313661336632653432343964
+37633366373334663465306566616362623863383162303235366339373438346564346635376331
+35636231356231343165353666323438636364653463396130643136393434666364373939643032
+39356163386530313937316331363034643434653838643130616430616634663837646438376564
+32613736383438643763386663653330633064363961666535346631666434333135306536393432
+35393238316135333163643335386431373437636364383238343431353566396163663965613364
+38306234626463643331623631663531623238346137613666396161303863626164353839646364
+34663463623965663566313065363439396530656336643039643434346135633534633234363136
+36666130626135623365636666323038383536323730306530666536373134653165353764396631
+35373363373865336233663033623661656233633831323939346338663162333133656634326134
+62336562313633356135613337383436376439663532666335306435326432353537393232656134
+32336436623063393862353737663433356335356334306465303932343332663033376532393634
+32323836383933623864326562376239313632303766613830363162306139653863316435626435
+34376264653334383236316566313738346461373164316235343936653332333739343062393365
+33346265613536623531623032633133663964363265353131656464663365646264643737356534
+62663361303736353132633138623761356431336239396565346130613837333037396136663739
+30303036373461633365386633353763613133663765393533663961326361616162666330326231
+61323137323732636561663966643462373837306363383836373765353864636264313533663733
+64656264333166333761623336383939376335356330353765653336656236336539376364613039
+36373638373032353737663163623638363832653134333537363263373233643930346234323634
+62373235636331646535353432326335666231333435356663363463333632303536633966353739
+39323565393635366430396262316335346235353037323562623062306633626235656130623338
+31336236653530383961326139663237656363353664333233323966613264666137353035666266
+64373937333735663965623664633761343535366336613839386665626232613938303638633935
+30336631666662626339313566336537636665633038356339633930396563613130626461383665
+37343139346362373030323330306235313833383839333439383635326239323134306538393231
+66626265653639626635343662643334343063393934343535376262656533333066633039326239
+30333861323937656231346166616537366461393563366430363737616230643965373965646663
+30663561326265666434636662383163306661383330353130313331333838303333653439393430
+30316462363433306533326438323733326339353330653330363036623862393338646561363439
+65616233613361643366656235666237353937346637343038633061343633623632633035663430
+61336365316436323064303131376534303437316666663934626163653431303739363865383262
+65643133656166306136383939646539623963623138336437646262613266373664663533326265
+34323663373839393039383335383238383834666165396262323065303362636138313561393130
+36643134343863333731323235363338643030623735353333306632343330613562326131326532
+32323337346263393265623631663261313835623163633766386566663137646635313364353232
+34636638383736666263306466636537343563343261306534383633626338343364366135373138
+34353265333465343431366564656237363063383166616533396261323238643762353434336264
+63613833646330643566316165356131656563396166653336363932646536376137353736623564
+64626661643334386433313763343533643735333165646536656139613663353531396463303437
+38646431653437396630613763353833663533333033646330303435353232373366306131643066
+61656533346235623761363465656166633836303531643033306433376237306462646666646664
+31336665626131303137303063623533623534353535666265363731353738343837306662353738
+30333062323363316538646530633532343863626131333761356638393039316231396537333633
+34326532643263383064383632393333353532343639306365653932343538653061663534626139
+61613533303139376262633461626338353565383065623833653033373661303634313561633039
+30353166613339666263396138336331613562353537666433663063636436646464643862323438
+64646563353662656130396363313631346436333765316161353430343438343137656430396364
+36376466663534666538313965303533646635323966656463616662396638343336613265663733
+62656330363532386366373236336638363461356666633263353031313365656433636631646134
+38396163666331623263353661356631373033653638313433313038333539336563323561343334
+65323361346165353765376666393363623537346536653264633237653366633736366332356131
+32373165363761313361336139383739303731616266343938613263363138383166626232373464
+31326639346163656437663931393866316338353230333736636534356634393133636436313637
+31316439386538373736646533303130323733383762306434356661303635333236393036653930
+62306332353436356431396439313738613832336633666161316565373935666236636332346331
+65643736346230633066333633623238663265323964386265343930613665393334643338373564
+64616366313566366437653137613634383334653964623165333231376533626264663232353362
+31663861323438356238303034313135636363666138636162333963313861353966653736666435
+35643531383334643836616661383137633862623163306630643435636263313636643265613463
+38653966663365383965653830666465336530643237326533643366616561366261393139316163
+33356462303261643563383963333737383964373536326665333562346564373838626536666262
+32626439326566366439633564623930623233623831326436373964613132383236393337303439
+62376235333838373761646138326431663363366139363164656336386164353632396563653639
+65666336656330303764303361353531373037303662393432643538386633666332343031386665
+32363565336432626638383231353765373236396466346161383561386466303330373966653565
+35616364646234633762373038626231366336313137646164346564636537343064346536656138
+38626463613838306632333330343736646335313561356338306631333030366431303236383337
+32383863336463613861303261643530306130613033636630353736333463373331363836336363
+36343531343530303831643837383361383463386461366137376663363836626436626633323763
+38306432663665663131393837616530343263653261323833303962663637363462636134323261
+32323462363131326431656564656639326631316662333139366164616636383861363539383334
+64303734333433313365626438396438393832353435393166613762346233663439356532373662
+64333836616265303162353365366138386633323065363331373466326637346564323637343439
+38323664623939346637303064643434396135386565646232383864313661386137323530336235
+64616465616433303466303461623938653666313461356133326533356265303765663764613936
+66323939313832323832613562356431376632306666303862313836646464373238623166363866
+65616437656530633162623634303763653236643530363363303437336661376539363737363330
+63373837306264616663656236633233343930643432613637353739393766366233303833326239
+39343761306632316137306334653530666166353233393837346561306637656462373639383131
+34633133633536633139353665326261623833653337636537393236353737393539666237386331
+66303737653230623530616364363262356164623963383962623133343730643861653062303339
+65623463396339346335396638383739643434636435623830313136353137626433313539613262
+32326432346563643030313863336462323337313466383935363032626439393162663964393937
+64616630383436636434376166623234353466613838353933303336343432393366303533663231
+61623234313661626231663763343534313437626562353232323238613036643263356635663939
+39653139373034353361646563663765373231323134626534363266386436336561333765366635
+39663062393561623163323333323634383762363364326435356633393334666562343230363834
+36343463646635643961396635306564303537623631376264633265386163376631656136633761
+62316262316464343066646665333330633136323236333763386139643666383166656363303739
+39356364393138653530666466643734303435636466346532326466653737656630353638343766
+62393563333736663137333864396631393032373234386432663461313630383033333737313231
+61653136653761356536366531313334313339363333303362326362643234656534306539616262
+65636135393637313630356233303439336234393863376566323136383539323131313439646663
+36383537356235376136356165663231363132323461663636326437313838313436346634393436
+62663933366337363039303634356339616639626539323331323334653865343839613833356336
+63313332323237313463653263633539653234313036626132616335613064623534643332356432
+35316430616664646135313931343830356235373238356630373237333738363065353664383133
+64343362333564343036343864396533393961353566663162633561613465353136313335313037
+39666439643035633133626635623937333263376539313365616566333265643535346534373063
+39663133386537623062303534376664353734396332666535646531306330616232653561323932
+35376232633035373532376337333336376361393030373030323737353864656139613233656130
+39666135633765616532643839306135353062323931306266353063336431316538663434393833
+61643664633535326535643535333732313534333531636165666631346532643736616232323566
+35373032666437373534616566316633313239616366616237333935633964303134323033353661
+64303733323330643666653864666638633633656634396461393361363666303138303936616535
+39623939313766616537373938396136326163653963623663643938326339313165373231346363
+62376563393266633162363732663266623739636230633236393364323635656566636639373739
+63656364643863336661643166303236373834653839303039373363313730393539626337303632
+32386636303035656337633131643737313862316439613831643337343933653261616237343330
+30396562656639313461333034363861663638363862313562326366373836343136326237666632
+32383137613839313336306231333831366630346432653663373037366237613739656561643931
+38373063366534313135366164653266383264663438613635336636653066346662313432353038
+35313561383339333738373538343966633836663236356139376463373434393538336237306638
+38356262616430666364626634383030356536663333316439373438373765366164306338663434
+63376534383234613739356434663165393938383533303462656638663432633331636131653466
+63323939653665333962343766353865623561616336643866383635633730653438623232633966
+62633832666164343863653365646566383662343434313333376237616334303363616636386162
+36623633313565656135663861636139303664663161356436373465353837623564626533343465
+65626635303737303265636639333631636366363066316437336237353335323534383265323634
+34353064336265383432323039363865393730613230656231656164653830643339656638626262
+62336431313666646539626433333137383030356463313764373464353836356131303439333738
+63666230313536666162666465636232323935373462633766363337393435383936623261623338
+63346561333963666538623362383636616536643039373232383562626139323566623836383564
+39363537633331643766396636623030623161343339363266306631373038383763616266626666
+39323337346163386535363939316161383536306439383761373463316538306335613734623938
+34393638346135353063323661623833323261366561353335313637623432313830306337353361
+64323134323631343135353661653036386265663637353762383739646163356631393863383663
+33656163356465623232386262623661396239666566646366313836383430623165623664383764
+64343935323332373831636432613236363362343565393333373866376433626232326265613532
+62616531363664663035663937323763303039386236616634326162363039383862616165373739
+61316566363939396666383763653438353734323762613364323435653538633063306531353464
+32636635653031613039316237353066303835316130303861303162386464306465666336386130
+38383161316334346664353764373666623037326365633362303566316563616636383138336539
+34636232336632613866386337656662393532343730386366613530346361363366613664363362
+63376266346431353234313336316164386437333639313132333434373730303933306631373031
+36626663383461336161313964336461313134353936383537346130343039643139353839376663
+38376665616666343130616362383763313031633062303136613739626139633835626435383835
+64663064353061343462356566323764666564333662376235326162346630623839353765363739
+65326234636435346663383833313330616364623331303630306130376338393734663030393561
+66323763626632333030343933643733616537613766633464656331386639343836646134323462
+64633034643865323037396535626533373563663633386161636433346632313632373936666134
+37386166623338633432633466353937353866623937316631353463336364393761323930623338
+65613365353063613036303330356431623363386437633664343264386430353731633161313564
+64393839633264343730333666663363346436663065373838326531656665316133653834303163
+30656535346531653461363663616562353062653133653161356465636236633465616630376663
+36643331616334303935643837646435383332663862336164316237663265646163346262326533
+36663762373634663035396335306532313639396664326233666334373935383961316266666537
+33616232313730626636323033306136313732623665636135343766656562643635613730666133
+32343539356338343635613666623931313031303364343632626135323133356333373932316230
+63633431373932373736636466666537383531306433323165313964616363323665306332613633
+30386232353433663761396533663964373338303135356461333030343136323739343463346663
+37653339333735333032653865393033613665303838343931636439316236363738616565643233
+66306466313164386331306636316262633638613262613832313762383834626361633631326261
+64663261626436376339313461346264626336623435356531333338656161663764363665393063
+62623961343035633762616661626430313036373335613436666665356132346664613030313739
+31396633393136656537663932666232613263353533316238356430303264393832623637613537
+61353431313833353464343665323239663530373662653930313664346636646437346536353230
+39353365323232323764383238646133306633363764353932656439616564633437613136613232
+37643635376430633030323264326235643263326662353735626639316132643164663033623464
+39613132323936363665663034663164633865356637616334643734663832663065363763626635
+39636330326465373334633661313461373832316365313037323266623832313032323666666365
+33303030393031393932613531613962353337626265666134643465316338323362363265643631
+32643434653533666531623536356332333636613237343762303333643737653333616463663034
+62616562623966636635333137386361393832383238613964616639313335303962666565313062
+39383636383030373834613031643139323265333831653130306631623466313166326435613661
+64336334323034626439323766396664333336623636626431336435653362356437376331613166
+62376637653666353663623134656135643739653137343061396132313631663331656664306465
+62353138303965316139343035313431343162336139363638633966316464313966343437623363
+63623831306539316661343536333865366365643364613330393762366539386262636262643866
+34366635303563646333313235316261376339333062366263613730316436623033313031343937
+64366563343536613632383937333630373064383632356434343862623462363062623736613030
+34663764373263383939356335313430316264363434383131313632636339343339646131616165
+63633131323762653538643662363066366661343962316261353566383739316338656633326237
+30343330653639633265383161613533383733653161313336363566326438306631383862373963
+32616138373839356636326637376664643866666535383632346235386634353330653430393863
+33333738356231646130333439326565613737326365376465666230313762376234323936306164
+35663039386431626464363531373465623430653937646232313437323431316630613364663734
+32343332343832303138346231366663353439393766323030363961346531656335306565616332
+64356333346232343666343163306664383566643665363232653035363761333432373938316366
+66643533663634393537616230386362623338636336653231653437666534396466303432343234
+34313365383636626435613061323432396432353163386463643739386431343336303231616535
+64333763623164326334646333613264303634366366376165656664303634363430633762366166
+62613332303863613838663030373165303335323063323138306335613964353731633132663331
+32653633376163656137663836376539333561616337643362636132336561303337323436356637
+63633765323264343865653636626537626635333734333936353433626335643531613765653865
+38666534313063613739646562626130616465396234363335626136613364656661333337363338
+63383161343266376666363535626262393363326166313365616466623466663938333531356461
+33386336333562313437356639303365613966333534333639306232613337636435393230656435
+35316436376365363337363662306564363136346636343764626165636634396265356532636436
+35393733396233313066656337636338653535393462393337343839303437303663383939336566
+66663532316233653335303831616233646336333363663362646664393237353264616530313436
+65636336643035346461653530363463336339393963303761646465623934303130613637373238
+65393238616163383034643131633631303238666232323939343865353330656464323365383632
+35636239333438396261306435353231663538666535666162396534633737393039633039306365
+66353231613731616337643066386666353763636565613366633664306530323931386233366263
+36353032636337626231393137306362353139383839653437326663633832613936313866626130
+34383965623761353930363766376438333437386337633732363135643934333232346632376136
+33653032373663323934363862633837633039356466653731366433373339636633336363656436
+66663639643266393136383739343863373737366266363636306538663664356338653835643237
+66363138333630386131393233373666323639393938316437356435613433346362623231653763
+38663965303330313365663034663130636433323565303366663533366561633437626562306236
+34653732333130663636623161336533323632613062633562636262636163333532613039303237
+62616431373133326163303861666162303233643937633139343930356631646630343039366634
+33616531396332613433393965343365626465353338636431366538373136306635306162336231
+64323237353735323462396138376632396432373562636435316130313334393439376633383836
+61303933366438633931323632373830353466316664643061666266316135636161663139363866
+62663330366462623638376232306231643034366538316366396265366664363165356234386332
+35656631383836343532616231386361386435663032363132393330663032336537663131636134
+30653663396539643335383737346336663531343631366362623434336365323438363761633037
+61653238353334626462356262306266396162313234623930653934626338623534643535613434
+32343561663962616233396438376663633930656330376238646136653065396239626436336465
+35323337633866386231393362376538313735396666356336386133306166333463663766353630
+34623837656630303837376133303838643836363237346338643066343639366661616531366533
+32363631636632303366373137613634616662363830366666343737396236353730363132353433
+36376332363233656162643630386162643832663239396464363338653437373533313865663465
+35313036613363343565303566353862383365383062386434353336623965663733376138376263
+36336365306239623432396334626233376364343735333636383563396464623764666261313134
+62333136363339316266323230656465326233376434333938656631333038333138333630616263
+38363165663336386138376362343663663262383432313938356539633639303834383962363639
+37616636663339666464396137373834373833396161356230666564356333356236623731616630
+34643133376361326338343765623966313534613130366363333030316566363138663339303034
+62323163623337303236663465656339373134626362643139326430353363363433386436306638
+32343236613965303665363733653937316136653332383537343536613232613237333663356434
+34646536333365653264393633333462623334383632376164656434363463383866613863303031
+38343832363366623661356539316239353834333163346539326661613437636331366532396261
+65393465656631633931333835653939653439643765653630626139343630613037363835623632
+36346366343464616663633732316631613139393362336465306430336663383638363333316262
+30643834636666626339396365366361626231656438383262343734373432623738386635386432
+33336562346536363262326532633037663230646335323166616538646334313661336562306265
+39376130616433643636633934633865633162313332656639303033623236303764353438633032
+35363738356666373361366661663462346336333336343738346232323564353062623633343235
+30663066653330623937653664353561663532623338366135633536633436613834653230343037
+65636163336634623332626664343963393532353937626561306632396263656636376137626562
+61366131363438383532653638333164376132386464373838373265376261663636303531383133
+33643165626563656137386530376361366465643537306537353363616134633336653762333938
+63316364393239343332666535613732333635356534323631343038306563623262373763393739
+32326562336262613530663565633631333038616638393632333137373037313735383864633536
+35303033656136646135663030373063666163303938386239336433336333366363616136303862
+65376362616434353930396532363230313133663038663639336434396266636361303265653064
+63613038633631636264323863366435306163323362323863633138343932623865323033366536
+65363766663638383134346461376164306230336665346433366536306434303466386661356535
+33336266303534653037303934303231353638633439613564666638313230306238333963313866
+64656263333131333539663334343436343766313762656237616238393732383839353036303862
+63353436363137393131393662666161313662653462633364323231356232656363303234383030
+33616266393462643863643263643435323131323763613266353732323132336133303333373764
+30363432386434656366353865393561363734643336303831613631373232346263623233336464
+37323266663866613761356437323263373338336538393732343632363233656234316330633033
+61343638666232306135386339303463323036313730306261363036343732636232316130376462
+37373462386233386563316530306165336630633332363761616334373930303939373532323734
+64343862666466393165623664343839623139633631666165646631363461326133316435633661
+38616132303039623931323732376361633939363438373834333062633039303830383238323166
+63353438396337333762396661343962336630323931363764663963646565656132363865346434
+36336261613332333866343033363534656438643537323134333438613632343434303866306138
+65353835323962663736653033323539333336333466623161663133346339373138353864663362
+66323636393336373333613236326638616239346334626630303532626235393930323431393132
+38386334306637653235636364343234303962613438613765386164363037346632396662393439
+62633636663334323030653131333238356433616362333635343734613463303232646534396336
+65633831343936633636383461666337613336396166643362356233303165396436383265336538
+33623563363030663162663131313464316461666632663565653763393565353839653365323231
+61363831306165396264363236373561623561393938636231336561643766653261353239303237
+30626266336335353835393137653262303632363063393966306464613963396164353339646535
+33383332363961646130363430313465626339393138323130383463393863333165626338353236
+33653935643036363262353566363339623364613138333432376134623637636639323036653133
+39373464353265643764396661306338626439336138656661353034303730323239663064386332
+64613263373737326666663732373762333937303766386330346565323830663262323835373038
+33393761373332366339323132396130353862373366313861333165626234336264316364313064
+62346666643764373663393565316262346435333430356134303732363733333264353966663164
+66626332353031373539343835366232393534336635303933363635616137376239396638663334
+34656237636138343263616466303532616237663361303265643735643362343037303735343862
+30363562613563313831616464373538663338653063626635356637303430333232336433616536
+32306634356336663638653839623837643534623163326461373865376437343939383162366432
+62343831333938653330313364313063356131666136613239396436376439306639626438613861
+30373464633036653165396366646230336139363336373536353531303433393637313166653961
+39333565376231393930613236393031376563316362393139353231393033646466613564666339
+39336536363132326232393663366161396531353633303863666236393939323264363731653062
+33363937343065356463333231643834626630343231363063353738383065643463663734613135
+38323130353236376165663032666530623062626535613061326534626231313931646136643039
+35353262396330663139663966356565383930643535336262346632663238383034303931646533
+64346433383939306433323932303930336166336239393130363938343037363332613834626530
+62643032663836343032396637363338396562366532626566633761336464316639303936643639
+37343664303835343937386663623331393436363364616432356437363836343734653931313936
+35336665656166643062623939623262343234633339376639363063373139646462303964613065
+34616364616137633864343233646363393035303238633538396538633530333035373862346238
+62313033653961303232323637353437396234326231343763613865386463653636663836653635
+30616138303166303334333036653266346435393165366465353132636662333166333037643962
+31376464396530323365383036616230663237633135306662666532336536393663383461393938
+38656631373165616164353762363238353930636633653664363231386332623330636133383264
+39653961396265613836343261333864366139356335356635393862303135336338343362353038
+35613731646438313964393162376430363064373431316666323261303235376561323664636332
+61653130306136613034626561363934653839633237313232323830386265306634656639336135
+35616662623336396361653130616538306665643833393438663335353639636462613732636162
+35343937346132313337363130656431653262393234623034633436373562336432303737336361
+32623861616364363933386235623536333765666430373463636230616439303534316333613365
+32666135333164656131353439346665626661306263366563336132653933646436306334366430
+31393432386236613634356135633439373033303332643461616332313965643931633230343739
+39656462626234613336383932383335643538333033356261336239663866346232643633653331
+39626131363632303665623461353636646365646166626537663335376336393632303536343566
+64616536303731353332363966623566613961343862623038396431633438613164346134383939
+37326261666431323838646336303732636464336435666664386238653630393138376538346335
+65633563613634366365373233346532646137366666346164326537353534333564653362636164
+64313930313262386561316131366537393933623465643037333333373131663637326538393834
+33356530363337356565653465653533313233393330353766393234393530653431376466636536
+39373439616661306165366235383135373235663462373564376461386661353564346433656132
+31333531333732616266353234386363626463633435363536393266316338393539393539613861
+39346363333537323232376562303664383539666263393865326131373236643536626162623661
+34623332663330396165343464303763373463333562666431343733316633333936373738633138
+37323063626137656461323833343836626136376131326631666538383264383333333432363239
+64376439636662383737313330653234323435376236363865373164646430333139306264646334
+37386339656638323063613161613835323462613038616532613338363263333439323666356137
+64303965386337396638626364363637346361666533656566376362383538306439383730313561
+61393261616335623663616535306236653562623739383636393038346462636236343435353938
+63636666356166333332643965616134306433353763323462623330303138656561613137393566
+37636238353230623836386166373032363732643838336130643631356132323261313865353837
+62356166613735346361316535656531333366333036663265663632343134653435356161636637
+30323864383730663331633832666535393562346238613030653635343030306236343939316461
+36303033633465356433313434343066313261376630333531373734383032653262343966373561
+32383439666337326533396633646137623635366636316331643036333462356563316564366333
+33396434306630653037346334313237623235346563396530646330333333366338656436656331
+39306662623737346434376266356664633034323032323366633139653538623836663566353265
+65636561383462333564633061333438316235356337653338626239383938666634363534373162
+30343333666635663866616665616562343035343365343638326462313536386533646131313332
+64353566663561623265343863623939363037393665366633353736633634356335626564316138
+30626338393436623034306463663664323534383162393739626235386530303236636162396662
+63363131323365313665346561613730656365313863326537336566646630313031323266303533
+61653063343531303330653633383130333232383261663761356664326661306661366566346136
+30613166333936643236623166373735663966613665323639353632663134353836623539313562
+61343134343136363932663238646161636337323531313266323630633266326561643134303331
+63306266336531313034623063653137363861333562643230346561303239363265613063616263
+39323762333432363536393366373562616362653337306530663532336138613731383564626665
+62613361353830343965396363666630643731346631333264636263353331353332366465656363
+32383331306330343535323836356531663539366137356436346265653132663439646132613639
+62636436353865653833393735353731363663626631323062393163633164353630366638613736
+38646264363066353563363836663030323438353634356536646233613736616361633938363838
+66336130646636663634633762636466313962306230646239353535623934613862656636396462
+35373738393437333663656436393732386236363530623535343965363431373531646438363262
+34343033343834393766336664653534643830343432663438613433383562393530393638336434
+35306134383432393839346565323936656166333863353234343934343762303333383530323638
+35636430663466396534653637643636626464376135643065306462643763633239396134346636
+32633430393939393636303734353264633762346463616536316338613031613030323137363738
+39363034376238313363383862636231636165303334386662313263663832653631346539323131
+65313733643763366532323933636334663830306137333163653463656565633831616236643264
+65663334616338663236313434383366303035363863643366306664363032333633366562633866
+36633930313131623765323263316365353562663935633836373762643338646639656566336430
+31393430363662333934643664393061663165623161646137353237313634376432393537383039
+34366266643362626334353836383466323430663564643831653433363065366133376631366232
+33663832626335393037653464663365616662313865393763613864386665393663623230616138
+31653231313064303636646333623961653461396265646664623238363664353536623066333239
+64666434346466616663623865613137646431396165626266613838316232623666666165613263
+33353537626461623731653931663231313733386636626365326532373430616635393662333764
+36646661373431373138383861626365326163346639343636373736343134363861633861623039
+61363736633836346131303439356461336565373263323931356334653262343230626535626238
+39633062363633643563663862303439356533386131623833373963363635633431663734393664
+33323535636162623361366262366230316433623239643131396165623530363437643431373831
+35306535346337303533643730353765336462663462383761623763643262336538613366313736
+33323966643731643038333435326265646632636364336433306364306133666135393161623363
+66363037343037306633303236393338383033626632383365326437666535323134376331346466
+39626330326539363531393064383233306536616166383864376430613230656539393961393834
+34366334663631633533383034623763326566376166663433653261643333316238353934356361
+38663664323762303937636166303661646536306537363839366434613162336132333734323931
+37653931366462383234303339383435616562353336663663363936653761313332303664663662
+65393638363730613233633332333836646164316565616666653662313363663466326664373135
+34353664643363353762626432646161326236613337613866333763333830666431306134663565
+38626533643537323463353364663433323637653530336563373731363736343736623834343166
+64393162626339623861366633383433623761383634313130353438663731623032356137613934
+38303537396636663766333034613933316639633333653266306261336431326339643339393633
+30306135303231646436303962633362303166353830303134646163313330363932353461633933
+62323031316239376230333932333564313830333837303062643031616566346666336364393232
+63306235613737383937666336326131356266353662396532316139373132613835333062623635
+31663962376635626362653561626365333830316264383361663065323431633838613639356435
+65613963633966666338643330363434616239353264306230303533383937323761393836623665
+36393038633262313037383534356435343931396435346238613436393834393836363635376366
+30626530326230353234353761313966386132303061653963326632653263353130663936636438
+31646131633163336563316461393033616664336233306238313931383631326330353966396165
+64656134323936373039643334303438353162333037393438623662333135363039326165306133
+36633536353666316337356264316464346361366431626532346237316433363032333730643864
+65373939653837643532626366623835386338643161633430306434356161623234353336353131
+34653061356131623235623561646161626633633131386230356361653065643066636535313632
+62376336616663626165353732393838363333656531393366353530393330316130366661363033
+31303165663433316335356236383538303364313939353762646261323961326231393737633538
+31326435353661383462383836663138353963656439336336623833323539643437633631613839
+34613364353264363065376564666134376530393133663162633062643565626261346166356365
+64623863313466366263313332393065303034616533383034396230383033323365626333633332
+31323463363163346462616636613637616161643764636330356330373134383537383765626433
+33663732613664626434373832616534663665623736646430636664376236396632306362313638
+38373236363235326138316539653836653938353036346438633563363137336431306238323536
+30316338623331343661313563373330343234646535646137663465313534346333383538623933
+32653365346165383666386531623061306666393665626433353137316536396434376463663065
+33643961376330656432343134343534363339616231643935613034363461376639633933626136
+30323130343662643561623132303436666434373966346330393735316361643761633437613565
+33656237323831373963623031346136393762326232316530376630613138363232663465376639
+34326433653761313436613664633661303534336631346632333562383663393532323331393161
+35633361326430626436623236353363373831343364613834306634316264616235316264636632
+38303738346233333064666365373532616639313564623532633662626164633738313962663634
+36343233303736333731373938383463316361316539613062356136356632633966386566346538
+30643263376330333633646161383933366439343863653937333130633035373433393963653831
+32346631316231353761346630653131333437333161643931653466356538616438383032356438
+61353731326230333838633631396266303334316236373932383066663833326663666332626532
+65306436383365643261643363353933373337616435303131363663663437356262623663353365
+61373331636564313731633036653361356462306162626430653064633839383735663830623538
+62616564346339646531653331346337303637306262663736666138353265376434353237626630
+66316263326262306163393335626661353064666431656364356533633835616630663138356336
+37616630643738633437323837316137326532663833363464356266346662316366343135323439
+35666463646361383838633463363461666439353139336635656335336135373335323861353136
+33303664616538343637336665663961373763386332663830623633636237373334393465633137
+30336532643262623865623539613438373635636163623937313830666664653464366339376561
+39353036353733386661623365653334323837336230633531336632653337396238303339303533
+36393738396132373530633735643233636134383164666465656132363734353361653235663663
+65346464376566313638336266343932626131663335336636383133396533376164626431306231
+38366334323461326334653933623165633433343563616636383336393337343134616138303636
+32303434343039636566306464396538346261363264316464623231356333303434646562336465
+62396165303434373532303333313438393930646234303031643034383732313235316361326333
+65393235653364353466633764633362306139303764313936333539306637666335313961353530
+35303466316165643030343038643234326333343435626535653362623335373463393166613837
+35313637623734353761656166383434323264613966636235303230366330653738363839316564
+62366234306339656362396539633932373133623565633433663061353666643535303835346362
+66313663373232653062363762326563643866316465386165363534396163386333393962383637
+33623931366636393766633161363233386234653861623036373839393664373736643936643662
+64613539323032303232613465346335373535643936653733383330346433306164383166643264
+63303263383235363763616165343134383239313231376665306539643031623634356466613832
+32373033356233323666343139303665336337383564343132396163306633336362646333343634
+62393134656334373236666665313437653131353735393631656438663938333864303831613933
+31306664336333653430363865626238353339366439336138663830373132623639656564383532
+65393036336463653234343662666465366466623535656431383563623439396232323263323235
+33633239373035643330393435306533323533323032666631356436653834373538383831356665
+34646334346664313335373834363465353866306465396265373736663038373735363734393939
+34353761333437313436393435653030633536363339653664323865333838343264623062626334
+35643465386462373564646334396463356438326436353630363039373533613333323161356464
+36306262343034623334346163356335336365366262626231386339663862663861366433383631
+62373662663365336263366234353162386332313739323464646631373565326162313138653637
+30626332326535643466303936643462373131653866626365393636613434626235643662383366
+61363737373137643531616330653465656434636462323234396134323262646234663030373361
+66316635336464316663366664656435383964306464373662373235616332363062623364623430
+36626539613261623038356264313636356531343462393931356132383937653134386666646464
+63376365633766316534353530613737346364613163373064343262643935666438376339303038
+36336666336465336361633036653733626231623161366537383131633739383437346439623063
+63643931366435313638653936393366663538613035316636643433633964663939376136303539
+37333234393866326231376135633436616561653762346262613838656131396535653162356237
+62363838383931313465613730663238376166386631393964623430356132313434636234616233
+64633738396663393131303866343536653162303133356263653561636462313933623839613036
+65326436643537346666636433643837636661613166613038643039343338353835303337663164
+65353266373861626662306635363734373736346362366235636639383638373437646534656637
+30323139316630303730653766323763323339346634396134383535636136346263343865386430
+65343762373662313636663932376163356665613834653463393862623264623665643562336139
+32386234616432383032373231653632336236653332616338656139356666643866633963343765
+35396561333165373761373730376134363863323430653264313436646664383030356535623437
+36343939353935623737383539313831326432333433613863643132646538633831363432366631
+64313537353734663933613137356437313530633163643766643131356136653137616530303831
+33363830363330613666323233643536653235633632366232333933643063663562663462396138
+65373363343962366632336565326564373639623530613566383534666632333262353961353137
+32653930616165633636343564306330626530313365336235363730386163646133373837366161
+31316133346264666533396562306436646562346330343531623933393738313536613531393965
+65613434383564303930376665613833303264323039313138623566306338396234306563396532
+62346263333336613461366465613564613064316632663639636439613939396438373536383330
+39396336383632646665356362383339303631653139633534623265626532303338326166663066
+32386663646666626136353763353665626431623835666562313830643535383662383835613539
+66306533346364613831306262353935613164326134653332326538653934623433343732386633
+33393133303234373438663536326539343166333735323237303930383736366236373864643462
+31633031623366663132323661656438663133663066663566653537313637316166303738383132
+39366534333338346665633862663132326539396434353238323937326339613161336539313635
+38313635653664363230396432643737323532633265646136646233623934643764633737363131
+31343035633963303232623836376536393466336536373536656635653136323761663631613637
+34313266323865336663326131336234646465396432666366656162383761663464646131613962
+39386338633739363065623231663263663130396339646237333431336237306333333836663435
+31653561303862663561373935393031363263326232353766633031653834323233373666313066
+65326634323966363765366564356235653133343061353066626331316533396630333431633339
+62363865366430623334386439346534666531313532393234643033323366356362353938313330
+66653138363162633962366666346166363965356130633735376639366239353862333937303338
+66656566353537306335376261383934313833306433336463336133346363326436303932663864
+62633164346430353438316232656534663964373633343237383163303838633664356631353965
+61346132613633326163613431353438346164313436316631366530396431343033336636613436
+64643438316162303434666130396639356262666332336539636436363261613632613030333339
+62316163346633366463663631333665383432386434373730376361333230333666663432343636
+37633766373137636464303766336633353662633434326162393637646232323561323562646332
+32353236353766656635343833323466373935316561613834663536396639613662356230663036
+31326366636165366163393936393565336634626437653532363939616164643161386664383932
+32666561346230343031376530373133333865323234643237303761306563383337633865383432
+37653863633431663164623033646336353135386263303964353938363730646533386138396130
+37613539613766323136643361643566303333333761306363336366626464626565303461393166
+33396235386663386232643634666533316462333637326539373465313032383238343330666235
+66323234643965393462353762313437663136303539303862323831383664343763343966306630
+36313433616234363638396365313630313736373761356133623464323330666233643564323966
+61613331616232623837663164633435346633643736653165373330616638396366393165636631
+65613565616462623938306630326561613266613833613765373837366565643835316538373761
+65363330616538623532313039373062303839623463626261343732636535306434386666666334
+38356430323938613939333035393630383633393363303832343732663139393630653264636338
+32366563616639366464396561626435393331323430666436386664303966396139393932653038
+36346665333331633736633137366266373564613965396333663865383332323939666262636665
+37303936333338353366386435643263333839373962636663323231656663393633316661653231
+30363135326361646434303132316566386161656336313433663932636232353836353964393862
+35663466643863313236393564336166326166373134393638623131323533383130636364316262
+64353434306464366364366164646331353339643536343962323639323766353865326136383432
+36613666313133346638306432373935633535346631343161616438623063343135313739613738
+35313762373534633931356565663731623235343635336162333364313762636637323630613466
+32636234616335623238663339393339633930623762633265363838323433366534666437636233
+39396135613064616364346334326138643939353165353836623666373037363230626131336538
+38373839656331663638393039333838623939303663616334306636313430346338366663643963
+33646463303562323861643865326539313666653262646364616239373234303365306230353734
+61396235386161613836383361663833646561626362316136653934646266346361363065663735
+32663136653862373164656661666564313363316536303539643134653035373636623661316537
+63323235643666303731353335333630386631303435623137303433386164346334666534653536
+31653432646234656436356532613364373665626436353431363636346164346135656235346163
+37653232633439656632323330643735306463653639663334363837343939303336373637373766
+66623333343731373239616537626462316232363130383239623734363933376338373035303762
+35363930396561343766383564393163303534636234653733316661616438373163363365303566
+38356430383233653830636233356336376431346236363534656364363330336132363963303431
+63623264323336613735333532316464656564346130386638353763396635393939656666306665
+34363065636363613637336366363064376239353232356637303136343765636662623964663165
+61353431613663363163646333353534653735323939393165633663326666376430636537333931
+36316133633132623330316338653663343632346632303733373338616434386539666338633261
+35646530316561303232333631323963356131616263383530343434633435396338386561643262
+32646137613165303432636661663036303630656237396531363033653538316432386339666431
+37356433353263653134363935663166356166333466386462663332323662656663373337393031
+66613633313165303533306530333663323938633061316565316136336365383533366136343465
+32353031643863376466396638356439616135353039656630623164626133343362613331353361
+33376363383339366135613537666437343565326434393236643633303864633965323964343932
+30616335356635373561346232376234383936333566363266663339366461653839356331613563
+35393230653434353939613031356633316466646432646632326565643361316662303965333163
+37336566653030643535376238386264653432396565613461346138653536393232616263626232
+63333363616261663739396533316335656562373661366135646639346139376665393934643931
+32666262366636396631333639303231613633366433313936366635383430653666386637316161
+62663763636634646135323337646136336564373464623964306663666133376263333465623666
+35383030346365623331353062343533643261343133666431346566663561643231623164613236
+35316664336237653832353538393733373733323537336465303366646366336536366331653831
+32363362383464363732626131663064383933353065383432303130656232663334393266663861
+32393662356262343830643931656335306562316532343538623165303530663464363337636565
+64393239663433346233663863663065636365396466383064323864303862663766393663366362
+66613933646136393533613963336466386163666235306134333537646139396133376332343830
+63646265326363373139373534666531656633623338356533653061343731396636376135303335
+65393465333864396362323663306132666663653335353063343063346464316638323237386363
+62336666663663376438343065636562373637303334363030636331396430616330343266366437
+39636466333437313261616131376339313564333730613933336463646130643662623239613838
+39613862343833333033326534376336633938393366343763393333393136333461643263616439
+30373635393232326136616337643939353732376634346563663362623261346336623235333566
+64326535303239333335346536623833373337646164326162636639303037623639373637663963
+35636532386637313733383734666535346265313332363837656135616335383539326661643230
+33393532323833643436653763303361636161616266333032663963633866373735316536663332
+64643430306638653863346237653662353635333161636639656662343939393663633437336162
+62306333373433393065616132343162396666393631353966613938623333623366646235343633
+36653162613035383535616635646561613864626131326631616164623232643736303131316438
+63316135346266393763653262643239653561303733366434646634616134613532366164353437
+34303332613639396130333433376530393431323439346565383632316232323331376561353636
+33346337316532313561656536313864386661343530313937323138356236633030363438393562
+66396331346639333361383861666630366431383361633365616234653866646261366264663464
+30353663366138386661626335616130303665353166323331373265333939356639363932626563
+64303363316337653135643963356237333534346562656330376362313563343035333036656438
+39343932663232363230643061303366373532656539616632333066626165303563356139336165
+32343532646236363438653638396339383762643064316565326338643262333331633834626135
+37626264616261653531646130353733393530373366313362616338303162646235656639386338
+62633734303134643335616561356333653365376166646330356234383233656566353734653230
+66623964613533393138356264656266386264646235386465376366666139366238383431663764
+35326235303335373962633839343864386133653533646332396266333233633132336330313430
+61626136623161366165303164616665366639363039633339343837633939663337643634366663
+36396434356434306436366333663564656666663462663232616466353230633231646436383433
+65656238343436356639666365633366636635303638343163653737346532396664323435306633
+38346564323663346336656666613035643362343163366237333635393965356265323161303564
+63396639393030653161363662353565313062313634396165336531653833363432363631643163
+63353137633365363637636462316135376661333264616361306531656237343538363834323430
+35653830653862333166643634366436626364653163643865636162616438306638623032646233
+34363866313265333030613664643463306463663832396537626465316537386236653262313232
+36363031393433343334313333343365393765663765373665393237383364656464336638663463
+66366434396332303133336463373863323835623966323939396438353733326365393566643665
+37633635336537643662383331306236323039656434353838363234643539306166343237643362
+32383331343932343365366335623430316531643935343261626433626233626466393432363236
+38303065353838346530643330363133646632393532656164666635353663343963363532323838
+64646138656263343633663036323764306133316164363935343661623365633535303731343164
+64643961303264336435643864363231643733366433623331663062306430373965353737303630
+62653361326337366263383238353838316364386339396366346563396636303561663866653930
+34303031633834306363303632646365666432633633353161316633386165353334613033656362
+33366132633732356631646232396539653963383237363064653337313038313235383164656238
+34316435616265616563343033303331323638383137373134373933633561636237333962663433
+38633930623430383532343638303262306539393062623966363238663566373863616362366664
+37343333646363333630353862626432346262373635663666363361356234303763393733666662
+61616363393538653234656536323066393763666531613862666330633063393037656135343038
+33366439613230656238336337313838646133336133623465386639363339303837386136663362
+37326162366135636166373864643631333430326263663131616430323430613035383230333437
+65663163643361373062323030333634343639306464633632343033666436346231386163646165
+31363564326134353537383438323665326233396365643337343066326531333132653434396463
+35363838326265303962313237666462313930623362613761323834643362303230646238323139
+39313730666364373332316135653966363733623538346663633063353463343336346661313162
+62363435383665386236356437313434623031366362666133373536383465346561333632663237
+61623033626330613961383436386365326436626663336562343035663465666336303732633564
+30323566396635653564396462356334303734343836613037393362376633636530373636616233
+34386535633262316566653833313535353637343735363662616339343166313766383864333832
+61643430393736336334643630336538356434346332326333366435396466643365306437613931
+38646265343036386166356430613637353861353262656534626537616539383961626239393263
+35353737333730343138356163653838643530623663306564373762616130663364623732343864
+38386163633361313934623638393563376531663039303364363161663833376661393738333164
+35396338306432643838326664643937316137363435616564623539326138616636336163363335
+31343033303830376662356638363763643033313337653963323031316364656639396637303735
+34656365363034306564613261393063306634306132623737626462643962656666363332613832
+61613934343266326564313436396431386232646662643637373939363063343262313132336430
+37343331633936303365326261396535333461656334343036393536376432663963643635323661
+33373962383538373232373736656237366664366332646333373535623031366362646634373935
+62626639316435363933353765393732343364346135363663303335396537663832366139386434
+34613335666139303032303631393566336337663264636234343365343738303037306530643332
+65326636653037666231663730663665646231343862663131393230626532636630656264653064
+63663932326438353032306239636131346164366434316239363164653262666362336632653334
+31303865366263666432643432643130666666643466646330666539313636653236353562346434
+62333165323938323361643834373133656433636565636435636462663539336464386334633733
+34643439376135653034353262636332363566326533393231303531396438343933616165346234
+39653038323563626539643933393031306134623230616430346162316630313865626631363639
+63653535613439633834343664653365363461623230373162356365633365623261646536656538
+62303333396132333365316238393862396562373631346233356162663533313834636263313431
+39623739323430656637636130663163363130363665623536396463613639323438366534646335
+36376164353234613262653462373037626166653562376665626364613931616233626432666265
+66356337366463313262643032353564366561313263626666383930346637396433646139663539
+31373535366565323761613036636463646264636336333238323036326233376635326239333237
+30623839653435646466393961303061356234396137396361393538333638623437333639623264
+35376434333637323736623565626164313530333733363631613963323836306134316665303261
+39326339316233656630336234383861326137343439643464666664303566623132316131643761
+38343833633233623235653265653835653863356363366531376239356565643835666230653932
+35643435613639623032626130633234613238643830353261653832633961656234376137373035
+35373932313264663061326166383734383830336633633335376639663239363764316231646431
+65396130653539336436343038356330656234323631653163646564653431303561666432393161
+35636130656665613132643737646233393130326561373637346632326135373130633963366435
+62336363323830326630303133633862336661613166393764613633343536623139356530326538
+33656239366530653837633530343038653134646337356332326435613737303065333266386166
+35656364343233313630623932346261633061373561373332373930616161636331623730316139
+30623530633332373162386663376637613533366631353961333962373232313633396366383338
+62653036663933393036303762303566393061613063653765386139623961393332336432396365
+33323566323232633533353662653863306639323638633265613036633066386438373538333634
+35326537343061623961336132633639646261663639333533303135633130646635626166356632
+33636235633135653566326236306535663963653361306530386135336662643165323861653435
+31316438386263323235393930616662343734646562653032313964643233663539316137643839
+32616565393534323639393132663330323366656664316561626335323335623262336435313461
+63623735373239303164376231393863303339393939326235656630313334373133626461326333
+62613437323335393838653864336362363935636166363130633739613730666166616163353532
+32663035366661383464633661313563663064356235303264346131653932633030363238613366
+37313131666431306637386531633930636530616563383565376533653932396533396231376336
+35356138663131373434383832373863386266366139376364383735633564623233646363353138
+33656232383663653961343139396431373837363638333062353634623730306261636633343666
+33323738393062626231303935373239666366653933313937633334396162653032333339633834
+31663931656534316235653134653539313635386239313638666166616532383036623036353033
+62383034336264316235356239626163383633393831306561643832363161363339323333396333
+33363466336239333637373136623032316365636631356134323366653239633436303865633863
+39646131633438663335303537333965623033336234383066313035616639353236393362373936
+64646637323065396262363765336563633034313664383335336230333831366462623762363066
+65303231666466373936376239643964396665363762613136653334393438383739643231303332
+30326564373637343766633733623839313964633435366533656638303635393838613731323262
+35356634366538623261393866323636326338663765383732653161623333653137326335383133
+36326537393865663364343362333436633238633661363838326334336265376139633137623332
+31323138633163396632363130616431323330306561383464303438363836363136313864373866
+32383134646235616165633764623466396563323261333064393735633432353331343335663837
+38333131623432626631666533613266343136656261396233393037646266646334346537376564
+62666162623463326633616361656566643866386161326166363263306465326535653562343961
+65383930306236386139323039323033656666663535336239303838643065356338626231313966
+38366462306563393863656534303365666265613064663066313437346466393334333233306131
+66636333363330306331336639303137303435336432636334653038373337316362386433323565
+33633436336533306334393232323736336565646639653333663038386439623966353735393462
+34616233393932363262646238336138383664373637376232376630326661313361333830393634
+63653830366434383539323634393232333734396364393232646332313261386634656663306536
+34643837323034396465643664663066613533323261336231353439383035363561393465663866
+31663266666162383966356661383736316533363862353732333430396138396435323066353662
+62616634623032626531346261396431336233666265343361663936633036663964313161346361
+32356139323131393433373634303864306537643434313131653565373735376461633431323762
+61333039373632636264656236393065336538313936373035396332663738643661336338363736
+38373730383665396237373764393436383131313837316331636639663830353364386132633232
+63373234306366306439663437396434346661353134616434303239613332653664663338386235
+39623133633634383764626534326162623636633533646230363836663664323333303263656264
+61656161363731353463626230393934363663623239303531343137333261303835343237386232
+32376635356439336437643063353737643561396135386234366334393339333862353336646534
+31653439636162373936313366316538636464326266306562373163646535663763646632303661
+61393161336164316234396666353836393236363334643765343236303166316235383332373133
+32393639613037323532346130376463613034343939356239363732383462636362623931623566
+61666434303063353262653038383864623965666562386534646266393766343332333238623461
+34386265663034633336343837323766623765626239353566633839326230303136346162326462
+33356366646438633539336131383933313639316664646635386338323963613133313034663833
+66306537303663663966633032646134326337326263363130663331636665623131393166373365
+64656665393234646537373931336132646433353261623565363131373863316237396663333133
+39396136643465636635623166393837363564373865343332656638663834646637656666346639
+38373534313665623663393662616266393635326134383735373937663231393565666231623930
+35383461316133633439626638346163313932353234336265333561343738363566613439326263
+31626638613665356335363338613564383930343734663634366130356338666337343163353865
+63626262306464353134346265616263393730343562636131363438383665646538333365353633
+64396633343163333161656132663763666535333235333863613435616161386638306632386439
+66393464333465366261666433353261326137376532393166653038306539663363356563336431
+34623634313831373863343838646339333834376137373131366336313562643239633635616239
+62366236396639333863386266616465633262396637306637373565656264346235633533316339
+31366563303333303531363331386664666632666631363833353265373166303965663537613934
+30303132393936393866353537353132623437336239656463393237373564383963643162653538
+33326334393533636364646633333830303637653131663536386536323330323362316661363865
+36653034303838656363393761393935366564636235626461343237663539343038323964383236
+65373234643733346663333861643634343662666436623439666632393837636366333938616637
+61373237356631393232326466326264396230323063326464646631633738336134306665643664
+38336434623466356662343963383762383465303630643432633838393732386537643939316536
+33346437373161303330633862353038396163653466353130646639363365306433376635363830
+32633137313334346130666663383931363436333764306435323633653635373336363335333531
+39323836313431663534353437623363366432643532323038663739366638646233633166633765
+37353263636137356166373166396133323335343738623264623131343735363965623439346135
+65356464613938393135363734306563323339653266613938633334376365366131353863613639
+62363931636530346665326630663165363165376161336239643834383932323733343235383430
+33643864343030393638323531613963623333373364396234383563376363373138303333363536
+37383965636438343139363037636265333137333763303032626662353134353665383237363234
+66633265346631636539633366373761323566323833663464636237306437336461643531373065
+63616635303461383563373236353162336539626232363036623233666666666364326464313430
+35366338646136343430326664373565613836616634666666303030306132626130653336633332
+39303363373830653334343132613635323262373534393765316430633030333632643030306663
+33643537653161653563346662633865653037656563613932343962653730623930653435383431
+65393533366635613331323636346637343439363731383635303261376462666435656437336539
+33623230636163613262366464663863356133633634333034386332303834363134393837646237
+66653562366632333265623637636539343162646435333733626530626235613739663566306365
+65363762383531393135343332633535653161313332623133373566366338303031356466306563
+64333761666334383562366137363136616631656630656635303963623836633236373635343136
+61323336386263323132356363303262656335303061383936373432323539626130623837343839
+33383763383130356461613061333330626130353033643137356132313466613434623039363731
+38663132666137663436363763633366393961333433643366633930633863373865363132326530
+66633832646461383161663435346433363637306439623566366537643061313864623663666632
+66386162373661333739626234376534643066333863616463643035623361636236653530343835
+36643562353963353531646236386363393634303364306537303732313630333634303531313364
+66636136333331396165626464353963356634663331636661343463353535623331386135353663
+32653735666138313865376330346466636538333034663862656636353063643232306137306363
+63646163303336626663376336386231313962353732333230666639336331643666383132643034
+35373431626462623066373935343739616662333066616531383063653839623935666133663139
+62306239616366653433656566353366303938346264306665323434636162353733613762626638
+61326364363036653565333535393865333163356234396634346439336635303830376465366165
+33386663373661386465653835633062626132356238623466323739646665653035616561336638
+38323532376564333537326139393462353766653765303137376632373161333266643435653634
+63663932643633663832316263313833323461376636323861383932386133613638386634373437
+30323338356162363930663663353330373861323832396431623766363165626662643639383430
+65326639376638396666363463643530656433653032616464393233383939613765633862663863
+62663130613331613266303739623031646161363639333430323464333564663463326361306264
+61313534613230366262316235353638313538363935393763343764363234336461616535653437
+35333037636137386431663665353039626233353531373032356236333636636438396436383438
+66306166346666353135313431383363303666646264363135313531326564396534306233343430
+66363666306230376465376438323865643661323338373334313162353535326637303136353465
+32643863363138363334623466366363306538326334623134373662613462383235646630376330
+63346562383437323533386134316139613463353635396432646238343931663063633736656164
+38316466623561613135663033666465643461396161623166333365623866373432656239316666
+34663639343030363432656232373733386331356134393334346561323537333035666636343938
+37346162343132616564396537366162306161316235313362303264633933343736393932633961
+31326361353962643836313363626639343839666231376331333735346664656166313464356135
+64343861353434356134353332613863626361646435326231313732346562666235303839303663
+36636361623431616432363930343264363964363766373133326133663533613663393434393339
+37626236626335656631616533313362656262663039656430633632643063346661646561346630
+37393132333938356635383539373830376231303261326365613064623130346232663137653637
+63613961623730656534643233336664653533626536306162643935626330626463376162616637
+31306166636162393038643465373961646332376233653934333337393538633738623038656337
+38346164346637613763613535653463363564633061653163356362363564663630356639333165
+33643830353032343132393731636130663331346561646238633136656634363634306134613833
+61663430613863613034626138616262653136366137633463656236663634383461316565616631
+63303166383263363966313930623563353162323634666464366234626133613266633964383561
+34326662393231653366313934313431623536343031636539393834346131326537386239336533
+36616634636565643433393432363366653065363366346337393534313935306266353564353462
+35393233666339363336643131393934623066613530363634633562653136356235386562643261
+36336236383762333336336437663565663464376165333234663236643764346636386233613635
+36626639386434336635633531303164346263613234666332383530656263636366333362643133
+62633964646463393334376162383362343134656539616166383363383833333335663163393363
+33353365633363616238323937303537646339373330633361663337373831353234313734353637
+65366163626533613762643461383935666434323262656362336435386363316231376439343831
+36343635656463386439643630313965613636353066666537616131366264383833353061356439
+38653332323965333936643566383538306266646234306261616330306632373362643031306164
+32396565363732666262666161306535623236306131316137663135393532613139616462353333
+30626163306235613330636130333235653236393161353735363734626432383163656263396532
+62333139656138366166666164373436303337623534313466366233393239336131336566613463
+34623966353634306235343866363130393133303164626436613865653964303636623438303966
+64643838363062363764303266623163633330623664326634376262633937306664336533343532
+66643438363531393866393736313032336366613366626630323937326337303831643138633565
+39653231373732656637326233333839333130643930323430663237363730636637306165663935
+30663639633136643666333437656562383636386334643663613530653633633831656663396331
+63366239376333386436633661646561363034333466393634346632383834303064353565346165
+39343062313635356361333966383866306634306162376634643839666436333961373463326337
+33353761303639363962623234656239633263623064623364343037343265336637623133373637
+39656632363963643862616333383964396561623738343461356535666534376166643936626665
+33383637623035383332303034333263653761323765326565393832306632333533653061653233
+64656335656434393136343130666566393132666137383639356434343230396261333864356262
+37363639373030343438323561636338393563663838333630373537616232653133626635633935
+36323836366634613331653165313435316564626161353463626665303261346166653163376262
+37323936373832313330653135376138363838326437653630633662323732383230366365326631
+37633036393831346661643732326337356432653065646164363531383766343566653962376132
+66663938666234643962353539373232323633383437363464316137373232333665363239393863
+38353162613132666332323737656330656437383630366535383835313335353735656235636434
+62623131626137613436656164383537666431616166623464383966336630313937343032333465
+36303738346665386237386338306266333131323164373764393666666235326163663930373533
+36343566613930376432623730636638393666383637323535626464373934643831663263363766
+66303531336139343161613562653565396531333237353163656463633134353330316664323730
+35373732663466653362643037396537343638326631326533613438303236313932333333653734
+39323664306264333866383166653962613137333665376330393066303430316438333535323263
+37343264356363333939333235363766653239646132326164353564386166356433346638303766
+38363432313733303339626533343931396538393936323931386231616633646431633962303431
+35323761383230366436376333663565613461393030663237386138363233643334623561663836
+65323737303935373866363432353734373662623736383461306533356238613938396236303231
+32346365643664363761323364643837646434393563303062613036613639343939346130646264
+66346431316335363665356339646632386134323463373435643361313061336431663630386363
+61313265663037633630666165343662326566633232346131396638373733373564636439613165
+35663162383537393338303438613834633238336633663061313163303132396633633739666232
+38303161653535306632306636653661626137326236313761336530313766336239356662353833
+33663736303662346134663832613035643837373066396366383834623331653962373937396265
+63656461633561363339363233383239613137633939396634313864383835386662356664633431
+62313633383638616432333839666433643837653564323864313936383936623030666237313538
+37636136633939636562366263626634343037623962303563343434613033633966383637663635
+34616331626131316239616430633232653061366631376462393630356338653135353037613139
+33333730303437386335626438313530303833623536353433353136306236383062633738373132
+36336133626130653530616138363436623133653239313233323832386361663530666165626230
+38346235396334306161356536616361363730633936356434373538616464646336316165366263
+65396335373738303638303366353835373732353331326535383533653130636533623732613437
+38363265646232326464626666636330663164373939343862323836633864666636323762373564
+31656339353739646433633461363535316432383835663561353931626664613136306335393861
+66386331323261303366656331353839363733376235643839653739643566646334623765636237
+33656334316330396263353165393332376563396535376134343531376137386435663866396431
+34626632663465356564663963613932323466393739633734323362646262666134323936643137
+34646138356434316333663361393736313734383163346430613231613736346333373765663035
+61353032653430376533316533303463323034316437656531303039383362333430386637633134
+62333563376635326265623161666338633966353564393762636666363333323538313762613930
+37343834393861666536643536356133333139633730363865376334366234313238316634353531
+39356538633961343939313231343334396666306163613533333735663230613138303063353939
+63313562306564666461323863646432653964643238643765633332313463363736336137656566
+66383231633264373266383764303165653837643639373637326466653766363233346239353639
+31343437353065333665633835393161643733616161656232343865376265623331656562323961
+38396566623765643432303861623161626633643862663433636664633935646161376335383365
+36373166396239643265663965333366306634353830363433396262663435613332313761643830
+32353839303032653738656436393632646166356236663031656436376666376162316238623633
+36636438363930383764643034376566383937306336366339366234396562646333373935613966
+39343132316532393763663636616631646231373535626130333037376437623339643465656163
+66303662323765643065336239373566643736386266333732393530616166353131306632636331
+32393762363839663366633531343166656330383239646662313461646538316434663632623636
+32663539386334613834393763356163363438383361373936613961653739326662316661356362
+32636238633633643839306366316131663065613237643063646666333561313434303265366163
+38303537353335376237643635303531613936386436356663366136636561613633643862323863
+30623032383663343933346662303661363165613464303335303061336137323038386561633461
+64343666383632343166306637383232613931376436373234306236613064333438386365666632
+38613830653834656561623164366334663336353364366436336438323838653637616135336263
+61616334373935303731333836353839323038663630323634616333303434376234363664343132
+35626431333039326636393139323863376263336330356532663137313565383965313530393166
+31653930656230303334613637366561313164323630396166366563643965313664356236663361
+65656539313262356238316137396536306135366438356461383262613166626634663730393736
+30666439373063623837363937373631643934356662633166363734303439333162306561336633
+35633432613261373733643837623365386434656234343331643361386439383236326132353934
+39613632656439356432343938316563333430623363663933346537663735636537636132313333
+38633432366332396265383164323662396563636237363764333735363430393030303162366530
+33356136623037393537623262323731316564373565363239313634366364653631663162323239
+61333763663764653739373331333263323039663633613632386166343039633836633134343735
+32386133646264386462396534613165303236353535396365356166383862316235636534343366
+66366363396364313832646665393664373130326236643764373538356566616632363261323466
+36623030373762346530633461633261383839363033363464656262653132616462636362343336
+33336239663861356261306132326161333862336239393238643030366138616363303131366637
+39616138663338376436663831393764616234363232653461303563306466616665356637623434
+64376132666635666638636661353338393964356436326634386132616636663136613665643933
+62663630336135326164623664343339316664613236666435393663383038303063663239306361
+36323130363339646162636161343831616165613336373763626237356366336161313935306634
+36343061346237646339656230613963666538306535323837386561343432636565313530333564
+32626139643135303139636331356235336137653237396239666639633931343832326563323732
+34383766383134646164616138666535616535633237663863323163616563316339623435323534
+38363733643162313562626130653264393635666130323433373732393933313562363061376132
+64303432393062663362313362353762333635653835343138333861366134663561616661306130
+64383037626562303833613437326237326635633463633538653464613530346136663138656539
+30646437633838653936666537613530323639663935376163616436323463326435653836376135
+64333562373032396234616336326539613539353864636530343634363337353264373630666365
+32353938393132626565643730303464656363613333363562313763663230323030663264633730
+30643639633336653839373330613930333761376232333630306634386433326137633232336462
+65393935363866626235316661313238353634663036383466353364393566643539636562646637
+64623330383737356132333534323466306461333263646362346537373035366337613038353963
+39633966343265396434386666353966663736616531643737353666343263346161393239303235
+61336538343833626661313666626462353061336132393564393661643165316538653136386130
+65383534393930323336613764663032396135306131643936623639653938616362353866633163
+34333063343436323931613735633738353136633039336430626665306262393334383336616465
+62613335356166313531353762383762366438643365323534323835346533396665643537396266
+36393366353033333161333139633936303036376661643765663966343931313431313464366538
+65663763323730613931613738646539303365303563343430386431363034623361373234313734
+32396639643338393832396133663461393032346533646530316366363865353834333966303862
+62343631623833613338396331386334333863393639323231643334643334363761353432346132
+35396465313833633965353331316463376461306661323565323564396163363439623339623461
+37666365646162633066643137633866343661333461613933633435633132303334653839616638
+31313830626139303737316535386162633661613537663735613463343334386330323262383239
+38366365356136353330643230343936376234663465623563353132323666363466656363383836
+37323239313136626539643138623036643466633539363839336235646362303233373434636364
+37313939323137303132626232333635613062333133303366656263313437633437316136396636
+65643931613133663665303734373433336466626134303530373861373136386664313966353437
+31646533356537373563313563653764386532613830393531623734323830346137636532666238
+64333537346331373634386265306136376338373231313832353638326137666263353364396366
+37656665323131653838313062396431366539343364396437663138326330393938393330396665
+35383965363438626630613966326531626663393765646262353661386433363362353735653436
+36326366333336363435613662613036386666626666303831333131666565303030666230353037
+31633563396563303235306534323461636237393837646539333033616634326163633439323330
+35336666633162383563353566353830326232326465623036303963333362633762323061663335
+65396532356535376135333434323466323263333238663362383930666166383736313539333366
+66313263633263613632343163383564363434306431626233333338366563373966366562366466
+38613565323632346565313035623662613336353965626435653834306638623636363535323965
+30323138653537313062343630643762653434313837386263303265656135336238623661623131
+36303766313231386561306463646631316234393339623664346231373363663035623632306263
+36393566333834306561353330333666306261323134386531323665663132313762383639353130
+61303937646363343531343665326362313031373530363232636539366137636430393261393532
+36316530376662313436376538353564333466633764333166336137346539623838376431353731
+31393335306639623532383264643831373563626635303634393735326334366263653062343866
+34623330356265653265376434333837393062626134393831386263663162613836653839353566
+63633732323565643631636537306132666133316266343066373337643939646631626563396234
+65653630336437306537373636333362613462656463646538323737383436633538636561326234
+33393530643162303436366137323930323231626561343730393665343437613732633263326264
+30363566313965626364633861636537633365316365383564333137343538336563393265613030
+32336635303135326634383036326361303964633063323136393462643131643335356230336338
+34656137656161366661316265363164633938393662376538303332346239623364306632313931
+64363966333439616561633935396463633237653762623633666161616638323766663439393536
+63383035313139663166626436306137636330303531306339613831626536663263376663613933
+35383536303835303135636463366136656631343963353532313434613236343631616462333434
+36306633336430643365623866303134363062646466306431396562396339666364636233616662
+34626235333139613439343563613362373536393665363466386135643463313065643430303835
+65326231656533366665333063643963303637356261663131316364613738613134323537643035
+65343335623863623532316237613337616261626264386462656538326362323432366562333264
+65636662636566326436313463653336346565353362323338366230346563366637333361306437
+31613962343966613034666133613666666166656636393534353965613364666166333137666631
+61303263626638613965633861663231613635383039363566646435613134653365373631373861
+32366232366230356131313465323337333362346333323733373134613464376463616661353237
+30303462343534626161363139633262363866383938363037613832343165376564333137623138
+35616335343461346535383730383933623863636464323930633466333933366533623439376532
+63323534386439323766366165343734643339653334366135323562343664623738643637323066
+37343334343539636465323630323132353332306462303434383332633337356335633365323832
+38646165303838363263666536653962616338333736356637303463656531633261633737323561
+37366536346637366631313633613066393331653132653566306338383930336166306465303766
+62313930636261383131633138653262653031306263613838623934363337346337343861383739
+36616636613936373036343632646166303263646134616261616265653035626532626432616535
+37646430663832353032663663313463613233663964656363653765366437333665663632613663
+38383964633761353962333364353466343439313933343963396639636438363333333039623937
+34306630636239373163373363306139633364616538333537336131393961616339326536643064
+65366361656165343334646530363365633337633038346563313833343564636666303462613461
+62333537623963396530306530353038313334313364653135363735653130383431303230353039
+30613135353334663163383335613734656132343164393462346234356462663266646533666631
+37303238616366333362353064386436653133323738316232316236326366306635393832323561
+32386437633462353961363630653462396565363632336161643432363865663061386664386432
+34323238663935386364303734336136616530376265303964653165623936343132353962646363
+35333532393935663162323033366266626466386562626462373035346264666337636238643861
+35646438633162306630336163343866393936386264663836643663343231336335386164666663
+35316133393333363766393261386237353630333830343634366437643338646334633961373832
+38663839623231383239653564613931336534313464343439343863393835363931373434646232
+39336663383232643864343161373130336432653534353935373635366661636466666638303234
+39633064623339653964303236373937333138336332353962323133346530623064663566613064
+30333535613030393637303531653931613863623961623963346633366236343566663236613366
+32363666306663333134653663326461653637313465613165336462353363653065306438656232
+36623861333665373432643562633938616233356330373635373830353564643432393863366536
+65623432663338623333353135386338613563323138666130373738663764376535373531316265
+34383661646566626332613537326437343065613963393938343261663430633065643963356237
+31336535353432323339653834663133393830323161656430623066356166313066303639393931
+66396263616534396533653866616334623132373030663633613265663831663039303361323965
+39623734373362383561316635393261363932333437366366313961653932376663656236656639
+61303736393066373536376535313936616162323736616431383462626138653963346430303033
+62613639313032303732346632313663396166306262383863386464316561333931313438383039
+36353435636635653939633237616135363838333461363132623165373930353037343537366233
+63313531363537646636316534653230353034653633383663333635666439386230666461336136
+35383634306162626533356662393839363735646639393065323166373230333366333333656530
+64636163306131353061383765383165623238633266386231656534643039373530653230653665
+62623933616635636462346163653134623561353136353935363538303031643138356366626261
+36653361383235623264343666336639623839613933666538326165613766303337393561353165
+33333439633430383331633436653838333338633639393839343339396263356331626134313363
+33623334643131366464373265356537373062306234623262376564306635646135353035323630
+38353036353963633261663538303338343166326335313164643634396139653133346436663261
+62376330306461396665363739333839623163363833353431633136383665353364666133316635
+63383039626134643838333537336437613537633562306161626333333262386561313531303736
+62366362643863393530336136616632363931313565643934616563623962633539653134663865
+65303039353139356430313232326561613039323937343035633336396466386632666365623431
+33643564626134356664313466393137343332656464626462616336313432633965323332313538
+62303736346634343035653135366235376533346463366430333062376562653536356564343964
+37616433363162323533373334313531306439356137303663333136303938613461623038373439
+35626631323963353364333461653634306432323964336435353663633838346630363531326231
+39383931303935323930353536343339633436643434613238626532323662626331643839626661
+63366539666437386631333630333436363361643362333036353962356131653663343264653636
+62666334333464336234386133383034653232616565323239653438623438373037656439373935
+31613161643861633161326439666362666563633832616334613939303533616634633563326230
+65666562363362366231316139393964303834616165643861303439316433336561393534386630
+35323833373733663133386566653766653065663637643437666335663134316362303064303032
+30383832616462383364343631353931643935633639373230336334353265616564363130356638
+63393439653062316234646137313638333166323062616164666266396662353836636635663932
+35393032396665343633336636363364613131623533393130303131353063633463613336323765
+30316235393832383661363838356532326364353666343031393464393664313364363266393564
+33336134346634366139376431613865313531643264666137663131333036613164613831396334
+61386133376430643136363830613138626563633638666463333736373566653732653832353765
+63636339316433303461643366613637626436326365356463316261613761396532633638303466
+65316631623633643934666332323233356562626530383638633732636236313535303831623433
+38313763343163616263656465363065626265626533383337333939636533663863616131383736
+35373930353731333531623732353135326530323362616162326637326136386337393331623165
+32336636396166393632393765386433643664326137613732656631346539353961373531303337
+39373034306538373862336166666466613935666232373562316236346465653662623739313434
+61383564383064313065323263636431623635303661356161333961303366623530303165633564
+35663032363838366664643937316536373337616335383432386339316436386536356563636166
+30326364326137353439363531313136336531636430623234613133616235623135663439396462
+38666237646338633431636537396534613266303838386537616263386564316636626364313033
+35393139393761646462376339316639663762376661633737386261326366626233656561356661
+32663136333638396535346631363864306263323038333162376535363130616565333861383831
+61366235636334643531643136363432353135633837303732353366373836353265636631326633
+63316332346563326137343738613366303633633563363038383633313038663137383438333363
+34343764373062643135396665323666373764303330386564623465353838366136393835353965
+38653633636663316330623261396463633235306661623439336638383139663632343233663131
+37336531616531383631303233326437383132653339393432653035623330623064343139303934
+31343337366234346531303730323965396138336439656139336239386433353063343463366666
+64363131613961353531643235316631346165356239613036663736336532633862313137303937
+64643061343832336438636465396465653731383531343533636435656232383231643335666131
+31313463626132643361313231383631626438613235656332363663336661313736636464386430
+39383035383863326333306636333335653031353331663938313634373932316430616337663462
+34366663656239353333343965393039346134613466383038313765386237643863333564306236
+37626333633831633838383839343762383265633637366664393739663466303537353562633163
+30356362363564353436353536376231646538636330343031363032626138383163343637303832
+33653737623839376466363733316532346561366666646434663565613033646330613530613165
+37336264326564303237393739343431663737643833346263333030386538626566333335396166
+66356539323738363537616664393736653838386637663564363637636564386232376464633966
+62633833623465346530653864623161663961383032303533346637306563663932353134306266
+33643563306239626438326539393136336531333333323666646235306531643466376564343738
+37306566326632393866656562363536656536666137353132316235323962356266643630333361
+65323338643636306336663233643537623539643036653138613861326535303137363137343232
+30356134336266306537343434366139383537363339636231616434313135383139616537663931
+64373661633463383363376136323936363964356638343362383564316366616137623663613836
+33313830333066323638356637313939353165646665616333353462313766343563336162633838
+31323930316633646431633130316436633533653034363064396335396531613331393239363939
+33656261356663343431313131636538336337353466386361393237326665623366383239643435
+63313037393839626665363239363661663762386364326539383639653535356332656530626465
+64623665303938353061656234666338366435373434386364366637306265333266363766383061
+30646331373365386261383638623435623832336330303363336333663830316362323564633439
+35623332343033663561303464623333336135303130613937653362316235356232396161313830
+36653461653434653666633035363439663161663464663037313034613334616438623931316334
+38303337306337646465366633616364613366623563343636393639613161363235363263326363
+32646135623661313135323863333739373638333037653635313132306262643062613134623132
+64383364326533353838383838376136323465393433393539353962623161613536313038636538
+66386633643134333061323339663138373666383239653662356635373666623533353935373961
+61353265326263303162653661613263326632303533303764313835303561626364623765666531
+62343961343263623663313739616636336161623235366530663531373034663163623337383463
+63353264633132663131303264393466333237383038643036616539346432626531333735333939
+35613565613130393334626266663662623866386437663432386335313462386136393938376136
+62373039343861643237373430396665373565663235626363626537333239326236663337383864
+31376335393934643766363464656631386566363538613265333662633833363539336139626265
+34363665346330383731363865323230663261306131303864306332663863663666376666316533
+66643330363432613634303839656365383230396435316661353934653064366361626437623333
+37323232386633643465613836383864393435363831313339656637396238363032363332646233
+35303961323461356332376562393736353462336232386438333565346566376436366436323035
+37393333353165623736326530313462656162366462303337306165366139346537633763346639
+66386362643735346438633537363962393061643332643964613136353962356337343266633239
+63353531306331376337363938386434363061353765323832363735656431353965663832356633
+32623930356134663035373139643265653330353761306262353335323665396561383665303039
+32663466353666366365353237653033636339313135653964336335666335353238616334616436
+36623431346365633465343934343830656566323037656433333334373838656336613361316338
+39336635366264396136343136376435363231376131343665326561616634646266316366646465
+33666161353434356463663230653130396562396433373762643839386163666134376165326161
+36373236626138356232633061663764356139353138346439613130356634373164636630643664
+62623336353433623133363331383834646163383231323835323766356664376532373237333932
+62366364653838313838636535623265396239313238616237326630626634613664356233346561
+36653737616230346139623664363135366134653636383462373963303661306438303831653231
+34636130343162633132323162323133313939373231666632303134353433373463613335643666
+35653138646562626262613861646465393163623935346562343865636561663735323138643639
+36616663616562303463383734393437353931653533663431376561383961313433656439626365
+33396234613030326631386132333937383333373064613763636533343238326366663837393434
+64623035636262393832346162353735343936656130343433373533656362373064656363636563
+36326235323064653466613139343462316636323833336665623764336166633637316638383131
+64396232333661613831626665336562323662613739383465356230303463623162633737303036
+35353761306635316535376266366335666535323736323937633462336130316264363335306235
+36343361363532376131323662333837383662613933646233653339323161623062393833326161
+38653531626261636138383766643234323038373361633435303839396334363539383463396130
+35386361306664313164346162343866623838366232346566343039666564653439653034313736
+36373865386636656439633139313237336562353463653331323563653862633731396364623863
+39323965323730356465376365336138353638333562366333613662653537306330383862653337
+39326331353036383438396634323232393665383661316530643535303933383739386635663132
+63306332663466303331623363643732333333336632323534393231656666623862323136303835
+35313132626133393735616636323534646539653631653735336366656534343933616135393565
+63323162613764383732616437323362323633633234346264663534393739643532356431386461
+37373332346433346362373461663866366538376331366338633465343962336538313335656130
+65396136623134326134626330363431613535303630346161643637343264313063653466613437
+34616635396436666666643038313766333434656330646631353666346632393538643161376430
+61393434316462333630346361333061656162303233313165653235623334383666616565336166
+63376438656431336534316230333161393433393535316431373734343232356332663062363134
+35613034646234343438356364376661653036396630383064313135646162366561613764653534
+38366164353637353332333636383035353935343161316335653935396438653630623664333763
+62353662356365323233316465323539373263383334633934663839303462656263643037636436
+61666330373362636333373633373065623366306137663630336562343762646365303436666437
+32333436353166376335333637346635393531316561343534323231353566626337343231356662
+35333533633834636630336462316639336531383431633966373363306635333363623461643464
+32393132666366386564393161663934323137353362363165343730353534653139393135396230
+39626433303066353333666339356335336434306537356131313639666439383938666339326663
+38653163363534363230336232313366626266316566346234653966666334383262343932353933
+63643061376430613263666564366338373132326561313763313863306437306262373839633332
+30363038316136623438636439613231396139653737323331613231306462376136396235643732
+65323565326464353130646562613031303232623366386166323839396431383166383636623166
+35666331656265633738623536656634616332326561366137376361663963313532653135626237
+35343166316130393863336362653434623661356538363836323534636563333833616634343335
+38396635656561663333313263326136343165393463373437373438316436373533383064316437
+66626138653937313765663338326231323437636538373531616635316338356662313631623330
+63356466376464333430343038336334613366323163626231396136373961393438383331623134
+35383138373035303231656439643931353335373863323432316238306165663366643033313634
+34633836336334663761626530383365666563373339353735626136653433633335633634323666
+65613561376566333436656638386534393365343636333539633736393338613366643664616163
+63343638363362396332303166376263383265626135353439383234363936363235376561343661
+34343136366263333633326465646362653437326238393438663833306439316363633765306635
+65323964363435346166653534393931393034356536303533323663306136306634393562303965
+37633337643333396132656132393831336235666363633632613862393832303462373965343136
+30373863666466656435353335383432333265303934316264353633336339383835333539313636
+32633164336364383563333061656531323161613362636533323033333437306237616630373139
+31353139383934666130393437376361303764653666313638653535313736623461386334656132
+38346631323439343333303838306137656466363435633163376364386638303631623731393361
+65346165346164613936633666613361333634643362303433393966646563646666636166643534
+66343765386665333638646364663062336432643662663533663463616232636563383436653561
+38383835363539363636363839356562623664386530323832623665363230376362353937336333
+61386666356266666263333039333134326265353135656437633439376636343663303031343166
+34616134663339333531366636346232663063626338346531306363656166333437303338383764
+64666137626530623633376162663139386139626164356537636330363438643362326535613734
+37306261316632383061643364333830353831656266663831346135363162623365333436646230
+37366135653038356133303563343665656332333332396436653538316563323534383034383431
+62636334623633623131306662333638316534356531306131623432373931393935313738633733
+65646435333266633234653532333436663539363866623262396233393535636162383665343734
+63353666336634663831343635323262663135393463636430626437343061663135343937643461
+66396333303431666662333933346134323564666231393261343734353433386466333031656539
+63333430646533623939636331303463343638303236313238386166366537383262313739303864
+64383036333066613662646664363262623735313538393136393733393937373866626233393266
+30316538633961613934623839656433613434653165333435363335323935643239393134323564
+61666330316463363138636637323061353166323230346666393635343036646239323438633037
+31393062623838663865333737373461373037353563623732386366373933613939643661343166
+61613137323930323432663136643736643731653531653139646338376231366339356139623863
+64636430333932323762663563613939353635383864656531336364306133646464383163616434
+34353762383038643736356236343634376531353463616362646534363334393430653037363461
+65633165626564656235373365623839343537386464316366356162393234336132326239653933
+34356434386538393038626537313436313636303435633034336633623931326437613462623138
+34373864343130363864356266656531646630623333656534306265373234366331326337333334
+37316364336638626631353661656162643864346261646165643162323062373939303835616432
+31626637653933343234376565316166303038383835633334646631363031646164303338643763
+38646666623465636662663535613234306165643763376438393266643064653965373462303335
+64313036333333373064626239626666633364363432666534343434333665646331366331393663
+64383763353864303532343331343461333031303939613931376339633964656537396132393435
+34343561366463383637343563306562353037623532306265663066333734626466613637316537
+61643865613533356635396662633835663765373261353835303737636639613865393433366261
+62393430663362363963666262323164373563623338346637653161316234343637313036326431
+37616130306639333334396438363266363738356130346230656561663430623038633839633331
+36383439353061356235323165336133383464316165633931313237373762613064343864346665
+31616539353165663838303866363530616262323232636237313634653833346465343061353433
+34383532366362626263666632373864396531323562656637666339633930613732373230623331
+30383161383839303561376538666435303638333532393139363036626636666131633630316462
+30313039383965666336376466313737316130323763313836343937383561353735386165373132
+38613266346433346435646331316166343264336432643936643937346236656537636232646366
+37393236613665626233626339313232386434363265313132323835633133376666613636306437
+34343034336233333235333062633639653734323464373366336539346136343362376263643062
+36356431343931303632353664303536666462343431613039656234636538303330343131616463
+63373537313262333639373739386630613863336239393031643139616464386533353666333135
+31326439373335343037393631356634623532633831613365663664626465636233366333396133
+32366663623965626661313562356136393164303335623565663531326135626630623739333634
+35353332363530303666653765636166643365353834353536353234643739636533346138663436
+63376365613437366530623830373833343132643161323961623037646230373138653034366138
+35336230353237353032346430373832333637333266646265376532306139393531373439666330
+34643365636162323130333762386333663162643465616330393530626333336166643031643463
+63333333336430616565323461313239623730336339643238616663653334633264633631366236
+35323130306530623231653038363562623963383862346165323032623037623632366333386439
+32313130356666646339633065353634663433626537636137636434393361623636346365633064
+35366664636539666464613030643237343261616135626565623232633236656132366239366531
+38643065666136316337656465393534306432333739333639336333326265366133353635353934
+30613433376261633463386131666230363333353139363263303530303561653439653336613863
+38393266643738636633376264656563396439316639356637323663383132326139623031616430
+38343264643834386432343366313938393337303062663832366665653461646263643433386333
+36623233323465646331643935633437636533356562636261336561366563323032353531353264
+32303366663737376336363263653566663932313832393030336434313063396164626537366238
+66636539626437386366313630616564336430333332323863613665663434366333613031666533
+61383161383434306339343639373637366263333131393461653634663461623964623932343765
+33336437386436623333313935623433343263363766363833623562366137353235643634356233
+36306161366362626436623764636431333239336537663661303439633435383861396330383231
+61303461623764663530393665656461323165376464643330346664343064373032316266323033
+63343064356534313130383264616563333137376266353435323735313230653135643161353632
+61666363376435643266373863366339313033663634333061346432393131643263393836303532
+64386536373131383362346261323261383338663661666539656330663066326464663462343939
+32353933343431663663366261366265396162653430303835393736333961363639633336363963
+37356666613765376636303061376161323838363437343430636136623063363232346236393239
+38626138343239313731346464353531383634646330336232393035383564613364363135303230
+32313736376631613766353239373537356565356230373633643936616562323438646536663631
+33626561646662343933653639663334356138373866376163643161363037626630376262616430
+64323133323265643361353132643665353331383032353735626133383737353835366231336634
+64616665383432383831653435653666376638376338616662343335303038343266613636336336
+35353531313231666538323564376539616539333836313531376635326139383865313363643233
+30373334363432636237613332613534646536303261363438333231323263373064323661623231
+36316338346630326362623232366535663266616261346565303262633664366664363230376466
+32633365613262643263383462323239386363383131336466616337353631373937623166346533
+36383436646161353437633736663833653366653766666661616532613837363634376262346262
+34393463303933316638653731353934616233313463336134383838303032323464666261663631
+34643065386535316464376439323834393830333732613232353635656335396564623866663831
+66386131363534376433383830653262613361353563633334613163326630383561633862663766
+32373739626635366133376332376363646134623666353735396134666131343064353132313438
+61353534366137613339643334396236323061346231613039616365303762366636623030393934
+36366538383633616561656237653964363065633436616133616334623838373135383738343465
+31646230626161353931306538653433663731653066323831653038646334623836626633393137
+63623336366261663865303664306437656364313038333131353136373834643032663934313335
+32663361626433653566333732326262316436306334623432383863653430306438643665353936
+63376561303665306466373535643931336534383234646633613265633865393038626665656162
+38623831636438356539313136363735663736633663363165663031653533626436326563656230
+62633533323330313637313134346634323833663237323865316162663765386362393437323163
+62643263663265356237653034663537663762613438386362373966306337386662303761373238
+35646335396631336366623166313066326231373739363739666162376430323736333039643934
+63376439643466336262396136353965346566653135376535336436336461353138313039663164
+30343738356365306566393839353462376636356635656465383234396465333263396238626562
+35363631636565363535306465333263626165666663616337373035333135373331326563653230
+38376363666131616564363230643235353438323030336634626233386237343538396235323839
+39643533633030366537643833613930373637303566646434343534636364323238663031346338
+35393535346361313563303131643463343431303035626261313330323635356261353032363737
+62313735386633353162613639363233303534396636313639363139373566393266393535626663
+30376434323339366362313634323032366339623162613664353462396434333639306634376566
+37636364313137366138373236653264643836393333356337363833653061363932386363653466
+38306131653363396132633630396139333934623535366363346462396138643463653464356434
+63366464356631623862326262323032663236353536653034383632343561663166343031333332
+34643664383231363162316336363535636635356637626262323762336534336535343365323932
+32616337373635666564393634663764643430303162616164326262316561626536343464363435
+62356632393933373137656665343862663336646364373730643466633965396663333561366165
+30353136636266353638636137643833626331396132643938623236636137666461316161633565
+34366262656564386461613431616630396236333036656537623639386236376637663565613533
+39323830623333613838373837383465316530333566656361393034373934666235336339323638
+64643135383236363037663566626464373761313564343936376230316334376334636264633539
+37396261376533656563373437303364373637393434386432623064393230323663396165373731
+33373434663562386165646562313162373264313864373438353037643965346265323566396537
+61653164663339623261323633393231303163653262663461333165313036613534643630626235
+35356638653438333038646535646433346238663166666337373536396264373762643165653938
+35616632353563643336366662313730346130333035646565653566323964396530393037316137
+37393138646339366339616333313438373964346231616132343631633237393331623764346166
+66613638343564366661353365343134633530633034643664666234646162326233646337333537
+66663233326430656634663330343165666435613761626563313563396461336333663661323130
+64373038303264336563616135313637373061313163613735363030346533373530636666626264
+31666361323431386162653736653834393438376439353135636431633438653033333637653330
+62373066373433666337623131313863613132313131303165306463303332633832353135333766
+39646164653332663039326338306637623137353337353861643963323233323062393134333066
+39376163346537623431366431656539383635653538386461396162623734373439633663316666
+66333765376337663131336330313565663233616632616138346265323739313163653139633161
+64663637646134663532626230646465383362356638376462333261343430343634336539396261
+66313766663264313532323061666230313031616331663530623933366233346638633732386661
+66396333363537623634363562613335633164623038313965396466313336636366646263653634
+62383833396166643131306239303239636363323561653132306164633532323133616538353131
+33656262613638376465376466303330376166636632666230393362353733643730636666666334
+32363432653638666439313836333332373764656536356538666334343665333061386564353962
+65366534383365646236663366376433323366636137343939313839396339376338656233613963
+61666232623637616564353433643534653733646464333837393930393639366263373138626135
+35623030663161623066633733306637383461366539373665343636303434313466353734386439
+65393536343834356462636237313233373031343465393634353461646433646566356361366261
+32373233643465343663343061383132653663613664626136323832386265313535343835633930
+36336535353863336338336332366634323438366530303233373966353636666231323739666335
+61376531653836353431306265333532666330353330653134306236376439383230396638363135
+39366465393836323832663630306133396262306335373835323336643231323237376238303462
+35373337376337313732353331636230366663323234633162303234376562623133663131383962
+66616561663564666363346130323639336437636261633533356530333934333962326133343063
+33333264376238306566396132643261353138623934393536653465333962383138336535396564
+36633064313166623464613038646633666666376532636465303935363136323062613761346631
+38356434313139633437383636663061626163326262386139663132656637323334376139343036
+39616335373561663331356231303536316665316164323037636432333434346633303136623764
+39373030313239653231643737623031343533643365373034323464393838646235336563663635
+39396464393733356564633661663332633566666562326461363033653833636534346265313766
+32386462333962343861613334636161626164616533643561626631343864323738393162333830
+64356130396432643665653864303738383233353039646463326534343436333165343235366633
+31666633386466313239613534386135633639373739633638303634326636383335626334303439
+33646664366361303365346338306135333664313931323430653331376465306339643336333866
+61393030333137323233376563626537643536343436616166633864383534663830353031623463
+65663537323039626362363030333964316161353331646138653464633838663836393666646630
+39633636633932356366643839323636653965366536306662393166646537343565653162386434
+36663437316165323534353261666230326263396134343363303436393434323265636662653365
+32616237616436626130633738623562626438353931303066373364313033333934386462663134
+33343235336232656236663761346234333935663863313334636533666639623866333462396364
+66306431343932613636343261336338646466326664616635663433316330656330396433626461
+39333732366638326235326664643734336234636336343235663439616631616237313233626337
+66613534356238326261353733323130323538356239326663333332633933383831646430323436
+65663532323664626238643633386566616639316461633731393231376337316237633334626531
+34353561663433313365356266666131363439313862316162363138333862333032383036366565
+30366166363837666663343631653431623564396361313636343634346137643261386165336134
+61653735343636316538303764343532333863353964613434623564303364346535626432643635
+64383864386435383166343034396664626339373665613164383630353462666265306438383334
+65336135363130356163323032303064373437663138346464643636333633363630303034643930
+38343064316232316164393864613365383134353533643562363466346133633138353438356230
+63373937626634646537333164353739323930363966346334633962646234636538313333663763
+35323538616333326138666233623336643335316239323165636364313164633037326662656530
+65623734333531396566366364316262613465623237656233623865373933363961353037613939
+65303033643439616337636466353731656233386365633662613161343833633636623865323734
+66613265323838303065383633353861383835626139656539373839383465343732313066396632
+36396435373064656337373730313530656662633661666636653161633437356464386235343938
+38613062653566623637623263663962653133633134353364323666663265616363383761656538
+38623161333639653034353666356232306637333431663233333933653033373639643039306634
+63376666613639316337346638613937383033366134636364316235636233623238323065623437
+35323538356466623561386236613261643430626639656162653865373861393135383538623661
+65313234323737626433393563346564343063393135323038306433373063353866323637613837
+34306461313339356132373962623534323865363364323737333637666333343137613761393436
+33313966386565663966323364346565656433636436396336643062633161353131643734613264
+33356363386436313266656333336461366232353163643836353766626530373139393835376130
+62376566663137383534306363643832653566653137653934316539323730393938303162393234
+61646336366364313032343435613434336465666365346365363165616265303163613635343030
+38336136363534396361323331396665653530663332353932373534646537646231363236316263
+64656361393739356464376163376135633162363136353034366234613661623763643132393662
+66613930373362386438366462356134333263646536356361313864636539343261666364356131
+30643061633961373835633434343263336636656633313734633236633038636235303465313665
+32633838356434613031336235363537376136393837346432626435393565386461613030356434
+34666465623331653664643931653538336664656333316439313130636565616663303237343232
+34626661616263383233613935326632626637373766383063396536656630386264656435633935
+31376332613164356332346635656563363064626235643938383633343264366263313764386666
+34623139346536663066626431356631373966383631363231393062643862396466626266633335
+37396561353665303464356533373666376436333766653038363231333961333462393263353232
+63356438373033386437396431333863646663613838336139313862336536303462353237373639
+35323637616564616535313366383231393265343561393231633366626438386637663236343136
+62313935656531303261386161353033616261313835623864663133323333636465303962353838
+31353261303361313030633366663335613064653835356333633431346461303132316564626462
+66616566353138303930666338643738396430616538306461633065666331306639396132336366
+62663637373038646232346361623966616436633065363763633630656431623038393434363462
+37306438323362636264333435313034613230383536383732623934323437303432623061303939
+62663666316262616534383862333165353831363635663433643966633436316232383065656164
+38646636306134646561613664363730313766343261663836623139383262366663383834336336
+33363033656464303738613631313630353333326566323535323562393262666666663461633138
+64323231653739623931333430346335666234626663353031326134323332396462353932373564
+38376662663731613466323661376564396663303839363564383161366231323633666165393838
+36363130656361313837316264343338383965336238316435356433666531616466373836643735
+63393338336632393939373335636631336161326361306534363133333130616638326435326538
+34306162376533303932626566653137383163346532376161313362393233636235313163343230
+30666531326539626363323462636539343137386332616636613537363165303335353630336132
+61396233663537336161636439353038666663343366386635386163343931363631376534353530
+62666133646265306431643564326361353862323762306236333330393539653662343737663566
+65386130306665656132343461323733343735643231353834626232306262306338623766663032
+35366139323633303264613161323862616361623430386139373634376635396561633733616137
+30643031386532313037326662656562643461396136383032393761366262373664383432626666
+34616264353164383463363738626365613933636435653366386536313038636165373365373662
+64333732383233323336313837623730393235353461613734636261656464333433623135613362
+65316330616531643762323361323266316433353738366564633362326130353562313566343561
+39643633303132333636323035643236633931333164623939363435376166653162656138623738
+38396130306234646330383038356430643662663635623765376335386534383761376661383830
+65373864646331663135323061623336616361333134333230313166353238396661356438353432
+32636364383961353635656562623138323337363835306665613830666633613661653439353539
+35626362613363636462383966303765306466343163633934636363613433386466366330663939
+30633433396333613466613536653833656233353536326533353536373138623739393234376562
+32666539633262373933633038663565346138343734343330626665306135653632386363313866
+33303362666265363466376462613533613433396635323833346632333964393533386663613632
+35316362393864623463656263343562313131386430626337323735303166303734646663393238
+30353731643466653638646162313537633664623433386366613030303939623561353366353838
+62353765646431646239373361366265333931613537366335646536623034656639363663396133
+64333036316636613933613935396335346161306261663530326437623835336536383536623265
+34323262663965373964313564663035303136643233336335386439363764653566393137303164
+64306466373730313033616232333335396462363137616532313334626133643130323638396435
+61323133363830653163316239653335316265666335353238356438616437653763326161626630
+38336261653363663637643837653663383038636630313365373865633730346534653937366463
+39623863366237343738336438633862373735313033386565356436363132303362353964373333
+62333462393438663666376338313432313061613932656638373466316661346463613531616661
+35323437376539366333313565333436613765313339336535316230613865626339363931393030
+64393962373064663238366139373831616563376165373561383230346632623662303835303866
+65356236653236303731313239663231313036333438383131393462343962333965396431636530
+66663833343137376436323065366431393335306236653237626432366161373565643031313331
+37623232306133656230666135323736333561323631623133373932323433623562393763616636
+32663464343538323730366365346632663233646337653261376539663530313431626536633265
+63613965356233313266316531663265306432646666623334306263663263393337326539373264
+65336434613134376634363063643736336433636139383065393034666236313362636432333934
+63353431363365353631386666386631616531663231346263333662623263313131333436663764
+66303930323964643739653934353665383438623035346463663934346131643039316437306630
+66353862613535343366393431623138316663343530333739623561306338333433663537333530
+37316163353066303537326162613664376462316338316464306563643139323530383434396431
+64643134363938306232336432313331313863383734376466306332393634373964653832666531
+33623933623932343963326234333162373666376134383663626436393931326233386636656164
+65306461303533363962656139303030386235656531666461353239393434333065626432333635
+33346462653363346662306637383535303439353063653566336466663831323761656139656337
+31303332306662356162656636393562383937373435643963613335336364386532383339363463
+61343063633865316630343366383239383065663338376330623262663232303133666132613862
+63366432623737396366613630323135363031333835306139373933373033326435633864626461
+64356334333336333331373339653331373061656332663164376266366430643766653035613439
+31383034306664663632653833306238353030303334313566306163336337303931346537303133
+35623638393233333962393763306333326332613362666639396665366166313332393865373861
+32623237616336656639636663643264356631356632386336383463313838383330333639336331
+64653635366363623064333164393633336164636537663266323237656663623161636332643239
+64343139653563396139643835366337336535393838663837303830376636366563376661323964
+33653466363535333766303962373234663963363362643333303736333866363062356532653831
+64306332616539646430353930626239326539373366643138646438653839313838363530613134
+62633433363431393236626663383761346130646263303962373632326165376262663866626437
+34306166643836376333616362353865636234316633656163383261306139623861333436356462
+36366130303339316462663239393234626436323162616439353035653339663038373837626138
+61643166313231303037653239613439363564316562383739323032613332343033636164626139
+38363033353037383036666334313461656666393837306237353138633862636338373132656238
+62343930313639646633643961626634373732313033633464323739343665383232373435343830
+39653332313466323335653031613930346263366134373133626431633730396432386563353061
+32636238616635336533383035363962643834376438356662313930626561363733613034626331
+34383062326463313139316437343635636465326261623963666661663763326330346336316266
+31653030343765653063303938326162643163613433363866393664663437633234323839646662
+39616330613765666234663563373632316139643866633563393635613635623630343435383965
+39396534396237383637343862646566306434653134653961393135366333613130623465393539
+39366534383064393032633930646162306630303663383863303833393230326161656338383363
+36323531333034313638336334343262663661613766353233376464633465343235626361303135
+38646636383734353630383665616363663034376138626366633163636663656431323836303363
+30633436306166326332616638326230646331643262303338353164633130326136303638396162
+34656662313739363365346163346162313665386430613037613834386438373031393065383430
+61626562333232343638336263616465356565373932353837373763646265383066363233323431
+63363739633666356439316530333261636631353662633563343036346539613564316539356230
+31306631623330646333393030393138343864313235626231313334333465343531653030363635
+31613038326638663931663637343439633566646166323638383837646438333033333832663264
+32656261653865323833633137323833326637623364343234666561356532643566346564336661
+30653664653230396534343362393139663034373230303363613139366136646132383031353036
+34363666386663646161666132356433623935626536376262326364343366373535636164656634
+66666133346163333833383035366238633562326565323864616164316536333038323231663238
+39333766643962653437326131656239613261623131306437376237343563333130636133373338
+63363164353937313463376534356630306462613537633237646232343331616565656264656262
+63616137383864623336313136393130353931376433633961323230303863383863393866346661
+33303062393664633938313331373834623130303638336563336635396563386464306664363830
+37303164663930363039356263303538353836393266353839626536356333356361393866656562
+63313137663862653862383265613637363137376236353332306163313136333830656566353333
+62353561653235656635326134303637356236633061316663623137346361396364666662336666
+37646265363565363531633038376461653263393532346230373037613062323931353466306431
+63653063646330656566623563653036303364363330373239316563626262383133333831333633
+33333137313065323061633733343833373139303934333430646466356461343161643035633530
+36656665626465363630633364313736643865616138316639366133303466343962373266653961
+31323435663466653532633435633465653866636435326339393130336636353431303061376465
+64313564316630323237656436373130643835363635313833323930656531656432363430333635
+34666138616238356162366463623636626330393636653138376531663630613066656634666464
+32366666323039323663343062633965626365346535623036393032356463306666353930643138
+37343966393662343435613565633532383064626630626237643961653234383835323938636436
+63643764383965383332366361313365383862346232346234636438363765383937623465623063
+63333839333335343665303862323339666339653231643564373635323735336436383566663561
+38363931663337613566383733323537393131623739323535353236343562613638653436623337
+36356337323763643865333662623639666234643064343238356333306466613336633433306634
+32623232643934373531346262653338393835333434666531646461303230313633626166313937
+66333466316533326431313933316134306366383036353137316533336339623337383963656235
+35386135303063313238373861613630356239613437366139653237646365653333363662383638
+61353064353939326461613231663965666266666365373161396265386263383232626535626637
+61656333386564663439623466343562323230353133373335653735396236653339663964343264
+62303266306335613763666334623963623665346638613466373765396338626332643361646161
+39346431333861663138616364643763303432383736333961363564666230376363373865633235
+63633634616231663961303335393561383262303564303535663335646537613438656462646336
+65396233303531313963303866333462363761623466646634316235633431383738373762383462
+61343035366539336539396164383563636264303731343232356464643831633137346439366238
+38303337343362356131353464363636643534346632343763333063666234646433303139333862
+33333561383664333837386562383766633933393334353435333065303830353162383763666437
+66303565363432383564396636663166653335633433353039636133306264353439616163306336
+64633335383165626539326337633830313964656266343732326233663039313735376362613334
+64643830346662633931653633326337353336353834393666653837646261393638633265396362
+61666362616237646662343161376337666239386530623538346462316461383438646631313336
+66613339626131626665323565323934383865333666333931343065396135363765383539386137
+33386362363934626239343234623338383631646565336136633033646432656431363262383334
+35636635643130386639383130643938323931336330636630366432376135303935383961333365
+36356634393230313633336638613935353933343437323363336336383632326233353230303234
+61623131353934653663613637316432613031643164346362303863396536613065323536353233
+65323333636534333835326363333866633839343739386336316464393866653662383837376639
+63323566376536643937316465396635353066663930386263373232383166333161376230353939
+39376332633064633864656237326432333764326336663030336261613133393937316465346463
+38303033313337326436363538653539383335353537633737666666383435336534346237316130
+35386362373763643239656232303933373535613064353133373533396239386661373130333237
+34363666396139353739346235396433626637343130626430343937343530636137343466376631
+30336566356436316138653033363831333466616461336536636235343032343330316637363637
+37313235306466643262616136613830363163363632306234656436363332323462313630323437
+64313063356435343466376464373862313864313963613638313631666261616665646162613331
+34373339656564313763613836386563303432323166383265316230613138363233343236643232
+35666231346435363037663533343334353062303830623636333564333036363661363135353031
+66626137353961303534376330626330376438666163613163346262633832646436383234656538
+30633866303466666564316130393531393339316331396231316564333930653161393361386261
+39393637366433663534303730626164363861306165313932613766373462643233353235393461
+34323066346662653034376230323332666338653462353430656364643538353836623130343938
+33636364316236373733636232613362626436323163373933313639393330636334376434656135
+33633534336237643561626563616435396161336363376632336563356435306338353536663635
+63386530316566393963353530633932376166306530393631616133326665373065373030633934
+64303333613930346664386362636638663964613731336366323630616263663864336562653938
+30303233343266323666393764393439353261386464343839303434623739343731396365633963
+39656431653435666130343163383638646537346439666337366631383766303532626637646635
+38336432383566356534353230303236313532366235356561323234653964346534643739623633
+62343464386639363336346365623561393664313162343430326138366630656666303863323439
+66623434633136363633643437333933653138323730643061346334316230663261633166326531
+65396634333637653237313931343631666165323337636432363132663061333665383862333837
+32313363363862346239633965386132323035336439373535316238636462386330303337303261
+31643563316535653836633263663564366162353838663462613964663335346437343162643866
+32323136656138346531663638666265346664336337643534633064396536373064386439636634
+36376461643033323862623533303439383632363661666338643638383835613832373965626433
+64393831636361663061383962623135626236343636653339633939666330303538323137623131
+36386330313737666230626364613939663138313864316536303933616266366335336262313164
+65363764656536636362353933356133303861643832376239623064343230356332633535613266
+32613064373434313336623134636134303932383865373666336266353132333937313261653735
+33633334326563336263653638323261653063613630313235653737666633666533353534343062
+31306664326131353361376263386563333263323665633338336333366435633436663538303032
+64663036326162656134303436353430373466363539656539376135313238336565646631353030
+39643466623964633265393661666136383431306130353832303535383531396163656335306635
+39623165623639663735323033323961643834373334636238653038393833373331393333373532
+61323563653963376139346436336139303265666666336465666462326165336165353336346365
+63393862343062396135316635626338623738633530616134363938623538626331313764613361
+38366562366132626262623431306563346461363636373163356564316435663464303563323637
+65396264363639613434653137633934343665626532303231616534636165633566666363313236
+35336638346339313430663432313564303634386233666139623132613831353862353966353739
+62303061316163383830353466373934313233633465336233386566306364636137393063313436
+38336432363932336665616137643430343966343931643736396162643030313466653738663538
+39316631663966353563613834646161343833616364396264323266376462393763646464323765
+66383832313961333561386434666630646134636437396431626230653333323432393331306339
+65613734656661343464346565666163303966306238613431343539643864353238396338646539
+32343636366161353533333364326337613665316339656665646334656362643633366431343432
+34663433396139373561313936623233363437633636653064346636613733616363316632616164
+38613261653162313335353835653739316538356133336331303334383334366434343364616564
+34623030393162356334343135353535643138616330323939303138353733626135653465386338
+61313732633662663635373364336435343162356365646634366539626331316336633537373863
+30316464363630393231376630313263386136353833376638366265656330626264653466643036
+30393834323536326466316364643031316265323266653664366231623335666463616435303962
+36616535613030623362643461383930333438323535363061653337313365326539396262373664
+65336636346466303339353538366535343063396237376336653334363935363732396663316661
+37373732303565393235346639633136386131633661643064633964323438653964363835316636
+64346537326163656363373131366566343535653735613137633332306631313332303064323664
+61363034363266373463643631326431303739393537373263626632353262643736386466386631
+36306162613639646463313566653963383633653065313130343937306462386432333631343235
+65366433383937333435336635303961343834626561316333626434333162646261613936666466
+39336330626633646233353137366330336631303731633864303237356636353733663539363731
+62316535663030336233643766346465373131333130316236303662376233303032356630346465
+39613833653931323232623436336264363337306533376564646537353861376632376661626336
+31396561353466313039616362396432323834353130396236383137326232613235613237386533
+34626535633961653638623231306433363330356465666537613363626531663762666436636438
+34623662323734343330363865383236646432306634323737323661616539393637346330366364
+66653762386661653833313266646661643766366137303332646538633164333361396333633762
+36663764356638303430356631623131656561363738623966306435316638643632623334393966
+33303638643039613530353933636635633334333531623461666432373430343734363765373333
+31303337663763393237333661306638653136663561333331356262313563333261313835636631
+38316366333331303763373936373430663239653835653634636231323235386631353466623637
+66616437363037623066323562626233663935666461343962386662656361643837373438633564
+34353063386462656531393664323333393730353761656363663032353530623633613036363462
+62656664323634383638353433333031613637336336313936323231333463646662646166343931
+38386363343863336532316237366565626136643438383761623833353630316163353961653133
+61336239343031366230306139336462386633316630333433653662646464373030393635646139
+38616564656465353434653436633232343134626632326332623739306532643839333230333538
+62333066313430633939663966363831626631373335356339386336666462623637383832323436
+39663730376239623534366131383739656439653263333238386336306433383238306665326266
+62656163306438313765616637336662373435313766643030343439313832356436366339373733
+33653861343033363464316138316563613963616663333236393432346533336363393563643130
+36383438376539316234396230633131333831363436386264373764323639323335393535653762
+35313064363563663565623565613739376538626537373737343662346163643833346538303865
+33313732333262326433626138616534386238643633643531356433366235636233373934313537
+33303634306630343438393938316166616535376633386531646164343233643038626334373763
+34373962353964383233633663353864376438336630323531333936663264616332363863666539
+61383666333535376266326563613735623662356138643262643035306135363866613232626438
+32393033386266643031393666373139653763613966663764646134393630333864646439393365
+64646233613538326337363764303563396363646639633663653130326635376235623064393434
+38666437316139383031373530663036346437646233306339313964383562336335353534333532
+31356538653432333334336134366434333735643865616631653264653830326135316130316533
+37306337666439343630306565333737653234363238393061363366396234303133306633646433
+35643539323263613232613961376562326533666339633636666362303262383838316338656566
+35366536326338623937393964313265366665303365393365383733373933656564353663613539
+39323932326132316164353562373139383039613763626266663838633537636665393162346635
+62663436396565393166383438323832646337356430613965616361643263663936356138366466
+61636532323437646230623939623535303831393362393964666638306231623834366332343531
+31313836343263353634643134663830643839366265613461623131613764383864376666393066
+30333165343136616136356564636664303038393438393965646432376434623963663265653433
+35376535373937366364613966636535643165316564323837333134376336343164383962383264
+38393033623035653632373633613633386664346238363266323133313432626439663462616330
+38613336366637633038386262636230326136663031373731343037623338306630616362306530
+62633532363132316564666461393033356337643331363862666466633834353761626631356639
+66646464363034363536323636386537346365373330373336373738386463383564643461313837
+36333634333664353763353530623962303962656231306262633433663665333131306331663839
+31616331303730343964346333336631613336313537386631653462383831313333636433626531
+63313738303833653439363632353865623134663164376139313961386662653034393238643938
+31393563326539376265333764346534626237666564353037363436353534316537373839303933
+62616665656164636339616133393734376439333235313934323533383636323936633931303937
+35643063666663636666326538656532396165306235623265386631653361326633653038643863
+30353739373233303363373537346364653262396339316130656237316334366638303832323764
+38353436613061616438376136653262373363333739336435646538643866656632373262613034
+38653734323332313435373161363035643365333332613639653632643764636632663963646332
+39353732656638343333336461613330326136386564366365653964313535626564336437396263
+62303931363364666561613334663131613536396235316634653334613638643830616430346133
+33326633663365323864623136323461373637616533633266346430386366633538636362323731
+30356132303235396137373264386132383731383264643261303830636534396136363666323830
+34346135633461656165666264633434343438323466393365396638643466373632323136643966
+36336539356432346134643737383333326162313638643833663530363232386463316163396338
+66613838326565613563646132336262643835373162613432613138393534366431323635376661
+39326530633163646564326332616536353231316664386138643432653861653431663561386636
+30336237366565646338383133323761666135343335633731626463613036623564663966393830
+61333062313239363732343139643136363632666665623262323066663537626262306338653932
+39623232613631666261356564613735376164353637646265303161306436366234356337616263
+36393132343435356436336662646464626534393266636664656462363137303733663630303065
+62313739383830383132653363666139363436633230373761626138353638316238616164343437
+36396433366665613162653532303961633265343461316566306663333234373736363665643634
+37666465343763656662363163636164343539373135376135653239383664393334396237643131
+34613765373661616336333731623364643431343533633936633261336331393331376335616165
+34383032333161313134313531306333376536343733396466616266333764303230616335663031
+63346161346431363237366535306339306430613438363430643862666533633631346661636236
+62383934353836623439623466306565663437323335336437336332386436326338333838333833
+32316636613261306536396566643962363239383661613965346235333966396263613765663832
+61653135333863653361303465303463656532643663633635313030626539366532333962613966
+30653464646231623537366665313063353639393862346533353762616563393965323833343430
+32653536363334623462343631343134326461626336623235303236393562643563633532663230
+63393231633230306334326635353964613038353464633939666336373763313232373861313734
+36326462383563616265653332303866323230363233343039343136383133373231303734386239
+39386561366139636665393034326665656139623434383266373263663861316539623238633635
+65383966313539633265383938303236393434646264636230373638663032393938353962646163
+31643064333030313265653633333337396432646632356533623866336130313934643963373331
+32643031343266396539656235623237323130366661343338326364396633616336333435346135
+31656562326639623461653562643536396532643133303032373838663533653031356132343262
+63613133383035393637326330303461636466393139613838316163313039333039663931303261
+61613565393139353833643865613032616436373763636333646133653636333961383435633335
+39323663666534306665616262666130663132303533323933393133646164326566343839333030
+39316532626432383834643034366432373962663539643563376435373964383962326565623535
+32646130613663373932363630366466326366666635356235643161616230626531383134666637
+66356635303862353566626263343339316235333430323364393230336234353565386365343662
+35323639646138376266616335336432653437383163626664626163613138646365656136316562
+39663230386536386636396437396637373239373331666332303337623539323538373430306539
+31666238646539333566366636383139353739643535373030386333306463666333636361383164
+35666337653632313331353735643839646262343934366362626666396135353765616134656332
+34643138306566653265616461376362666235326437363636306231313430623364643731613032
+64616566353663633234396136623730393864353233306533396138306364366263373730363962
+30313832383935343965616232303064396238316131633834656666363661663835663439646331
+65323962323339646166383832313131316636346666616466613430343266383533393061376432
+63353765656162366335383335346533613966663837303532386363386635646461333031356562
+62643763643231613832306632626463643339623938316139316564306665653530643438396237
+36616135346338373338656163326164663034343063346364373561393137326165613436623035
+65653438663131316439363237623461353861303965303266633632386361646135346566343432
+37303339366265666639613761646263386466646430656137353237616238346137653335393435
+36343235313934633164333839616634616362393661326331376339303438363038633131343136
+33623065383930373362313066646463333864323335376632323136316666373062643263636239
+30346438356230613836326265343332316366666265663065663561623262393462396539613332
+37666630313165623936363764323930396339363462363938653761353234643332633538323032
+63396534356566323431616435613966333736323062386261363934303633396535616431316264
+31346233316133336236616336393563386466613336663937663537653439663331616137333638
+63313134343232336637336636313536616130376462336163663938336538626137313836613036
+61303232313639373239333061383438663832386461636235643038346464316364633238356565
+64656266366130656236303434643930323132393637626538383962666236346234663364353539
+37626363636237613063646562303430636139643464303962306661343036386337613731636364
+31626661373863346335386566653637656633633063396332333866333866643030306461643665
+61646439643131363334373437643838316366616431663530316665613438336264643864653563
+66306163313462313665666365653534366138383566353033306236353038623763663330323264
+34643335303038366463393465323661363135626465366431633966353865396632663339356131
+37663131653035636538363334373730313735636131353437663838373863333938306333373637
+32316265366266653439646566366563383430393266613463613562653635613139616236346530
+32643536323433663762623639656164356639363561326335393561653438376636616266316638
+35386335646538356630653835383664623131613236656138336361656430393333663638336664
+30333762643561653739646331396264303539646337376162346361663336376262656637386232
+37643165333739666433396163653033343635366365376534313133346135326434313864333033
+61376164393462396533373334363438656332653636376636393537333763393633323263333364
+36306637653463323235336534626661656332346538353737373132663938646337373236636633
+36316663616631633438623331383634623736363030333031363530633366363965383064623531
+61633562376665393730616661313137663830393133666635396438383132353536666266393630
+36396131386636333139343462356364343736623362356663353132336538393231646564366136
+66653561646331366532626662633734366133376462393062633139336538346330636432333962
+63393361366666333533663939386334643032373566356131656433623163623530363566646435
+62383863666366393130353539626434383464656464323139626166636536616563373134376532
+39663265373430353061303336643266323132333265303262326162396231643835653337363732
+61313161343433653964303639353032393435646530383432633066613034326461346465643233
+62643735336139363237333664396430366365643934333964383737623038336531373732333333
+33383032333462623562313133313431626337396666376636313137656332313165646638326665
+33653563313263313132613333393366666531623130313335316333393561363439636563663031
+31393631643538366234623564643039333138363434333866376566646236306638633738633533
+33663063333637336463353264633664636337343435636162386161653665356338326363393739
+38633962343531306536663665663130356531346630616666623333633839626634303138333664
+32363362333538373937356433326634356634366336376166373461303739663563343738366362
+66653835373535313637386162393664666464396638313333346332356136383739396537316362
+32306363633731666530613234393431643032353033396139316631666665333137363435333965
+63663065306137306665363732346134623336386661613838353132303261616536373933626433
+36623638323837393037353737633333306639393266393130366634653339366532356664323763
+37396632366261633464343133346632323732393063323064373737313066376639643432363236
+37613036323565323438393133356531386535393233316339343866363631343733333464346361
+34386534653138306334613234383137623539313864373736653934313531323932303564376632
+31366630356138383366363530386465356538366662613865636561303135353163323333356663
+62326563326664633631656534373931333930323665633439616265653533616563366334356664
+64613138616637333838656437343061613766623262633965323035633632636333626666303739
+35313934656537346563613265643434306463313435376432323632326364373139636333646162
+30383766363234656134356462333037353631333061346130646134366163633932383137653333
+36383364666331303861653735363930303837653331303633313136396138343566613334303435
+63313035336664323336663539353732363637646533613137316333333763316561646364656435
+34616331633462316530646336353932636433393361346336353739376263373361636465306239
+64333534633130636161623662346465616437663831633564303463373337306236363462346163
+37333636653032313831623535616461366566363561613138386238376230386237333061363131
+39643063633037343138383130376634373633356634326265613264373465356534313863613531
+65336438306339373835653964633133326563613964353363656435643561383039656338666533
+64333431343937623933323135653330353436383834393030333235396365646362323835666537
+30643966386435636664316436383339653366333066316130313361393466353565626363336236
+64356531306363653161366664626162613331666133383932336631303731323032633662313764
+31626334663566313231343831626235646263346539366331613063313463366666636139353331
+34396537303665633533633864653635613539613534396231373261356438643432303066653364
+65613166636636373639333563343866333161383031323431663938656163393138663237663536
+30323533343932396239396532393462333534626461356432626134316234613932613632643863
+62343031356433343131613232306631333662313234653863336434336536343836353163346366
+31626638643630383633643464623034623032326335303463313963326562643365623137326566
+62633732306235326236356238663238313833643065633661366361633161336235303165663434
+32626233333962663032633561383135396433653661313134633265623535666635653030616664
+33633962353235396639366439333361333665313236383230633165336466333439393835373963
+36386566653137326166313531383435306363346366393537366531366366333635363533626238
+39326565633130333963653133383665646531363237323432373438653839376537653832396430
+39626238373361316534366139383861636539303061363261356534366238643563336363616131
+37643537373233613831633766323734373435396337646465396461643432343337656135376434
+63336562306466383533333238316166366338613662383534656130316330626432626335613933
+64316337613836376231646330653665383562626430333733656263383361623431396164656433
+38666130303866646364366139633431653536663966323930366439353739623764336164323630
+30383638636433316134373632383939383834363433653565633131376433343030646166396361
+39653664363566633633633538336132323863643137643136333261653561326135356137346464
+34346638313130343262343135323031303535616530343432336437393263313263343663656431
+31383261373837313939316536306566336232326532383465393435623339333632376463386237
+37373662376536396130383032633066313237663434396365666265303662636361346661613037
+38633264653364363262306532313263323365663065626331336239646163353336333039316664
+32303661666336343337343762653638653437316239303562363766393432303631313162396464
+65316637653962343061363137626539343464303139383366633761373136356535343966616130
+32623564383432376337363961643963633235313533373839376337666331666662363032396332
+64383034326337353662396365316434643235623564383930343761373035343536346166666532
+37306466386638656264653633323733376466623131313364326461366239313736633739626262
+36656336626236623036356364376532616565663032613739346539613534383739343431643234
+32303232613439393365353931353565303861643164363633316566376339393162316239333062
+33353430323230343563373933353731636233373937393335326135303931616139303437376562
+64353330323866383738303738326638316236393965383732333333313864353030326264666264
+38343833663230663530333332353931643231316530636330643335626531346338383030643734
+65376136346136303063333130326262343932653465666131656562373730303264633664373637
+63336637313736393737376538356537646230616532653736363030636331396461626666346263
+35313639643234616262306633336465303934323933373763336561623136626235316336613466
+33643563366363313338366433343136323864376564373962633465633239353966333564306163
+36373039623834346335626136656661346637626466653130653035613235396466353635616430
+63353665636434313662646466643036373062343534653463316137343937656264353665646463
+35383031303837303066333535386437313465666364303662323434326133353065303462653434
+63343038393562393862383335396364643066633030303063326561373566626535333639393233
+36333537393862653836303361393563653832373937656666373435636166306535373762646466
+36663933343132616130313937363935633035643165363964353433626165323663343531373061
+36353565346431636463333131633332356665623531653966393266636438326434616236373631
+36386335346636313934623934303265333934383438303432313030316462313666306661383864
+66363131333264613637343739343037366236383539646538353461353562396436666166653062
+64666434366561393431346436343362356335323562346235393131656334373232356236396663
+64623562376531613861316364616237663765313832643261656531633831373163626233653539
+36333631396661363866303434343532306235366530613534633133663135303839653161633930
+34643331323262393335396161663061396631383564373334623565616536646330323661333461
+30316234626666373464303366386662343966613161316237353163333635663239376339663136
+30663635363162346362373063306134613239306561313731386638336634303566383063356261
+61373962623232656635306533306530646439353834366434356530396161373430363134653634
+34643034373832636638653864633833663932663366616438616164346662396230393064633931
+34303737313337393438623232306532386661643439636330343338623032323230326536306334
+62626665663837393266346464663730376134633938636463626434363633656230366435373731
+36626665333661363638323665643465333030366535323565326135316338653436646563313766
+33383062323765626664343131633337643133343831336434343764363664346366386661613165
+63346538326661636530303835383932663565373962663738323665376264393231313831653664
+34363737316431363534636336346539343233336134663765646634373265653738313063366262
+33373432316264333436663638613530353231346163623232373963303035653462653735623535
+30393533396361373361333761313432343533323337343137643233303837636566353865353664
+30616366383562363538386130633336656337336664626465346430393861633038353265343931
+35343834303736336438616330346565623066613832306534386639323332666164316663623065
+30613330356236653662623032383533323731646330323766363836343932663038393839626434
+64353734633636373237303537656139376665613432643538313337303761343031653730623335
+37613365386466326336366364643437613234613539393137376236323032653334653963666337
+37313264343564303132323531303566333031386664663062386337396464666563636531363736
+62373537383939613634666639386666656662666664353866306538313136636266396436386365
+36663361373839343238613836313832626337653834333262333863613535346532666564643164
+31336163323036343139393736383334333837396638323831333266306165646566613437653063
+66663630373861323066666431633863666661336335646563346430616431396531383032336335
+66336137383237396330663134633538643664363835656363383365383663313131393264373764
+32633731636330333335323636623932303066633936393134343664656238333461393339353536
+38643635323466363035663733346436643263393735373431646437346330393465333334643162
+35333637306465663233383137623733353031353839356464626239343761623838383133313437
+66323432666633356131613139633565336631313138623262363132616664336435383533643866
+66626135623836376265366165383430376538343961623833316334346335656337363933626132
+62326463303665346237643537383830303031373639383135393838346536623139396438346661
+37356666326239396366346634623066366633336132303335376535366234623265623534393930
+63383234613937343930643539376365613235336133336330393139366635326261663261363533
+35373836326538353161303465326362303661336363653335376538326634643136363538666162
+62376235376566373931303731326466663439376336663462616534643339373361623739346533
+35663635386630393333646434303237336465353536376133646265366466393433313662613634
+36666563323030306461373333623535366532633737316537363431316264626361336534323832
+36396566306139613831346266353836373731303066343863326538343435616566323130366139
+39616430363332623738636666653833623237623635363366643633626539353238363038636162
+66643632343364383863363331323539366434376165653736356665383663373839616230393138
+38303764303062623231333934353562363561633633343266393331313532306538633133393966
+66393661356261633433306539313765396262626466323663306361336162356265653162333363
+61636235396435396262633235333836303835313037383838363732613934626663323766346633
+62623833353333663938653264323831383535356136356235356163383663343339393361383438
+32383432323237376463336437393034353261663263303730366261386166313136633939366264
+32663234613933356363663336333561353164313231306666663737663337316138316264343038
+37633762666161613966323939656134343135336438303263613031613032353465626237666264
+61653537313863336539313233303636373836303331643030633464343736653530326465396433
+66386164353739393037303336393463333239613539333831303532343864373364343237356164
+65323431343235333261643937623437376233663938373365616331306230323962313764313933
+61643135653564666361363436323833326166313435326435656161633838336366326162663832
+30373063643138616333333566366535356531373064373237316665346633613537656539373863
+35376637323133646639343237623939326231396139633733623832386436323639636436656264
+66373136623830636330316138333232353264623265363630363932616562393434393835343434
+63636439373331383137316531386239353464313038386134626431356336656635613765373134
+65633333663938633733303936653366393764363530633939393033643239663861356463313163
+61623037373133316365623934323831623338616339363135313533373033643932323663626239
+35363235323530393838356661303637383334623438323231343864356137323832343263373433
+37393738653465666662656566366465343739383831656331653736303037623863376637393639
+38303861353165343165653032666438393065313461623834663239633862323638373537366533
+32346237343530306436376663363862623332336361373162323031656635326335343933356462
+36616332373663363366623763656132666334343061623466373362333937353963613632333037
+30633461656465323132346163393530333263646363313537343832646634323137646137346565
+64323438323464643131316162333763356263313530343030333330306230343933323231346537
+30613737383239333062306331613935323034613637653663626234326265313236306366626133
+35333365653263623730396535346636386134393764636332353964396134663162383532303366
+65646634333934343039663735616432623238383030633134396234353065333830626463626638
+37346435643765633862623935316433303534633564396366323438303437303335393663306564
+63363436633439366338633131303661343831613434316265303031663564336535663962313965
+34393030336261636334613361633135393334636135323836313933363266346235653039386431
+62366266626332356331613739663862373365656135633265383965323364643662616266643231
+38303632303638333335643838366530643230373232306561646365303839356430393539323864
+62613533303434326335366564313337633830663538383839393837633435613031383636646332
+65636631386135613735353635356561336530303237663632376666303561313932386332383564
+62653164346662646534346333326135666338656435323737396435316633376238636136313633
+63363736323530343538373762376566326563633735646362623466306234303562343865666437
+62333535336563643337666232616233306433386432613834343932343837613632343239386337
+65386135363837363138306566343334356365636161623130613335356264303463643532613332
+34303238363733653235663337393833303837613463616531613933663964373036613538636532
+65353433373762646262313135633734626138363064373832326365383565393738306537313532
+32346333636232616332666262356238383330313231663132303463346263613230646565343435
+64313462366433656534346431643236353533353237303263323061396663653066613935623765
+61333237336662396236353165633434656431623239643162313136366432613264303461643230
+66633665643737316330643066633637336530616666643661313033306538333266363832323836
+65386138663438336239373736383066333731316462366136303939643936613737636237383933
+33353163326136613764623634336263393166663036656231646163343565346233326363626164
+61343064663565366634623135613236373937663138393362366435313639333164663962643531
+66366438346436333232326236643539633930346239393337653762613334666633616232316464
+38303736383630353265303964363830383663313035616635393835653563393635313864636262
+61313835316536626261656133353965346533333066356632663565346463643130643835336162
+62333163343165333035346235373430396430383965323530633836336432396531383262643635
+62386237356639396663346332323438336131383433623739653238373861306339323135386562
+37383835623338383865653731373334633738356539306536336137633933666135373333366665
+36303935633664653131636336303161393361393237366434346162626434393939613330356539
+35393434663763646635386430646362666332636231323638616239303836303236393836376234
+65363335343665333935323034363636306234626666366137386232653030333230336435626432
+35353735306462316363666466353131323564396462366233633839633164303830303138613834
+30303434626539346566306135356161336330393239613537613836313465326131383464393332
+37343337623366323563396265653031633733363066353264393361613561386162633466373236
+32363133663465366439353536353765656235323830383062363562333830343134623265333039
+34656438336265323238333166346233333962396162656466653064643830663032653562643161
+37346237616566643362326131663339336238313431656530303937396165343534343637333737
+30623664333035353138646565663265376261313131663736373661636235653539386435386136
+39323435313564626165656164336461363863323938613733353863306461316562363563353162
+64346338346330336636376265363463316534323331356336663033653134306363363165393035
+32623134313037653033613936653165333162386530643564633538366133333739366435306466
+33343834633631353061386462613265663838323163373433333233383064373662613735343037
+36383232353737383662643537346466333166653135306334646434363865316566643730393338
+35373231633734393431653134333931363563393434623964393238353933306535316137343633
+36336638326136643932376333326536356130656430653938306265356336363431353633616162
+38633137613664616464343763643039363266633936633861666134366438663035316137386666
+38366363643266373539366631336237376431643332326136366434376531343162626465646537
+65373030313936663439613833313433623233386431646331616534336664363039303437346133
+37376463376364353730353537343838303530386437636132613863373963346434373538316663
+61313732363732373364343263653936643266323333363034663530313864613139373264303263
+64396262343235616230383534393634656639613634656632623630366534383263643235616537
+34396637383933383139373265363536653562393963666130386466326339323565633230656461
+30333566343731353734336264343963396331623162656139633634656436303934346634373938
+64386364626161333131386465383332623162663436303466646663363764613938343234356237
+36343262623734306236653136656265623162303038613862346432306462333137613032623262
+32353262356339323136376139666263663265326365613563636361316334626136626239613736
+37383530313432376261616134353134623034366365313737323933386330613631396664323434
+35653766373432326439383066636161646466666561613263616332626565383261353937633033
+65316266306333333966646138653636343665633862323138356437356436383832316636303765
+39306636346264656463366333393634643634383032383463636566653939353439333664613532
+65633063656535323031333639633039323935353531343237376334343763333364346436323736
+65346165323736303264663065653061343030373634366638646263313061313034363838373562
+61373230393861616433623839306237306132346634336362663366356531666536626130343536
+65363437646462636630643535613335313861666663303233613865366164663534383635383539
+32626364323764633630346235643534393262636266363765326266653632363864313830353132
+64653733356663353735386365616534323634653133323564666433623834643863643233616165
+36366336613165366130303464633830346362616264303832393034333561393765383837393965
+32396463643564366337353062613234303065636330336164313131383763346536386562346436
+35653132653561363330653339636262646366633339306139633433333763363432333133396262
+39326166396366613763643261613961653262366530633434353663323064366164623535613131
+66313233636662633865313736633239393463656631636635306665656436366434343036356231
+32353064396363386138643937623130316163323530373435366432366230666561623132613436
+66383465326232306366316362346131613334333530653230363335663565313362633736663931
+30616163663134393735633963383764346135666436396265343161383464313961326138646461
+33306663613562396533646466663935326435666339363733333862316162666436363064646439
+37393262303037396361393361666130623934643265636664366534373333383635366632346266
+36663330356161663632613636663138386665633330383831613939373735396166623431613135
+64363062616364313836636238333636646439613134346364386531333533333731623663323138
+33653633333563323138306530303633316434353135396461333530323366633537326164363933
+33306461643064623736396632393562303738373534666436656565363834636566323336383439
+37613034663465656363356232386662643030653033303830633961333363636339343531376139
+65343237393834636536346430326238363266636638656664653935613336366637643830313935
+61633532653235366366363734336535396535343266636538326538646334656264363063613439
+66346236623932623830316365626461636364383730643030323363383533326464323438396332
+37306162316239393733633365346562316565343930313633303430633539643661613061633234
+66383764656233336633343832666564336136336232343562633466313931656637336231626637
+34653332633936396630383139373632326433626434363531343463333731396631356535613765
+65333738616631623666386466313537373936616561346335343066633933623663623734663738
+61333763383330386562303037626236663866353531336530653930653561623935313734663363
+64613130646632663131666433643739303036306236306462376231373634633635303330663935
+33306238626533653232376636613461643830353936393136626232666463333836643333306531
+64373162663133303464666362626235323965386631653865363230656537313637633864616235
+35366561663262333634623932356535353866303536306432356466366530633035343734363932
+66636465613566356130363861386563663963303161643862393765626363336333396338643438
+62616365656464303835306266323964326262376261303333366166353162326262366563656662
+66353035313338393561633236316665353938643930316135383731666563646531323231333963
+62666432666366613039623039316666336330326261313532313166666238343061313436646431
+62323863303038366165376363356462373862363137363332626262366665323062396266663635
+36356339333133313435346561616230393161326531633433353561336633313335343336306130
+39373764643432326337623835343532343733623339666265613862323430383630383530313235
+38316430353236663462376434653231326164313464393633333931383761343636316630636535
+38323133663536353061626364633731353738646634303634633737303363333437303962626339
+66613339653532633330613234303036326533363865663933626432663935366334623462356263
+39336564393139396534663031626332393030633463636530306538363064356336636332633264
+34643864656537333765393338656234343564316266376163663532653830626531396266653964
+35363865396266326337343738633839323665653937653233636136653266616138366163356161
+36373130333839383264396561303835306137646533656230336233356136396334363561666336
+39643730383135313131636461393364343530363131613031396331643831666232383937383438
+31666661383436633334323730363030313665626466346132613832356161623232363964383462
+34326134323933306232643237643238333337666363363030376533386331316432663965306364
+38613337616639363533653739626265333235613932636333376230336338616161656132393839
+30393732316438613464643337396663353834663238356536626139663732323635306262303364
+63316663613463653236663537303461646338366634316664333432393964326661323534356531
+32633365363465393562373638393561313366396533666430626365636231363536393038613033
+32343837663163396632363434333466656531353239393337366232653831343332643639636639
+63613933663966353862646666643431393932333239363865633365393037353966383133613364
+64396435376138396433306262393763613436653265383365353735336566323237386163333736
+30643835323963366334306430326537316339343935303863626238643064613239666363346132
+65336539346633656130366363653733396231353863643530373835613834353733316538626330
+66303030373661633264313833343735343862613166653661643632323965396339393465386135
+63333935646661306262303464333537623131363237376135316165303437373834303162333932
+36396463313935323533346234343262343131663739343730383264313766326636616333636538
+62633836613539343131396335663333303863383234633861623936313863666430363833363133
+61306334323363663837633434303437356337663136306633663033373135663161646536613862
+34323935333561663833323231303365656232373962303966393763346463303266643039393065
+33366637373461333433656535353632303137656535343865353036316462336564376233656436
+37346338616163383434393436343932613662316663356532333033626164396636666464313330
+30313234383962303234373834643562393638353135613333303831353131313563653031346336
+36326131336132623434386666323334326662626533616233643561363763373565396366656135
+37623234656431653433333238343435323039316531313534666633393361633166353966343037
+33316630333036346630616566616663333664303839643538393765313237616438313536326139
+65326563303630643035386237356331663938393332353638623230643864646333306135323365
+63323065666635666435393834643634356261393434326463363961363134633165366437333163
+37316462343237303363366433306530653531636162663634386539313332633434353237636663
+35643835616138643665326261326365613365323131393238346535363431333061356439356338
+37336534363533653132653036626561623663363631653734323030303232386536353535343331
+37376564393435366362396364316361646337616237333932303438313130353662333437613661
+33633637343837633133316466643032623638663230633439613963383038326330373264633236
+66333564376339313865396431656465646533316535316532333633616666386531333631373136
+31386361636563353630303432633833656333323736373263666263396463643165646635623737
+38353864613461366464626337636264616664333835656165323732636232623762393966663834
+30396464666537353235653231343666376166373330373762356165393631333033383332353665
+37633462303865623263393363383537303239346434353662643962303132393236333938323036
+64393837373266363562636465356463613134383337613734333335653833323532316561663763
+66353633663861393836386330356230616339366236373938386430646462633062613932623533
+66663233613261346463316337366639613131306264396136333831346232373339623736653265
+39666562376563636333316363653661303764663132323034313361386132376134363766383462
+36313639393066636338623161343535303538613364333964376264346363353836306165383665
+61646534306566633262383637343030316666663539313165623435343932303738396431633039
+65313663313262363738393761386564613634356434343565366564366437376564623633366135
+66373965623730313336346135363365366663373834653035663937616638346538623935323037
+63616664383238626336396138353262396438323736666437363736363434366534613661663161
+66383237346434396230346536386632633338613130646532353062653733363361366535323438
+37353666366336303931303362666265366338663134373736333839376161383130656466346436
+64396661656235333236333530353437336536346539386237623838653238303436373033356263
+37343262623038353639373735653066656534613535313566313232353964666562653730313432
+32363232346134626234616139653765616363643066396333643564356466636637343534646365
+63323766636436316266653462353735306566383135613435376535333635316262666262613261
+36373639653035666430316637306531333332653836303532343534326637623430653538633531
+64323064343036646133346239653935376336616464366361373835383635306438356366323061
+30653166616361656639393739323236303736383038313835633838653762366663343639366636
+64343037663366396165343533653934303738353035626432346437316666393632333239616338
+62663435643661346664643532646434353161333832333336396130363763356139653366326434
+30303566393033383332613336343866343136633366306132316465323465636138666336636233
+64643565356233343738663063656435313830653365303063366534366535613364373961353637
+38636562376465663132633661623662646537636534613034646133613839633566366432396563
+38383264326566313464356637346432633235663939666637356537656139313534626561373364
+36393335386666663866363231356538326362633632613839366337383436393866336430346461
+34383765633335303633663337343862346630343230333036323436393663383163363532353039
+38353736653363386362323262306639326231313934633565613839373964323033643231643434
+35623437383130373361346431633131663633646136336131383131633538393837326131333435
+34616337383336323939303931613061386162366132343931353434333930343237383334373861
+36643739636138333962383763383766356333626432663233303231643862646363303833383835
+31643430366530346265613233323732653334623237663564623763336461323733313937376536
+65313439353238376461613633323834646532353633316536663039363030356463616363356163
+63636564616135666162336537356132323739366235343336643335396239393266613735636636
+65393064626135346136333662363030363130343766373233323237343134633935303539623838
+37353136656566633262386462363034303339343966323763383161393366653939346538653632
+30626565626564383264346132383935366331303462623363666439303539373336663337373763
+64656130623230343733356436373565323163636337396563646666653531376638663837373064
+33363963393133633137633861393366353863626264336134326238386566656231616535623936
+39376535333534643666633562333565316332356433303336613234613665656438343036373334
+31626665343736323433613637343733666566393535646638343961663030353265363131633636
+62386532323638303330346331353336363039363466316231623066323564653161653937653062
+66306161316235656335396331366634633532653165386133633365383935353831393264633038
+63313539323036363634613562373863373864346265633561613135633562343961663731626637
+63623230346265663831663866613433363062326464633637303361373139613265306261306635
+66333363323832363230373036356631356566383637313934613637376563613166353139636361
+32386662356662643562376231343331353930613165393138306463373339663065656263653335
+62366631633761313334353933396364346138326537613162323264663836396363313066353461
+33326261303866313662643565633665316235376633616635323232653963386563633161356338
+39613234373136636332313139323461323232623763396561336562383161393639636464666533
+61343738333333653161303338346363313763316661373734363564643937663666303134336533
+36363831333533346538626133323562373563623464313164613137663939626233373339633235
+39376364376339383366353236636134306562323338636431336138626265643734376564343032
+63653033663335333233383363353364366238323231656538396666316635353831666536653362
+39343834383362303335623533396535323032383531306230666263353330376665616131316533
+36656231316135313333336339633562343237343563373734323431363465393032646232353865
+62373137306566336530366666623062623636353139336266613936626337346134316236636538
+35323838383366663839613037663766353962393563333932376638366262333236633638333939
+39383439663365623231383932343362653436343561326334386264343535626463366338646331
+35386638613631613566383734373161363930303738666431663738363138666266383562333332
+35306263663031303262663733336565353866633933393330663632376131633731633831356666
+37666364626431653934646665623337303638653933623538633433393735326434343562643261
+34396233383038666665363638643533383938653766306132366364313430653765386431376138
+61343263626631393738306662643762376665323465353234366234316537376336666364383032
+39666661393639353738386339613532373261393761346532633630646134656137376238663561
+66646637623138393630623232356430623830623438356532376236363564373762346164653863
+39316662666630363738636430356536313463346362613535383834326534363139306239393862
+32383132363238633232326330666432363963333230333039316261343534626137323430356562
+31326639653635326162346535386337353230386265306465653565393535303830646333613032
+37383834663631313939343330376365643236366230653332376238653163346339643332346262
+39633731366431653438386136396437613734623265343038646239393263386331376435313163
+39343730373463343030626333333635346539353636386437396334666532336630646663363462
+32306230343736303933323539336631623135383238393530663136656562366265306534396534
+37393138616131353832306162623336656265656262666133363432613166643632613835616465
+64373036303863376564626533376437613035386130313361643061363661653534663635333939
+36616632343435643038343034336263316338353337313364646561663062386238346334363636
+30653235653364393534353063363964326165663634643932353261636366356432383465623130
+37373062623161306665343963323932316435393339393436393737616633333031326365373236
+62653436363862626362353565623938383566313835386234653434366465333861336530623431
+33636533306538616462326466623634313138393631323464326366663935396530323364363462
+39653936663233396136376138336432623939616364316232646662383966623538636534643235
+35326536636635613039373264653932626134316334396266646266656536306235633766623338
+63353539333934323931366363643663393831653763643433343437386562343334373964613430
+34303762393736363336623030343961356535333162383036643937313737336364663232643064
+39303732356561393661633866636238613965373634356133366138646639666135336337343334
+30613331653066363632633963323031343064663731343032303334323062356235316237616663
+38336662613935663033316631393964373437326661613066623638306562346435666366333866
+65636435346536336164326561343438666137323963393461363332626663663539323738643930
+62666538353865656230616265633166396237343438656236393762386464653336353832353037
+64663031353233616630623864623736623231636166336363636230313830383735376631636666
+33303966323532653138343438326139613165393836636435653933666464646237656535623339
+33633734653563363733613538623663323831376361653435663932393037393134366664633664
+34386439313336636661653661326263633539396264303966373831333333316665623565343534
+62613861343766306630303164663436636235616130653931396561383466646232616264313530
+37646536303732663532653663616538663439363736313833393134346335313431346633346539
+61613330306238643535626237383030636430313636333337613964386538613239366538613937
+65323363303337386164383366633933616465656539623064613765633332623838353065626436
+39356633656561636330316135623535313164353365353539313433386165303537386631313461
+61666530633063383433343034396236653538303036313865663232356130383564643539336164
+34393062323863363761383735626438373165326133353865656163376330663233623764393530
+38653563333166316562333535323935306539623634386466306330663635386538663265303930
+66363763326636343739656434656265643061646261643964363866393262373937393938323431
+39303537623239306161623238643137333331643539363633623731663334653633663430623231
+30316163623061393661383065636664663636313635376537636261626131366566646262663163
+38393238303061616164393132326138376438303933323661653662373533396262303039346138
+62653332356163663133316665393662353737643739653937306330623133373362303166633431
+37363064356535646334393534363836383039306337626564313039373335336131663931636139
+39356135353030346361333464363634623462333033623765653430666330336261333063323430
+65326666323338623961343631653562346431303835633238373338323563376430343335343538
+64656536376532373266356633373436316165653461646638316561626162303633333632646232
+39373732303439613732343336373265633035663739393062326537613561653336303835306463
+64666531623132636565336433653432623461366462323335336537323737336432376638633137
+63343831323330623533316664343535653366303439663230343964633235356661373436636332
+32386535363933316233633638623436353764633139646137393631616564653438396131646432
+61313266646435346161666337316366376462656233303761616364333963333166313830336533
+34643337336238366138323463306535613365663033623236643237386631623462633430333162
+36333034653262343738363939623337636534353034656235323032326465646336303862613832
+36633631383366326435373739313033343363376339643062633030643430323566306565623430
+34633961643734396263336237643266626265303138393339646665663032306462643731333932
+62643764316234393062656663396634663266313463376431303936393565306535323132343034
+63613636656665313030386537666237393533303435313464326239633535383466343634616239
+36393133633637346664316436326463663939623535363131666261653631643532333439663363
+63623534336436613666646338663232646661633761313635303933663363626137323463666130
+66393534386536316532646163663039653336306639663330616238376530623734306132373966
+61666537656165623630346337663032626666333265366137663333626430303433653761643330
+32633233626139643238656132313863333831613831626531303534643862636630353436633932
+33623230363234643032646466626637383638656361623338663461363430623630333936393835
+66633964653563393035333665323061636465386639636336616331306163666431343862326234
+30353535313931643036303533323836633831616265653861336138333865346535333634346366
+61353166646132663762636334376536363063656133306265616330353535316231313265343332
+35353339663364366432366435356564303566383638346661313666613831643836323132636432
+62616262643133393138326530643838343238656166346632656562386533643432333339343333
+32663662326535353033383863653833666562346564623437323636373831366163633938336234
+30383031343939646637326537646635363739346136373933333530306230656665633936613539
+37306333326462346665333463306464623764386134366638313764613338363766366537363063
+61323835663331626239373337366662346565363432333334636664616336336234643734303265
+35613536353261373566613265373964383634616136363937353066383535386133343462346366
+64626131653063333665346539323830343739653037353133643732326632393562643835653938
+65373033636165323432396466386435363462373137643036653736643762313762356163643862
+34316430393361396334663664393637363463383639653233386636303366393766623730656265
+63316664396165663962316137343234636664313535636237363734346530663264386334386530
+30393132653561623865376135383938636135613062323931643035343861363262343831336134
+63393133623336393361353830303735663338363135366136366166376539653336333734353934
+30333730396366643065616465616166373165353839666162373466373839613137363237323736
+33303165646230346635663465646266653537393661343335336436376537323737356230646266
+64623163306663326161633338663036616232323562343466363765616332363837363565653238
+30333434376539613164333237646666346537396234363263376230396262613335386632663836
+36396135346439623238316463373363383939343466383863396533646132346239646535663863
+35326166663533376237623863643737303334343930363037633131666230633262373233393939
+33386334626561393666323761386438663065356364326239343131653030636565323763333566
+31366439363839636664636437383834306130353034626634396431633133623332656135346637
+39346132373932373634393264663565303837386665636134393961663261623731613633323561
+33316639373639663838313334623163363138373135633366336632323132646135643438323264
+35323361663838396533316462353165376331333533333130653635366366316463363066346138
+35616538346536646337363637656434343736336139396436303031373732346366616433343930
+33383162373930633335616436303532383132393335623730346432396333373531363563623466
+30323661323531636434633231666636356230623063616362323262393263623735323937346335
+64316236386638383438653030613764663162626263353733303331616639313730666161613133
+66363762613330306665333835316632653834323866353236316538616533646633386366656231
+61306563383737333739373431666338653733373330646163333030383665336134636134663362
+66653963336131346231343339366136336233646566623733323862373265323338373532633232
+66373930663639333137356431653630363961666362386264303666323866643661356166333734
+64626232383438616366316433363461626139323130333935306663636262366139363766643232
+63666634343364316232353937333537306134653364396233616163633363373464613737306135
+30386332653462663931626235613530633763393837626239336362333639633361333133346634
+34323563336562393437383431326665626361333233653936653431663362303464663431353634
+61306233393965653134386566663536316463636264663231386632353638303933666462373166
+62343730376435303835666238656464633732333334613735303330373335643338656431646238
+33613364333437333930663364616338363835656532313439303535343462376361373537623061
+62653139363565306335646638346165643736323861316563336534393134303164373332663062
+34656563366566636337653534626638623637363334393038386162373761313238353534336464
+62353838353339323534626131353562653866633435373564633232383537386135663639303531
+61323963326565663238346233623234616131343831373265303433623765663938346136323733
+31333064636336663162626539396635616530383130346665336263353134383666636536316264
+32303338626531633533366230303566613035353963626538623338343362343434373238326563
+34333031356663376565663330336666636662356531353438313539623161623731386638383035
+31633238666432356130366437306336653966373636363265643235393862623461316332616633
+31316464333630373230386533663331663734613261326531626439626562383234323735336136
+32306339376339373831323563643035336331653232363662396461386332383466326239373439
+66613064653434383931653139393638383063613034333234393638393763613361373735383035
+34623438303432376164393837363636303130386237663033323635343966303133663937353337
+35393465646238613133376362313266333635613664626236656632633761666534386130323131
+35353864353561366436616134333838356563323432306130336239376166663664383463386364
+61346466333165393836666239646436343132373866306631333231363864393933636161323637
+39356339386639626566653139323763623236383464663964656638393364376338303938666563
+36353835636264323061653864613264643461363439656331643830303830323261633835653463
+32333966643464343537343631336134336363346263643739343466326231663235616238373337
+39653961366137313162623032353864356536346639366261636663343961336539386365653263
+61363031386631636635613833623435376536363465316334376261363138636165646236623133
+65333536653563366530663636366331303132623463333761303539343665323634663039613338
+64306333626465313230343763323965316462663863653930323739386531646363303361346132
+65623931313665323834303137306666626463336439306434393364323233383132303934636166
+37326661663464306234336335663837656436396364363166653662313336356432663065316165
+61353830633135323933643931623534653963333639663230386434303238626163643937383361
+32316262323163643637666463613463336264653339303565663331613465333039393138323731
+37336566656365356431333763313931326138633531663366383837656238343231396261616133
+65323361313334663530653135643639333032366633633032653839386232383261653662306434
+65633836643931643330383334653739333231633933313063313231346637643335643433376438
+61636165303463336566626332656532613434613135353335333733393535653233356364313631
+33653135343265363262653964356136346134333333376361646632646162393034343938343861
+30306137393666626363363731306166613332383062616530303936656539333739326436633138
+34636334363363636463326330626565353538313538636632613831656634666161363461623539
+30646532313164333065393861376636323630313265313734616637336530616534336662343933
+39653866373538393132323233323064626538306234636362313437386462353036333838623037
+37623861393863323266333665393636373732663531313436393739346331336632356437623766
+65333466363964356361656163316562386233623030393139346263373232303933373437323965
+38343035666561306362393165353566386366623030616661333236323764336632373633363934
+62663764313731363063383735316637333061336531303864326539303933366338346262623565
+38643964616634636131636531656134323362323132653163383331363738613830616134623335
+62366637643461383532623963373663633061613862306163303264613135623332386665333262
+66336664666230333436663162633133653161383262376137653663623235653862306238333636
+32326234383966303630323766356636623765383332623334313361633632613732623934363238
+35343135326261643565333032346635336365633735343534336338316133383630376535393931
+36383034616131306161613339613837383233383361636437386533393732393734393835633262
+63353461626236643236363331373635353537613332303039336639366334663038666663343731
+66343564653339623062326661656464616563663339333430666165663534336238383964306331
+38323461353834353062313030393031663836633833646530613061393465306137333731303766
+32353639306131616431303961333535373331333232373565346362306562383466303863333761
+35333965623862646335643665336137366631336234313761373033313138343262373064303436
+64336163666537303465633432623363343735363737343563383630656666356433663639373733
+31313837343565393539663932663462666637333038643663346265633039366134363164356436
+63303530653039633362386632646530643766356234643664643034333636626131623832396238
+64613539653335616637326231353564323638646261323936663930646165636265353636653132
+39623366386537376630313832356232633438636534306134323535313763333336646364306661
+37353933373163313534383238366433313637616164663537313734343334343563393361653039
+63643838613866366632383139396138616563633237626133336233353037613037363739343261
+65353238653834353531376238646136643036323165373361356666363464643132383134633537
+31646530623935336638386138613437656466323465306330333865306337616438343136643737
+34356530353434353932353839386237636462323764333863363164663561313266656239336261
+66636661323266343232663663313563363964656266303161373765343830316365656335313763
+65643865643466653761393261613530383536313436653463393835366366306163353663333466
+37333931323337653435343133633333663833653737373466626631373663303937336138646333
+35366631633063386434316462393936613138616638363135373961366664333665326130313330
+39653164346531396538616365376135313136383465346532656665666338323736646238663362
+63383735313838343362346536366337393862363234373964353561376337373061373235666361
+38626566313630626136646130306563383830336361303639396532346162633735623133653862
+31656331643437306434303430393238316664353635373562363739333435313539323363333666
+30636431323063623837373461303865663630613736316564356632393162366237643436666439
+32363831386262323232663238376532366330663066636661373130383234383961633461623430
+63373331373739643263386138633036323136626337333437316563373966353465663862313137
+35373766383361393830643232383430626630396463633934613132613165663365623339343536
+36616266363565653231666137366238323333366339323064366663666638376366396538656463
+39323162373037613932376162393230653162326439343836346464356630323435376234636539
+65636531376362343233383236613839613363636234353934336261363365633034383463393532
+32336639326663396534643830353831396436666231653165333763643937393234326136346436
+38383538323735356634313131346366376364373831366633633765656435313564346539323330
+35383434616262346366626531646137373366666566376133383462353433333131326233316562
+61376165393438313733393865376532663762373061353463613831306634653535393663313431
+37356431633866623036633763346531383232366330386262316532393463396536303661343364
+33653837633730376261323436356636363964306565366636306537666462323634393462393862
+39333238353833333438303465663865316361383962663561383165396234306537306466306136
+65666262346166336234613436346366613435323664303263633665643363353739316263313239
+36623639393639613562646462336364393538333963313839633764343065653061373833623233
+33373931323031613764653833356662333534356664373139653561393932316539636430646664
+34376632616532313334386137386130353233653538373965323066306236636530323037643734
+66343533363030383835376465623166646436623031366364626634346462353133396162356264
+37663431633832363831636466613231636463323562613433623865316631386561343666323964
+61313533656236643538383235626431333932396234343533616538393338376238393562313265
+31383837366363653635333163666161623737323739643737653761306466613539656138373537
+39613839306531363532616138366531356637646330633461636261666135366231663434643531
+33393831623537343832653862366461326363326231353365663265313636363834333938643765
+38663366366263656463626437353333613064363266643034303036643837623734316566666265
+63303430343039383336616666346234646635353630643037376431326431306536336138306261
+61306366376533316434663138653464393836613766613233333336366132303963646463633261
+64353333393932666335373961613162333665393866343532353361636532373165333563643837
+61613366326135396436383663646266663236613965626439636661313130336439633937316466
+32633837666438656261373131626566646334303238393461613032666334646335343135393861
+63363062323465303331383065643435363338623231343666353835386262616666623035663661
+39616233343761396465653738326339353933393831663436333462623236666565386335646437
+30366334653639613962323465366638643661383332633933343438343537363338366635333263
+62383330386230653866633339333663356562613536653830356631626331356430316638323162
+63613630363735323664633136656439346239626233653438366633353965333563353430353466
+39613964623238396235643563393439336666383233663534613736323633376232316231326664
+36613339626637616539323262343966383837363430646562303537343737353331313563386362
+39313462313464663632616432303035656531373365336436363966633739653333666234386363
+31623466626334343836353534613166333165633839643630326331343836653539303634393563
+61366432386431356333666338386364393564663066653165393937343739346666376265633237
+36323038393538663732633935623935303030616333656636646332663238636133336363663466
+38396439346635343836313665303333383766653761313265386635373334363462613637663035
+64323266653336393332313338623262636234303364343763383734343439306238393465623561
+63303436363837386633616437316137353138383964316234353033396536666237323363303361
+37636435386539383739643333323463396664653062336430356435393637386637666235326661
+33396263663334376539653162663630306335353833366166356435306663326635623238306366
+37366538376133613938353232383736663139333630616566376266633039343838353061633661
+65646664643739343635396465393632643265666262316434333262626439383461366430363434
+36623036303239386238623262383438303336666534633434616435623933393865353233633935
+35343139626462316465346265393966633662313232303439323834633132653939323030323766
+33623762326366383134333839666437356532643038313137363735343063616238663762356533
+30313439303834613765393530663538656433386536623030306636663938366566366538373237
+38316531383439623436326265323233653930383538623765363332623939346265323466656432
+65333035333136393236623736383562333931646139353838343164323961363934393066376239
+32356365373632316335626531363934613063616238653166633366653736383863383532623364
+30326536643062623736353239663932333639376337333238373331323537316439333234396136
+36373632656366303963336465623232363136326133636461326131363366323930633034656133
+63646138653663356231656334623562383336666633613864373666613461616637316632636364
+30643134333464643631626334633639393461386535343530666139313934373634613561656336
+62313338386338383764333963343030633438333031663261343264323364663362376633656133
+66363861633463376635353430636365393131646137393339623331616239626439303066656437
+326133626535373362636332393732363036