TDD + bugfixes + new stacks

This commit is contained in:
Olivier 2023-09-26 11:29:37 +02:00
parent 5212372676
commit 498668b819
33 changed files with 1559 additions and 1268 deletions

1
.gitignore vendored
View File

@ -5,6 +5,7 @@ tmp/
*.log
*.original
*.sh
*.backup
vault.txt
notes.txt
debian_facts.json

3
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,3 @@
{
"ansible.python.interpreterPath": "c:\\Users\\Olivier\\AppData\\Local\\Programs\\Python\\Python311\\python.exe"
}

View File

@ -16,7 +16,10 @@ Ansible _tests_ to learn its concepts.
## Changelog
### 2023-09-25
### 2023-09-26
* TDD
* Stacks definition: monitoring-vm, monitoring-exporters
* TDD
* Trash + Redo

View File

@ -1,18 +1,18 @@
$ANSIBLE_VAULT;1.1;AES256
36383630346233663239303335663439356635393364383133393736313262343761393034316530
3338383035393135343465626165663262363566623062620a326433313766633137373562383831
65343339653862356334636535393062613363386231646462663535626536313265616535616561
6465383836393233320a306632306530366133653331653839393833653861636134326235363561
66333637633234376138333636343761633832346134343335393233316337616562613730633666
31626162326133376565353236383562303733326431343937363539656637353531326565346431
35373366643739353963383533333638343034303732386563386637386335333834373936656561
39616137613964313838653930353664636432613262303236666239633431333634376361373935
30386431363066613034383831353865663265386335373662386339336436623835383734323930
63623464326461613463396137666264333962666462346332663262303064363339663331323938
34373463323938313834383837393935636261313461653038633764313863643433326337303463
38366362306161623166353237323337636439333661346139303037353362663565653531353530
64396136663735383932643464646464396635353036633033343464383830373235323932656163
30356365306161633233336461643239326465643436336533313534666365633362303437303665
34656263656233336639356664346435356437333730613565666230333663383139303037636236
32376563303936343765383332313338333865616539303738326439666632326266316230626130
31346362386332663934356534616261623538333665383163333638373131326231
37373130316566646137626631383636396665653662336338333637663863333064666164336539
3138373361306531396131393865396633326137633138650a303839373462303338656131363133
31376634633831666534306435653463346632346432646662323663363966393331613764333562
3938383538313239360a393230313864636265363332643830636438383237346139396238373839
65363131383564383562393766613039383663366562623233343437663662663662353033323836
31653261326131626164383664356233316665653362363062633935623766316265666532373135
64376666313663383462383963623562313734636463653133646437336332326566346162303333
64653034623361383837313262366233343735343265663631303366376432393936363531666339
64306163376232383661346638656636313630353665313236323038326462306130343832386164
64343032363764353861363662666462383866616563383737663632616137626262616230346633
64626261636136373039396663613565643934316665303532656234356462366238363138326562
65303163653232623531363465623233343865373336633965646561353433666436653435666565
65646430333134663431383265653336613239303033663361326137313838643766366335623232
62656631613663313261663938363533316239396638386262346439656261336233303431336563
35643062633934326665353063356263636265633230353233316365396261656536373164613164
31663565366436623839316230373437633436303130643139333734316138316638633630353132
62303538323263646333306465343634623966396531666234383634376230386566

View File

@ -5,30 +5,37 @@
hosts: orochi
vars:
current_dt: "{{ ansible_date_time.date }}"
vm_name: "orochi" # VM name
vm_title: "Orochi" # VM title
vm_ip: "151" # VM IP
# VM specifics stacks
stacks_vm:
#[]
- "{{ adguardhome }}"
- "{{ adminer }}"
- "{{ aptcacherng }}"
- "{{ dl }}"
- "{{ drawio }}"
- "{{ flame }}"
- "{{ hastebin }}"
- "{{ homepage }}"
- "{{ itzg }}"
- "{{ jekyll }}"
#- "{{ adguardhome }}"
#- "{{ adminer }}"
#- "{{ aptcacherng }}"
#- "{{ dl }}"
#- "{{ drawio }}"
#- "{{ flame }}"
#- "{{ hastebin }}"
#- "{{ homepage }}"
#- "{{ itzg }}"
#- "{{ jekyll }}"
#- "{{ monitoring_vm }}"
#- "{{ portainer_agent }}"
#- "{{ portainer }}"
#- "{{ promtail }}"
#- "{{ registry }}"
#- "{{ ntfy }}"
#- "{{ ipfs }}"
- "{{ monitoring_vm }}"
- "{{ portainer_agent }}"
- "{{ portainer }}"
- "{{ promtail }}"
- "{{ registry }}"
- "{{ ntfy }}"
- "{{ ipfs }}"
- "{{ monitoring_exporters }}"
availables: []
enable_role_common: false
enable_role_docker: false
enable_role_vm: false
enable_role_stacks: true
roles:
- common # Perform common tacks

View File

@ -7,6 +7,7 @@
# Packages
- ansible.builtin.include_tasks: packages.yml
when:
- enable_role_common
- task_enable_all
- task_enable_packages
tags:
@ -17,6 +18,7 @@
# Users
- ansible.builtin.include_tasks: users.yml
when:
- enable_role_common
- task_enable_all
- task_enable_users
tags:
@ -27,6 +29,7 @@
# Locales
- ansible.builtin.include_tasks: locales.yml
when:
- enable_role_common
- task_enable_all
- task_enable_locales
tags:
@ -37,6 +40,7 @@
# Timezones
- ansible.builtin.include_tasks: timezone.yml
when:
- enable_role_common
- task_enable_all
- task_enable_timezone
tags:
@ -47,6 +51,7 @@
# NTP
- ansible.builtin.include_tasks: ntp.yml
when:
- enable_role_common
- task_enable_all
- task_enable_ntp
tags:
@ -57,6 +62,7 @@
# Aliases
- ansible.builtin.include_tasks: aliases.yml
when:
- enable_role_common
- task_enable_all
- task_enable_aliases
tags:
@ -67,6 +73,7 @@
# Mounts
- ansible.builtin.include_tasks: mounts.yml
when:
- enable_role_common
- task_enable_all
- task_enable_mounts
tags:
@ -77,6 +84,7 @@
# Directories
- ansible.builtin.include_tasks: directories.yml
when:
- enable_role_common
- task_enable_all
- task_enable_directories
tags:
@ -87,6 +95,7 @@
# Samba
- ansible.builtin.include_tasks: samba.yml
when:
- enable_role_common
- task_enable_all
- task_enable_samba
tags:
@ -97,6 +106,7 @@
# Tuned
- ansible.builtin.include_tasks: tuned.yml
when:
- enable_role_common
- task_enable_all
- task_enable_tuned
tags:
@ -107,6 +117,7 @@
# SystemD
- ansible.builtin.include_tasks: systemd.yml
when:
- enable_role_common
- task_enable_all
- task_enable_systemd
tags:
@ -117,6 +128,7 @@
# Daemons
- ansible.builtin.include_tasks: daemons.yml
when:
- enable_role_common
- task_enable_all
- task_enable_daemons
tags:
@ -127,6 +139,7 @@
# Services
- ansible.builtin.include_tasks: services.yml
when:
- enable_role_common
- task_enable_all
- task_enable_services
tags:

View File

@ -1,4 +1,4 @@
{# Updated: 2023-09-25 #}
{# Updated: 2023-09-26 #}
# master: {{ common_mastering }}
# updated: {{ ansible_date_time.date }}
@ -380,6 +380,7 @@ export BROWSER='surf'
export PAGER='most'
# path
export PATH="/usr/lib/ccache/bin/:$PATH"
export PATH="/usr/lib/colorgcc/bin/:$PATH"
export CCACHE_PATH='/usr/bin'
export CCACHE_DIR=/mnt/build

View File

@ -1,13 +1,14 @@
{# Updated: 2023-09-25 #}
{# Updated: 2023-09-26 #}
# master: {{ common_mastering }}
# updated: {{ ansible_date_time.date }}
[Unit]
Description=Ethernet Multiqueue
After=network-online.target
After=network-online.target nproc.service
[Service]
Type=oneshot
EnvironmentFile={{ nproc_default }}
ExecStart=ethtool -L {{ ethernet_interface }} combined ${NPROC}
[Install]

View File

@ -1,6 +0,0 @@
{# Updated: 2023-09-25 #}
# master: {{ common_mastering }}
# updated: {{ ansible_date_time.date }}
[Service]
Environment="NPROC={{ ethernet_multiqueue }}"

View File

@ -0,0 +1,14 @@
{# Updated: 2023-09-26 #}
# master: {{ common_mastering }}
# updated: {{ ansible_date_time.date }}
[Unit]
Description=VM define NPROC
After=network-online.target
[Service]
Type=oneshot
ExecStart=/usr/bin/bash -c 'echo "NPROC=$(nproc)" > {{ nproc_default }}'
[Install]
WantedBy=multi-user.target

View File

@ -23,4 +23,4 @@ task_enable_services: true
# mastering date
#
common_mastering: "{{ mastering_common | default('2023-09-25') }}"
common_mastering: "{{ mastering_common | default(current_dt) }}"

View File

@ -1,4 +1,4 @@
# 2023-09-25
# 2023-09-26
# Settings: packages
---
@ -36,3 +36,4 @@ packages_needed:
- ethtool
- cifs-utils
- qemu-guest-agent
- ccache

View File

@ -1,4 +1,4 @@
# 2023-09-25
# 2023-09-26
# Settings: services
---
@ -23,6 +23,7 @@ services_restart:
- "smbd.service"
- "tuned.service"
- "{{ systemd_container_ethernet_service }}"
- "{{ systemd_container_nproc_service }}"
- "{{ systemd_container_multiqueue_service }}"
- "{{ systemd_container_vm_service }}"
- "{{ systemd_container_opt_work_mount }}"

View File

@ -1,4 +1,4 @@
# 2023-09-25
# 2023-09-26
# Settings: systemd
---
@ -9,6 +9,8 @@ local_folder_templates: ../templates
ethernet_interface: "{{ ansible_default_ipv4.interface }}"
nproc_default: "/etc/default/nproc"
jumbo_frames: true
ethernet_mtu: 9000
ethernet_txqueuelen: 10000
@ -20,8 +22,8 @@ systemd_container_journald_service: "vm.conf"
systemd_template_ethernet_service: "{{ local_folder_templates }}/ethernet_service.j2"
systemd_container_ethernet_service: "ethernet.service"
systemd_template_multiqueue_service_override: "{{ local_folder_templates }}/multiqueue_service_override.j2"
systemd_container_multiqueue_service_override: "multiqueue.service.d/override.conf"
systemd_template_nproc_service: "{{ local_folder_templates }}/nproc_service.j2"
systemd_container_nproc_service: "nproc.service"
systemd_template_multiqueue_service: "{{ local_folder_templates }}/multiqueue_service.j2"
systemd_container_multiqueue_service: "multiqueue.service"
@ -45,13 +47,12 @@ systemd_template_opt_docker_ssl_mount: "{{ local_folder_templates }}/opt_docker_
systemd_container_opt_docker_ssl_mount: "opt-docker-ssl.mount"
systemd_directories:
- "{{ systemd_system_root }}/multiqueue.service.d"
- "{{ systemd_journal_root }}"
systemd_templates:
- { local: "{{ systemd_template_journald_service }}", remote: "{{ systemd_journal_root }}/{{ systemd_container_journald_service }}" }
- { local: "{{ systemd_template_ethernet_service }}", remote: "{{ systemd_system_root }}/{{ systemd_container_ethernet_service }}" }
- { local: "{{ systemd_template_multiqueue_service_override }}", remote: "{{ systemd_system_root }}/{{ systemd_container_multiqueue_service_override }}" }
- { local: "{{ systemd_template_nproc_service }}", remote: "{{ systemd_system_root }}/{{ systemd_container_nproc_service }}" }
- { local: "{{ systemd_template_multiqueue_service }}", remote: "{{ systemd_system_root }}/{{ systemd_container_multiqueue_service }}" }
- { local: "{{ systemd_template_vm_service }}", remote: "{{ systemd_system_root }}/{{ systemd_container_vm_service }}" }
- { local: "{{ systemd_template_opt_backup_mount }}", remote: "{{ systemd_system_root }}/{{ systemd_container_opt_backup_mount }}" }

View File

@ -1,15 +1,15 @@
$ANSIBLE_VAULT;1.1;AES256
37326662323464363664353831663333313866653762643036663633633939303865333330393164
6266663764333931356337636434643931623637396236660a656330643061353537316332373261
39316162393830396165323335623236393638313236343033326538303261383164376436396133
6533653362326233630a616139323435306538386365366532373436303861633165653861313630
33653263626330613165306639393533616131373462303837326634393164386138386136643330
62303335376536323536303633626132386438376364313864646465373538656262306166336562
62643237613737653337333635333863653933343266633439666131623437383131636434666430
63303131666539616465303433633231633964613036636439653531343937653635636630613865
62383338643438346238656131323765373461353739633165333139303136363962313661373166
37343138626438666264326431323735363635336636623262666336333931653863613135393831
35356430326436313131626264646564333731383334646466343532653437353866323133643030
38643033343732303635663963613365636638366131626464356438313236306366353435383038
36333337383339353737623736666261343836336435316461633039323438633663396632646632
3138373231326130323864653439373563653961666666633135
34363436303862383230356435333439623264356137643530376566346339386235303435663138
3036643637313936363463623131383131623334626363330a643835636639316538633265346234
32376364643766613739326566633931353139303631343761383665613832306238313264336665
6361396538343631380a373937633337653631303262633033373531623737353831663563316335
38363535366363303832633534643930656236336565316564633136383065623862316435633963
37336435353735646461613962343930626237393464343265323966313037336663393634316431
66313364356134616338396432353265386230356139356434383861336331613962633866313664
38663430333637306534396632336439363435636635373336383332363734656639333434613264
35663162373539396532383736643033613565653731326333373231366234363137656435303633
39666562363939373739333836343930663833353966613661376662306435323435646134663339
39316333623462393239383266623064633739326365333965326339353234393363396264653230
63363735323431663039346436346265353138356163633931623961393263646432653462616238
36656537396364343763386362376562353339386561393538363236373738336230363666656433
6139643831653762323532393361303934326264316234356462

View File

@ -7,6 +7,7 @@
# Docker
- ansible.builtin.include_tasks: docker.yml
when:
- enable_role_docker
- task_enable_all
- task_enable_docker
tags:

View File

@ -11,4 +11,4 @@ task_enable_docker: true
# mastering date
#
docker_mastering: "{{ mastering_docker | default('2023-09-25') }}"
docker_mastering: "{{ mastering_docker | default(current_dt) }}"

View File

@ -0,0 +1,239 @@
# 2023-09-25
# Stack: monitoring_exporters
---
monitoring_exporters:
name: "monitoring-exporters"
stack: "monitoring"
ipv6: true
secrets: true
directories:
- "{{ stack_folder_conf }}/exporters/proxmox/conf"
- "{{ stack_folder_conf }}/exporters/snmp/conf"
- "{{ stack_folder_datas }}/exporters/freebox/datas"
- "{{ stack_folder_secrets }}/exporters/adguard/secrets"
- "{{ stack_folder_secrets }}/exporters/postgres/secrets"
services:
- name: "exporter-cadvisor"
override: { name: "monitoring-vm", service: "exporter-cadvisor" }
ressources:
cpu: "4.0"
memory: 4G
- name: "exporter-node"
override: { name: "monitoring-vm", service: "exporter-node" }
ressources:
cpu: "4.0"
memory: 4G
- name: "exporter-proxmox"
image: "prompve/prometheus-pve-exporter:latest"
uid: "0"
gid: "0"
privileged: true
restart: "always"
ports:
- { exposed: "${VM_PORT_EXPORTER_PROXMOX}", container: "9221" }
healthcheck: 'wget --no-verbose --tries=1 --spider http://0.0.0.0:9221/ || exit 1'
environment:
- { name: "PVE_VERIFY_SSL", value: "false" }
- { name: "PYTHONWARNINGS", value: "ignore" }
ressources:
memory: 1G
volumes:
- { local: './{{ stack_folder_conf }}/exporters/proxmox/conf/proxmox.yml', container: '/etc/pve.yml', mode: 'ro' }
- name: "exporter-snmp"
extends: "host"
image: "prom/snmp-exporter:latest"
restart: "always"
ports:
- { exposed: "${VM_PORT_EXPORTER_SNMP}", container: "9116" }
command: '--config.file=/etc/snmp_exporter/snmp.yml'
healthcheck: 'wget --no-verbose --tries=1 --spider http://0.0.0.0:9116/ || exit 1'
volumes:
- { local: './{{ stack_folder_conf }}/exporters/snmp/nas.yml', container: '/etc/snmp_exporter/snmp.yml', mode: 'ro' }
- name: "exporter-adguard"
image: "registry.zogg.fr/zogg/adguard-exporter:latest"
uid: "0"
gid: "0"
privileged: true
restart: "always"
ports:
- { exposed: "${VM_PORT_EXPORTER_ADGUARD}", container: "9617" }
healthcheck: '/healthcheck || exit 1'
environment:
- { name: "ADGUARD_PROTOCOL", value: "http" }
- { name: "ADGUARD_HOSTNAME", value: "${VM_HOST}" }
- { name: "ADGUARD_PORT", value: "${VM_PORT_ADGUARDHOME}" }
- { name: "ADGUARD_PASSWORD", value: "/run/secrets/exporter-adguard-password" }
- { name: "PASSWORD_FROM_FILE", value: "true" }
- { name: "INTERVAL", value: "10s" }
- { name: "LOG_LIMIT", value: "10000" }
- { name: "SERVER_PORT", value: "9617" }
volumes:
- { local: './{{ stack_folder_conf }}/exporters/adguard/adguard.yml', container: '/etc/snmp_exporter/snmp.yml', mode: 'ro' }
secrets:
- { name: "exporter-adguard-password", file: "./{{ stack_folder_secrets }}/exporters/adguard/secrets/adguard-password" }
- name: "exporter-nut"
image: "hon95/prometheus-nut-exporter:latest"
uid: "0"
gid: "0"
privileged: true
restart: "always"
ports:
- { exposed: "${VM_PORT_EXPORTER_NUT}", container: "9995" }
healthcheck: 'wget --no-verbose --tries=1 --spider http://0.0.0.0:9995/ || exit 1'
environment:
- { name: "HTTP_PATH", value: "/metrics" }
- name: "exporter-freebox"
image: "registry.zogg.fr/zogg/freebox-exporter:latest"
uid: "0"
gid: "0"
privileged: true
restart: "always"
ports:
- { exposed: "${VM_PORT_EXPORTER_FREEBOX}", container: "10001" }
#commands: "-fiber"
healthcheck: '/healthcheck || exit 1'
environment:
- { name: "HOME", value: "token" }
volumes:
- { local: './{{ stack_folder_conf }}/exporters/freebox/datas', container: '/token', mode: 'rw' }
- name: "exporter-redis"
image: "bitnami/redis-exporter:latest"
uid: "0"
gid: "0"
privileged: true
restart: "always"
ports:
- { exposed: "${VM_PORT_EXPORTER_REDIS}", container: "9121" }
healthcheck: 'redis_exporter --version || exit 1'
environment:
- { name: "REDIS_ADDR", value: "${MASTER_HOST}:${VM_PORT_REDIS}" }
tmpfs: 512M
- name: "exporter-postgres"
image: "bitnami/postgres-exporter:latest"
uid: "0"
gid: "0"
privileged: true
restart: "always"
ports:
- { exposed: "${VM_PORT_EXPORTER_POSTGRES}", container: "9187" }
healthcheck: 'postgres_exporter --version || exit 1'
environment:
- { name: "DATA_SOURCE_URI", value: "${MASTER_HOST}:${VM_PORT_POSTGRESQL}?sslmode=disable" }
- { name: "DATA_SOURCE_USER_FILE", value: "/run/secrets/exporter-postgres-datasource-user" }
- { name: "DATA_SOURCE_PASS_FILE", value: "/run/secrets/exporter-postgres-datasource-password" }
- { name: "PG_EXPORTER_AUTO_DISCOVER_DATABASES", value: "true" }
tmpfs: 512M
secrets:
- { name: "exporter-postgres-datasource-user", file: "./{{ stack_folder_secrets }}/exporters/postgres/secrets/datasource-user" }
- { name: "exporter-postgres-datasource-password", file: "./{{ stack_folder_secrets }}/exporters/postgres/secrets/datasource-password" }
- name: "exporter-mysql"
image: "bitnami/mysqld-exporter:latest"
uid: "0"
gid: "0"
privileged: true
restart: "always"
ports:
- { exposed: "${VM_PORT_EXPORTER_MYSQL}", container: "9104" }
commands:
- "--config.my-cnf=/mysql.cnf"
- "--tls.insecure-skip-verify"
- "--collect.auto_increment.columns"
- "--collect.binlog_size"
- "--collect.engine_innodb_status"
#- "--collect.engine_tokudb_status"
- "--collect.info_schema.innodb_metrics"
- "--collect.info_schema.innodb_tablespaces"
- "--collect.info_schema.innodb_cmp"
- "--collect.info_schema.innodb_cmpmem"
- "--collect.info_schema.processlist"
- "--collect.info_schema.replica_host"
- "--collect.info_schema.tables"
- "--collect.info_schema.tables.databases='*'"
- "--collect.mysql.user"
- "--collect.perf_schema.eventsstatements"
- "--collect.perf_schema.eventsstatementssum"
- "--collect.perf_schema.eventswaits"
- "--collect.perf_schema.file_events"
- "--collect.perf_schema.file_instances"
- "--collect.perf_schema.indexiowaits"
- "--collect.perf_schema.memory_events"
- "--collect.perf_schema.tableiowaits"
- "--collect.perf_schema.tablelocks"
- "--collect.perf_schema.replication_group_members"
- "--collect.perf_schema.replication_group_member_stats"
- "--collect.perf_schema.replication_applier_status_by_worker"
healthcheck: 'mysqld_exporter --version || exit 1'
environment:
- { name: "MYSQLD_EXPORTER_PASSWORD_FILE", value: "/run/secrets/exporter-mysql-password" }
tmpfs: 512M
volumes:
- { local: './{{ stack_folder_conf }}/exporters/mysql/mysql.cnf', container: '/mysql.cnf', mode: 'ro' }
secrets:
- { name: "exporter-mysql-password", file: "./{{ stack_folder_secrets }}/exporters/mysql/secrets/mysql-password" }
- name: "exporter-mariadb"
image: "bitnami/mysqld-exporter:latest"
uid: "0"
gid: "0"
privileged: true
restart: "always"
ports:
- { exposed: "${VM_PORT_EXPORTER_MARIADB}", container: "9104" }
commands:
- "--config.my-cnf=/mariadb.cnf"
#- "--collect.auto_increment.columns"
- "--collect.binlog_size"
- "--collect.engine_innodb_status"
#- "--collect.engine_tokudb_status"
##- "--collect.info_schema.innodb_metrics"
#- "--collect.info_schema.innodb_tablespaces"
- "--collect.info_schema.innodb_cmp"
- "--collect.info_schema.innodb_cmpmem"
#- "--collect.info_schema.processlist"
#- "--collect.info_schema.replica_host"
- "--collect.info_schema.tables"
- "--collect.info_schema.tables.databases='*'"
- "--collect.mysql.user"
- "--collect.perf_schema.eventsstatements"
#- "--collect.perf_schema.eventsstatementssum"
- "--collect.perf_schema.eventswaits"
- "--collect.perf_schema.file_events"
- "--collect.perf_schema.file_instances"
- "--collect.perf_schema.indexiowaits"
- "--collect.perf_schema.memory_events"
- "--collect.perf_schema.tableiowaits"
- "--collect.perf_schema.tablelocks"
#- "--collect.perf_schema.replication_group_members"
#- "--collect.perf_schema.replication_group_member_stats"
#- "--collect.perf_schema.replication_applier_status_by_worker"
healthcheck: 'mysqld_exporter --version || exit 1'
environment:
- { name: "MYSQLD_EXPORTER_PASSWORD_FILE", value: "/run/secrets/exporter-mariadb-password" }
tmpfs: 512M
volumes:
- { local: './{{ stack_folder_conf }}/exporters/mariadb/mariadb.cnf', container: '/mariadb.cnf', mode: 'ro' }
secrets:
- { name: "exporter-mariadb-password", file: "./{{ stack_folder_secrets }}/exporters/mariadb/secrets/mariadb-password" }
- name: "exporter-mailcow"
image: "thej6s/mailcow-exporter:latest"
uid: "0"
gid: "0"
privileged: true
restart: "always"
ports:
- { exposed: "${VM_PORT_EXPORTER_MAILCOW}", container: "9099" }
healthcheck: 'mailcow-exporter -h || exit 1'

View File

@ -11,7 +11,7 @@ monitoring_vm:
services:
- name: "cadvisor"
- name: "exporter-cadvisor"
image: "gcr.io/cadvisor/cadvisor:v0.47.2"
uid: "0"
gid: "0"
@ -38,7 +38,7 @@ monitoring_vm:
- { local: '/var/lib/dbus/machine-id', container: '/var/lib/dbus/machine-id', mode: 'ro' }
- { local: '/var/run', container: '/var/run', mode: 'ro' }
- name: "node-exporter"
- name: "exporter--node"
image: "prom/node-exporter:latest"
uid: "0"
gid: "0"

View File

@ -1,150 +1,150 @@
$ANSIBLE_VAULT;1.1;AES256
66303734646165663433656262336531623930303232643066313634646236376338353035613165
6463393534386562613261333365636236363830613632320a343137343736353535656636656363
33363836663439643631653861643530613939323561656164656161303335376565346238383362
3736346663353965660a633936303630363731303164633864376437623837333562366635306131
31613732616530383230356135313739613863646464643164376137303435303139353339383038
31303433346162386466663236666164313336383332626230373234333663656438323062643563
65313835646634373831613133643238353435343430343266663639393832353861643735383830
37656135343731643538616633633231303035333635396562363364653033393061396537386335
61336561343532656161323432353535303062333235623461653563383565633566396235376165
32363037626232656164343061366330616331383764643133386237333765633734396261353739
31663030616366353633643133333561316636373664336238343563303039333935633630333730
39383238393365646631303430316661633062656665656538343934323731323830373762623332
32363632333164633634353830343666313530623237653737643061373239336162633463316664
62666531363630323639303838623161303332346334666137613932343137306361333062336634
32376236306439663132316333613631343639303865666463313662633931396466613363306634
66386663663362653335633434323233666564663364316534336231303037323365336366326331
31316637376130326332336339383632323730323066663434326230356634353663633764303231
34393033343938643731343134393735666161363535626664323837656138656434636136616236
31646234666333373465653636303964656531333038646437303136366532313762393433643364
61323138616162353833326165353731356436346331363037616535663939323036306232666665
36316138393936353963363564646234643363653366333864343564376136353062366666653038
31396232636163663665343039323366356537326139323365623739306634633762616539666361
39666130656337336562326435323335363861643732373961386237626263313565616565313638
35306335396163353932643636623730646233373461313261633639653333306365643065343531
38623137303132306462316564316261323163386662376161363262373665633862303837306138
34353538626135613430383839653963626239376432613638336166383462333538376638316234
32336237633231363237653438363163343161633330383932366133366565313265646139333561
37653761383535323935323638303639616464333534636139353865616131623861643363653764
66303962303561306261343263396237306163633233383034613536653537313338303130636535
39363966613936383466333937646339356432303965333136636332623139303164613635343636
62363333663034353630323433393165633164306532303433353363343061626139303863316661
35356661303539363061653030653334646362633963643433343431396539653362313738643837
38303438346366303836326237626132393832306563366539383631346137393466623462636338
31633534336531306564653139646333313166663961376138656637613630373936646362333837
61623365373861333034383263336233383462353463386536326339396330363232626436623566
62616631306434383534333332646638333632666238613038643335636330663130353830636339
65313365373131393563336666363161323163376637663462346237636562633432363639653065
38666364323561626335393463646239313733353035303133396461626462656363306331353966
39383463633234353534636537396364356136333261663865373861393237323930343066343732
30656264323133343762623331653034313562343464623436376339646631626639636633303437
64363830643263363135363937636463316562633362653631343539313439363937383132306266
39643335636338653837373430623463316539396439343138663230386563616566316531656264
35393137663136333831326436643134333737396433633939636565373364316135353739343936
30313631633233333261656266386264356233356435386439356463396262646461656262383034
39303234643763386438616430653164353564303930646239396663323232323733393237336565
34613832376438356661346231353830393962313437336239386131353061616535353638333537
31376261333435373737633330626437623063306536306131313530366631343163306136616266
63633432303036366335643735323236626263373432386462326665356562616239346166343237
61616434366265623261363734306237636636363366356663343663363066633534633938646561
37396166626630383537333231306134613339383439643766663631323737353236303765353766
63306237373536666162343039663965333435396538653364346632613264383036623532326462
34393963323535616563663434373461636233376437653134626262653363323363323531363261
33356666373330303333393738656439373632396531373131653466333935666266666266636332
33646136636135303038333961336637323639393664303634346266386539346238373032353663
62303962393035383234363832306665663462313664623265313434373939646561343066343535
65663937633439633237613363663666373932363334646266613935636336353463353635643064
66323232666131366238356638326130633930613233303036396537333636373131393561636639
38376634363466363631646132323234646236343432636432613639303265623330623530613462
62396431386537333665653462383262393630363962383966623930393364363139353031656635
64323161303262666432343438336436353037396461396432303364663163353430336634623364
34313566636133376565343562373162393738653164626430356630633233343932306339386366
37323630666437623561363930316637346537383264643764313165666662663336376261616635
37393537306261643463313137373435353033323735646630363032353934396363623466396538
65353465333839633431366534613239623863303736396461343330303936633937643235626531
36336536653736336362323530376335646630323935313764663735626163663462376663623866
65376666623237383464666164376436646639353638656432343666396232613565643438386539
35383463383065383361613235666133336132336265313565383733313539313966376532643131
32373662316166383938613737613634373631326165333937396365646337623362623334653439
63353465373036333962636561643462316233366635363332616365643434323263313439363134
61633231343336376536373262653339323930316637306666376235383064336631326235353161
37333362356137333030623662303035373438623731316233656662386365323836633565373538
66356538326332643761633432623966393136366131366535373237366131356466313434303530
65386536356334656366653966353761363431376334343065616364613230346463373364616661
35613863636431326366663834396239656362313339393431646564393762393237383861626564
35306265366264303466666362613736356562323138336438333533363465353736623961363432
66626239393961383431393133393836323863323862313330633366386163303162636266353839
30613961346566633138393762373638396136346265303437666632346531633935333034313036
64366335616138373562643030316534363835363361633736383534393231336639353331646231
64323165316330343236363433666237396262303431353761643135393061633736313133396162
39653065323864333261643261343164393962363534643862386462323935323761646535333466
34333765306363353039343132613736383266316331373535396439623831376432326233303065
61316330363963373031393736323930623432333665343530393362303537656536666633353965
30613639656639626664646166333735306663333566363032663431663135356536383563663133
36326366633562343735613162663131643461346264303865373039633537373136316164323866
63323932646237663034336237653432316562396433303162306663653863393930316637616463
32653063356437323263316336663937383337323964623232653361316565623636636434653861
63333661326131643562303939363337386464386462646364316536623538386462356338323264
30646561343032663039656336393832663738633539313161363338393732623565373638353032
39396335316331316130396131326164396438323030306135666335616465333835346161383232
35353933626439306165633036363033363939616535323462613933613638653134366431393334
30626538663138313365363038323434613564323461616665313261653463613363346564623635
36356362363863633666323030653766316437656361343436306339363765346564616637356231
36636130643862346132663461343437363365373461613431393333643039666563373032313536
31326432343735363732666538323061623863623532323130656136613263633365383537373865
61333165623934386236353933626533643136313234633337343463623134656661373437373266
33306662626130343366323561336135376161656434646439373434363130306163656436393930
61343830656136646537356239323533353561326134666330316535313438303533316166353161
34333139363236303233313561653862383933633932363732393335373833613261356466623139
37313536363230656532363338303539386566653863323932613235643532663538303131633830
38666161326631393762353430313337306661373837303134643832376631356339373633656333
65363266363234393530666566386664656331373634326432396336356261316163626263353036
33613733383565346135393431376333643962393934313135393836346264643833663435313936
30663537366663306437636338343537353262376339666463323534376233626637356331313438
35623565656139383331636635653265393734346138646238653566306336653762653761383634
39313431343964303738666139363764663135363531353630646237666232633166353666646637
61356530386631343133386432646464666339316630366365623038623234396263366437343131
38346565323434336533313461383532396663393261313331383963303536323963366234303832
65656465366463396564303436663030366232633239313038633936643563646237363934386134
63303732333462356237366337646438326234366262373538396532353436333938343661343635
32646239356536326337656531623334623763343165636665336362623561393332663232336238
37326366386138326131666633653435383565376138613033613961386632316438316634643363
35363364396637346333663665326339396134383333333861366531663336666532376236623738
66666438376436366230623834663439373831613935363065343633633835316162356438313663
30326437636237643862633830313365373733623463303166323537306430353363623430346463
33623532363331396663643135633761656230303563656634646634633139336130323331396264
34323730636334396633613962346666326531656366656635623635346635396432643235636332
62613364346436306135326334626131626161666436646662363364633931386536353332643933
33393436356664613133626230303766396265623861313632326530663133616564383039323231
38646266386465356333626235653364656131316364326161316135363561623030333530646230
38346662636430663365343265383839363933326136633538346366393662363462633766363939
62356236376332656633613636663366646430353035333863383634336234373163373634386631
63613538313266306334366362336439363632616663626432653138646166663034393364376265
30356166646661633733333734366632343133613933656564303236323534393232386431333538
38323565653166376135366161393661336662623738343937653761376464623964326362333737
63333734333062353433613333393961616535363961653664326462353330643266356230336232
38313134626632343964623736623038656539356464626664306664616432633062313237613164
65376235346430643031383532366365343639343531636335333932313630366133613837396138
30366230626266623862363964346263666137336534613761336631323134633139633363316137
33323133333738326165633937633066336632303763326331356636343735373133323764366361
35313539663539383839363034633639383731306266333465366332336164323066343965396362
32383437363734636332383765393163393366653065316664616366656261326132626234376132
33353139306538666363393863366662646334303232373938366239333031633638333361343962
30373033326537346231656539616630316166653237316465333337623262646663366132353634
63613065303030653136383535616461333730353531356266336437653466643361666565323533
37343433316436393862336532313332316465373932623561633039633332326665333066626664
35323431393634316635653664366366636362363930363134353366386266653863353535313437
36316366393661346563353361663836316534383733323139633932346466653333383361396434
36633937313931643738663237376264353935346332373262626536356433346363643237323832
36646166323731306138343664656261633234623663386536323738393263386563393535303761
34363561636137616566633161663464623937343938393564363638316237646238636661636434
33336166376564376564623462643665613734353534383763333532386165306339333535623463
30383962623438323333613631613734343336373365383031323435623030333164386635613431
61373830663866613637303865333361613066303933303030396237326163346435323439373337
65653265643761393335323964623336303963383936346337653031366132623164333763393537
31636166633334613336393937343962616432366433343934343336303165633962363136636538
38353531636335646562313965623431326266353337333464306262383061363336336130663235
37393139373238363064373965323438326564376265623764353835303632363332323462626635
62656337636565646536363136366335306363333938646134393366343539323961353839643866
6439
35356235633063343335323561303265333234326639613833656534666163303164613064636365
3664653738376365306335656164373062636264353634310a363931336331363162303330393966
34363433333363363762623466376561383832333931633738666334313861313135646564633966
6230393864653131360a336461646435663964613337333962633063353633323431636563633236
34353466666461643230333434363330663166663238393766616262386535353539396339313433
62623337653037386434666133336639636461336465393961373736666231393264643532383036
61363537653633336236666436656630643430363663313232303132623233366632633934383436
32336335623033313038326166323565333335373433323236333264383135353239333530393532
30376265393961396236343563383462343466316662623263346539343136303835373464643030
31313664623331616232613430303864383266633631333763643133663431373539336530313966
39616437623230333962303338326234306462666134353263383565653337663838363134616265
61393562626566356461303464366336666563336239366134306664383634366636633763636130
35346439613034336265343539623732346166306235313134316264333735343930316365633230
35383035306461343031373738343431373761626630666363656430623233366237663365313437
32373537373833353131303532643462346265366465376634303638373061613437386530353864
37633261386465353231613738623938393235346333366231663963303163613635303835613433
39306261323265353764333338343137303737666439393865653866626664363032313563633763
62353164613433323334346563383430366531626164303232326437363633306564663833333465
34623232616165613332636664323033326130313366316566363134363035656566313336613039
33336531386539613231343466333631643265633432373261656161356134353432633234633165
31623930653633393931623330306564346537633465626431653335376461663333313363353166
30363838323163313130366133393539643961633364356261333738393966656634653239643230
33323736343437666130623539613266333238306339353137316463313433613131336439633661
35373938383936646130616435303764346630633161393437366662333165313739316363323230
36613134663831346135616238333733336663303431346635353763336666313732393534376238
39353831333066303239316663373838336430393864373237316262323036326362623033323764
63356134353135626163633263323561663031383433393764323863393836393065333234383663
35383864386633663763313536366630653534343639396566663532656165346661656534303535
39376165656535646663636438666366326538386162313334613732613564626135386431336535
32363534663965383666636435386434326538336532333133373731363939643933633562383231
38646431636530616665353032626461656237376236383031333064323466643831643739346563
64366461346463366462343965386435383461643933393732383266396234663532333366646539
30623963656166623134323531313462393131393061353239363763373666646662626334623262
32333034363262666135343263366130363564386263643033356665623965333664316163373863
32323865623466636261323736373463623632303237666237316133363833303935353365306566
34353562383363393766346437623130313937313831313461383737613432653563323339326336
65636639366632613837366264616630323563333462326532346364343066303333636161326531
64366362333834353235356432396632656363656539343235383937316262383232386566353663
32366466396431646636333139386332653638363037663164643563363364393265366532343936
65373239363935316538356332333932666132363534336238376339646337623038386264373838
32636633653761663062613936373334316337313533356365626361393339613136633338646533
61333138373665303433303230313138366336383432613839373636333065643736643230646634
31363232346333373664383533646163643033346161363262303936303536366337393661376434
31326661363966353537616137343236393235656531666165663566393732633965366465616537
32616530613437383365396364326437356462353461376632383231326338623332376466326233
33643133363163363066383534343538396263656165353237623662666336633738653839333130
39383439306431303032373733613263613663393332656239356231396536663639656636393434
31343834306233633733356335313562633566306538613564613163646664313863313030333935
30336233363238643266323034626265343335623034643966663262636138316165616235306461
33393336313564306565336530613563636366303135323136616430653831383435656237333466
35396664326363663536373130303534323138333135313062643436363066646630363232346638
66373761663635373666626631313866323362313463653938303839633133366434323066326663
65373239613131353036383631636334613064633166323430373238383030326139313563353364
32636161333331333939653533313932376537336633333431356162623464663465353636633266
30363932323236643461383537373735353666643833623765383330616535353839616438643437
35666534376533323162623030623836633030373638393937346134366630313830663965336432
62663437386333356132646136633936663337626639383262373663656333613135306336326163
61383162396361623730323639393639656565323161666435616434613761326537336432343366
64616535633463356432353134313232373130393639643532326232613630323566653738623031
38343234323132313839613535383662656131323361653236373230353966323534323763323063
33333733383237643130393865316363376438373330316332386330663835396231376532386365
34373931376536306231306561356536313735613461613463626566366563333537656366343063
35346539383436653964636134386235396662326630373739346630383961653662636532666332
39323062613036363835396563653439373330306635613032386334643130363834653836303935
33363236373735613632633861303535393763653932346132643065383238336536643238333264
33626261623934353361393639623363383034336330333334343036643331653632333035383862
62386234626333636261373165636433306438623133306363643831343431346430653539383762
37326361343131336237616537363730386264306662326235653762623866393634323234396539
34326338346564343065643632316634313665303134613536383261623561393931376562646234
66643066626433343562323632646337313134356562306335353632373236306133323330323066
34303132383161396133356139313232353165363035616636393035646339353761376433323566
36613233663639343435313434333030613663386562653463346133343462646433323330366333
39643333353533653665383032363164323563326263313533643336356233313461393432363666
34373838616162363465366263333933623637643665363431653835386364363530376130316261
66386331393835396261613661343161663465623531303232373631663636316663666237333037
34653530383666326239356435366630313061643534613135313539366432303336623465373436
62653634356534336132663165613966353032616632376639333361333438373838636262623834
37336136336336626635353961303737313039663738333732343665303462343663616636666363
38626463633462356434336165623266346235346361303836353434636532333332393939346332
32343666653766636663386262313261346366326236353630636438656334653332623836343532
65633065326632353436303630356266613331376536383165333562323261313339313066353462
65656334383231393666306538356339306136396132313363643663333839346463376233353439
37323265363235646466333534613238306663353430643530363334666264396231646139363163
30313464333034366466633838316439373863613438373639373539643433323432323762396337
65663435656535643733393961623235653964326433613937383064643466376434643535333636
65663763363536326531326134366465376565653235616436313533643435333237653737643565
65636536393861356436306632643130656633643432306462613638393839313233663765333132
37353031656439356134366633356565373637623431633330383533613837636239343764656431
64666236343561333538316236636334626366343065356339376162393766633266363963656636
34643237386533386532353639623037313432326265623866393463653835663938356164653730
61353238653766346163653138333362356266383432353766383032333035623330303535343436
32663235623930643061373136623162633136393765643238383931663237313162373664623165
38613230356435653630373732356338383737646139613136306364326432633133356536636662
38373435643235373862636636343838343136353130333964383035646465383932306165616334
39396231656462303365306134646134356135306262356437383939393232323362633035643261
36343936303165333331653337343366373633323136643134653665353736303563313633626562
61613066376136653737326433393861643033656230376561653365363034323264653630373933
63383066383861626331376162316163663064616462353030356663373531666233343235646638
30386361353064323833323563663139633432326133653430363134393861336165303730386139
31646164373563393530343234373939396133336437663461663937396234333737383864393965
62383931306233653632316561333635653337656361333061383133343261306565346463636533
61303334396261353863383836393734313132363634636463623635356636626636303738303831
34653734656238646464333265363033306430356564323232626364626166613538646536343937
32393439383663626336333137383039633564663565343734643831363765393231636332346538
39393165396562323630666639626262326261633132326438323565616461626264356364376465
30313134663563366263386435356230363663646135613834313665326361326363396133323135
34303839333434303030303338613834306139353965343762343265316434643233336634643765
64623936633736393731646563326130633837346661353062316462613730356363373937336239
66333235636666653830386439383931633362313332656431613933383332633164343230613262
63623561633235393263636263666337336131623339336131626636303531656163373134653163
65623539333963356234353933646630363761396638316365346465633966616132373663343366
64353430646131623233323864613633643138396639396561356164363130303936636464393234
61333038383236376262363039643234663936366635353965333738313830313466643834383063
30663732326437373538353165646461376562343634373333663565626135393336636431626533
31303138323739313361333638633866396331353961653063303936643833656361333162373766
31303538323064326564663865333762656662396265383135383738396166643964386462646133
61333836396538636163623762313530333066656264346565643332643964643837636637306336
61396230393262396462336465356261313864623465326563633362663635653535333764343938
36656465316664363336376331366330303434643530383233356464313934666638613637636661
31333963323762616138643833356231646264353036656631656261363639613964643434393737
31343365393864663462616135653963343033346263363635333531373061643933386463356239
38363461373439363063346337346265613063353766663162303637373162356466656236393734
37666630663336353432633935633564653862633265623131663832636637373131303434643361
38613965346364646237396438393833613364633631376337313230333662356233656431323136
65343864626232396462326233653134633366623439653465383532393334333164643037326633
65633631363538373437643064326161656263303033636130383138356162316131623366646638
65623437663362643831386661366235633136623536643937343835663365643061323965306234
34616231626535363665363235393235356161656462656339386337646161373431303964323963
34343064313163376566653635663135653466616233633764343130663730636364326236653638
33313263643236363062613430643764613932363866656435656637313332393963353863633863
62646139366638623634643365646435346436646632353366363137666334336539303836316163
30323236313337313264646233303662336332636638313063303737393137313137333262303935
32623037623532393635303761316539323735366539626436313635383633616538646439303466
62653537393534613834323762636165313134353530326138643265383631343238623464326463
63373433396232363234666639633361616462383836313964376265633663376335353164356439
32313664346437373331333162376162616534313535313039653637323630373036363065373964
64373139313563666334333464336235626662626364303735623263613230623833316135616465
30373930393763396465356534636162333533623030356461643338623666336562366264326163
62353132616434636332303835653565616536363531656433326133336265616161633438393261
37313262663864616238643839376664333632383534643632373762313533613239636532373361
33373732386335336663363765663135313365343032663361366132616166396362393764333164
34326234383664343036623261616263353664366236613062666431666335656564356135376632
30663832366466393837653033353764656432383463643632343637353062643364616234656531
66343839336163663939316433393130343432633630383963366534313834643939313731393235
34366566393061373631653730396433363665656437343530336133386430303738383238393838
61646335633139623565663437646331303262353030393133303564386663303435393565343161
30646561346230343362653839303261653761363766656432626462663232303062383834303564
30653532663730633561666331653931643962356631316566333733386639333535643161343965
6231

View File

@ -1,11 +1,11 @@
$ANSIBLE_VAULT;1.1;AES256
38666637666532366332306637333733343532396366376337313131613533656466323834623861
6530613632636333663564663437396661303363333261360a383165366637643930666333363037
38306438643665343964663061376134623032623139623836313939666362636164353437626565
3063386561316535340a313336363663353066393537663538373466626232653164356264666266
61666434353636643635613566633832353634323333663561663262666364633565656565336233
63613335663965636661633936396134393565323062316236646562366165393065343039633235
36353965363331333764303964373238623563366334666634333966653266613665633936383361
64666463316135616134376535363164633937633135613231623762623464656566333835396238
36633064646566613535363337373538323861366165383937376566643762383563363631626231
3339353335316166333030316238386662343036643138656239
32373361356331623834623562613964383430303539636364393563666537383436393834303434
6235613939366566363039313765346431313566646266350a313033646137613434323862366535
62353233336362363737646266643539396337646464353534333034653432626433666564626231
6332626161613432620a343565326134336235343763373931303530653433313432346363323165
66656361373364373934633037626530656561386230653163356262343736663738333864623663
61633532626163656466376231333233313964663861343331613735346464646133366530313936
37323135343338646338383663626164383439346566646431613462376464623437343737316333
31643465646566623762353838393936643939366366343830616435663534313433336263653635
39656239656239343765363730313030626663393262323362636237366266303432323832313564
3163663932663563353965323366396136653666613830303065

View File

@ -1,14 +1,14 @@
$ANSIBLE_VAULT;1.1;AES256
36623964643264336339323236353033656233636535383931666161303339656434326633376533
3663343337386233303538663661326162343533323766390a396537333761396535393465303531
63653161613630356131326338396433333863353632336263613936316333366661316363303662
6266393763346338380a303165313036643238323733306134623165653437633031306434303933
30396566313336386135333934613634383964323232326439333930323761623763343233613038
30643131636434386632646337656663376261366236383837363237363738616236396162313466
39636130643730313161666366353464643234663032333731613636613833383635353139353232
38613834663463326361616132396336383235383838393033623539666330643234343838353132
30313534646135626637333736306462393034353363363464663264636234306532363762336363
34356231613162613366636230626539326535643163623730393632313833396231643863333135
62636563613762656136643230643634333037623963393633646331383333623837346233326161
37316539363830646433396434616434376334376462666332316533653139366533373630663161
3965
62313233326137306230643238336161666362336531343739636262663037636166633236303239
3237656432333264306362613836653962653761613032650a346662383866313065373361363632
61653134366434643237616237653462663031646666646536613033363865386538373162363733
6263376366356231340a353262323162636137666463303930303762323163323537383963653565
32333935366533633931656465353063643835633835303438666233643264373730623337383266
65653161663462306237376631366133373661646532386133643133653232636636313439366632
61393235306630393364363735663635653230633064393931613965383632303434643566303137
35366261386461646332303864626365643739376565633135366538656639366239323432646134
65366133653330636234373931646161373231386630653864366361633866306666663638616231
34653334376139373463313337343438386662393536623530623334313631613535623662633239
34306333643666323338663036333035333536633839653930383632376336663466376637656439
62353537643639343234343038666662336633356230636532393132656362396430353362633234
3665

View File

@ -7,6 +7,7 @@
# Stack base
- ansible.builtin.include_tasks: stacks.yml
when:
- enable_role_stacks
- task_enable_all
- task_enable_stacks
tags:

View File

@ -6,7 +6,7 @@ version: "3.0"
{% else %}
# stack: {{ item.name }}
{% endif %}
# master: {{ stacks_mastering }}
# master: {{ stacks_mastering | default('2023-09-25') }}
# edited: 2023-09-25
# updated: {{ ansible_date_time.date }}
{# >>> notice #}
@ -68,8 +68,13 @@ services:
{# >>> service #}
{{ service.name }}:
extends:
{% if service.override is defined %}
file: ../{{ service.override.name }}/docker-compose.yml
service: {{ service.override.service }}
{% else %}
file: ../_vm/{{ service.extends | default('common') }}.yml
service: x-{{ service.extends | default('common') }}
{% endif %}
{# >>> user #}
{% if service.uid is defined or service.gid is defined %}
{% if service.uid is defined and service.gid is undefined %}
@ -96,9 +101,13 @@ services:
{% endfor %}
{% endif %}
{# <<< capabilities #}
{% if service.name is defined %}
container_name: "{{ service.name }}"
hostname: "{{ service.name }}"
{% endif %}
{% if service.image is defined %}
image: "{{ service.image }}"
{% endif %}
{# >>> restart #}
{% if service.restart is defined %}
restart: "{{ service.restart }}"

View File

@ -11,4 +11,4 @@ task_enable_stacks: true
# mastering date
#
stacks_mastering: "{{ mastering_stacks | default('2023-09-25') }}"
stacks_mastering: "{{ mastering_stacks | default(current_dt) }}"

View File

@ -7,6 +7,7 @@
# VM base
- ansible.builtin.include_tasks: vm.yml
when:
- enable_role_vm
- task_enable_all
- task_enable_vm
tags:

View File

@ -1,78 +1,78 @@
$ANSIBLE_VAULT;1.1;AES256
38643264373664336336316564303430343964633064633766313634623535626339323836666438
6461386135613830383661633836353037313435326635300a613033363631383235653333353765
30613635633566633761343662323339333932303534656138656237353835303739393639626231
3833643361623866390a663165316536653635303638336364346561623131366335393034396430
62326565653466626365613037643161313562313636343333393036386261303938396336646530
34356663353130626366613136636532623836373839333662643862306434316436313132663261
35626663336436633165396164633935343563353130613934616339613330313334316332316237
61376163623365303663303335366166323639383565643239653638363638396539343332303863
36663864323563366566643637313238663536363839396465626336613062313633363236316432
30633439346165646137663135313964316534643661373961393633396533663433393362366334
39643266383135356231373562333030646435363330616535656431636534643532353162353133
65386337626239366330313262633962366536303330313465663237306465626132643964356139
65336437313664373135333832306233633734616461363238323963393739636463396539376238
33303037363966323936656335363765613636646634303861353361666564396265396263373336
33643937373165306537326563666533373034356632363637663035626137306337323033336637
31393432383730333864383563393138643639393436626561643738326366366266366337623634
61373634646661326530396462353739333862333337396331353364363362636139316665393132
38623433313764653264653730346564353064666531393536313735303561663136353731636662
62636233666631616561366565393333613031343537326261316535336162626465656633363162
34643032633262323637353939616636663133633536323464353066653437346133393330333366
34363931396361653137326133373234326334336638646464323631356436303836613038366532
61353330616338623933316238336635613334346134633365616166373966663231343365343464
33373566376537323539353036316266633031373035653838623938343964313032333739323364
34663039643930643633336265393634356339393233333834633736323162633130343730363430
39393864313164633064636564306562353264396131663431383334353830336531383162326238
34393038666633313537323661386132656535626330633133383839303131303064313038353737
38633163393863303233353431323638643162613062343762343564386361633934653765386236
32663130653030633639353063313331653630303536363262343835336663336265663563656332
63636634323437626131326364323630613362313362373937363661326365373635363138386637
30313034366366623762303438323763363530306536306532393630396530346562343237373962
30326565313861663538633166613363643339626463343839373264636637663134393638356535
32353435656262633936396439366437666134386264323066623262353431396366653861636639
38396332643036306332343262393736366635643965343834636661616137623739376161666639
63336336356538366531656234653230333765336634396664393730343030663133356265643361
33643631333761313137343537613764333564363536306365666335656461333566616631386461
36306164336337386435306536353336633635306262333939353130626535623734316235393764
64396538623838343961363637626466373865623930366532356231623561366237636361613334
30653164613065353439333063633961323962343364366239353461643265313435613563373138
39356636623963666236336331646661643839363635363136316164616234666138353530643964
62383738356534393839653831373261323139303339326662346632653561366364666337616133
38656463373332333165663539376233326234383662336462383336663430386564623137383461
39303262343133373230353132383431363330326539633063633833333938303038373764343032
66363338386236616236386161666235393363663131636338383064396562373537303133333038
61653330633866636437653364353165323838313135383663326635626139326638336665333736
30656239373335356665623834653330323661333234636331303431333337393033333864316362
35663837393231373562333063613832343737656238336365383835653738396535333366326339
33616266313837366437633838383333646663663530663663336562316531633061623639633332
35653863383537653761343264336237336563376330656530623738626161333439383566633132
38633361656334386436663731383930383662373134323365393664376638663962396637343932
62396231363661323038623733626332643036353761353437613264653530363436656261356332
38313833336331663738636464613462343136393062616666643839383663663864623437326134
66346531306265666530653835393030343465653034393437343764356435316262663766636262
31666439663238643439373437373364383833623863633139313832393439623263623634326563
64633262656661623934656233653230333064663538616138623931353761646339343765353530
34613866346130353833623039666564373839623561623036623965643262636534333438333261
62333231386636353939633136316331623639333231656330343663356165643233303562653535
61353766653630653932336562306366653331646635656662646261313433393462663939356163
39643566356362646235363630343033393134323663386135653430373138336236656438373333
66613436303565396266656332626237613664623665386231643433653162376266636637313262
61303937343238373232336165636638666332656331356662303639376534303331626136316132
65346463373039613932343031626536663038313565643636316332623631336533393836336239
61613233353866383939323262636363316566643330353266326665383635343063373362336138
66346331306338386563663263633062663731373230326264366665316164393935316562336433
64653766313466326462303834633363666334636333623765386634383631323936386564386132
33396233303737353066653034656639393466623065366534356266343530656462636363666564
35373563616138396239653934333836656665626635643038383331383231356533333962663432
36666465313138326536386465336436326364616631333830663232363065303661656334306234
32373262333964356562313437633439303737326230616566306431343636323164363637363437
39343866636463333832653235363666663639383265363365386331313932636239316163373763
61306462386436363231343239343533323162323839303661333365633132336632353662663433
38336661393433633464633933313365336130323838626632386339396430643961346435373236
34306665343965626466393763323365656639333562633661613931646434366132373634316663
37373861326162393337326162323934323964316133363331616462396239653939643834326230
61646636393232643138623361643965396365623832353839643837616536326138613030306462
33646637643661666363323264643561623838623339633230376630323837323636323261316234
61376438373634643431633234373166356331363239323634313665613763363932656537373432
37303961386164616637616337643339366231326439353439373635323565373162
62323066383762346136623765363135643230653833376533343235386461386334313631636136
3432353536643938623766393662303530383538383835650a323837626161396635326337396432
63626638633163323239656365643062663735373538666535636261383736653630323030333663
3566613966343539380a356461316465386132653733323035343031613834353138353536303033
31623761386565326365663863663932333865653235623135363361313930656537316463336464
66646535383230313035303036393863366431303263663738336461303162646138636238333166
32333861663932376166623039396665363330613833383833323835373361396138643661343765
36316333656562353031323430386262653636623738326563663033663937636137613636396430
66323739623730333630383638303835386437363566643062316535633430613162396230376237
65346465346361316337663862343939336363656238383433306463656462306533376132613464
32343564323937663837303762383364313934326335316561396230643130323433376463656339
36393365663231316136363062306432363263333936373039306137643137373431383161306665
30616638396130353031313666626261643134666561313462656432366138373263636337386132
30303634653738373363323232396162613063366461626631656432653933336366616635623764
31376339386534653863313365313666316665633235343564643836366561393064386661353333
30616133333665633039626139346237363066303635393236373163376535353036653430383032
61346363666434623135613666656366653064623865316364343331643363396330313137313338
62356365646365653465393165333437663361393661346337393163613336666262353263663430
64306265666237373134636339656464333136336162373966306337383533346463653533373766
65653239396339376535306538633634366335356364396238633365646537316238666361313362
66663636613139353838376633356433366333366632616138393235663362343538303538313630
38623364373565396565363836326565333533393865333965643837303633353231636463663161
30643230386539663435653964636330353631366262316133623062376561316331633531626161
36393131636432303539356339383633363864313533633637663330646362633637313366363231
31386163346165623266653861646666376366333534303861663264306263626232323438633336
62323962643834386336383864666165633362353531393237653166323761353333343938326261
36376639633834663537343938333665633136316564653835306361613432653164323832623162
61613334643037363631663036643433366231633038373464313138633362633262626463396266
64353034356639343933653261633932656532663762393063303134313862623365633536333762
62386537666436353363646232653230366566356133653933636136396264346230363038613963
35333933393236386534316330623134303237336139653730656634636333313939613461373964
66656330376361373165643539383831383831643062323532633663363466353531636363636333
63356333303730616132646165353335343265393563643265653463346563333332626332373933
34636330626233363337383462666136313635663861643061363637323361303935643664633632
30306637336165323232626237636437376435343034353031326466626136643236313963366565
65303262623339373562623866613566356464316631636334663161323764646433326663613739
61393137633930323439333466326137326536633932653333336162613431316438333239343461
64623366633166653565363564626165636436323733363333653362346661306438323965373561
62353362356262616236306437343137383731666632313431323536396363613262303563643036
38663730613966386638343937353964646666353134633338326130623165653965623030643063
65306236316635353832396134343537343664363166316439626539613439316435343230616131
66326263663338656539313639303739613338356436346233323462313537373465346639376532
30376135643037623963353864323865393337646565666461303035643437313236306665303364
30363166363339393662306438363331376361616533343761633037353863636238356336366133
39616130373638613139613530623165383137623966653934666664613765386434656333306130
62316666633166643339343538346335396639313036393632666337343433636662626530393538
64353436666538376234623666613461333839363834643139613338666566643361393734386635
32376631613733363861373737623430623661386332636665623138313838393330656561626636
65303839633165663862366162643166623132613964356535626362353561636633616434333665
30383130346365323238336434303964343962323037633138373633356230393164386462356262
38396564303338393937386263613034663034366535333735313137346332363833326465343130
36333832626266636263366234326163646430363933386661303661313134623231366539326536
37643934356263336662353436303739663934613466643538356338393833323230626461313134
66633365356565656433333066313639643434663363306138353165633733663662616336316665
39333063656436326462663965353731613038396537653161343631323862373938353363636237
61666564376331326563643031633732636633353038643734633466396639613962356534386236
32633839366231646666616433333839373232653861663331303935393632356534393365656237
39336539663164376566623536333635373431313238623933363063623135333263346662316532
62653064343536656437653665346539346561386333383262623631356133323136306137616163
64643239633934393264613832666664376435323962356466383639376535356332353337663233
30353164376231636530643564333764643939333930313263356664316131343132343736356231
62353938363139303839623565613533303639303533636534346537356163633262313863613433
32303265663862323937336438313564613961356665643564636533383461323130366362353037
64626266343439653363376138363262356335396537363862616664353964313262376634366564
30336261663333633136653931353565323932316133633331363734363032336663666131366132
30383665333835303837616436333833663139343132343564663932633531323161353932666265
31643339666134616131373231623631386666656630313430643835623337333039626464396539
66336565376133303063643163616632366566663131383565663831623531353738666361313366
63313037373731393037383264643863363334313062383865353963333332643236653730303766
66663636373435303037343966643435623739396335623266313435393238346133396365636535
34653861323533626334346263393763366263643465343434646630373834626534626663633235
37616530393563393634633864373738343233323566623662616136383234333861643631363730
34343964306639343939346163636435643336663463333136353464393738373233646363656663
39336333646665333435353435343138653638343662386563643839613337336139346237326663
33643437626633303830643066306462653266383432323564366333383662613564633130356436
31646539353138386661626162373338303364653865353634626234323566353465313035336434
32343831363064383466633136333165303732663835326338633363323436343663

View File

@ -1,237 +1,237 @@
$ANSIBLE_VAULT;1.1;AES256
65303036653562613438393365333465623533356364623633663634336663343366373764626639
6332316364306436353661376362623734646266306465640a653932396532633335393137376566
33656434343539343038373432356433393535663633376437353631306637336532323765356332
6433376261653463340a303764643232636266366666656237613265386638616637653362663937
31383362303966313732343261386234623262343166383134383663636565653038383963386235
32323963303665333063336138343531643562333662353664373631626430373966303931343166
62623433303366656231346137613032326266646262643865363138336432306434646462333933
33383562383430323164616438366435313431656135313137343666376363346239376339306262
62343836343834666431393463366563356632396438653564313333323334626438626534373537
36636363313937303537643130613837623862383432363662333231353639626135613231346632
63643032303532616664646530386661636635393538306364643763393233323432363361656136
32633165343931393132363730313132373139323936613664623339613931353138383032366631
34376137306635393230326330353763333432353930613265353266363831303338333462636662
62303563623562653564393638306635636366333736663430656438343264396531323239666466
38376632313330663464306430653039646132306366356332343733313561303138326439393062
64326335653639323261616232383565306534663837663061616339383563333262616162313362
38666562343066386463633864623836663136353436306263356434323135393236316163353332
64336266343361373161383361353963323662343336323130343134646535376336336661393739
31663330306335663538393832643462343564343138396539303762613635626338333931376136
61666263343532646166356263623936333438363635313935626466396664653862333565396339
61333531386232336261333065376630373833366261323539363831646566353764633935616437
31383263646666613838393165616265373639646662323537646534326638356636303631626538
63396136613132656563333431396434356334623533623139666134363733613562633038396365
36303837653139376430633130636562666234633530646264306163333932353066616462613161
38396333633134313538633139663665313966656331613833613232366465653639373239633732
34343336396630326263666133636431653835613262623030646233643637623362363062396138
38613835313335303765353430656235626661373232373765376661313537333234316464666335
39646139613363353239386237626334633261383038326635343637313030346632666136653539
62303433656261323666613836346164383430356538363439326565653565346636646138356339
35306662373834666364633539616533356461396562666430346562343732616564396338323534
66666535393334393335326334646534616339353464623833346638613234636631663233356461
39626565633830623434383639373465303432636339396334316430386635393965346236396564
66356237366166316561343165653739363166333565303135393164306334393238363134343836
30343961346361326666353065633131393365613566383265653833393438643733663365313037
65366166393665326530376166616437376230303534363233383262326637303862336534313939
39373161313464393862303339666664323365363363363239326339656162636166353834643237
63386261363232373330333238383462656439623164306366666364666335353866633762336335
33656338656234653664303161613961396265316530393565343130623037393330623337323633
34306562613163373530343664663730383165633933303661336137623666623834333964396663
33656636313933303935623838396636363166383661393062393733386336393861346366663666
63356662346366613036346130663038656236353433343531636565343334663831376663336465
35346239323933633732633366643234323730613039626332306666306535383333316534636538
64636433383037313261336132346537643137666164663436363663366631376366376236633538
61323763663532656163343162366465363064313262653564313366333638306332306666393130
62366537313634346265393361343437383765666562326263353961663836346136663465323836
38386639633933306565643139396633393632363537376139353963303266626531326338303561
38303935336463643437383061326632353039396531393533353431343766396163623632346535
38313666663536326334333032313762386331643431396663613735353630373333323136386265
37616133363135636637353736303730353031373838386466353034353862646632393832313334
38663761636166646163633638643733333062643064326365393332396331636564363438663637
62323261343939336338366632373737623261316130363364316237613461613338313166366162
36646531383035613461396562383835303934633634636132303039626266393533653332323033
35336463366464316533623164643333353966303139623033363730623564363562386432303237
37653636616338353133653232336462643832356432333839656437663565316430346436623461
66663033356361356633316630616263346661613965373661626430656164363236656533356635
62643961336362663564333762393033663663396331393631643133363364323836393938633530
61346637623164303838313435333063656362386638656532653532646365363238633830646437
65336130376538353030663362646163383263366537373563333238363038343362386630616164
31636536616538653038393936616533343066643463386334376263623837656365643934333436
36396231373663646135363433383435323465666338363336623431356238386662373139343837
63376563613266383066313733613934626162363765393962633339376430366436383964353763
37613162303330326139323636616634386662306164616562353036613163666234376231346565
65623232303861333364383363323339343362353865323965363466643330363465383337613631
65636430303665636239333735373836326431386533643230303330623930313135653337653862
64346432343132333766363436313036316133643863363465643935336234353734613065393962
35666339363231306362633664666438373764363033626464643136336461373362666236663263
30616332303335666236346266343132643838613832643534383662626232633239366362643137
34323962623564646532333064393830613733373433376233373038643662366236363662376237
61313465643263643165613035333830336133363961633364323563336165363232666538303135
66656334663662326261393537613166393531626166313763643463383832343430393863333133
64633636363561393435623931653634303164646234343263633463663031316465616637313631
36653634333937643938333335313936383138396261663134643661633266303935666161633965
35393166363932333362326163323937366562363562383461363862313535636339396161336534
61346337343835323330613134303563366462626665316432316461353866636161616261393334
35313765343832653261363233666639633236653439313833383733386637633830356665396634
31663334316234623934666664643931333633626534333666376365626236646639336665376365
39323865366461626130386236323237626532356566323432363633653561333332613937383635
37353565323931333135316633363461623634626430373633323863653263643236396433323863
66663663653238643864623531346638336666306364366566613361313238326434313966653738
39643834306238323539623161626465303962306332656630366139303464336263323662393833
36356463393636396439363330663839383236373461643730643032333230323330366461633539
61313465323337636131303063653362626233353137656333666631393232313932626466376530
32333539336362613761356135356466353536316162663530386462343237316536363431646538
39613632633966333961303733393336356565646261613366353561346236366463623934393430
64613938666265303031306561373938343539306566666439386337663736383461383131363735
30336164333566376634393931306234643864313739366335313132333833333661336466333339
30633832376462336437616665626166643361323436343537643839353135393837346639623236
39616462626430626139386532333933313063393063393534303534366463613935363537376365
31303564616666656635343238653139306361663231343938393762356337383032376261666533
38323962396365363461313565656531346364666634616162623265376165343835613464663333
32336635303061393166623765396232316138623131326135333562306162376236656461653738
30623534633232613833633537633837356536356233313938343964646631303230363465313761
32373066663764646334383865353565336431323063666664373265656261653764366131343133
30343362646639633431393234306338346130396338323965373437323761663033323931633662
61636333383530643466396463333230646639386365646666353437663361656464306262333364
64623262633862326132666666363733636261613962343934356162303963623662343530656561
63616632366631613437663032633438313436323461623638656131306331383631343838343237
66633863653732306262303236326365393734613735323531646232333266383437383932613835
30633761616262353830633634656530343237616237353466363739373235643831326630356232
37343963633935393430646533633930316465613731636235643866646162326562333462353533
64303062636438663138373530346537646364633534313031323062623432373565616132303535
37346437313035623463656463343139353961643264376165633262333461623830376439366335
66373061333838656539373962343737333038316563376237343964623430323833306362323233
62356436656230653861646339323234343638383238313361656138393933666165333739393532
33646436633763616539333234343536383239363061303865666262393534303766623639616339
39323234393861663631383930623831336563646531303064323161393734373932363534623832
36373830366466316236646633633363383264363732663734383138633764353162663963363962
33303536346333363462636532363537363336646236323566643866656332303238323132646232
37313862333362333332636166303262393964333336643032383462376135363039396365643663
66303837376431343761306566373430646232336539383065303337333831663736326162663939
34376238383963383735393434666165643365633433383338663336323135393231386665643230
66616337336462306537323937316266393031383738626533383164653832626236383966333038
63623033623461396636393461353165376465666536346132353466366265663665623162343566
31666663663936343739336438613432613866323638656666333936306461383633356365656565
30333661326232646132316235383735343662316431663137363530653564343139653139623331
36646538623063636165323334666465663462366464396366363633656466613036396234633335
35323666613663336138626666633163323630613139646162636632396235333164623631386662
39636361336431343432653037393538333665343836363362323061636362623139396132303339
61633964636165653061366233626131653466396130653066393764313538376437396131303336
63623836376236633735353461363735313231663861396335326535633430646138663037613338
62643830356465646539313731623966333233393061623365616337623764316637393065353736
37663132306362666635353637623636396333663966323263356135376564623763336361373564
30356633663339613631353332666336323763303339643933653266643232613732396338656337
62376161346166313566343230376430636332386530343361316566393534313966613465643037
39656232336433343366643263326139336334663834626133643533383462393263616262633163
33353564306635633761663339393537653931653365383835633534303230636636376165656463
31633530366636363735376634623336323763313935613337366338613538303330653766363838
65636630333930653662623439643665346233393735653438353066343132336131366166663738
61643630366236653337646664396136633038666463616666363530623939313332326262306532
32653330303662333661616362626164313132343533383062333338376431303266643735393333
36376265623364343739313035653931616330303936396365346466306463623734383161643331
39343336333033383464333732666432666337356434626634663663313663616431393732393232
63666264636632356437613661353730303630656166323135376166653935343931633666366331
37326365353930336338626462646637623861656235326435323438656137306536333762643563
66393764653564636437666337643866643733333433656131316438316539393162623965373866
32366335343332386662303439353939343036633137343262383764363163626466323539383263
33373364623963656136613332343562616338343634336436623534356263393738396261306237
63393330386230623563326334363331336439626638383032363931386563376139356537616561
36653762356365656139366362333663326330333839666634616634336530393933633663373331
38663961313535353439376532383936666532313334356638316337653364383038666437643437
66643531383961356162346263623930653133366439306137653538373164643766646163623837
61646338363533663061316232306162356639656463343831396330326363633763393738623561
62656432643936366462626139366431326334363131636439636564623737653766326564633164
63353734343534373531656136333330663535383431353262366235646262633664386430363562
63303932626162393438613865636432623532616539626462626136666461633937646666626363
38636134313631316236393632653537373539623933366537366365646436383461383265656364
38653837376164386330316666333835356639316664333834383339663932623737626431313530
64346163343262383232373165326432396661346439313765333462393733616461323264386436
62356237643730306362653539383936623364363637636161366166303061613565666233326163
30656639383739306338333262303439623363383730363038326235373863303735636537643765
65393737623034643432636165343631383061326461643866356433393137623262656439323164
61616537346538366361633161373736663461636632343337376338633537313065313135363466
36393637363535633961623830353463616532333264306635396132383961613132623332636333
61373162303039643562383932353533653835343933643863323933613436666364393438313632
31326135353639316332363861653863346339343563623335333734326364343662663461373834
37613265653030656536393030303930663133653333633039663366636333366134366630356364
37656539343462383462386630626239343964346539333639393930616533663363623066353866
64646664333063646664373365393164616565306537643334316131323665396564633764376638
65393435656562343131376337653466323630373632633763373837356461633037303063303463
34663164343738396637666630613962393732633462393466343661663837623933393663343163
34363161623935356632343838633965323831656236356361386335353766356565383630623139
35623932623533363138653263376263326435303832353233356332343634343238333330653464
36383731363565366363376564356463303239333762656236383135396466326361376535386163
31383232353734643866613136303336313439613438663264653463613661303430386137636366
31613165353134343365613336333063623966636135333332616164326264623930373436663839
31363537366264383461383064326431383830373931636461363433303931613837306133373836
31663866353461383733356236343633303465663965646637653932646436333364316136656135
37306263653030353936366361353161363435306338643564386137636566356631333164396535
33386530303734306636316437343530393037313932633334323963643236303562393663306466
34333264343839356135353934323762323162363939636639373363333132373231373034333130
30386161326432393266623436356130363834343362653663663262626231643738313034393937
37643938383836343766616136396538636362333530316536306461346463663431663936356334
31386132393064333161346636656338326630343035666330636163666634373361386235373633
33623234653334643033346662316364626435363765353436336534613334326462613332323061
34643332653362653638336636313737656130353436646533316365623638636230666161336437
62353635396532313061373766393332663938363038643464313239653339383161643132366462
34353635666166306333653963303534376563303234383133383064633131376334303936353864
35303934366439313134336134373264316564373335656339646661656239626639613262303166
33376666613135353563623234303364623939396563323761386666363538353930653530313131
38383332613764353061663739356634663931313137613166346263653364616232376430333530
37653931646164656565376337353063373136343335386233633863623339363465663764393366
39333166643530633231613539643633643934613963663931356231396164633262646133333831
31366261323363343066613936613563356566643237636434336437396165376638626331333465
34386266626163353034313034656365396434623363363561663335636431343963373131343365
64383661343032643536323431366166333136356432663531646361336663343934386435326330
37616534316431663439366663383265343237626165356561393363393936633836303038653162
62313531353464353237616635666232333837323334383432633465393437386632343334613165
31313766383730316363653438656536613861363336653039316435343834613166373939613762
35313539336631393334636634303834666339656662323435613238373535626562363262323430
37363530633162616230626530353735653939353433633264363031393732623563656635333938
63666630396564363933393737336665643638623639613439376534643237373364633832616231
32343364326238353832366432633233623334366164316464366632666162663435383262386462
65366133366566393364343739306561613362666233353035363664393531326638306239306137
37666466303936646131396363623235656537623533336262373337373164653337646130316132
61323635356363393833393733633066373632386361313933616166366336653632333835303532
65643232356232383534396135333964396365393934353332333934653335623930633832346134
36396366623534353739333834623338626433363066366264303337306263353965643934326339
32336335636566333262373433306231326336343366373265356431653632376430613265393831
33393638656538656362343766623632643465306338646162396364663234366632386362623937
31356434303539373439653366343136373466326661363166616161616562613733313138663135
65323762633635366364323463373261373835383464613035656235386130373335383064616338
66323765313938326366343964636135393530636230646265323162636135626462656434666365
36346265626630323634373066666432653764393932376639623662623834336562663462306135
33643864626339656339666664383563366366366139333435663461313033396332383830313033
66633734343635353332343263363536346138626466636562633866316165303833613265653131
36313435396461666136636261616461313434343232393563313161383266336332336366643732
38326634633266373232646166653032343265636638643930626635666464363233623032383165
35633062316231376564376363663133386463386434656663626434356232626533393732383637
66636331646162373736363662316135393539393234646233613632323662393765376232333263
32663961633939626139363738353066303035316431656632626362663763633337383236656663
34373362383431633939386161323431333136626632393734613663633261353163326538356238
31303232653530633835313330343566333731643538383535303866353566623634396539323131
32336532663734343438313235316136373631356138323833633730646537663133316339373166
66663161356335393833396637643539386164623237386264376431646537313739313134643635
30336333663865306634636463376638643832646564623364616564373965343533343739326561
39346163633065623130643837623335383833336666383836333435366333326263386264643865
65636138656462643131653163326465356565316662393537376635666432313064303466376265
30643530356338396139326230396363623132326563376661633736356437313463346433343634
32363264616536323261666364613638336665366439616337303435303561313239333537613536
64393466356236636531316136306331326433383437306463636130323732356263343939323131
62393966346634356236353264636566323263356664623334316538633937353366306234363136
64633539323763363066333862633435323537366331333334343734373334663934373366623430
62626133303161326638636365313731306237343666333766316537323761366632623231383165
30666337626331333036343339646562633264303436663161366363396662373432633030386230
35316239623739623635656532646339313535643363623766343538326466373737393139666333
33303061303636666338386630313334373964313439656533353834663865373839373463666439
63343730653064633566643937613438666661613661613537393435663735353463633364653634
35643430353939613437636265663531376564326665643537383765323930363134663033626335
38353131663135626130383336373866653061333531663434393339393939636639303936333864
37393063633339373662363135346261393263663732333333366135633434313663666135393734
39393136343630313431393764383961626435306561653930666532643333613236313564333034
34306562383533393734366331366465336333353434383037306339336636633034373036346437
39633833653132613232653866393539336233316330306337643863643966633433633164396330
35363332633038636363666463306533353738313564653032373438353861323962626432656161
32623139623162626237386265623264623839383736616635363364313133653665333935373832
63353266383731636331
39306437336434306232353964383631343532643566666537646432346235616637623463666161
3364646331333337373332333036633561356436643066310a373539393131346131666430376338
34646639636462303431313363323865373231396164636130333033643962373137646463653037
6339333631376264300a633730666636666138363162326462633135353334643137623966633335
32326362383237656366393135346532333632656131393530653032336262623936303530656564
66316432633262306530356332383237393063626162343231353661333830356535343164353830
64356161366161363363326264363364366631363230653136626136636630376363353638653864
39333164333961663864663331663765383236336334346231323431343233313062626237393062
34366637393863343339666331396132646366376663333766663039306461313666326662323465
33393363666130626565343632616364626437373434336166623436393136653837626132616366
64363265313438373935653861353461623337383730323632323737316130636466386332343839
33663733383161363662346231323861616563363462346638356364393931333530393565333934
66356466363734616461333636303864663539376162616161366661363031613431613036373131
37323865363661663964363061663134323433633231306330306231393261326635326335326363
64323862356165666138656633323535666464323238366239363336346634363135346238306463
30383361353833363739343839366235623263653534303334643139666431373237313834333030
32626461396139633362333632396637646235363361313963336362323664333631306439326530
38656366653034393737643236336338343038646639393866313234356438633935333735343239
62613135383431356366363165393737333230626239663465346336666637653639663738613631
32373134353535313832346535303963323939363434343961383137653539623139333939353639
66346462646433643633343765363537353933613862326336326130316539626466666362353362
65396439373636353430323362323734313037336533333331346361323136633232396238333937
35323032613138656436643263646237633933626561346233636331626235383536333864623138
64383939613266393364376235373762333862326362623361656461326161313038636166303636
61363162383431316236336134316533316239396137343235653336313265656664323664313462
65373564646630323637333262396634353232373338643263633365303231636630393032376563
36653230323133623337333964393061613438386366323637616637636638303065306237633432
34396537633232353338636261323936323839363335383065623536373661653161393164333030
39363262623861323664323036383036393836633635663462646638383037376462313136643766
33383439313332343263643035623566313632636439343831613935396536646530366535626664
61643331336165333633643434306534396133323231663032633136623938313132356130323735
34613039346363653439306235333137613133313033343033393930383131346262646463336263
62303938636134626638323665316634663361313538633130373430666539353563633864326332
65626461326335306334303832653033323166616532646430376166626364376635613132343737
38313665363562366131303833373963323135333738383532366439376464643239656531613036
30343833653737623365333035383937623039366366393030343031643739343337383663393632
66343136386264653864363266353236306438306431373738653733643965646537333733366464
65663961386535336233383439306136323036336232636434663464386139376266323461303338
39646438356466623363353162336261356263646164653736373434653537376465306335346462
31333433343532393566626438653035636336653136623038373130633665373432353563626239
35303036376137383633666534313439323234353864656134643235303131636565613964306434
65316264323030376436303635633136313163313563336161613236303431613432326132313130
38653862316130313330383533303239396634623962616639343334323533346363303635393434
65303566353362633533376562303839383263373366643637393964656235353563393535303931
37613364656166363831633965303565663139396233633835333632616133353166383930656332
35666432303363653564343731633064353934666236643334623966333864376233393563643866
61653961363538333834643863363335323030323763633530313939396430623463336237353335
31376365616631666236363838316461373564626436653662633639663631666138313465343964
37663638306633373564663261353734636137663763333264356638663664393661363732323431
61666633616636313539616262636236383263373766343966623439336339323664636461373832
64396332616165376436646364383863386435313065306137383063316630663539356463313431
66646232323463613864663138343564303139636261613236643836383935616333666139333861
32333131356463616164313663623830663932626162363663376239353336343766656564363139
65626131336330306437623861613666303530346233363062316238303063633436623132666439
65326464326530646566616131366632653563653833383737663830666436313631333963633766
62363964616565366631656661313639306361616136636364303361613461653463346435643438
34313032633531633064303062653464363933373764323661613866303438646636363066633061
62386532373139653932346132613330663437346664336335653536356139323836363039326434
62303436383334656262386466326533386362623132326435306464666563353665616439376363
38306466636331363364353736323637353733323430303865396338636361633563653661626439
61376362383361633064636661383939633834616231663230353934396237353261393039643236
62313431333437653635616138616562356562336437646463353638386532636164343466343064
34616439306661646161626136376438636334653962653962303235613039323334393339633538
38303066333336313163376234386265393839343832663166326637316165363539386138333139
35646535363033333266303831623038336337386361636231643863663939613439303066656536
63323938313563306563313930646537366337356631626632346561376334336432383631323662
33316635653939383739333238303934633962616639386539393630326161313065336362396362
66316538356662623164623034333561643666316362646361626238373339666562373434366564
35316536393063646664386636663933343134373166663166376666383932363638646662633433
66346537343433343635333738666536623361346135343263363764643261326661373161313866
39313832376661636466383439323238353665313363613438643237326362656663353430663963
63306534626466396665613533373963383939623264633462623630323136366564643665343239
31653265303030346436656366333434356437666164373838626434326536333231303363353534
61616136396538653864363537653733333966356234653233663831306166336462646134373361
35323061306166623837653963663563326362356464376462303338333564626563323365313335
37663733363361353436626663333136346538353666326131383662396565386230306463386231
37346434613962313934306235363339383963633363353631373162306566636533656461663464
65616135333238346365643566663734393539383031373935356566333461393738343164346565
36346332633265353561616661343064336165386235666363323530616438613866313565306366
64333034306536363730356333376130356163666165386162306433326639356236303131393535
64383236663763333865663962346166663239646137623138363737323361663838643831393938
64653965666133343935616235323631336338643737646331656533396665613231396432373763
62313564383434623134306637326264626461383762353838643530663562313733346531326663
66383435663535383830643332373339313161393939613434343863366362353531633936303264
31386239313132653634623537666361313738376637646364653364383336323261333236643564
31316238356434343135313431306636316137376531636235336435336532383735623832376138
61626532653463356565383432353930383133343231353764396530653066666238353235653432
39666365373063356465626536353333326438383239376333366332663464656331636334336634
31376434303933343030306435633564623961376431333965353432356636656331616666313334
35343338366336663265343462656339623365646334383439383734656338333432653839623832
37626531356636383230633434323966613830623734343332363765363636326661386130356362
32326666613266653664623362666331626665663061643031653236393239386233373830323931
64316437316365376633383134653737316639646633353335353864366233396366616630363932
66623234663738333836633063636531336635333434376230663437383330306631626535376664
39313637313666323938643538653132363132316163366236666162653436313562653235333764
39666231663532623530383637376539643930643731386132623232376362353232613139326537
39386136633234643431626234303631643966613235636464643931396363303062623332323532
36373038363865663933646237643630636637633039633034346566303064376238346535393165
62386265666634613437316265653837386239333464636430343665633037653534313434363437
33316333393430316538323133326138383261303634623235656131626136633737323263303232
38333931613731313339613137636366383632333537343531356434326336656338346238396464
32623335653234306432336564633732643434626639333863663866356435373062646338336139
61363061323030313137623837353433633163363064666232656334613736383663303936663161
32363736373862643337643531386564323236343163353430376363373564353832343566386461
33633533313562373666353263316539663137613266356632626130666533346433346363383339
30633635613032656366373837376464353131393461353637383037393466346531613631396434
33363162663437643461613538663032333431346631643639396136366337663138326338356362
31623433366364663038303838383166633665636430333664343935386464643364303730663336
39663337363130383563353331363263353230366139313432626265663466373961313432303966
35333664366633663434623637616166656231393865386365323637393235316137616532633832
36326537386266363934316439623236313837383537656465323131616632656566303965356531
61306632316434303535656437393935353932383934616361393935346366396431383330633963
32643866356230323131646634623431343263323633333166373666366539383632393136326436
31653365623131616330333934663735393037313936636432383736366434366361343461623733
34623132333061656362633662393964393135643137663862663864333631643562666334616637
64653363353633373066353563323032363130386435363932303761316538313862326630303266
62613631383535653735383737373633333930316134373234353563336339383831376562383031
39646534666133666337653936393039353563356130346365646435356432663264353666333530
38366533326663353761343762613330323533363736363765393830396236363733323037653431
37336539376637663035316530646166623335633831393662373532323236316565623938303161
31393036323336636636656534633166326366643062303637383839323761333231633832663734
63343232316162656566653962626634656163663434326466366564363963336165383830383763
62346330343035383066653365333935396439323435373835363230656362613763613366623361
61623836353136316437396361353265633437303634386138386637393863393739636638333266
65323632383462616333393431666137326135396264323139366262383334656138353563626432
39353331303234643532383963653233616137376634636137373337396165343361383964363163
62316432396363383564653537663632623639363637653435303835396561303863336365323837
34313761386538353836353564303062333239633238303837336239336261653365333361336238
66363335383264373433313461313638316338333364373762643562626238623335633665333435
35333935383939323234363037353430616165313731316233343963333839613233323363396136
35663534326138653762323237316636666433633032633232616134353262616139663031386137
34353631663438333334306563666438356538643564613535303765636462666236613338653666
38363233636365373065383262366234316535343132626533376133616130616334323239316434
39623830643230653236666365376434333766666566376665656138336537343437366563383638
65343966316666333562333861393261663233653136353038666435613037626632316361623762
65366238646236343762353164663435666139313665396430303937616161663234336262383861
34653862393031393765366165393233353434376336643937333164633465663332663765393762
62643031646363303037623861663164663330303231646466386464623862363636356561363263
33313731386366363462396139633062383762336663323730336263393466303037663264306466
30646135303936343734653063643466343532313965343863643966663330373766316633396330
38336235646462323332316234633131626161353061613862336639663133626133356537363235
31393238383735353266656163376466306364633135303535633064343263326530386666653431
31373364636430373731623338313964323131326166633934616131316434393966613261306330
32633735333037386231373634333665353133623735373633353563333734653334323636643531
35643737313634373466373032383233323935303163613039353632323238323534623737313837
30653933353263613335626331313335333962656337393039656537383766666363356163653537
64376636646565323439613334633239383361353363616430656234623739323235613037396337
62643139333863353632396333343936323163396437663261633462666139643037313461326130
37643733373034323633373031383233626537376461373236356639663138646133663834656465
39353461393964316563346639333831353634353133366236313437336232313031656336666437
64346637326262396463366231323862316163363137623362393461646533656535633033363366
30653430623863306637623837346362653933343331343936373633313335663866666435653461
33646234613964313737353936303938616336363064633630663236633839653432373431333062
62396130323833666566376435343736613938356665663064386637343966316639616537326261
39383562343835636538316636373139326534363932383339663932633761313666663761323834
31353737663439383261373638393936373839633834623061316136653436303533633330373134
65363337333037623132323337633561313734313862353166353738313533353964653034613934
39323537376437343562323966623433316163613639653034393433333962323166383565613038
32393934633530323263356461393139313138333139383933336130383439393938376436366237
38396237656533306535616636333736333361373062353366633132646161623637363834366333
61666232326461343335346664656364623136313363633831663762353138333430323636636633
64353832623166326262386438303035396266323439633335643866663033383334326262396266
36326366626563613866643137343061613764353539616634363938303261663765666266663661
66363438633632336332336133646665333765383937306262386531306331343739623061653563
39386162363163633065313435353737373232383638613636623536633064663061366639633566
33306566396663633630326631336532666338613932326532623534323831333161353532636331
38653532383066376630333233663166323933663262626362376563383736333461323239393631
66626463323966316338353661313639396431316136323765343130343232303238306132383934
39656630323033633837336332326264356164333231653465353834316533323962653337623062
61616338303433326365653837633836383463353830643036306137366164616266643032656264
37316461633339376665343165623361326162643435343939643861333734363365306432613030
39653738373132366134333237313664313565303630396338616466343763633235636633333664
35376632363538373561326333663532633335646133643233363664303639373665383163383138
61343637346233613961343865306330366637303364306561386236313264666664656132613032
38363762636661346462656433383364313431633566366263306334363138383539643762616462
64633739646363313639663737353032633638643031623034376631623336613630613265646361
35363434613234646666666565643038356438363761353832353162663066323530626665333038
63346365363734303438633064326235393532616466313766633035383863643363323731373834
31313332366438643136316531393732333332336636373864393461663166303030366230316263
31376164313864383263386133333235393934373365613138393636633337396534633233326438
37656234386662633338393534326233366166343765396131616666303436643731663331366332
64623466396538633766663936643238313261626562316131376163313536646139373161336561
30333663396535386334353662333262343638326134663934353335316161346234326163316465
38646238393862653163626561393734323438316464313761373835376364633833316430363538
31353533626232326639643936613862623733333438306165646266626431343063363838343331
63303965366666633234663333353036626434323464626662666663656639613565343633313130
31356663366266346535653033643565393739656136393038386464666661663437363537393762
61636539643835383965653463343931363238323339333832633431356634373832636630623536
35363265623336313761636234656235643863623839663033363339346333616564323063643562
34396164346330383135383662643634626436623436656634616439333866613565646336353038
32333235393139646435393435653365666638643066306539643834356536313564396661316336
33306662343130646137613637333262613533356261303836333537643863666236313361626136
66383334376632373363373465393064303266313539316138333531316437626561393537346638
37386366663533343761356365663032613062613164326161656138333761363636656237353136
35626239383639326635656437303864633234373332646362333032363738383863626439316538
66386630646237373935386336303735313963356438366161353235393264656661316161383736
33626635383431343732353932636665653436343037346562626231393630643136343431653238
33666264333966363830646239636264383737636536353962373630306633316335326430383461
30383961633362306638303361363032623132303737653064653362303837316333646166653833
37663164356137363866363936623466376138323335346366336361626634633563356262653664
35613061333239666431353862616535316264326530323466333030613333303165646565643064
31333732613235633661633561356165613134396263376537396136343236656662353534396338
37643230303635633361326337643964336434366536653839333735326530393063363762616562
30373663363337353363343131626461643936343865323761636230353565356437346135393631
30393439333133356362323731323935656436656234336437396463633432633238343536383561
30636337623363393861643139376536636538326464393966353437323164343032376263613663
36353335646661613539343935626435626662613166636537316566313836373836373438373332
32323530303261386664373232613265653561353266363030643139633832383330336564653164
63353461383537323830303563353365343430393564343861303937613139373734613330626236
32643531313933376263393563666561343161386535316166373561383835623939366234336532
61346339313433363666653438323262613361636561643939633936313938323634653139343765
33396634623136346362616664653633616362303165636566313432353537323636613662656665
32656461613666303661383661396132363038343436353939303530666134306264663036303438
36303936333537623962333965323337336366653134373139303565613164346231336634613734
61633038383735313037393337346563633762336236623563626539396631656337643131356638
37393862653530663533396635313539303232333439653131636363303662303164323364313936
32336566613862343433613066346266356434366366333838666165653266326662623430306166
62303533383136663563363739666261623234316232343764386234353063373861613738663736
39613565373136333735643866306636396662343466653964363363613335373830323535613633
36653530633936363964656531353135396662643666316436623932386166333339666463633563
34336663376534323534383638313466313365623933396434376338653331386435356264333839
63633035646461373866636466336136363430623939333366366530643333363464656136613134
32643331633131656465333531666165616661393730363631353332316435346231343131383932
32303633663437336332303234303961623365643766666636396565613163306230636232343164
35366239303332356562623231636138313834643636633165636532613238663831633665653362
30663365663862663265646134356132336431336634646332316332623231393034323330653064
66346436663164663131336431393337363732666134303665336235633834306266353365633632
65656634303461346565666137353261626636336130323137316261633739366139366638663833
64633431366334323134306139353335353530356137353762613336306634653537613465376436
37663239356161356165383534313731656462316131643232613434316362383364313338353830
35323834363938393262363031336435643439383432333965646166336433346462336336353034
33633835666530313938383333343034623662316436333835653532653730343161663763623038
62363764313838653437626166616364646434653362336266333130386463393830313837343432
65363762333535646164393964373931356533343436323636663238653931303735626663613430
61643931383531616337393931323435616638343262636537623034366138326562303934383238
37626138393966623539

View File

@ -1,363 +1,363 @@
$ANSIBLE_VAULT;1.1;AES256
30383566373565393864313332653139653663656430313366373439376433626136373532663630
6434333831376162383966316463333432666666333164310a366661383063303865663461623836
31326136613865616335383537306339333332326232626463393762326332373266663664376131
6335353962353134360a643032643434623563626365316262623665626230356363303162656633
34356365343039636231633635623863333064383361313237353337363366613331386535636632
37333335363134326639383265393333386430626531626162666165623564663531383432646563
31353432663964643165643161303835613734666436663533363137363838373831646530616562
31383335643730613865653161333637656335313737393332323364396663326632396161646566
30333935303337346437356539366637323365333564666136613132623533326162393664313039
30643234313862643638313664366137386138386464313338376633633762313863326630373762
31636435326533343964323361653232346539363362633264376161323130303631363539616332
37656333343132396332323165396637366131383234363834343433386531646130383564326332
61633962633865666232656334636637396632636131383035303533623237383031623439636630
36393537626638376533623936613530636166333930336535626662663339313831646665363665
37396365303336356430316365386131653034306335323337383836663563613131643732383639
38636361666338636162626562626538333561306465303335366133303163323534613138363061
66373061363730353338636631373566613430346433396439336133366232323834353161366566
35366631623839356630343538326638313738376333663837373564613162383437663238303839
39646137643137663035313133623962653362396434376133646331343839633834616537613930
32306333656163663964393534343764323766626238363432636630363339326266303031373636
32623264393764373939323465383866323131393531653633353934613732323138616266333735
35633533373661393235366262656430653230376536623939323763653639396635626633373332
62306631363632383937353938623233663439393637323162636437633233656239313234346166
39386630633334353939366262333632303931666130623434363538326165346231363039393262
66313336633663376533333334633437663033396534386466313936646439633037303862663037
31333864363665623765366536323635336466323635396534303030396564383234363430363562
63333063353562393639626131313630353761626435636264613034356637633031346661356531
61373731663332623131316363646133653337373035383236613734393239366361633562616335
30643430363934366266646637373532326238313231323964613235373334336235333536343563
39376334316661646432326363376531633335623136313462396466303538333433653838616265
32333362643437646365383631303766333931653537666564343233306538366434383162663437
61393865626263376336363662323865326330643564613364313564396162643732633839343264
33633335386338323264393162323262343966303566633230363662653732653037623262643932
61366334383632343033633062626161666438343362653738623366353931616266373733333561
34366533656632666262646436383564356161623666316664366133346430613739653231663538
33306239343933353432383632313237653461323436363931366238626132386235643233623633
38646132383666656464626565663963616536646633326238633330353636646639306537363963
30393062666530343934363163613462663231346135326533656333353861366330663061633539
32366461303031343633356134363831386137313535626161626163663763313032343430656631
39656265376234353866613338353732663764343732653062646432643638383537306238626131
65373438326630653063626239656131366236303563356461363763356636353061363235363338
36396263663135316466643464626138376330376638323465613932363366346565343632336365
32616336626133663264623466363238613739343166376662333931393035646332633963613063
65346661323239666166653933383966643031633931303538663339333830633433303866643633
37343430313933333063383966623839393461343937373135313562306335346334363436646330
37326330373331613031343062663839646236653562623834653933303466316161666637623334
31373630383063613465643336383363356237356461663936306536363133353662643032316362
31316462626665633830663034663662626636356464383865653064626461626237623965313832
37353538366330393762643766643130313032623837383930346535356637363266633561356463
62353965656231386233653335636364663539333930356163363637303465343164643539306162
31343864323661636438313738386134656133326632623161613739393664656465396132653534
38376538326635353866393636353432626235653666343164376534643033616165336533383337
32343766373461363039396431666163313564613962316239303861353535346639326131323334
62666365343535643737383134653736303563656632393734653935363366346437636439363734
33303732303034633566633238646364313761373539343966383634326162343638633262663063
63366532356665666637616264623238313665356364366366386564306231633930336437336631
38376336613466633134666631623562656330363134366164343933373966666437383332363164
62663336316635616532396337396636383732333331393537313731633763393733333032663230
35363365383037376135373036626330313732303434333561333337663339626161336166333835
63633565326535333933643232313839356332353564356631346464336664336531323363373631
63623665353234633332353530626365363063313363373238323437383336306534346438666533
33353463396662616232393365313636373662363535623831333330356237393861656133356634
61616561323164653465336363353038316330333939663833626664316165643435346462613634
64356238343462633861383832373933633065663066376139643335303261623839633938323837
33353563366439663533666264326237653363373964393266386230643562636561626431353735
65623534383164303833313134653839383766653036633537316432363730313463656134373832
39386266643963643238383237316632356434646537636435613662313432353565373931336666
37623039643132653131363733326461353264313830636631336633343031316230306464313730
39373233613161646339633232613836366665393238363239376561616462393864323733653935
39623761656263633863323365313234333938306630646439633732393430316563366464363266
32303835366433386564333934313432356466333161313662623034346265623035323535663661
32373830393932623136323761373232333732616533303462623166623832633734613733353837
64396361666164653765643033333038396132313562316237346561376536386162323137653262
36353538653365633839356638636232353635613939613963353438343039356361643766326130
66333665623431363837373466353331626332383463383439346238333136356161383965343434
64613230623730663364346638653564353637363530346238646436636434316636633362326338
64656663316466303364633139633536353433373165636335653436346662343834306333343761
38313932656566633936363030646163663565386162393132666137383065383465636538343831
35393737313735393039383561383734373133613261346134356661306236636337323833613662
37636461303866616262356439343235303334353265373363383734306532366637383837656637
31613833383466373362386165633138666639353266323866383939656439343363343437383330
31633862653533306535336661313734663761373832666536343663613565353439343834663935
64666137346662356462333037623436636432626430343234666162383931343232323035653431
62313235643838663330336434653831376264623436373732386638313535663037306138343937
64376366353334613962633164303832303631623639626164623834616133346538383261346333
38366338323831623338363566313262643031313739623839383233323539316463666365353232
31373431663437343130343863626335653438633934643961653336363666633939633161663863
66373066356234396634623232633162383535373737376338396637396363363366306131303961
39393036306562636438633631323239653135336134393035333634396439383961656431383330
61393939623266636234396365666538643464383664363365613431376136643835363465323033
38323030303139333434383337353334343261653339386335663966613133346166316430383533
33653863626664306562633435323334363133633932343461616465613431363035653563613464
64663165383335393534386261323464316531373339336666316362333935303763386465653161
32653538623032323531643362343038626362366266616565306439383438393831383339363266
65353534313866613362323933313435333564623438333938326461353430313531326161383831
62666634343237646165663839326338363564306266643266326231666466323262636365363637
31656666333335663137636264386264653737626132363937616265356639303132333566393363
64316466653333306364313761623231616638373732613363313066333261326333316663386666
36386535336635343430343563376561376134613733323039346461653737363266636430366461
36323431306138306633313861306163613830383363353432326531663132353233663133303332
63343235313561346162626434623431356231633538656537643263356565396330366538376536
65333836316137663030343662646261373033343665646135323036353738636130633038623966
37326639313736343164653538396162326632623536343663636531383365303364306333353435
32613938323066626663393831313562396664383037356466333765343164623935663861396432
33313035623733313662346538353639626139383735666637373261626133306233623730326435
65633462353738356437633164353066383135633937323930383438346661303333353766373864
63313935656333323735666438616535363335346466396431313262633433613162613863643166
36663734623931303539346434356662656336356566333630623065623332373062363739313766
34626338613737663035313030376664303531316666663533326232636333336564333439333333
34333166393064656664373064326232613530636562623432663166666233396632626635303363
63646562386533336233386232626337306363633534636539613962653431313136636135313430
31396264643930383633316262646465313432613264393832396138656138336463396134323665
30346466643962323933343636343035303231353361353735303366303836323564653633343861
66613962376337613132343332613832353030323932663038313331303839336439633239313338
66626466613838316466346135646333373664353734353830363831643736303536383964343335
61363332306564616462313136613636653036376639326539323039353534313737323432316362
38353062643734653965356664316138656565663765343234626536633762633238333434323361
64393334383031363130666464323637636239306362666134353435356334373538643161356166
33313539323939303730336163396263303034356534346465623638613366353565636661626565
37306566393933333836323438643332613432323362316266353534363531326661333764353335
65623266346138623937316134373230323165393737333532343765363032383732373135373936
39616439323937316464396666326461343239373763353438303561373766343435386539396236
31323038313431313839313766376261313537636565373661363934663865386237306136656536
61356662336434636165326335356235656462376231623038363831366536363964653733333533
64383639666336623135306533303437643661623034613662626230396661666662653663643039
35633930616635313461613166323634336138303138313232386232353630376664643638633635
32393661323338313736643762383034393538343764666630356166616437323066343263323337
39656333323832636131333330313063303761353139656630326536636532396539376366303933
36343137313461643562633537353334643435656161326431323964363237616330646131663732
32616562653932623266383239386236623363393232623939316139323237616266333462653837
37663136376538306437333464663134356431393237336433303063336533653961333039393062
35363032326139616134363863313439383938343764613362336534303939643364643033623765
30656666376336363836313434353338633231323039363861336130326666633539373430303730
39393839366539373734643834623762613366393435306162653031366532633061326164656432
62343365306430303231323334303733306265373261663764616634396538383461636263306633
38653465373936636438393835333661353633653063353464323132663932356534376237386365
36326361393763653766323664326634613337303932666461353566636530303639643032386163
34366437646334326539653531336662383631363236376264666434623837396461383436363337
62316663626565303339616334643962363639396666383039356337646434663130316263353432
37343233643466613533363861353461323135376235336135373138303564326465313336376363
30646339336665393331373662333362343333383664316439373433323565653262373962646133
32656463316165333161643839303739643134343739303730363336636536623230336133313432
31633537646331396338306564626166643963343336373363343136663262666232313938376237
62333935623436643761643262373165326362663639623761346137353639656666623036366537
65396462356331353865313332306466616463633536373838653662313562383166356538383337
39623262333231613665643536386236633731643236396336396439356535613266303235646236
35316132636431623033616534313732393533656561363262333532373062653865313665666162
39666564663965323165353338633131383233653635313365333263323863363266653864316330
63313338393633363632613333323538346136306366653138323164323163616539633236653236
62303365366335303537303234353333306134363766326462323462616432356266306537363730
31393937353766633237356435383737383866353865633965626165383530363335663062316239
62663030613563326139643138363465383733383366613861323564333636343534303062336537
33333263613637313032396164353030376562393462383636626435383263626239386264653261
64623033623331313632326533316433303034373462366531633335656439373464396264333737
38663134376330383538393965666466303834643862383864363863396162646433303930643762
65316530396639646361396437393034313034656464613034643636653131623336333236366537
66376562626438633139643138663566626531333565333865353831666132633463323334326663
63646265326338313762626162366461343465306439323664653639663332393737383737353132
62303863396231626266643438663334383263376531383037376132356138383437653335343138
33363363356433356161663432666637623966343865333563313439323361646465313561616635
39396631323637363234643335626363303862666362363332363731303862393734653337366136
32636431646631363337356439613861313763393262613130333936623532353135313130313437
38356261663337326530333762616636356232386234366263363430313632303666656665343736
36643365373563646631363933343033613733326264363761366161663635643439616265363132
30663635663364373435623934663836636563326433386663356462666561636466346635663332
39386338613535306531393761373539613038636634323038346337653862613539386633313738
30326363323566356639336463303538313537643033386539326361343330376461636232666235
35333564623161386332633366663661656138336436333434613435623437343461356362653066
30346131323837613262363166393038396131663734613065353031363536396666373565313337
34666230346438616133363763303034666430626661653832363663356538323761333761376131
38633535383966326465626163326438346164373330623930636565633734326664323535386634
63663438323835363030306334386464303730373465646338636433353436303830386462333962
38616662636531366232313836386563373963666132633462663639313662356232653864363939
66383331333361376138356563616663646231623464376532643137633964643332356262363862
61323734313239393939353633656135656238393133326564636639383038656139353937326531
65636531313937326266613736643536346132333665326233656366396230303566633037373132
31313961613461656435653562363265373361313630373438323061633462346530363939366662
64386664353134643336356261343334626163313861356436653265303061663230356234366536
34373962386439393235383238326564663863636233376231636534376631303264343334333661
66306165636136376261363231363839333562366432306436386630366663653134303434316631
35363138386536393933663336316331393237656435366463313735346539633666333534343836
39643465613638323632656639343835663963336133353065373037376433613561353962346666
36326263616136353931623839656261396431393738373865333962303337633261383638616264
33646665633235643264666164623463326165353563383634613434356464346336386662633335
34316637633438326264616465623533373662366137636138656633373564616230666133656335
65313534326335646133333863613937363934656437363730653635383762623433373861336639
37333161613038373835646537656564346638613939636266383861393233313233383133376339
64323936386130363730623461313434313636353133343838376562383266393337616239336662
30376238663838363461333037333263636332656535366630303536653665663266323434306665
39616637393934373830373738653963306532393337653064336332366534623936343238623339
33323565356566373631623531343538396434366132383730303037373330393736663230353530
30316431393130313963323531616538653363393831336532333063376337343330336536366561
37393937353335353166373161336663633434383337643563323766346333616433333963346530
61636431326334643463313330613433363039333737343936316464353731316534383862613165
34396431333131303137373862303134386364656536616334376638653762326163343665363839
36343237366466383264623766303531363063613430633934333763323239363737313836333731
33313466336161386337623236353731383639343535393437333531363530353661376536643064
36346562373561653233323235343964613864623131323434323731623736373438323831326237
39323161353266306532353665663635313762643265323566383066383738623839653433666137
38333938356665366339386436663733653032653435333131376165656437386432653536393361
37393738663530363165623638383334633163666336323433353764353263633365633965393835
34616134616463626539363564333135633536366432646564643561386639653732306664646133
30326638636131663933336334393634666463306430363034363436306239616633646634666439
33656631373630333038306362626237386265343438353161643961626431373433353937623533
61656335653035386462656633653633383761353432666666303364366139366164313664616432
35303562383636366164316464343137313466616537643330326637633366326634363734343666
64663737656464646438303234303064366161636263313466323734376531393830303166303331
65383639636533333866306135383862326366616434343430623537623464383935396363393865
38303030366538373464633737313464636334373331646130373363323738393332346466633336
38306261656366323862383462353034396330373265393733303763386133393730626231633036
34396139386436393637343665613539373939386566333539366538393638663539666337373966
61343832656166633164323763623364323039323637303333623536636664396135323532373130
30333162323338306430386439333133356530373464336537656466666661326538333265303662
36303734666235353339313864383933653031303632363132333061666563643863343231343331
64643838363538666137333465313738353932663834373336643062653033313734326636353033
61653637393036363962346564373535326361343634303731373032663431386136323432366337
39376264393731326137626331316333353134323464313165626266316631313461356461666662
32303238616464643932626466393164343161613163363563653335323364663631336464666565
34653363643465643663623138303736646663613666633335323630396336633761363839616235
31313334663631633839346162346665656335396262306636613635333165383966613161633432
61643438346537353031666436646432313935343734663331643663306562363632323130656133
35663434373131643932323162323537656135316432306539366362626232373035653666326561
65393766376262306661323436643232346437336630316365366562316164306565303135363132
62323536353230623032363436643962643163363439333235336266393966636338643630653238
38303665636264623237303863353964626239623566646534626539393338663332623533353835
34373064346132313530373237393939613136613863616162306161333462636439396366346134
66313437323165646464663231363339323639366531393161353461636139303439373932643035
63656161366663316430396539383931373261373039663362393133343162346230306336313765
64373866656634376462633134653136373435386235333939353563333838393534306433383762
64323764386137313033613361376337396566386338366661303862393438663161396433343762
37643237643965633664316564663530376535383535656339313730643030323663343764303631
65383138326464616562303463323934613530663161366163313830343230386235626237386336
65656538313138353663663230623461393666623265666638613636313730643530303333323963
61333465363139336231326134326264326432303233303433393035613932653035343066616161
36646434653234303836336234666665396136313466373433346533666563623138616538316238
66346164343330336339383866363537616563373364393766623434643239616230353732623962
35333735316432376230663632613061363433666464663930326665356532303362323461643435
32363333343562646430353632613439633735383032393235623762656638396231623265363433
65353731656238396332353365646462656266613965663937616133666431303439666334373238
37323931373637653730393532633863393738623562353535376463636338323365323663323633
37313161366562383633613931303265363564663634363063336534353864353332663364386131
64646436643439623063336166636461663634306137653562343266613536316239306133306531
36336261643764646230333864623130643839323463323261633735326634346465323731356430
37663236383535613366636638373436653433353862356333373034353133623932373538313732
63613661616563336164356230633031626633353364626636623738343333393663363063643230
37646135383738633762643939366233306334323765636637613336373963346537383565323662
34323961356164616334613737633733366534656564663961343061333666303362393765313462
35633133386136373663666438393964616436383062623233343932653136393836663966633661
31653764623132366437356532313835336561663432376139653731333131666438373863356532
33613833323930393330623562663338623565343161626332666538313431363539333662633264
32633662623133316264346566323334626535323861633562626462626561633236633462626464
39613231623731653034333734646339336431393631363937353238623336313634333936346636
62383066633731656135396339326665366165653032306336303034303839323138653965303863
61623466333731363439363938343564316434643930623836386537316337653937376437356430
32663330396239393761646630383333316638353433613139663037636434353833386665303934
31306633306637333966326436663434663132633030313763623638343130343731316533336462
38383430316264393133633661356239353331373831613662333938343738323161346665373764
32653933316561316634383163326562313433666262383038373965653230616239653030346331
37316436343232613134383966656437383238333932313435316539316538313034646539336633
37666633376264343731643031396564333561613835373231623264646264616164643266333163
62653162633433613630626137326635306235313334663065343332653566333535303737333363
39343534313830303562646361316165343535656233343066633935613839393935343563366162
33643262343331633430363434656233633332343061636464393564393232633063653132663231
64626664396561333234326362373231333930643735356166363761356535396638666232316462
66353633383263336661376432316134346338373738383061663838653437616561346263373337
61656261656164363435396464306362323931353461653439373835373931313539363465353461
64316131306562636265653561336263326638373536353239616363626436356337623265363162
66376438633134303966626262353831393337653462616565346461363231663337363230353430
63336161306164613735663539386664633864363933626331333765653366346530396632643730
38666165303431623463353130616566363864333136363861643436356661653731643938373135
31386362633761303234383236626430323161323034343934616661343033363766333538626466
64316563613834326464326634323362353964373337636361316363313263383936353237376530
36643864666266323133616364396661333132633661623861386237616337383562376334323833
32383561613538383839366165343362366534616337626431383035616562396461643432376161
38323065633736666434633364643738323764373336633363663633616162383336313865343432
37623163366161396535613836376464663138343531386135303831386639336437626536646261
61663133333161393335613065343130376432363063393438303638646364333338386434363733
35303237653266643636663164343736663732653836626335636436313534356662346232306235
35663765346263313834666361613632343336633333323639633364386262346663613835653466
37386464613739323462633335663031376166613033626561666135353336326262326132316462
33316635616336623830313163303933623861346665633331306234323664643139363632366463
36326133376136663764643836643130326631636532623331376461376561356234343133323066
37616433373732383233313233366235646632306335326639623932633731323430363034663530
39393063343131373462343738303134633839313961383962643238336435623132346638346132
63383463663530326231636538666161396262653663376231336639343039393438393866373837
39303239306633343261363930376139353838636536306435356564373639343337646436313533
65366232393838663865623038386439636464376530363234613134373439383363313166363335
30373739626562343835613538643838383263303739363765313337396466663134326630306562
66666563616461636230383932323936366137386134353031366334393831343935636530333339
62633034616230343166303834333562653539383166363361376533333066633230633439386633
37376366376165663365653662616134666334653363333162303330393736333465366562626365
30666334643262623061623266313962326566323861333132623765333530626434303633666237
39663066613330333632303963353638653939626236363637643433313537353635323739346464
39623933623839303466613332303561616263346630613135326234343936393537303135646465
66336534623439646131643835343639363731313064653232396461616466636261343738313237
34373836396264616364643833383066636337613762393433323266353838613534333232303438
63653435333539326639636335376335663638343137303533333764373339373430313331326164
32343566333136303530313735626331346436306233373130343661623862316332646366316366
61303832343634343131363238373230366466636639656130663264666636303166663030633636
36653663326633313436623833316131316530346533653938663862613034313866653765373533
33343134356435373166326330363736663164393335393535346432666631386532336565386232
65626463666562623030333639366239393839393934656438613639636539633031616666373262
33396431626234326639326161303838323636343930633839343062336430353566353266643661
62626334626233616433363135623164353834373466653435346130353464366265633766623264
35653737336563333738373265373666303563643638633335376366313362376439636561353063
32653964313135653965333161656138316630373763303536633336323634316530383630633065
39303461343137373961386439366561633962626634363530666435313231333630356430633264
34343063666634353565313034383361633333346532626436663565396539613734383462393437
65393839343366373163623031303338313539393565353333316265343434303833653661366166
61656234633733663462666233613131653539303764383062306464383065363231616366336463
35643932643561313032633933363564653863663532613435303432373032343835646332663534
32383566356436336664663831653535643237326239613761333266333166373563666238383830
63623332376465303565313932393830313235613761323336643163396631646661646337616538
30663362336165613363336435356134353436356430636263303034623839386339343039636334
33623335613239376339366432316631336637633839366562666332346538356265323630353665
32646139346564303632616435663863383361393939393538323061656534623864623337303138
38356239363836393339363339653733306635636561623064616431346537646633396232376137
62666433313162336339666364656663663138343430316337396330316433626337363032653339
32306539303037353231653764303761626330383538363961633838373230303731313135613563
63366533363363323836633630313238363362316261633036373561333535323138653937393365
66393966323430373536633666383333393433666334663261623332666238353738313866306438
35373135363931613338386334393137636461646666626631636634333539356336343162636133
66313931313433323633373964323935623433386331313734393136356535353238626230353132
65313864306133656462613138633434323764656562646235343032396136323737303334323733
30356235643731353439643463353139626134376361396130373737616662613565323266333766
63376636316336363932393638303733383961326364313731366531613537393366386634653538
33346635626163383532396639663239383163333863663635306239303731656338636465336432
31323165633233383433643761663766633663363137316636626662323561356439353262663235
34383838613530396532333261636434396338376463323638313430303737396635643866313663
65626430333336376363313838643836383535643930323661323537643562653234383131346165
34316463393630353130336466663737356638663537373632346566373566626364646139313263
64393962633833393963336137376331323664653931613930323539613365343737373862353434
30393338316236323433653330303363633037353466323461336631346162646637643635663762
65616630343833393461633164636361326335353865623065636565633933373838386364666164
66626366373635353462643633656436646434663066343364616663303664383033306237386233
39613035306463363934616230343365303738653934623961353837366238303061316533616162
32326638346231353239353035656365356137633831396635346664313736643766336539356165
66353462366666613438613465306333386532663064643535366566363837313463323661336434
63313831656632643865633164666538653437316132393334383238313832326130623463306135
35623861323834303932383030636231666437613131643838376230353763353363363834353934
37333536393932336639343635303535356463633834636431313135336130313362643266626265
33333736333434663338313664356265303863316334363330636334396336306434646131393734
63633633386639653030393935373766323137613561613635646237366232333331323836616463
61363130636233663832336133646631363438366465343965666364646665636538666330373531
65363164393866316439343838653266373965636137633961323465626630656138356131333131
39623630633036353934393734636362386462353933306364343230616233303766313063633264
37646535336362656666386131346235316134633834343630633066333431613732663535303631
63656664646362393063333039646134396565346263616530613862313231383738633235303461
37653934626538633139663461313261343830383962666330306632653936343133643634373962
35333034326635633065353862316266333837326530643963663538366161613635653065366130
30386666386236306230663236353762363737343461663661356236656432623065386562393034
66396366316164656563323761633830623166356230333962666133613531633633376139336137
63383636633463653066353438343064356366393032303936393533343737613464666533306265
64333730386334363737613132313931636133383566316563333338336132656563356435663964
63643333643833393238653964393064376336666161376236623466666530323232333733616634
30373333633262663038626335656666613161303838643666383564663938636238393865333461
66396663376433646235363935366130313130636562646162643863653066623639636266396662
30393762666234346635666662326634646266653833326331306436623938356238353434363066
35623162353665326337623237386130333735333735363039323133376539666465343162316233
30363165336464373332316565663937613631336330383962393432616531393839666639303132
33386334623334636232623366636639356161323334366363623931303932376438303039653865
3237323765376564393231313863313439643235383134313463
66353736616239326639326263613737663933336664363361356234646663323762356334616130
3462653361373862623861353338646630333366623864390a663035353234323936653732306233
63303463326335643335643631656166656661656335636134646337666666373139333533623837
6230633062396435360a316561396263636362393138323964376466303465373336336232323763
35613332666635343665306433656431653233323964653534613535396466633934363138313363
31653439396434656130376164613135663433356464643565616431356265343464336566646135
31316131386230616330313033333636383735393136653234376564306165333139653033373063
61343661386439666262383665383636373065343064356364633038366365396633383338326631
62663363633632343365333139656531346233373438376261643236363831356233333933376462
36303733346431383139393731623966376439316336636337626264633265323163336565303732
63366336636433383539363136643463343632383266386639383237303236346561343435666232
66633531633034316530636137623663326234396232626536646338343136663665386166386163
33663436303965653761393632623766653237383038663630333966623034376463653765653464
32616330303430363638323934633739393235613539396237343936646339313132396664323339
32353961393533343763343131333561616166623464333734373137333936303635343834656439
64323938653630366534333636326162353035366330636136366363326336346336313539663333
34663135616262323664333033656238636132356236633530336333646365363131653632323938
35643938383830616533663539626537316134643735316531373630313666623632383464313639
66653134653062663963616139383065353435623761393933353838306264313533323537383430
64343534383036333266306464363534356561663939393565626439323734656566656333373138
36376561616135316639616437666435316465636266336637383337346531323437383431356561
65363866343835313438343865633838396539383562313166373165303239353839386432356234
34653166303361313465353538623038386235346132353165336430623861326461303661323866
32366536656365666331633864353532303236393530626430633038373837623462663935363664
32623065326437333239613838633534643430666538646164616564383531336261363535326366
34353138303533373662633164313634643866636339373439336165656662626535646137396631
32323330373137396531303438376238313439623135373436663237363238643334393366393065
64373533623039303637366335656332333864393737633831623035316331633939333562373638
64316634643032643030333161373262373139623061363863373962646138323032613233316265
61303562616332663161613764373864643638376231666566613164363336623664343137666336
34363662393063663135356538343530393335613862386163323636333136376635393934663531
33336236613064376333613164326361393865353236326663316561363732383563396362626539
39653438303466333537343533636238663066316436343066633562323335303363356635613330
30316535633131333164623135303562316332653566373233363137323637353362393162343563
37383231323063303739656438643439656134346663363836326362383138346261666663623661
31643166303932623835323135363264653933626366613734333830646461646330316463636264
30666532343461303237646135613066343032353864303834396431393032396132636436303138
62633834306131376234623065666363306134323661323633646536663330356562373834653631
34396233343039303363363734386537653361303735663934353432386137326133646235353761
62373837383632366439323332663463303934323533653466326439373231656339353239646230
39613361633736303065363562656331316237393230376134396664316563353235376635663130
35353363313431626339666164643032663235393331663366653461613832623864326435306464
32353364393436373664666262363661646533366331333563613666346630396563666131663238
35653662633461353635626338626264366134636465623863373961306435326533356230656333
66353039386337323262356264323739303532353563663034376132626563623362313436393135
37383236623731323066616632396138343730306130653564663132373535613835616264376262
34363065373166393166393337613937643965346432636539653631643365353030393263373762
35626563393633343739353038323538313633333464653233653564343664613766396435326333
39376562363032393031333235313365303535653238333233383435643232323733376532313966
31356565623431646238316464616265613230343438336663653035333666303333633730303033
31383562663536306161396262653135343265623065373932313161393734623434633965626365
38306635363466626463383665363162343335383637336564353730616638333766323365343466
63376564316565613564376362613365356664623263653932383239623534623939373630323436
34623264323631313834633437343162313761646635306461366636343264356664633634643239
33616234633766343032646337336633646564326365366336646237363434393462353732326365
39623133313334366333336233636461663236303261616332363030373330333766323232373961
34663636623434363562643139353037656132343438393761376363643935643065313639316538
39653439323761663566323365643964366265613933353334643262386437626365663362316438
38616436313564323861373436383332313361363132616139653666663466313333653730333561
38303432616365366665623332393236633334623033336138353464336134386161363338353237
34363032656434653364636362386136393265353032303938653631303933643833623864366562
38613237376535353831346531313962626561613361306465646264386561323165653631386237
65613363386638326463313964656261663234333466393433336161633331633531343035393030
35323533373132383962363666643665653039353862353130363662376539336165633162343334
65313730356437663833333330643964373432373461636139653835303832396661346230636137
66383336643335623961323531393132353132623836303836316337623930363930636566633332
35383964636266613061376239356232653364663234306338363034323935333937643061316165
61363666646665333366663735393861313565323563376461613138396138353861356636343433
38326162633234366638393465643636303435383536366261393031313238336162323738613163
62343564396263616661303330316137653163646133383466666638343361396165666465333465
64303966356666326264663763646536353530656636663736313831353837633437353438656633
37626639323435393364616364343066333831626662643937616133393834333234363239373635
39646330653133636439616130396339313865633365623061333630626564666634306562373066
66306234316134613233323261396639323961636361353966666237633637343862323831336433
62353932316131646436366165386633393635366338306331653938353265643533636231626262
36373132396566336565336266393661343836623461633330313837363865636533643733333035
61663031373536643735633137633763623536346462613535303565346236326130313433323030
65633534306262333434306231613830613662343164616361333739656665373133643165366537
37343832623332663532316632383337366234356239656364656530376464616631643064383236
31666334363337646531336438346163616165373564383338303933613636663934623262343161
61633039323237346431353136666463363634633138643363303164393230336534333932393038
38303233633365613163356262396562353439663461626465303333393934626336373165613635
36383761306561383335633761336364666331323338326464366261333765616665353334343937
34333362663061316564326235343635643366346162313534363564396466373434356439386566
65303735333333336534343736313265346632316536663865653330363065653231393239303334
32366666613838656132383265626134643334613934653762316331313939666230396431663836
35643161306436326236343061356632333164643464666537373333376534373132663831656265
38363137333332356430333566623665363965333132623630313462386237333363643737363063
65326438306535626265343337633135316137646366323336353463653737623635636539353533
64353964343439666661396561643230313639393132623935616666323362376366383436363738
38303739316630363739353731633532643032303764383034386337663362343239613630643861
63663031666264363731356335613763383962613161643132353635323266356435353034313463
39316236383662393038373838343161306335636136333531333038663436303366386635633534
38323966326434663836353466633461333266393935303630396565363739656461323265316434
39653364343865363139643238333062613563386633636234623566326538313237363736373766
65653131613535633838336362393263333962386430613561623561366665366166383062643563
34613263313534326664323863653939323263373535663662666135313337323038343062383730
39373835383665353039653433336565663666323934373235643865396431356266333232303261
33306364353130636433626535333239666463303635386631343737316435306266383164363565
35643337613136393336373662313337613037323635376131656662653934663630356237313835
34323565346332633265653162633739336463373665303064376664383936663764643764303265
33303664393330663131613039653966653533656364633537653964633862666634663762663734
65623434353766313961636661316134366330313666363439323932316437353965386138333534
63313631666266633735636630373664343438333131666130643234666138386230626138316566
33343865633935336535393838663364356661663331323464316462386636363137303338623764
30393632316632343136343165636132363231363637386533333038306133373433633237323336
65323932643136356361636536643162303131343734633464656436613561383837323337373531
34346531666134323464336165626435636163336361613139393833636136383737393635376332
39653233376137353762343531313736363936383236303239646339383466306364666231373038
66616434643562313539316435336238393935343164313432306431663364393966303066636334
36393836363638356433316335613164383434353537393262633233306633616139356363656566
65646132306162626631303633316164346166383836323664383665313732356661393464623232
32663533623266623762643939643362303737303133373038356233396661643062623032636166
36323338316535346638396162636366343363643933613434393263636563626362303262336239
35613530343734396533346534383631663937313434656630633531333136666435306565363164
64386539333534656333386432623334653036323566393830643865373862323365386237633065
31613161653461366266613962636538343930643561313064313363373865643732636332663731
66613961376630633134376165326437643839363737353562336632323566333264343761313234
61356538643031323666393066316362613664303932326230366330656431303438383263383866
34366364386634363636373935376530633039396339393362643734646338386337356639393931
65656165393238613362376133323061353162323634623563623061353632636365623236353932
64373330333335396465363539616266366562393431323335653038633332303861623832663832
31636566623265636237626237316637306631393339636164616433666661633737326464636366
31356132353936613535636236336261386666353133633664636236303336333462356335653236
31633666353363656662393437373461356139326534373434343263613732386436656662353934
32353661336236323465333032663439363062363564303535666339336334363763316538386631
33656235303763343039613531343637386136316530356331393035353066343862663536383034
33323137663165366335643165353938316131316363663164386162666239363935393231336331
30653266326330613763656635313532303730313366363437306662383139663132393536373031
38396161643632373561346331316561343037393735306338623365373463353663356330336239
63663462363735656131363236313762383834303664376530316530346362306465633637626436
32326635386266333937653165383662336266613565363437326262613262333065666162366166
32346237353337363633363133653034666639613731653436633637393465343037666239643962
65613935346337383733303335656230333631623734633831333238656630326537346266373132
39373933393137336633343965616136626433333931346534663535363739386337643866613764
37383037653638393038396632306361353438393962353134383132386433646130336530636532
32356632316234663038373164383162616161323863393332346232656133643362343539396532
64636433653335303430383534376539313136386262313234366362366461633962356539343830
31616166393730323462343833343766373332666461363061353932323836313862336264393962
62613366316232653836663165653632333763353731326130653831663837613263323239323461
65343161346435626632366531643835313264306437653038633236393932373061353866373833
65396466616163613633343535646636356434333839613434356331323335643565373531616639
38323863353234623063613636396139633639343166613066303034373264323662303331323461
61396462313535653930383465346537643363366362626561386364356336346464643233333264
64353765336639376137383536623731623337303265323131383361623563613561333266313462
37353338656635373339646634343131363635333830346533323838623161663431323437616537
39663032333761643433626366656565633566383562666464643836663237363535616330333139
63316365343139616233326439633031653965333437316335623031316436386331366537303734
35623635613765383034306565346464636334353735666632663738343633646563343462613863
61623339323138366662363736343738633332336266363162323234353463326537646336613465
31666330333739373634343065653665303261343935316133393833343366643534313932613465
66383064613532626361306364653832633863326464376435613232393866353931353939616665
31656463353036323862386538323836353433363561373133316262376336343336616136323263
66613034613336343030313739393637336530343535393238326662303731386231653061346463
61383763363233393339616464303537393133646263383233653061343632303937346439333835
34356331373331336130336664653433306537346133643539653161366261623963333065306161
30373336366361343563353636313332663866363066343930313838333337316263323731613131
61383061396665653433396236386234326264353038656564386130646230363934633034323933
65363061653865666565363038626339666430303763313331316639323130373361386334366531
30303035336339613731646630383861326330343266613839653066323535666533643464313833
30363533396638623630663963383863333431346665353938386536613762366432343035343536
32663365396530353038343465373638393432306231383931343732626338353362613638383361
65346166323866393030613430346566613361633037336261653763343238353866313665613562
31636463306538636335663564333131646465636333653232343435353134353037623864626164
39656163366432616234656665626434663532643632373330313965306336653866353839666566
66386531356264333937386539393865393737636163303861366461313636386634633365623132
30613336663438343861316463306664396232636636383562306663343861303164303863383065
61616235316233336463616534353738316362356264613639633665366533663833613430353831
37616437666163353839383338326162643166313936623635323063386630396435313737366366
61323938626563636338366364666233613437393036363336313864626439346636666164653434
31663565313732343630323062306630346637643362353835346437656266666132313438316131
64616564373961613164383538656337633134616161616131333337366132313066633765313039
66356438653632353866383165653932346465393938343961333362613433356630636439633636
33346363336461656230636264363036343437396133323864663835326438386561613263393366
62356632353936373061396633336666316264373665373433396338653837346338366136323930
64616333376365653236353932626666333363333964303937343035646231323163393638306333
36376265303837623030623836656464393535393835386131636336353432343331643931623036
33323534646362633336653735633135343462623931393662393734633539353863643864383633
33613938666666363664306531313933363831306531313430303737393339393765373239316662
66626339353239376565373632653431346366313033636438326137396266373465353862393665
30353366353436643363373565396661373332653133333766653033633432666361386333386666
30376664613635366366323135393235316135386337353936336562346431393630373031613738
66313538336465653235313538353437363832376633633163383962343861646138316161643635
33376130333237383938656230386461313561666232643338343037383562306635643438316163
64613864616663616464663635346166613763396432383335653961623531633232613363643334
63336264303965316238373332363063633831353033373936646535343661306162313234623264
38363736316137326566306433393133336338386439616261666332336330313937656533656432
32343035313862643439663135326535326536633138343835303266633831653530346436303733
36373734653934363362333466663133633535326431663932393136343332343231363233613838
64363466396666616433373737643833663030666135623635623663356230396634646265376535
33326561323766386133396636303337323163643636326164353730353537366534633966636363
66313164646438333139373832616234343034633436323337656365396636383363623533313864
66366537646164623734613162633662313530373862353461396363356535343036613932336430
32353231366338353837393363626165643831323466363634393230333664646566373538373963
64383233313334326437306239386630313733393332656531376161663933336231396165393733
37313734346436373133353830313139613334623762623930333939643230613430386337346436
34363464386262663965633262326434383165373338363366396130343863656263393630663261
63646562616534613239313934393732336132346333613663333137343733386464323462353037
65393539613636386664313263333233323634643761393863323464643235653861363132383765
35636565306362346661643133346234623162333166626336653934323935333033396136616364
32333464363632626462353538663531383130393535663761323336383837663761646533346464
34343662346164663139626131356364626236616363356431666462386161343163326262626163
64306362383866666531366537376335636336623866633462616237373131313963353364393630
66646563363463633530353263363363383264633766626638313263613931616463663061613563
61613162656338316633613736633363333764396466383337313130343537653139343030373465
37316666623635303861373964613261303039633937623366666132613831663066326431613231
36316131306136616165363366323861623964656563633164333363326138633932386364336333
66656361373338616634316165343361376533333966373361663431366632303337646431666162
66653634383136626330653164633232643062313230363366323936353332376161633135656364
31626264393563313339346333396334663261643633343337623133323738303231643132373964
38393238303061656437303462626234303435383839383933643666633938313736633936613931
34633463376438373830656533646338383436363534393662323134626265303363313237633133
62653233376364396335386262623438666139306136323435363339663164666338323337383734
38633863653263363737306166353365656462363339663138373061613636316139346463633238
32646366313133396536373636303638393437626533333438643161336535623930383132383439
36613730343130636138376361663862363064386634336636636436343162343332633830643237
66666538653931366439313832306536623133633463366266373265663731353836326464643332
39303930303730616132653036653437303733383839643738303837623861333533363037643034
34626334396464326166383931366565393434393833323935386534333534306265346461666537
34396133306166366536393237393437666532633737613835353833376364613866383539616330
34393039323465666137633930326337613130373464656135636134366165646334383237383332
39623333353162313539636131653030643063356265366534306138383235623731313233653365
33303061663338303863366539663863306234636333353062653531376231303635366662643139
66663664646134613664386433303066343239383261336563356263656239653238323936633937
61363933393062643433343833373935313133383235626565646639646266363363343734373833
63323564366530376630393061346537633530356666336531323536313236356331663836663863
61343237343361343662643865383239363031653563356230393166386463313035386431613633
63313363356265306237393562383132363566313761323666353637313164353564316137656661
36653537313536383839646434303962633666613165313863653235643232323966373961376231
61376431353964366235343363306465643162613766316364393036303331656361323663326634
31316261386561363836643462303363323132326363313437366136323133303936326539383465
61613566623634623633333736623334326161393963346166363930316236663334646536323238
65343966326230336430373661343663646665636635376638623530383566303033343166323835
65363238636638363437353031343936306561643438303533623930356363343332306538653566
33346533326434376632353234303732643835346134363035353864353036393337393964653538
66343533366433663436323731396330353939616435363937313439633965356536346365353464
39313431343639666234653731336634653839646631363364613836656166393132663637663365
30333533626230393631643661653339636239366664666236656163373637646565333861643839
37323536613466323334656338613139343465326437663664666530666632373535353463346662
35613066666136353730336335303636336630623738383463346134323737663961663233366633
39643166633762653563636434653334343738393063376466346135633131343639393265303334
65663433353239366234656364323838383836343437383662633938316362653339636666363166
66373766666538333562323966326438326630656362373230306539613966306235616362313038
36313864343430326135353864373531656332366165323064313231383831666661356365663230
37623133343332646531356639656532613966336162633762376334643735316163343663363737
63636537653731373737326365613964323131623736633164666132373632653765636265333938
36393962356437363733643736643165653034393965626263633738636331336130663132306438
33646266376463613831333434643730393239666337303366346664646638356166393239323930
64303262386134646534366166613433623436366637356333363531373234396435633464343461
33643936643431333136306535313361353965626537346439356261336562306166636232656532
32336132366562646237653565623662666532653631346663316331373839343235326531363566
64613065323733303534343666343134653265373630393064323263316235343833626235336635
32666466653035323363393834323932363464613666623838386134616433393738623761616163
64303466613137653237633661353036646466326163653732393733633337306564383332643333
34396139346338633037333861656538353938316431666364373466363631313336303461393065
30656430323937336264336438306230643864623232326536343535366239303539333934613536
32303738356439633133306234313337376262353234643538613265393838626434343938363164
61653336363236623166303963653462393936643133363730643739376638366165616139363762
64356236383464663731326433366363393866306336383231353031346361376365373064376235
64373438393636313832386535373836316131353161306633376135653130313865323361653338
35383762626661303535613232636164323835316139326539376531333837393164666439636534
32363037646431633761646538313631393133623461303933393934306562613438313334306232
37363462643161363336326264376531323961623865636531643736363435316164643835316138
38333965633064303864386239326134653138393461623630636232306339613934343934323738
62333561346637613032363739636364306636353832343732363936343364643663353232626534
63666366633066363065313337646665396563363237663939336162633935306637366637616433
39343434303530356236303963333233313238636161333763613133643862363261306238323638
66663065616362656430343461326536336139653262383431383834343163353737343437613831
65653030623833613863646630323664396538333335306530353961316135323534333732613033
31386339386666626131373838373939626564383762383437623832303363636439326565646435
62376233636634366333623966643463633937363732663135356561613634373230306339333035
36636236366235383465653864363231313064383339643039653733626265653439643830616361
38383331323764346361313931653032643435613664396466623561323830396338323535663738
33303031626563613830313839636631636333373931633562313931306565306236386261613761
37303662376530333439636464366330343139623436353163373463363932393765613233373132
62393933383131643339393265353933323831656461623734643166663332623538623533383037
32313836623733373932333765396136366337613034396531303766616639613961303531346465
32623930313035383064333834313665363233343466383766306263356537666635326631346664
63326264653831376635336661356631323932613131393734663936333532343766396539353634
34633439323038613832323939313365643937363462363634636366623230316335613834346432
30663334353838653432643862633133346634306631343539353066313965623636616431356635
38303162396437646463346130613633613135616332666430376333363431376564306166636533
61326264383162333536396138393566373430306561646364336364663132386230313662396636
30363139653564666265333131373738363563373564636563353535363530643532323936353562
62343939316261653761323836323465356464346435326564656231636163393861643037653334
37306533633035366635343365376134333631366132613035386165353366656563303961663139
32346336633537363035363631373137623436366535353961633831663831346239643330643837
31303630623230633234323665616634646232633634393332333339373265666531393234656166
36313032653330353330646566633737633530646231643831636266373261663765373039383566
34623161333537653534653434636434393835366331666162333766313361393863363539623534
31653138336431306135393665633139643833656438346565313862346631656466616436336634
38373761646530303862363134373937343730333865633965643430666563653064626230303762
36653138376432356233363639383132323833323066363765333335303265376466643631643431
63383532346335316166626264626638373632363530386331313037333130616261323339653736
39353235613865623639386463353437653639376164313538626163336361336463323062396363
31383831343863623933383361383365336238646130663366623564386136373633663937356238
37613431326634363666396431663837653434396636316130333664616632363034393463333230
62616132656236326463333461663363356164373765633931623938616339643465326464623330
30633332643531393966643262303831303031393766363539636335626530653962656139323962
32343635623066626330613734663138386332633839633131326636333634323937303561366131
39613363613331363533653663313330666633306333623138356332343430323032636361613735
61373635306239373265363338376236626534633033356334333734316139656136363362663765
36356461383531343231316236643162626432343635626563643035396564643236303530363237
66633037663234346431306337636263353935623734633565636439383637623938396431663634
39633639643133386335366434653034383838306531666266386463396233333236643132646235
65613738383539333661336564616336343630333535323864383362353231373239666230353864
39623932303639393337353132356634336562613761633163346630313238343066393265643936
31343032646131363062646634623865626137616639636266656334616332643537356666633639
33373336646435663939616337646232326332353831306338356632663437393863386661356531
32663432396665346164303166333132383638326230303462326165336166316530636262393131
31383833643934393234633032323631616361336362643161613934373030313733616637666634
31373164326638643434623535373638336566653932303338346439396431613461363533643430
33306536323461393532316439386336376534653630353030616664303030353961643461366433
36663461393063623063373237653730326530306262333736626363303838383839353530333563
34663365343331306233353938333166643564356266373832643338663430653966386133393138
33376363373666383462383633356362333934353539306337383835363735386330343331653961
66343733383537366566323735393136663363356131303031366230633131303038363636313661
30396436323636633034636662363431396433633033373664633665633039656664326533326439
32373032316166663364376432316432356339386565393830343137653363343435303339393762
30383432306635326338613366633564646264613762653238663461383439363133613537313937
36343332653637323438616538313232326336313935626161363036343837613337636137373161
33636639353461383237356635616539633130333964376537346438633962663037646564353339
64333430643462343661313662393666396236396139633833376630646565393732656439636261
37343838376666383530306262313439326563383835643534326537343464636561656430333136
39326632663466393065633539376264323139663535653738353031303832666333313237663165
34346661303566376361633532313035356233366439653565653631303632633634623636383363
31363239363566653930633631623931303662386366653566633433643034616535613661313163
39636634333262643330363265313135666131653334306264393439653766326133353265343565
62303133626363616231613531653661623330383563313735316666393733383933336436643364
38396439643738336563666131333963353338363761353461633339313938346661393535636232
63396634353832643539363438303930636132303732303439366239643833356437623166636338
63613539376565386261356465323461643332663364376337643939343335383161376330313730
64326563666336643434616235323661633934616562393463383437666433303238346535383862
61343237653739396333313831656461323164626633316264323763623832616337376639333165
33353266613066343438636465323431313839343932316637333336353532323431623631616261
38393330616631323263623534326230303036373137323234353866656561386237343936386266
62653730343232366231623237363263346262653765623237343262313737646139643164383534
37656136336538316137363261333765323538616263623337643932353461333737643337323264
32326131646133316130633265633464663364343630343535353062346630343035613434343836
61306666653735626336616266313134326133613634626261616361346332633063613338656430
66306536643265353261656561383764653632623464336264626334616235366430616662373361
33616161643835623239333766323834376664636336663734336231383237623963383736396365
33646339313364346361366137613136363039653333313433626233623634633030396564313466
65643561306632646336633163363666363237343436343762343966323063643465616236616630
66663165343731336436303762636338666638643135356562323363393735333364396563643239
63313335336634386435613935313563633931323532363239616339643361356462616466356263
33653134326633616231613038633563653332346338326132613034326462346338343735353532
63396531323232326635306234376631393033396166626566326163346439646432613231646566
64636365653339626338386264336531366562663261656435356265343338343636633963323865
62363635396633363632356137393830636538643430613536363931353837626135666333656337
34363334316664623063313037636162646536353338336236636331363333386264366337363937
61383262373766326433633665386265656535653361623934336463663561323637383632616135
66356434303234636334353864366635613533316232663036646231633561356436333064633365
65663465643462343666356330393062646635343433643730616462316538393039303037326134
37393036653735633439383962316365366236646565313930303133333339383063346134383963
36623232343664626233336431636661376562333764656362656565393738383164383131626161
30376435643231636534626631643839336136333034343736333339393830616233306430306366
34346534393737313562633930386137393861633566626638326463333731373232363130623636
31663164633262623831613062626561376539636666643664353064376139356461316534303737
39333163313034343165623662363164316432343339393633646563356639656435643565666537
64333531353263643438623863656339653935326661353934373830363766616139306263643737
6161323139623637333332396238353965653035636361343863

View File

@ -11,4 +11,4 @@ task_enable_vm: true
# mastering date
#
vm_mastering: "{{ mastering_vm | default('2023-09-25') }}"
vm_mastering: "{{ mastering_vm | default(current_dt) }}"

View File

@ -1,29 +1,29 @@
$ANSIBLE_VAULT;1.1;AES256
61353966383235306535343537303130633934353864333066613430633736626433633036623263
3934626463643732643931633030386534383330386631320a643863313139333836613762366536
65313364623633396563383533666237393663393835613765383233396138393666313263656134
6330333333376363330a616235333263623863653765363739343465663466326661653039623663
31386663353965393438646530656539653435303138306539306132313837333261346636376439
38633863666637393339363962633033663430376530313439633963393462663365313531363965
30646532373765376137656465666165623562623662306138303435373035346231343636386534
38643230623531626565643737313465643966656233343962363935656134313838333063376166
31316239643935616434613064353739363863633835303365353263646339333838323135643965
61653734333462616634356433303061653531656262316230316433333235346230666163353265
30353836656137643031313066323563383934356266363230653833353838366137643036393132
61346536633035653136343430666637353236336637353566663438323939633739306132306661
30346638396532613733306130393732636566663232303237363530323565376663613230613231
61313563396633653339613138343731366233356638653238643730633035626561323566326533
36393438663938366131306238656332303736663739653166333365653434623138306164653164
65363962343361346539356166336561353863373265313139343861633630613630613930353562
34363561636161306335316561636166666334643436383636313234313634363663663935366564
61376637396366313737353335376136313333636437363333623937386437613734353436356462
66333162336637393264313061333463656338353237333437656232366537373936353664363434
33366135643031393239333364653664383839656265346130323663303631376164353530303065
31393530363030643536313463346634363130363438343562303632393764313233346165333834
35613563623366636639343030343664666134393234303431613261313962363863323238646666
63323833343966333031313037366231323635636634396537303261376165386661383237353130
32326461303532626664656535666461396536636434303732363764313166363962663262643731
38366139343436613834313730613661363538653864323965393330353436373263623065333239
32346437326633663635336336633234383036373331386637353262626534653663306364643761
35363433333662343962343732663862393062373433323739313432366463313134666661633231
61363130613139613532
31623830613133373931383166323931643738356462386138663061663963663566313932396332
3463373966303832386135353366303864356661306439620a663166626332623832633635653761
39356163386465666334623934396263323961626234346530656432383761393037363765346665
3661306339343933630a366631336331386139383863313865373664613234633564323664316636
35633031373230313037313131353566363430316234393234373162343237306531396137316133
63623130346662316165336131623436616235366535393339353631393733643634316434653433
30393362366637363934646361616335393330353332376131663539653564326561366161373632
31343261383363396565626632303031343633373732653137323131393464353865326331623566
33383630626331643566333865323238353563313262616233313535303738326634363636666366
38353765383138396162633363646437373234643136373239626662636339653031623430373664
65336661666366313332333034396234373537633465323432386663343662663161633266626334
38643537366166663136626531633533626462616463313666303032383163363561656330393562
39666164373533373663656661653061623531306633663066613434643562663762666637326561
34313130306436383833663763646539306439303331636266303237343536616138663161643232
61636232613531623933306132396132613863333632323265323462656462303762383866343036
65613832376165613432313731623233656337303438363566363034633161393066636665366461
32636262383632376465363538363838376634326264613034666231343938636531396334366366
36306361323932323462396134306238346435646634616436643936306164343834303263336132
31373537356530666134616239653930336433623837653363623665396563373839373130656465
37313337623132383635306262333330666361386363623762376361303035333030616135363761
30306264383931316339316537616532393433353663663863373661343538393535336262303762
65346536623365303530383035313437653935316430306464626531333631356566626463333039
38393432383033636337653432623763616233366438393130393061353536323665393037363734
30663865336137313936386130313561346237653238616162623663616336396137326637646335
32306231343031653435633764633139326437393335626361303063613764386365323164326632
36326134383633613936306366346361343966376264663439383331303430386635353230666261
61373934316534316432323038353565663435346564396536616232396361323332613266616435
32326266356434323561

View File

@ -1,313 +1,313 @@
$ANSIBLE_VAULT;1.1;AES256
37643638306634396665366539303162363834336565613535336632356132663962326230396262
3333623961616234636131653338333037393537663834300a656430366663313836333732353033
65623064653962376338303531303362363564633164316365366638383035383436336262306534
6430323134646537380a643563626235366536633263633764373032393661303837333666386566
31313237643462343666353261623839653339613964383831346462336362363830326663646433
63646562616639343538376162333662373139666334663032343064383733316262393332313237
34393863333763646630626662326634316439313461363732396265623937643865393436323832
34363736303136326332666538663531663462316631346132393266366361396338356138373533
37633663343566326433633838643832376561613763316139633762306331663963343562666565
32343032643337656338653162343365306138323234336461343133643264656662363833363766
63663637356165336136353062636235633037386364643363333333663536653131626462313239
34643630666363386131353561636232303733633534363466643266636463363235353065343738
39616538656263646266656435386132663933623638326139336639636166386166376261393666
32636338663130366232333435666238346236363536363431373163306566383831623230666533
33323637313165373233353733326138393231353438626237336666306239336331363032396132
61653034646466613239626266633134346363663534343631626632333838663432323437306437
61373832343138303132363435386361346663306664303237633530326234306562663337636638
35393739383565353335303163386138623131393762333431623736383531303161616139373233
37633762316638323339356165346138633932346361636532396466356634333562346634633761
30346661363061396164383538343930373263666438353536666435383534323364623730663666
39303232623061663363393430303235393633653937626462373032613062386664633533613963
62306163303635646661363332326464363666313631666266366631363163356562396366323832
31636132613361356634616566303934666134663531646139363436616636646637383163623933
36613763306566666136323739326232656564303038386336656132666466633962653866336435
35363030316563313034336238346666666634383530643234363532656130643038623732343663
63353332666435386363633563333434333036613965623638333933656430666639303737373939
38626539356565636637343665366566366231643439623735633635616266333331353737626536
32363634663764626433323730353334333664633332323462373734653136366362343061633836
64336337643962303033306265336561636537643662333137613931366538323836323531333165
62623961373436663063396463323661656234313937623137333461643138383435326237306136
32666464343731383932643861333732653266363434333138363465666563333862363864346530
30643634613462633536396231623732393536653966623234303231336638636331336633343132
64633739626236636361393734393964663862333033623965356465336536316137343132663863
61643431656465343334633336626333323263393264393530623130343331653434666638653762
39343338613537666230653837613562383030643765333034353234393265373936313939396533
61646531356639393937326235316333303736356363383964663432656631663532623063366131
30343133666266613261346337346538643139663337376439343338653733623933313765653432
33613736313637623836303236336565613131393761316633373939336430646138346634626131
37393130646336373536323561663032643138623932366264313938326163623938373266373831
34316638383432316433346337626430353665616130646534616535633937383766343964373435
62643164333234663237666361373037646564613866643430323961653338356465313564633732
34376536643831376461653136356262633637353665343037653334386632656236636236333862
30613431653761666436383932666637353436373335333161393031306162396535353635343338
39303334323338336537633931663437306163336437316631623334376632366461636635363331
39353033323432623732396464393935643939333337326261376632343766383535623731383538
37333365313361353730663433636432643533303038323639633366613837633064383036663663
39383538393535643533333035373164336330646431656334616436383562353065323137353065
31666637643861623133633364633961343931376264653530393637396164643435613166663962
37636466633361303135643634643736373233633738323262656533333165353766326231306562
31386366353438666336346339396136643962396633653261363437303762636133313031373563
34343561353461383936623739353232613832666333663134633363383735663061373133376539
64386232373164393537383166643536663464616162323639613664346236363361333461633339
37383231636136613939393736666364663265383863303538343735646562313238663539326435
37376331303332646665663237313934303231326465633062303438396339376633366432326165
38313336383836616538386461303931323135386363383361633436613136303935336566666134
31393030303764383839323534366139613261623863383236663663316634363234633466303464
33653639333236633163373238656330613633633035613161633966326135303539666332396133
65386666393766353665326239336130643139633633393863333936326539306430613738653336
39393836326434633863323338343335306166313130346635646639636338396166633535363039
62346333386537656531343362346234653833616236653066343563323839353937663334353739
33393466393862646565333066613261666630356166663762383163616265393135346561613064
66393837663065353665366164333236363065393862346564613466653766653761396136313962
65383761613838626365386230316135616162626534616266376432326664613330623135376635
36383663333130656635303362643233646630666362373662393733663238366132303164366266
35323765363162333465623739366261326335376138326339613932633432363634316663313462
65313939653833663933663463326264646136386235653961333863306336316262623661363162
35653166363132363434353836313065643035336632343532346438343831363336313537346261
63303364346461396138653162623737623764633962396131323138656464626266643530623466
64353362663162643966376638626462353239383164383731316665626639626432386437363930
64343337633236653734323136373634656430616364306561323665643336323963343831316162
35396564613730373965316564653739643766663136313835383538323639346161326634643534
65323464376137613632396633363332356437373361386630353862376531383064343131656530
37616263313966333338373332613735613832333238653631626639656137393361333539663436
35623138383264376530643832353632313963333161396231393630376166623765646437346664
31343339613932316437373034393738366336356632343361303661613265313639346532653361
61383135643730383835653266323461373130353535633234333066343463363935663733663537
32636539666337363864646265326361386330313961616462336537653531323533323263363432
39396432656138626364313366396230396437333831303331313635666231666264353637346361
36383739316663636163623438633537333665323037323037343136636132313364613431653061
33623638343366393732663464653561346162333136366339656262356533303331626263336661
32616434613530336437343832656333373733303037343064656263363564313564666131356430
64616261343139626438343762383237666436333739303731386338343864626562333637386332
62666138633036336365376236386332386665373763653764373837356566646635373565353332
66663335336430323566336462643637363334653632616233623663393561306432633933656330
34343166666163643834313363396636636637663035353564346534323832613162323361396336
65646135333534666232363837666336643964323063313330323736623164343361383563333139
37393863666362373938333161383631623462633662353533323037383237393961346631346537
38386135363935383339373063393836396331333337316235346230303837366561626538373261
31323262626664663263393864306665356661653230653535613466613463393463663534333533
38653639656362643163363833363335393264663639393932396338643036666336663138626630
64636338346637333865303434313534346239373137383064653436316663383464346661616231
36616333633262633862643135653133326432326161333561333565383664663230383265303836
62373335303335316430326439343234316166623965663932396663363539333430373264376133
63663739653735613734383539633235363639393536333963663864643839663533326539643836
65616661653662653261396332363264383565633661653661663030623935396438316261663731
32303761356637663364333637303236363066623662373736353762623562636163646131656637
65333363396362393365616563663533623136663530616462336263316238376661633239366434
37626265333862313634373836393336313831653636326437353938373732353563623766323962
65316266633634613931643235383030323165393863613839343333613436633032393539663332
64653264323762356231356138303233626238333039336261643664666464383135653563353262
66366230346335663663316265306532613230326333323535323134353635323032613064343035
65333139376162663563613063333637386130653265313365363230626635386138393230356533
31313665363866373733636235366231613861343530383231646165663838643163373230613865
32393933376135623938373461333637633765346264663064373166323839393662346336356463
39623939343562653461366231353739323664313434316266383935633834323062373166653136
64646536396566393138356136616335343337336333333666373131666532663338346132383732
37663564383438333231613836356436623931613832643364316530343665363934346363383030
39393734343231626431666138656566373037333233666463376262343539366264616234353464
35356531323834396634386331356231326364656139626662323430613937626266323830343238
65313536336538643839346561663337373039326138373430636130376135376466306331393737
36343663373236373734373766326330663130643365623534613535666132363162616564636465
39346562363935623736623366353535343966373034353035613331333939623563636633646230
39643735346632663965643337373439393863313064623662643938343266663633323061633232
35643837363262613932366535393230363461366363656330616663373431383138626139636333
30333738633361666638353463633261653839663631616265343463666337323935633935313635
31623764363739336430326464663639626533666230303537313862623231316133613037616238
65626166323136626264616130326634616636316338336663306561636164663536366363373933
65343463663635656334326538386636666338363430383633393330363638393633303231393338
65636635306362336162333366343239656436613434316132613935333133326136636438313930
32626164613662313764323339316161643763656437643137346433636263643632643165386236
39663261363431336138663535626233356633326230386666633065333264633237323363343737
62636233616533623536393230636165363938386662323266356264633836366137343737636332
34663831333334313831366131396630333366393037626138623363363561633836363536623332
61396539306131343864393236363932396231383333303236333635356639326231626134353532
35366633396131343466346664633465363933343139313333313031363838363235343531316336
39356238386637373563373438333539653035643233333264313062373432643663333763353733
63313432373633363736643161646232306366383935653133376166383638343233316161656666
32383964376262633961353263356631626638333764623137633032636665666432366134396264
66643861326332336461366163353839333531343833646433333465393663353363333139393732
37313737323566346631626164653536393664623036376233393438326530386638663933326436
63653839623133326532323634323838383165636535353333613331653566646234613035373232
66623064386537623631323630303733346138333238393633313132383038316237353534636636
65346135373933663830303831616662663139636339623762666161613637323066333833316433
35376564333033346332666366636334326633376332333662323231613362343034373264643834
39633935356637396364626666633461663137353736616463373735666461636437393363363730
62333435343561616434353063336465343637336662366139306232623832333433383333643663
35303530316464366234356335663438326135626661643634313338636235343339376139363461
39653266666665396365616431333831643338663061653364373631383034633631303330323661
64393761303764356633333435343266623165306638396437646663623739316430366563383035
66366665396562316637306661363265616235623731613663356334373135363765353933613636
63343830376138313464343466663936323961613864383130346266613931393038613139633138
34303933373032666666373835386465333532643662623039303131323433633135373464633638
65306330666562613966346465316635366433346331356362653939656666386630326265653636
66366461626562316362626663353261383333373964383562333165363437623034373438616161
64616630616135343861383336656463343830623837333761306532623262666233393330353562
36313762306338326164343539393430653837373031343531326133323234326636643438666439
66303038643764323261393131383833633231353031396465666130613865323963323864623030
32643438343030373735653863323263653936663335303031363131333565306136623237393262
61313936386462643834393661303539313735363462396132616262386338373833306666626164
32323539363039326534616637303935646230623636303135376630616230323239313332633865
62333435346438366230303462383633656337306433323166303231613438613034666366626131
63373137356634333431343964666630366562346130623965643931636530366530643932643261
32633233383234373032313133653339393064333733366636643333376232626134323264633732
33623332323434393833643738313337373266643931386462343138626332663234353633363736
38356161666535623139343030383763613262613730636264306235663064623039333830326338
36366634366266343134613265373862626238333234353466636165663264613732626365356539
32653138353463633766303739636164633837303331656566333731383835623062373861623862
37626633326266623638386165333763313237366166623034663266663066396334303165373233
62393230346562373163383161653665353833343634346238613163353362353033323935336534
36356237646132393562376434323938356433323866633831633961343736393762363062366465
30646263626164333131353263316364616339363362353536323630383835313937643733663764
61656133333631663766396562366537386231326431386436366562356538623537336664623364
35333533376234336337376233313361623666633538396234393438623739363239326561343061
61356634666265396534353337393331636463336563326531643135336339373037616637356536
62663737346436393035666539643835336131663937363730343237386336623136613638666437
32386633633036653035313339353361616365343866616435643263393538353732306436626436
36333564316365366131373139333635383561383163376565353930323662663230346531383031
31393732323531653366653739626336323434616233303635363837653234393735646663643439
36376465336635316337343863613162303766303435383662643430343337363430633239323361
61663464333165363763623238623331303433373438386530626530626632396238626636313830
33623732373061393662333761643066356266306536636331666164623764303361366163363433
63326136343432393234636363356239343739663863653234356334346466383038393763653638
31633837636538643533343733316663313832366665666135616133303934383537366439636531
36666534666465306562393135323762356438653837323664656365386139333136613836303861
65663534643934666239366432393730646564376233363662353161663738313532316264356239
37306139383666346130373130396364643737393863393533376238326631343634336565333561
65633133376634636362346334363831653639363139643330353864303337616265616664396366
63646166346537306134383139666631393033626339316137363661383162323865336233303062
35323565363866316665333737326235643733616637326332343636613737326165636532323430
35363934623135343061643466353734333631363731373435663937396165323136663164633131
62336433303333666335653966303330343964383837366238353132323735303364663736613866
35353131613937396430653331303766643532616362333365646631336264663633343339643133
39303361303664383562646432326331313736633938613462306436333866643864363539653166
38383633386165666365323330373165336264343766656635333731386565616262393532623165
39356461643761326165366337353165613734363634333363636632336262663638633535313537
63626563326231333630303365386132363837353366396631386436646334633263643239333833
32333533396238396561663266613532646439373764616236306338353762646138323634376233
33363362326664626531626162336365333238333036663838626337323735303166383532646261
38363961653939323735313163653434666462656633313665623931393565393865323663323834
30396263366662396137393064386132373265646563656531383335613731616161316437666134
65363634646365653162333336396332666637313566313936643064623266343130666535393734
31633738646239353937623364373162376335646137376563303935633830616138376366396265
64636661363566313366323633393363326364383239343031346364333434666434343636316138
33376661383932636561663561393839633331386361616131363535646663383163363538656166
36316638646233393433376430366565353438316563666261333861323066333665616561616335
64306433343836376139346433666163623232636266343335396233663036653334626164333464
62333035333036326338626131643064613734303530326334386437316365373262353137646133
63313166663362663439396466623432383762386336663738373237383462656663363236613534
36663139653961383234643363333663613630636639386561326639303936386530363961653236
65393364356464656561363764633038643231396563353464653262636465633962373466303238
36633031633065393233336631663762643036393765383166376436636234326166623338626133
62383734663063666366363735616561633834303563623565333464383861373533353734353533
32623264356237393565633530386438366330383733646530653834306464616132663535363262
36326432636330376338633063303133336361313166313462396432343538393938623665653034
65613863393261663732353638323533323637623437656337313330333731306334623334366235
65663832353562626639306335336136663938656131373464353733346162666638626235363763
30326430303932346533616230323730366538386537623539363961626330373464653530313332
37346539613765326266623730306530333339323831663030643038373039653739643838306463
34326662306135366363653030303266396237303535656232323333326262303233343162616464
39656362623563363235346264343239313563303231333632613464336665613635353033663038
37663630363030396563353531333237646530633933313330386632633938363735626537653433
31623439323061383936646563366330303730353865636438346538653737616366646538653865
61623964633065663433636439633736326233643661636231366165663833653039653064323665
63356666346431626138326230656336666339636432383739663864383039363137326564326432
64333631376566396461323261373066363265656262306333383234336666623364636436643865
65353836386330393164383337643831373663333835333336373732316133653738646433613062
38616564646565336130656563323434326138633637303962303539333135613733343561336164
36373036346230633539613433303032663937303466343039643966313763396137613163646437
32313937396337363665643936663435333562373339663765646666376336373731393165363634
37656366626666623366323434326462666130633030636330346461663563383439363164653438
33653634613866313932383964386363346436353935646636636339343731353136346461633566
32356138333362396464303234373332663632343666346161623330663665616135653838323134
32643434333361623339316663356264646437323835373935353531633533386433363038616638
32386632643631383966643863356166326535396330376230623839643161616366323430616538
35333661633363613938373763636462643866306134306630363732333031653534313832373766
64633139643864643166623934313839346130333265333465643831383637666536663262633233
35663335633661323865376565393334356531663232326638643961383532393065303466343531
30616165643762373538336430616233616435393634626138346564386630323133373562353932
35343833386331383865333133616138343262666562393062646539666263623732663261333562
61313639666563333731613464356533366534633937356263346333633437373132373663333731
38363334653936336462626535333435656462656332363737353834343934613331323739666566
63386436643666386133353536646262343238363834323838613930663335316533333766366533
37396532353636383363613631636562383961366333316334386364306233303838326632666566
31303932343232306166353538396535343835343936663738353838303465333233376530313137
61306537383634396330313262653139316466656561633734653739323632313237323431663132
39646462346238333663316362626565393261366132386362313432366630666262653061653064
37326366346537643562333034303630386166663764343261663239633538346635326132356130
38326338663933353130383961326461313265663165376462343162353535366135373962353135
62626366666265643934366361653534633464363430383232373065393533333838303463336466
32373839396361353866393738363966333932373938613265623439353661653964353039383962
33653137326337346638373237396565346537343637356137636266616661656532636339396533
32313737653063623365336263366135333764376631323165646364356534313936623064306137
63323237373465353862643932393764653465653535643063623433306531383431323533353931
63643661303636333035623566346365313233386631383537643037343733346435623066383333
61323534613330323362656633353163353835336263636231316434613665313763656162623762
31396262356366356439323431626666653763663331343934633661663864663265666631656132
62343930343165336635366138333334396461633131373038353235313234343939653830653062
34316134316338323063323432366139306435393930383932376132653765613663346237386363
62303634643361323964323566373639616131633738343131383139636236313166653964333137
37663565613837646231343032653138613537343165383236393666613339643065333863333439
36666633363066313433343661373762383762613939303333633963373338303266623736613336
62353961316635373666356562393964623237636464646435323237373333646433363966313362
39346538303637623666303235346639626363636361336465623635663362626432353132333663
65373439306430663430373037356431653164616166313330666133363065393062613632396434
30393164343163336264383866393334306335656236363661343132343837326535366638653832
62333130366130333532373731306362313366383032326439383133323033333437356234343332
38626565386339323537373239396262333933616166356530313937666362636639383231353933
38393666663731623561626238643537396339373634623161663931636465346235303364343434
64343731386336636265343339326137383439656636383133336137366665376361656138353465
64366534376431616664633235333633666232303261613732666438613464363361346262333238
30323263313237393961323565316463633134653733636264656630643261626435316531633366
31383762383139656338666135636530643331653134336532333164373535353764306662646632
61363339616335396536623362383834363366393962663962666433326234353564363530643331
34326562386338326561373965393261306162376562353762386433306631613333666532363233
33613835306130376530623934613431363532636561363261393539366461666361366663313965
32313061373564656333653266303062343234366534303136663032626632626430383536363635
34313062613463313461326430393534636132636235626666653830633335306465343137333666
39333537396336386135613666653566346464363066346465396332343366303133336230366164
64613531636139643439346161333634623438316439333931393031356537316134656231643338
35356666343833336135383763313730653830376330623666653331356232663761316163346432
63613935666430663362316236646238333933663234666139623861333835636231363933633666
37376563656237323939333834356534323431376238636237326561663431383063616138333163
39313739666663396536626339333565303065323830313137363037623461346662396535333734
34383764373034376666656261393536383635323838613865666461386361393662373831626534
31393735323463313134326631643936333466343134613933616435623130656266633732643734
64353134616162663135346361643461663136386638626463303138303839623263303937613835
34363130626334373831343066393536616166346436363839333931323330396234373130336566
62356533353564373666333138336265653164376364336235653932363863623437656438396237
61353030393064313162343365343932393533633763623936316265663234353034666134313561
39616366313836636238343730626663383932346461396566323734386534633238313663376165
64313738626631666633383835363232333561343535303632313538326235623862626431643964
33303432373839646131646132306531396663373838633131656332643664343334376137653230
65613434313139313865383264616238326331663634386536323465613432303630623364326161
37353930653066366336636431653931333466323763306139643734616563326163653061616134
35376465663934303163353562623162613863363532636637613762626433323932386566373832
38383131333163613736373931616262353363313631336437633765666261373335613639633635
33356639353432383866343932643666376161353536623535373738623463626562336432326364
33316262393237613437626239666139343938666262386331353537653065393534326562316335
38626537643161663633366163313464383232343365393437666430353132373131636261336137
36376331623330663735323366643931636264333463613137383537393632663166306138383231
63333138666561633837313166346461393463396666646663333937306136623037623761333338
31633866316336323865363534376666333165316339646161396533316166653030396164653534
30623465613232386366316136393430643163383533363336643934366139383061643066336437
38333038346632653964656237326639623233363339626439646465626566333437306339626131
65653435356461326330363137306137646234663363363430316134306264663537356432396237
65613864633130643135316530613338353361623466313237313032366163333932323332626561
39353633643864643663303463653633363266663034656138353463623635656465376562666266
35393131393963643830326366303331646131336664663735333466376234643661386236616461
61643834376566343438353939363835326633353534623537626131626136306538303864613364
30616538626630396166393132306133643133306561396135313765356262346362353362616564
64393566663734656431323565326233623330666336303630626137336561626533346630366531
35346137636638353463323932396564653165393533343364313436396436313833353166373731
32633435343432336633643963623764386230306637343832613633613833623361376435383766
62336237336464323335383461306331643363393761373765376133306537366665613035636561
39316563343431616266386135303634633132313432343430363430616439383335393534646364
33386564623739323239326437373937653830356461613432663430613638316533623264353239
37633333313238343237363731633237656137643436656132363966613335643166306132643538
30613931326365616238303464656432333664636532666336363764663331313534363139363364
31666566636432316139373637373437366566663131643633353730316238626237386432623336
66616432373534326434613438663966646163656666343063363030623561323239623765326461
36393637633935313431326663323531616665306162373261383966313038393132616466313538
37303139383830643133
63636166326165616363623935333737343366316434656437313837646538373835373238313136
6163623433373230326266343537306535313562356464360a343936343236393231323337383639
63303337396436333537313631353761323934356637353438393037366662613866616263663266
3263383235363962390a636535653437613465353164393639383561633732393535633731366139
38653535653564306632363865633339393235613962613430363930623762616635356637303139
38353233323639643036313864336336623832313261633333663135643734313633303337366231
65643331323461393333616433373131313434323063376233313937653134373939633735636134
61623139616335326437653862313333643833666666636336303639356261623333393661613463
32393164656437353966653662346639323339373937386534613266343765613233323031396338
61333337613865353666616534636135633133366461613334646664636630653262373366633030
32636532613230343663626463336366613037356638363266323465613065616663663131346666
34363765343066303334653634613034373261623635636531623264373164376265616633366233
36356431393465623330303734383166356235383833376531353563646339353534383663333632
31626635356462366139316563313130616161646230623232653131643335663039636235613837
32636430363266393535316539313238363237353638373533663430363234623532646264656265
32666365383033656238666564313966323731393762333565306634646465656165336436623738
36633061323837343165643232306662313931373339393436343765623364313835363133353138
35373262386562366539316635313933666331376561333462313461343730303231386537643164
31633835656331643364616234393537343966326237666335343331383732393337366339303333
63346466663765313564633932336563303138306231623235653639356165626362383937313366
37636430316632393663313964626361623630313563383338663165663961383661663733353061
61396663373433306432313862336637303631343034373730663863616262366231376262623230
35353435636537363264633966356435386262336631376566336232633630646663663433626137
36343266326462653534353836616362326632313332323361333238646632323062383866623465
30383766343639306233613235333565363065346433356633356466333961316466666462343330
37373332356232373832356363376636396439613061616139633734346138353735303861326431
35356565356165643538306439363332613538623535396239303130303138333533653037613962
33663931363766396235396164386665666362343630376138323661643064373063653434356464
33626463323466333937663366623537343763623634376361656530313865323063396638633230
66613965663262353363366432373861616164626162383939313062376361376137666337373061
33616161303736353263396137373133616637633262353730363435343961306436313462633839
38653937363135636265616131656638623135396238373132346264373237396538373031303134
65646132303137303430333832306166323438656665363838303133373065643064353134333335
65633734643164316439333032623861346532613265336536616536343632316533383231383934
66373664306135323662313463663263313838623735653233363832653462653861326134303563
33383962373638646130333736333764613461383136333435363039373562386233623261343362
33316339653732333266346338663161626536666239353862666462383938653832346438396465
37363038373836316663656230643934653966383233343666623161393331633935383631376561
36333530643731633332303135363030363761646139366332326261633535653631626238313865
62666331343536366538333438323138643864383133323039393964643832356138336162346432
65343735626433656432616333346161373931623432363831666564316261653838386162653732
31356433396233653439353536653731393138323266636565353639663939333635343562326234
65346239613438616162663632386137303337636432396432633363326463636132303061636131
38386439303930636661613331353535626632623630313037626634353038613966333439326465
64393938656161303065373834303430343765343539393333343238656139323133323539366535
62633431303938343130363862356139653862656434306562663737353837306561636533316563
66663864613538303366346437643064386230363234356634653566393235353961343436343039
64306662363336663339343562376334656563316637383666623665393462613065633533353133
35326566376461653632383634343063323662323761373534393262613565346636386661613230
66383863316338646566653761313863313162323963333061323639343061336330656264646637
66376664356331623639333330333865646164343835363533346333306262623334643235303634
64653130383538386162653337316137633432363539333161353835323964323166633537343466
34306133336162356339646138383333636630313430306461343639303963626562646532626563
64393566376163626133396665303933316438666435323535343036343138373633333539356265
31313938303265393265303231643833383266356336313461363066613833653335316664613930
64373365663161656632303263323132373337613562646461613938643831353332643835646134
39363562356363643837366366333437333737373737386261356562316561336433396636363233
39653036366332393938316535353563623037656136383832633230396138356361643366343033
38393163643930383133663261663963656236613536623461313236346332356630663332636433
30326265613639323834323365633964653764623737323266333732323862323565376637363364
66633931623735636636653164366261643830383132326630653262303364373261383035613665
39373961326437346435356131373033363032636130306233303633653731366163343735373164
36363166623737616266616564393632303539663734666663643566666236306237383665393063
36333362383538366334663832653334396339333961636236616433613963643964336634646632
62313339333934326534643636653161333865366562346462386136383662633238353535396238
30653662393934306366666438366661613139643733383763633632333666346164356638363438
39653333393534373762383762626664636632663437366639376463643832383637383234376134
63393938323334333030343533363365636233316666303336636163353161623131356564323964
65616237376633336461333436366132363731326263316530396464316134643136306162663838
35336539313739616532646332613939343832306236323964356539653331366633306133646438
31373638353836343538656265303464326237323564303562613631653535633165366237366130
32653664656336383935613738323739623164656337316636333632636135323930373333343662
65373061623837363633346230333239373030316233343731373335643333633663653736316466
63303531343333646134653338303364613035366162323165343163383433306238323934383330
66373631386461386664376161306135626532633231626665303362353264653161613662303061
65373130383335313130343263616563633738353832666666393639666162663039323565646162
32373064633065316437666237393832636361663261613830623533326335383131643661616633
35666366346663383139303235666632303338633761623430353134633037313562623166306630
39646530306566383663306534306264376631393965333334343065316631663639343734393033
35623831636234353139326633353039623033616263623962346431376164393562613337633938
66663339373666356532363734613339323833643739343061393065323531326664306235663564
33303134626163353835336636636561336135323630303738636236306332626362336439653566
61353239383632366263353335656633396530653433613834323730393833326532303634633765
63396239366239653732303365623864656463383633323930306562306537363565313330396662
61376132316464393266663932346361646430346632303339313464636564303439366363613934
36353665353031316535373536333535306236333663666264313032316132636134313933363830
31353630353636316230636139336339636139656537633336363731646433313161633932346664
63643962376136643232316135323962613366366166373166386639303262656436356134303934
35663437363865383763636338373739656264303363376132363461326562323766656338656633
37396630323130326465386339336434373265643538616165633863633936323264313061306466
38393139303437313337666632653361353534663361306338656234303432623866373766646131
30316437636333363061393932303739646563313435366338353731646461663164316338323661
37313130313030363662623131653161646365396535663365303432383964623936666162633332
33393732353337303232656635306332316638633961653731326562613337376531323132323336
64366337633062376638376130633964343632323331316530646535313737383265653266646166
36666461353631383430333066613039343261363030343737623130373763393364306365656439
63306333666265616431373433616362383864613931303438386634353233356634613761343161
30333865633766376233656165363265313463306534393534336639636232343531353234393037
35346433383138643133623038333039363139356463353930336139336335386337333265326635
38343865633133643164373338643564663265343661383032653363623162613930386531623763
36313763363536613230373931633331356235636565333962386639396165373362333865363537
66373437303236333963333161616330656635613238636233343338323165303036336139373135
66386161356461306537613033333139366232613737643362333063383033663965373835313739
63326639363064373139343262373466353332323037363737316238636466303531373962333835
31393364666231353333626231666561373261336138656539353736623137663266376465613666
35613939356361316334346666613636363663613762366133656264616564373330393838663563
33363166336232313634393439393165356334663832323761326261383634643933633134613830
65303934656131373930353339653862636364613439323065636334616431373239343339336364
36663737313566306166623834363633653732373932373738333763323230346131623635373333
38633834616661356633623237356139643230653235623166326536366239323362333764386631
31616233366263666330393466313534376133633232633738366236373565633766393865303961
62653739633564643135396538306461343062376238646566366138386232623035313931373961
66353830396539303130653831663137336363386634383263636637346335386165643836356436
66333133393762333336613961386565323762333261303637383235376134646461326135303330
61393231386334326364343131393930633333616162306436346365633265303261646533303361
37313832653165373065303834326239386635343564653665663930633337653936386561333566
33333264313236343665663738613338366431386662656431643633653939393137643964313662
30666431303031353765303536666234386630303164323835653862316461626439343830303435
66333332303730396433356166353963393734393634366633323633666364306363373961643337
35343235663566373562303861313837333664626166363231646237363131333264336435363436
37633765383461633935383032313562646336646361643463663330316237623737346439626635
32613232326462386635323539366563396132313166346661643935626362313037626337356138
37316536633931313561613138653663343531303163653661373033333936306464653530653362
30366266323934363535613932316332663034623534633031383431316436656562623239366364
62393134346238363661623138393036383962373266653461653835366462316332356632306430
30666163643231636165643036663365303065626531306630343261383536656333316136656335
30623863376333376230626164316136643337336261626430366133306665323132366132633137
66316364356338343133663432616233316537313264353666383363326130373833366264376136
62353538313535646436303364653366306332656462336163363639303533643932303963616433
36656265663462653365663535343630326161396637666435656565333366336130336137356536
37363531636634613030666138633832613064613131636463653662626536306433656565353438
35396338323162303737356362393732386564626135613232633130656537623433376338303932
34303537326162663734636561626537383636333639623735303131376535633963356433396535
61623864303934643332616239653335346564396435353466356338353561643861346535363731
65323964363032633731626165613136313763373237323638333365323835613162633739306634
62333432306335316231613662313363666530326338633861373238386232393337306365383930
63656262363462343134373130333939386234636465343366646639353633306337303261633038
36316431653664616639613939346665313138346131306537623232633534633635613166633662
65313165333334633137616436356265623935326638643134336433666430316639303637616230
37623631346664646463316538363033346439343638666633386664633137303537623166343832
34336262343861643362326662646135643636643131333861626638326231633763623865643766
63666430643535646235363339643266663430613537346636376264646331373634333165306138
34666435383536396131373839333639313431386335616664333033656161613738376465396335
35386333636439616561613230663239626266633930343239663834376335306631666663366436
39663861323366386266393130323931623136313138653534396332623238323034383461663638
66363434313337323031363331393431343532366461373436646334333132626130366237383739
30636666366466663164343133326465316533613734376330366565356562373839313062666531
62353863393866633933643631346238636261613836313236613636303365363761323734616265
38363839646465663164313436626632363438656339313937316665396639363530656537316664
35643637373233313863373663633333396164303065373434386464376166383663353037313630
39623566343834613564656562666263376563623538306366303038383164306634653533653465
35613732356363333731333034623063633561663761636462386630313239346236313665343035
37373537363561316130663731356630383938636466313166386461393939313665616335346362
37396565386230386437366337396261393032306134613933656131623134383034633337353561
37653962356535383637653666316531613035353165616261353637666432633165343135663461
62366165376166323063613739646230393538623965373634663931353565623063356566346134
39343535366362653432343430386534326562383533303736643565656463373862303166626166
39303266386633333434323265323163633331326438353138383237653835633465313631653666
64623237643230353636666231646661633362616338323733633832363337343637633966656431
34306237623133616334613462653036363537666165613861653236353061343531356361353136
36313563336361333437613336656138346237333334376433646230336430626366363036616337
35653664303165663536336138383961326235363161373334323833656561326635656265633037
63633732623065393230353764623833343234396338366662386631656631333237653961666361
66323937303632623365323831323033353039346130343136323863313335366363636335616339
65353331633366613435353263666663616634373161663663336439623730376162303562396665
36663633646134653638383662366131333266326335613838316363636166353366333562383537
65616338333339373234316665646439386430616338383735326265623463346563666232363839
65633835363263396566613831383964303238376431333664366131653163396131313866613236
64663232353364633161653761353936316266666537663563313437626137376430343234373131
66393333363435656535313634613565316330333662393339353762333762366336656638316165
35636133393032386361376365326361643035616464326434326465343463353430643461396633
34366439303333303466626535353131373538346433626531393063363438393265623865306138
33366161363134626430376337393661336462613965663033323762666265313863633536393030
65636339633862653039386364663532663866386264626163313161333233633766363263346335
33356365313830626563323635316633376531383435323962353433623161396439636461393566
38303330303136333035656464346662653962383830393034356638613431393131323836653165
37343061393131316631663732663866623639373362333335613362626531366263323163636134
39383430633164636239363536336137353234396330376131373434636630613836373866376534
61646634376162373535343562633063393937633731663366613332373833636638336466653030
35343634616536633061336232313462646461373837356633383132356464303161326430316462
37623431643637373437353434373532356637633038363639633162336131396362343134333937
30346330643265616636363766376131383061383837316232336262366233303132363564646161
32353231616263346231323061633637383665313531613130333037323339373862636334366363
63333262356665616364643066366239616666316439356232366662623139316338393365366130
36623730616437343635616532396433616561303835613633663663326535313561363738663030
38653137376162633561383238386339306430353437633261626334376663633564323730333966
34313362633262373333613363633564623732313961626235646464303933316166366137646666
32396334623632303031326538383861643232306530666530333537393032313037643037613939
31393236626233373836303339306164663238316565343930663230646238363532613562353866
65336564326635626665393939373131633632313763396362396431316131373732333433613636
39376637623534313238316261336362333538313430666663666331363934626337643964396563
37643235373633653336656561323236636532616434336663643964333535363632386630336332
38366537653230313834313930313236376632623532353765666330643237666338376237396662
35306138343634636434336339663762363665333066373430363565316634613434346564363833
38303861343961346537616166343038656164643564636233633833616433386564386562653539
61323030653930396433393663376265616236643132323636643136633937373331383234373631
39313261633937643366316533653032363465663334626465316366666534636631663830393664
33653561373437643533303130373130383333616162356365623735643736343530353966663230
38663161313064336166333736336436646533643933363961626363353165316131636536636439
30613232336637393933363163313862313764356331376663386532313639393231613932343363
31383131666438346361313732653132373164383434313436393939626164616335383462633764
65373530663566623163393732326465356163383161383336373964643232663466323632323733
62643134623964333965653036663538646138663766376533663866623764303666653932383530
63633039633438373031313034383631373461383235316530383031363931343563313237633839
66343665623238313438383839666235326238343364333231656562323235613537313236376230
66613966613833393137393862303737656164653964353865313938393635393432636333653430
31316437393437623666313735623133373037393637656364383163343166363134393431353839
35633166363234326163373064383836393734643931306162353262316261376336643134353838
64646639313532333232313761313936666136303734326334333131386530613035396635646261
39326633303535386637663430363364313234393435313765326566656638396630383934343363
39313531633034636633663739363162303435316632396133353038386463663038633435326535
62363536663730633933333733623836336663333737366462343836656637336130326461363765
33616664373535313737636261396566356239303531316535613932353562663939323263373832
38613264353938373766646133326532313132626331613437393934623639636166653032356636
36626163663235633132353336333731636464623430393534666334396539393366346131323463
31343830663031313862393734643861393730383366383630306135343732643462643033636235
65343038326534613736323235373538316632373534663032616632616430333263353339363963
30663362616131393861663763356139306531396437663333643764333133366563663566326532
35643336646331613038663536366432396338646665363036323134316536393034366435633739
65396639313965623736306238616236613565346237636337343836373930336430333264303461
35346166373665643165383339633331363265343730326632666335346234383334363234323165
34333832663233636661626366323032373734613465333561386634333438653066383232613765
61613435336663613632356563663233616231353630343035356366613631623566303964653031
61636362663961316339353137623065393139643935383739663862383965323737323433363462
34646338653131653333643534316632303662306235656362383366636266353433393265326339
38613732323862353736393166393938303062396233383034386331616239633566646535643138
39386432313037353266306235306631346635313837343361666436653461326262623935653131
61663937323231383331663934356639373138366139383032343166303837343434326263663931
38323461666564306564313936376239323039376237396334626531323732626132653330393837
36313138316437616238646566666137326363613135366336326236653934383438306464616434
37343732343661336261663964663461643464306163346465303639363264383463386137323934
31326530626238323438623837303639663638333938666361356466613066663830333331326133
63366139323162363266633836666136323630353536383736383238323866643736313135633539
36633036373230633637636564376331636430356536306630626362366361666366353531396430
32663763376135353130666331333161653138363937303334623531663366356638353633616163
33383436666562353134363163343533633933633466343663386434333561373937656163313135
39313233323130376131386439613431613164623838316462636238313636306430363839373265
32386439303933323865643765366664343839653265646235303434316534633334333964353064
34653162303564316465383836393362353330663638666435333865366338643462343736363834
36613839346563346665306339393762663738626232633232663063646461666439363564343437
35616331633439396236333662393862303931383365353338323337303362323666643761313034
39623036636430393962373739316139313435306664376564343932393135376430626136643236
62376264306134643735643463356234343935323239396630326362383530376335306439663434
39653163373036313534333434656462383335343961646537636430393865343833313436653131
36616662343938373035316661323132633865643739333334666464646662633138633737306566
66303331373065313664626661356165303138356532653362653734643861306466343538336135
64623962326135333137343963306664306430363666396431346339306463626465333436353366
36306138306135633238633763343738316632316338663331316536316637616431663035393261
32333865626461613831666435383133643031656366643665643366346136663035356634333731
32316266663664313435396631313339383631646466396238326134613334376262323736636163
64336165653066343862393435376235373861386362656437303761303039636637323830316232
31633937313462646537383630643235366264326532353235613466303832666332343739633761
36343861313163626464376431663366363230313932623833623738353039373861343034646263
35653766323237623835633065393237366138373337373130303337343637353666623762643030
64373638633638303733363864623861306438373166303737626639363036356530306535643466
34653339636635353539336663646335303861393166373936366439316361386335343736656565
38636363636330363764636364356166306530646133323538303133653430623462326362366632
62323164663132623937663433346430336162306630383537316238393830656166313165316337
65396537336432373036656634383462396165336430633936366461633030653537616339623738
38396138386666383430313936356332616538346439316135363332373033626237386261333063
61636534383238666264346337303235663761656637343439353238323238306563643164343938
35396531653265643561653862656232363738363836303362643432623362376332623363366235
32656530653664316465363530643863646535656565343366316165316662316562313735636665
35363263623938663835396462653036646561626462323961306163393735346261313437613735
32373733636639333931353334346239616137393335663239643031323831383261383034663932
37353462646462323931303466633630313531313366303130326366326433353436393134303035
35363131353439363432313237376338333734646266303635623562636331663932366137373563
37303261653036616462386230343637343536616638383232656637356562376337383234326662
33356665663632363130383137323563373132623633326362363536363462636133643233643233
37356634333262613335363065633065383164653266353330343936633762646332633632363532
66643330373466626362373431353361306162623266323532643335386638636162653230316263
61656161393339643031366263643466353866373766383136653461353434373736626532636561
62646434613939653037663365396634643337663733376161326564653966366462323630306666
34623939616135396634366337303964616539343130623134646634306562306237323830623934
38633563633038656138333338623061353337386365336339613266383034303166336361626665
64646235396661636134633864663565353431373336633934363466326262346532663434346463
62363462376638666333383661386137333937356263336563363061363066616465643166343866
37376131386365313436643633653761353436623364656136316364313864393832353462663432
38623462353633303661363861653530366136373432313863633439343739333761636131663832
30663331333763663039623830653561623436336233643134353730636133623363393063643664
37396238313662343933636132306235393466366562393238653565666461613161353334666464
38643762323832616239363833396235376436323732346165613834353031363566623361616365
31613832633638333336376334373961663564633464616466616533613438646435653566626462
33336463313230333639633736663838613961323266316633643532346165616536376331666230
32323830386532373738613631323462653939633763386232616461313831386232616138626530
61343136336662646134326639346338333164363633643434306362626164663634613937653130
33316537343666656564303035643164653762613834356665313731616331636431356163366437
31343961663832643364663138666262663938333032343039643131646331643866633964336132
65656166393563366531353066373165316338663766363764343936646435623638343963383632
66303336316364663434363665343830643531633238663765323664633539653531346234373234
32326566616335346432383731366665616261343564343038363434326633316535336436303565
39383031353864373135653538613832663135653631346235353134383834643135666661666634
61336636613530633964623036643834643336373463656636323739653634663735333835303337
34663836343130353765623538633564373830303237313233373435303030323435626131363165
39356439333063323935396336646134656639363732373937376264316435633936633633653766
36373837646566616361666330346362663664636131333264346134663237376263653863313062
63663831636630343130366630333264666562643531356230363661663536346664623166613066
32326235303266333964313735343166306532383930376239663830303537366366613363643266
35663031663130636233383333306536396434386266323366396563356565626530316564633861
32636431373138633433383535656135383135643066653634323134613866373263363532336331
62363163373735303532353432656430306235666166396566636637316233623733646137383764
39646461633963666633313634336663626635346134353833623466303862376435323165663230
62643033366431313064636134656535356261373330643632396635663030363338633463383564
33393436643439333862383834623433363536376431383862353537663934646232336338616531
65343863376238666636613037653836343637656665303836663530626631393837373336303137
33393863316266393463386366653937393661633364633537373364306336373763383564366233
36393438303761663761333861663665353437396161323364333165656264613838323232663164
62626235306135633436383238656132373565323935303762353733363162386639393835373161
64613635326130343130626631636334633239373835386235646463343839333063346139363635
37316366653139343635303664383135613338366235343539323462626633613331386266343337
32623262356165313234333834383362343562323630613639653531353432326562363661303530
66363034356531376536

View File

@ -1,11 +1,11 @@
$ANSIBLE_VAULT;1.1;AES256
65353035393530383161656337303732396239323936366661316531633130306533303961323661
3965383136626362333838386138333034303766376139360a343038663133346561363636613161
31306331623338666264623132663563356265323535653764623165623539363965646330306234
6337343062343535620a366631363130616330626232343737386432623262396636646162656463
39303839313461643365396261613666393065653231346237396164333734333561613163366362
39346530323563333364316331343832623138303339643037373131653065323737333433366535
65386362323232653935353561643066336334373937333332353435306331363265636265633638
66643534383262653632396364326234656333623432303964333866386639383331666132643865
30393435376662383635386264636538323236663832613633373635303865396266396161373561
3135666134323834646432383663356163306433326133336430
65323534643665343837613333383136646362636437323835656162343664663533643339306130
6334343934663431666131346464326138373963376562620a613334386338633066633633666261
39333137613039376532613361613337383834363666336637326566623133336562616435646337
3331613532663337630a376337656365616366633461356563333533316331376634303332333739
63363765386330616262393435333237386164623633306666323038643236363236336562633664
66613462356138323632303261336138346361616263313634306366356139313665613231623531
61323566323136646161343165663062336532656366653239356662373336343761343834306634
65623661383164656163303466666230646565666665356537623866313836326366386465376663
33323765643034626135396538343534383732626235343535343930363032376131663239383232
3134626261323131346635306334343431656466323165366532