Restructured roles and added smolboi
@@ -2,6 +2,7 @@
|
||||
./helpers/get-passwords.sh
|
||||
|
||||
ansible-vault decrypt vars/bootstrap.yaml --vault-password-file ./.passwords/vault
|
||||
ansible-vault decrypt vars/vault.yaml --vault-password-file ./.passwords/vault
|
||||
ansible-vault decrypt vars/bigboi.yaml --vault-password-file ./.passwords/vault
|
||||
ansible-vault decrypt vars/smolboi.yaml --vault-password-file ./.passwords/vault
|
||||
|
||||
./helpers/delete-passwords.sh
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
./helpers/get-passwords.sh
|
||||
|
||||
ansible-vault encrypt vars/bootstrap.yaml --vault-password-file ./.passwords/vault
|
||||
ansible-vault encrypt vars/vault.yaml --vault-password-file ./.passwords/vault
|
||||
ansible-vault encrypt vars/bigboi.yaml --vault-password-file ./.passwords/vault
|
||||
ansible-vault encrypt vars/smolboi.yaml --vault-password-file ./.passwords/vault
|
||||
|
||||
./helpers/delete-passwords.sh
|
||||
|
||||
@@ -1,11 +1,16 @@
|
||||
#!/bin/bash
|
||||
# TODO: Clean this up so it iterates over the vars files
|
||||
if grep -qE "vault_decrypted: true" "./vars/vault.yaml";then
|
||||
if grep -qE "vault_decrypted: true" "./vars/bigboi.yaml";then
|
||||
echo "The vault isn't encrypted, run './encrypt-vault.sh' before committing."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if grep -qE "vault_decrypted: true" "./vars/vault.yaml";then
|
||||
if grep -qE "vault_decrypted: true" "./vars/bootstrap.yaml";then
|
||||
echo "The vault isn't encrypted, run './encrypt-vault.sh' before committing."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if grep -qE "vault_decrypted: true" "./vars/smolboi.yaml";then
|
||||
echo "The vault isn't encrypted, run './encrypt-vault.sh' before committing."
|
||||
exit 1
|
||||
fi
|
||||
@@ -1,2 +1,5 @@
|
||||
[prod]
|
||||
[production_main]
|
||||
bigboi.zacke.xyz
|
||||
|
||||
[production_first_backup]
|
||||
smolboi.zacke.xyz
|
||||
|
||||
45
main.yaml
@@ -3,27 +3,36 @@
|
||||
become: true
|
||||
remote_user: wholteza
|
||||
roles:
|
||||
- role: bootstrap
|
||||
- role: shared/bootstrap
|
||||
vars_files:
|
||||
- vars/bootstrap.yaml
|
||||
# - hosts: production_main
|
||||
# become: true
|
||||
# roles:
|
||||
# - role: shared/update
|
||||
# - role: bigboi/users
|
||||
# - role: bigboi/network
|
||||
# - role: shared/avahi
|
||||
# - role: bigboi/nginx
|
||||
# - role: bigboi/ssmtp
|
||||
# - role: bigboi/zfs
|
||||
# - role: bigboi/zfs-zed
|
||||
# - role: bigboi/samba
|
||||
# - role: bigboi/sanoid
|
||||
# - role: bigboi/powertop
|
||||
# - role: bigboi/apcupsd
|
||||
# - role: bigboi/libvirt
|
||||
# - role: bigboi/kvm-homeassistant
|
||||
# - role: bigboi/docker
|
||||
# - role: bigboi/artis3n.tailscale
|
||||
# vars_files:
|
||||
# - vars/bigboi.yaml
|
||||
|
||||
- hosts: prod
|
||||
- hosts: production_first_backup
|
||||
become: true
|
||||
roles:
|
||||
# - role: base
|
||||
# - role: users
|
||||
# - role: network
|
||||
- role: nginx
|
||||
# - role: ssmtp
|
||||
# - role: zfs
|
||||
# - role: zfs-zed
|
||||
# - role: samba
|
||||
# - role: sanoid
|
||||
# - role: powertop
|
||||
# - role: apcupsd
|
||||
# - role: libvirt
|
||||
# - role: kvm-homeassistant
|
||||
# - role: docker
|
||||
# - role: artis3n.tailscale
|
||||
- role: shared/update
|
||||
- role: shared/avahi
|
||||
- role: shared/zfs-install
|
||||
vars_files:
|
||||
- vars/vault.yaml
|
||||
- vars/smolboi.yaml
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
## Installing and running
|
||||
Prior to following the steps below you need to set up the ssh agent to work with the gpg key from you yubikey and also the `pass` password store.
|
||||
|
||||
Prior to following the steps below you need to set up the ssh agent to work with the gpg key from your yubikey and also the `pass` password store.
|
||||
|
||||
1. Install the required packages with `install-requirements.sh`
|
||||
2. Run the playbook `run-playbook.sh`
|
||||
- The script automatically fetches the required passwords from the password store
|
||||
- The script automatically fetches the required passwords from the password store
|
||||
|
||||
The playbook requires the user `ansible` to be present on the target systems with the yubikey ssh key as authorized key and member of the sudoers group.
|
||||
|
||||
@@ -12,6 +13,7 @@ The required password to be set on the ansible user can be found in `pass wholte
|
||||
While running fetched passwords will be placed in the `.temp` directory. Any script that creates that directory must delete it afterwards.
|
||||
|
||||
## Making changes to the vault
|
||||
|
||||
The vault encryption is managed by `ansible-vault` + passwords from `pass`.
|
||||
|
||||
Use `./decrypt-vault.sh` and `./encrypt-vault.sh` to make the file into clear text and the other way around.
|
||||
|
||||
@@ -1,13 +1,3 @@
|
||||
- name: install requirements
|
||||
apt:
|
||||
name: avahi-daemon
|
||||
|
||||
- name: enable avahi daemon
|
||||
systemd:
|
||||
name: avahi-daemon
|
||||
enabled: yes
|
||||
state: started
|
||||
|
||||
- name: ensure ipv4 ip forwarding is enabled in the kernel
|
||||
ansible.posix.sysctl:
|
||||
name: "net.ipv4.ip_forward"
|
||||
@@ -43,4 +33,4 @@
|
||||
when: netplan_config.changed
|
||||
systemd:
|
||||
name: systemd-networkd
|
||||
state: restarted
|
||||
state: restarted
|
||||
|
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
|
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 292 KiB After Width: | Height: | Size: 292 KiB |
|
Before Width: | Height: | Size: 62 KiB After Width: | Height: | Size: 62 KiB |
9
roles/shared/avahi/tasks/main.yaml
Normal file
@@ -0,0 +1,9 @@
|
||||
- name: install requirements
|
||||
apt:
|
||||
name: avahi-daemon
|
||||
|
||||
- name: enable avahi daemon
|
||||
systemd:
|
||||
name: avahi-daemon
|
||||
enabled: yes
|
||||
state: started
|
||||
@@ -1,5 +1,4 @@
|
||||
---
|
||||
|
||||
- name: Create ansible user
|
||||
user:
|
||||
name: "{{ bootstrap.user.name }}"
|
||||
@@ -9,7 +8,6 @@
|
||||
create_home: yes
|
||||
state: present
|
||||
|
||||
|
||||
- name: Add public ssh key
|
||||
authorized_key:
|
||||
user: "{{ bootstrap.user.name }}"
|
||||
@@ -23,10 +21,11 @@
|
||||
group: root
|
||||
mode: 0440
|
||||
|
||||
# TODO: remove?
|
||||
- name: Enable myself to run sudo without password
|
||||
copy:
|
||||
src: wholteza.sudoers
|
||||
dest: /etc/sudoers.d/wholteza
|
||||
owner: root
|
||||
group: root
|
||||
mode: 0440
|
||||
mode: 0440
|
||||
5
roles/shared/zfs-install/tasks/main.yaml
Normal file
@@ -0,0 +1,5 @@
|
||||
---
|
||||
- name: Install zfs
|
||||
apt:
|
||||
name: zfsutils-linux
|
||||
state: present
|
||||
9
roles/smolboi/network/tasks/main.yaml
Normal file
@@ -0,0 +1,9 @@
|
||||
- name: install requirements
|
||||
apt:
|
||||
name: avahi-daemon
|
||||
|
||||
- name: enable avahi daemon
|
||||
systemd:
|
||||
name: avahi-daemon
|
||||
enabled: yes
|
||||
state: started
|
||||
@@ -5,7 +5,7 @@ then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if ! grep -qE "vault_decrypted: true" "./vars/vault.yaml";
|
||||
if ! grep -qE "vault_decrypted: true" "./vars/bigboi.yaml";
|
||||
then
|
||||
echo "Decrypt vaults using './decrypt-vault.sh' first!"
|
||||
exit 1
|
||||
@@ -13,6 +13,6 @@ fi
|
||||
|
||||
./helpers/get-passwords.sh
|
||||
|
||||
ansible-playbook --become-method sudo main.yaml
|
||||
ansible-playbook main.yaml --become-method sudo --extra-vars "ansible_become_pass=$(cat .passwords/bootstrap_become)"
|
||||
|
||||
./helpers/delete-passwords.sh
|
||||
273
vars/bigboi.yaml
Normal file
@@ -0,0 +1,273 @@
|
||||
$ANSIBLE_VAULT;1.1;AES256
|
||||
35376335666432333866653663343033386537666564333133353061646465373735623363623538
|
||||
3932393836653034323833383935323263626363636136340a313136336436616334646130363938
|
||||
39653762336430643161373366353561383261373663666538323334623864656463363066616532
|
||||
3830303134623231380a336463313233643565323365396536633765656132616263373465343461
|
||||
35393230663538616265616439633338363537373864633732316466393561323061303162623232
|
||||
62346462613566343963653238356636383631626438306464383632363037653961383733356264
|
||||
65396535326335313933353463303462346334303066646465613736396439653430336135353965
|
||||
38633135333931633333333739393037663566393033323839303264336135343930306539303162
|
||||
30383738376631666338393432313364306637396561616161653862353236313063353430373537
|
||||
39356662353562356535303930376464336431626530356266313465373365653232633737313839
|
||||
61373033316265623330653364623762303161306638363038616264383832316533366638396232
|
||||
66313766373165623537323132396633646363613737663738663433666535363336613231326637
|
||||
35643330613163376234633332653732333637363531326465343431393132653061343263356337
|
||||
64613834396462306432326339336439666163306162363139383938653336313264643563623965
|
||||
36383862353864353561303661633936646635353966353262386264303362306362656133336137
|
||||
31316666623365373431653566613638653663346563356230323632383461306632366233353738
|
||||
39616435366132376230396237356634633433343963323836643736343139636130396639613036
|
||||
31666663623132333636306461396435666632643939356339663039666362646633656338656361
|
||||
35373136383432633939373963626630303136663963333430653131646461346565383430663863
|
||||
39636666336539373266343836306266363930366636653862303831643962383363343665363562
|
||||
34343562646565326338613664376639303535626563303139636531336165333031656635383132
|
||||
65666633666530356239623239366162323631313137646237663561363635613737653464386464
|
||||
32333265303065313137663833373838373239343261333636623731646137343539636264303837
|
||||
39656437373838636566333865313735346164393765633239636636363435326534396361653433
|
||||
38396164326637363035636230646239343063643137616535323132643832613766623134633830
|
||||
64316464323463303831363463613763366133313439623866356632643736663731646331313161
|
||||
33353435636133623634366532613163646663396432653365616134623434333862663233643030
|
||||
65316362636534633931306330646565663032616633646530326662653231306132663937393339
|
||||
30616634656434383961303030613931316531643762306339306161326462343632393865386664
|
||||
38383832353733386564326337393165626164393864623332303733303562626434393530623038
|
||||
65336162386131623831306566653235356135353564356439383363623435383637623636633133
|
||||
39376232346237303937373865343561626430656631373262386232616535613333663837326339
|
||||
30633032383864313666646365323266396564306333373964633432313331663239613836333062
|
||||
36313630373361666561333839383265393262343762653866393566303736633566623836356234
|
||||
31623264653234613030383162653737336263353166633963613564336135623237346537313733
|
||||
34663261616432363138313236636238653762366437363736613336303732333839323533633334
|
||||
63656663383763626637393531666636396665356532353633396532396365393961643433323735
|
||||
30666133313133633137373065653365373461643438353464323161663732333866363564346366
|
||||
65383566313239633935326366616437313630626438633532373035343535343432663834363433
|
||||
65333135663538643831383461383337366533633430343461623661666135366465343737663565
|
||||
33306165353533343264326139626461646232363138343631373530323361303938303334366338
|
||||
61323566643036643830373032646633303137626330656238653731663437366561366339653032
|
||||
34616134356430663935373561393437333035366264343966346631663235323134316539333363
|
||||
35316432636436333265656230623466353339633231633330623662313536636465653039643136
|
||||
66343732323637343966653637303735393332323039656165646534363063346536643962313239
|
||||
39653136343835393265366132643937623435393563653932653639346266663531613263303862
|
||||
35643330366366326138313161646437623938316234343139623139333763386563363862353232
|
||||
64643966313962323165323166633435366539613061383361663137383862323961653636313132
|
||||
33616436323430656332663437366562643632313638316239643935636535653938353732616530
|
||||
32396131656437303962366636636462353463613634393435656531343163316635343631623130
|
||||
66623866353030643963353236376564623365396561323063323562336664633063383661396531
|
||||
37383530343335313964313139636431303061616465373235623966366135663865336539396630
|
||||
30653365333264353134356230383137363133653861396531333831393039633165346336616365
|
||||
30313631623061383766386537326130643061393932623033336532376437663432633261666466
|
||||
65373933383163656430393938323230393731626138353064316131613631306539346138663662
|
||||
31326238333135343839656265303161353836373263396334303632643039653362313165363362
|
||||
32346531646462613434666462613966653237653366656163633930633764666233363539383261
|
||||
63376464383130653166366435363238623233336464636562323532636235333461336539326336
|
||||
36373265383935666433316236366261303764646138346232386162646534633166656434333161
|
||||
63653433643564613734623436636565336130383361653135333331363437626639643838303236
|
||||
37323333323033633630303833663737653762363238636464303066316137353533303939333664
|
||||
33656235623961666139633366336534306461613666343235643030353235346261326234656136
|
||||
62336466383033303735613235623539633862316263646666646634636464643939623739386663
|
||||
34636662363763656332353532643063376331656536303731386164643662623061333062393161
|
||||
64333932616462623133666537396365303262386430383534303464303365626132313635636438
|
||||
64616333326138666362666265646433393139353562633865316237313938386131353037653232
|
||||
34613262633138663339373439653164636532636430373637353161616234353133313964386266
|
||||
66623463623736623531633738666263653561386561616665326365346638653563666161643764
|
||||
36306666626139353839306634326636613535333539306362396161393738343563303131633031
|
||||
33383539613761333332396433613565646639366162623436353466383430313832353461636665
|
||||
64313837336466353166393734663961653763356638656362656634306237613535333064633735
|
||||
65313734363962613161633263376163376332396239353264393032356564393265663366396331
|
||||
65626237336539616334306432316532613939333736643939316430366330666335613034353562
|
||||
38323438323432343239343433396538633764386464373462303135333239663337383262373733
|
||||
35633662306435393431363966333934386233303936636636626562333836643839393134313932
|
||||
32323137653237353438313963393736326432333930373465613664623039313265313638343836
|
||||
31373262353731326565653033656236376335343364373337643235323965373338343661376464
|
||||
32653062306431656439343133303465323738373739336164313765303163316161613164333866
|
||||
66343864303933353031303861623136623635656664306433663662323934313035356433656230
|
||||
35656437386539633234346233323062303836323861393538613266353762633835326630336131
|
||||
32363137303164613134623163633661663438663561633435346565643734326338346539363466
|
||||
34656534653934366366313839333533663934646462363639616564656266393437633830343764
|
||||
39653233353532343465336364396630316566653330316665386666373733616664663130316366
|
||||
36623635373637356564383066383162393932303934386361316433386363663334323433306563
|
||||
62643665376465313766393564643834363030313638663030633132653839376532616463343765
|
||||
33626366343737666635623030306439656134616339376231333436653865336361383764316365
|
||||
35333962336566656332373262616164633962643937363262356562386161626133326465366138
|
||||
30383762303564356338313936303565646436633164316132656338383934353030653332366635
|
||||
39636135653637383036653536376362383861313630326331633535366465393961306337326230
|
||||
62663232653630633530633836663135646230376531353365346437363832623033626562316438
|
||||
63336635653638623530663264636635636636383365613662353838636532313831333438376364
|
||||
64386138393731326562613863343639333864653839636165343630396261616565326336633938
|
||||
32613135616534333933346234313034666639633266626436633032363135633836306334653331
|
||||
33356663313834623764303064323132643238383365626261613865313439353037393338626566
|
||||
35353232396236326630353230663962353038373564613739653433333931303131343430333138
|
||||
32646362373665313262636136616637666566373963323438386139313637353764363761353237
|
||||
38636339663832336434333231623639376538346562623136313062316462623266633133333765
|
||||
33323365393431383434666237326332636161656135333565363964626166313038366539643463
|
||||
39653533303933343038613062366163306463333632323037663531323563633364356539643936
|
||||
30363135383834376337353239613764333931313634666332376637613663636664343662616365
|
||||
63343462653230316436626166363630653835376136343162663639663162356430333234643466
|
||||
31303063643563336435333634323863333832666137383061616238373439333735343438663330
|
||||
64396135636266633338626330636362623566653931383737343633303338383837616636393339
|
||||
33313931353534656238366135663839643838373433393234656634646632366464666433353037
|
||||
37636535646137346633313262646336333532646637383832323333366338343332373562623032
|
||||
66333565366539626461336138376332353765313236626636636637613632636436313462643134
|
||||
38373236373065656265623364323666323334656531363331363037663363313466666536323466
|
||||
34663231306262633132346136313163646561613565326431396438633863613335653430316265
|
||||
35623430316430383034646531326137303634343531616466383064363837393035646531343661
|
||||
65333462383030333666373534353937623636303531326432356138353332343735336634653362
|
||||
36643332346333333430656239393361363763626630646338303665393134633832383031393363
|
||||
63303032616139396337363132333863396439356164323537613537383634623438613831386461
|
||||
63353065303635623135313139303034303461356639313561643063343536633865653434663135
|
||||
61333539663364623334353366616161353737353833316561623936333934633164316635366437
|
||||
36633233303465653036333438336430316464333262356230633437643637386164356532623162
|
||||
37333730356263336139646661303363373931333632633561333031333934343161343739636339
|
||||
38636563366434393835396562653034623264333739663864366433396336363364336335373134
|
||||
66346364646166343833653130623463663662666336313566333932313030303238313764653964
|
||||
30373761303964653363643062643135623430353765316235646361323934646461663639346362
|
||||
61383432643936393863323530633839356665613235303162316266613133613762363737333236
|
||||
62346236383635323737376466386361656134626465396236326666353736363039396463316634
|
||||
32373134353530363061383062393262303231663963643731643662363834643634323261383731
|
||||
38313862326463663135663164306266313963323537333139343436613464643364373230656334
|
||||
37343364393062353666353730356532393734373133646431363430353630633565363032373330
|
||||
39346233663764326565613964643636396362626163363035373332626432633461646537653330
|
||||
30326538306435343064626534613035656465633830363461663335333564313063356338356234
|
||||
36306539333363346435643664616236326537626632646434393435663936643164656636303632
|
||||
38313066393265323032363636333465336164613361663037353336383835393265303731343537
|
||||
64613736373335643762353661343038303433353034396464366639326638326331343531373365
|
||||
63616165366134363065366564313533306538316564643564356531346532616133633064363565
|
||||
39666136303933336666396166646435343733333537656533353234346563343038633935663664
|
||||
33643863363930633562353664636261313963303663316331353962316635393663313963323239
|
||||
30643764643433663363383033663338356338613564623134393664356462326462303966363734
|
||||
64376563653330613436633933323062663361313231326137363436386131353361353732356437
|
||||
61656533353162663038383365613265373036633965343932313234373430386635623533613839
|
||||
61623930333836353263636231613837643739306637653234393764326430663735303038666136
|
||||
36376432653136363262393966336563303730326131333134336534386566376266626438303839
|
||||
36636637376635616139666430653936636534363437666133353231626361636163616138336664
|
||||
32333133626264646537343361306662393461376366383231363064333335623465613366663937
|
||||
36633237623036306661626436616237343765663032346538336535366439303138633561653030
|
||||
39656130386663653031623334366430366137633565393836323864313839633936373533393931
|
||||
33656533666361356631646362626331356234646338303865363661303465633566383236623963
|
||||
39366664333262333532376135323566613336616661656138613962326262313365623466393435
|
||||
30386235623331356135386533643661383464373839613736343531666563316565383537653863
|
||||
33663539386336663364633336366462303566353530633338626631303962343332386133333637
|
||||
66623261313466373336623336393263373634316564646132356234333837323831396436643664
|
||||
62386436336534666561323237343465623730653832633731633564613861313238613535613632
|
||||
36643463343364343038626435316436633561376261323639643666653636366531313965363964
|
||||
66653236346137663039353039383331316335316165626562313436346337323439616334343364
|
||||
36653435343839393663346230653765653666666530333434653536303732386133363734646534
|
||||
61303563663263653539306335376533386135353633613239353835353935353864343134663035
|
||||
36656666323737313831333136333134386334303733636461633236363764626232386333306565
|
||||
64356133303139316538323935303433373433383033323632343235313461656434623836666239
|
||||
39356336656635643330383666373031316164323334303430313361333130666238356264393339
|
||||
36353161373237386339636464363231643264366663346536326166656433376431363163396161
|
||||
39363339626631303632323138623631366136656337663033633532646562626138336235633135
|
||||
34323665653332326362316663623465376136346463356265633062313162326534653933663766
|
||||
61646339653136623534393465383666613036326363353434623665366632383836373733383964
|
||||
35643633373630636430366264316531656130646466343634363030613563646136613336306138
|
||||
65613766643361633765656230666433323230636130353561383236653731363662623230633536
|
||||
38343237626130396663313235373537356230623661323466376332643935346635663438663231
|
||||
31316230333534633036313866643139343630373732626363383337303263333261393265313930
|
||||
31356532363866353734313061356134396461323766336638343162336265626265383637396561
|
||||
63363338383638343261396363346639343831396161633064626534653062363031396636623066
|
||||
34646464323366393737633737386536343561356235376633613336316361356361643636363038
|
||||
38303035313063313731323266663635366365636165653664383164636136623462643235366139
|
||||
36313938646437396433376237313934333936643661366663613236623539626263613131366364
|
||||
63636466626635643566306135343665653063363666666165353932653161653732653136323437
|
||||
61613064633934383662336235326461393764373361656536393464353333333131653961323936
|
||||
30373466383262366135306134386235323332643932383638386361666331363232363633653737
|
||||
36373164633636613765633930336163316232363535376563333231333166316330633734356532
|
||||
37636639666434316666616336326630636434326339393664663830346332653766633964303931
|
||||
34323736333132306538393533616436643238313561393330383831316132383532323434663533
|
||||
37343463343265653864323062323463343733623536616639623464303731323832633132313365
|
||||
31333732663235373263326463643339313633386531663837613964313161363639323862333330
|
||||
33306239633434343864613735313664346238613738303639623265653332363738366439613836
|
||||
38656261313735663837353837643365623566306231366535343065616238326336616261626262
|
||||
63393334393131613530636231643835636137313165343836666134353834626164646662323935
|
||||
36316637313765626465643766633936323332393463353862643930633161343535306361323633
|
||||
36303162353737636339326161323331346236323639343230646233323965376538396537363136
|
||||
66373361653766616666613037623931373165623739326535366364323661656334633663626363
|
||||
37363832343066333838356138343663333235633438383336653934613635366531316664656165
|
||||
63313438383562326164643136656533353666666630373765323232373536633266333636303236
|
||||
32356135316338356430373430356362313139303561343332633734616634373734666439623939
|
||||
62373235346532343137663639666132303034393164363236326466643166343035636162393865
|
||||
37666232346638346130303131393335646239636631353065646534353130373435633564636462
|
||||
36633366636337313933343237366336663135343666313563353334303135643662376632626265
|
||||
34613436346538653761323663343533323939323731323662306430666231383435663838303531
|
||||
66643439373830336464613839346564393634656431396138336164346638393361646536643666
|
||||
37336433396638616334373963656333633865313766383733376133386461393632393364326539
|
||||
35333136353461666535396461326335636433663430396534653961336261623930386564383837
|
||||
36376232643035636236316434633363336630353035353232343732666635383030306664393266
|
||||
31303134303832363439303931663064616163393234636564323439663930346430656637616331
|
||||
38366436346239613830356639376332396136646239383335343064366637323762626536366435
|
||||
63643431376334613936656363653531323734353434613639656666363935353239626163633464
|
||||
66306662303035643063613665623966383363623365616636616630383739396630343935306633
|
||||
35353531636537613937623139653261356162346638323239646431303736636234373737353063
|
||||
63366333303237653230636662656666376463366466316365303537353263623632613734663566
|
||||
33383634346334643634306561663133613633363035306539303437666538626135323934653436
|
||||
34613562643235386463636635393463366435646431303133303161323864663064303866346630
|
||||
64666139323536343865396238363530383166353539343062346130616561616136323332383064
|
||||
39366136623463356365393231386431636563383239396638326333393061376530613137326232
|
||||
63336639353232626136313761303465656264656538306662386236653732316130626237376433
|
||||
37363437343266663939656431646634306232393736376234626539663063666661353662333038
|
||||
61386339653765353365636530316139383031346436346463616636633562326332623232346665
|
||||
35313231663334613365343538363134303263303835323164653639393332643764343564643937
|
||||
64323934313664656332363162666130653535346666346663623230323865326336316430626239
|
||||
64393832623263653364383933633238656635373665666437663363643039376163656362343263
|
||||
65616561373365643462303965663664646339633864633538626435633935383833376132313933
|
||||
31626364323439326464343539306431663436646666336130346638353333646465353536633936
|
||||
30616134613966343264343339623636336535386338376162353133633531313039346535383933
|
||||
35393137643436363636626534373962323438656461393662613262303462613235306133656632
|
||||
64623931343964303634323765656334623032643064643632643363653830376432373637363861
|
||||
34386230633339623135336265363733376139383730646237336662663565646636316232386264
|
||||
31363564366366353434376137643933363161386137313037383736636437633031306561616261
|
||||
32303562393439313965623163313766336231333861343662643430663462613632656464386562
|
||||
32656664333036653033653432636432346432306334623330326233306635643563613865333963
|
||||
61656236623434646639646139366335613162336631666564663835313336663062393930333162
|
||||
62643934663431346537656161636562363337613463316634396564353738613231363862323539
|
||||
61666564653362373166653538373334383734313964353564653334303438623966343664343631
|
||||
66656630336435333333643437653932636666623733306661623030356434643065633938363861
|
||||
35653134646136343161323536653434343035366131643662633239656662346236343035396133
|
||||
32313931373130323731353763363239353136643435653762346465636630653839303733613531
|
||||
33306630356562653561353063656463383434303433643161313036346133613932373939623064
|
||||
61663364303630336635653235633465356630613133366135363131626138353636663839653333
|
||||
31343538633662353039653233336463353631646438383332656436356566313335353238316261
|
||||
32396235376563363064373566663662616533343335383931346263343839356437383466613066
|
||||
31353630323834343062323332663236303165363930326534303034333931643362656333656165
|
||||
37346135646262333532363164623732376138343762326465636466393365383861303761393039
|
||||
33316236363364353261313863306665343061313934303264356334366534653437643535326163
|
||||
33303031346636663434396364303530343734333565353230303166373433383563303630303261
|
||||
65306330643233313764346636306236326435636536656630316238396561363431323966306235
|
||||
62643138373530303639643630396637343238373338646637326338623636373566303631326433
|
||||
63323763326133663662336135663830353434616162333231343864653333356662336431333164
|
||||
61396166663866626366633932383335613063636538666434626362313165316136316363386439
|
||||
32303461393138343438303162306462643436326338303563633765383137633661646637396462
|
||||
65326462326634646366306232363034666666656364356130343865313532353665646239623861
|
||||
37346638343261623961666539626338306435316338313464646134333539383138626335666231
|
||||
38373936333661323963643338656435376262363363643039656439653361366261383034393835
|
||||
62373061316561343863356338663565303366323137366531663632343939613833363238643762
|
||||
63376466333434396266353564643937303636656432383834336562343534653461386338366430
|
||||
31386164623630646634663238356662623430363430386237633163613164636630326331363962
|
||||
39623632636362366662376535636263653662666265336238346431663832636533616230376337
|
||||
64663835623964313131663533373863323431383966386239306166656137326537363562396633
|
||||
32636262353265613961663732373134653332646138336535323034306435336639363461666335
|
||||
37336461313937656432613836313536636365376437353535343833313033313764613633626133
|
||||
64323538666465616436396264393837306165323735316461323736366132623865323266656363
|
||||
66343264326535636361613439346331666236386463383461393965356166633365653937396538
|
||||
62386565393438386366386363623437353062303366396363363963373563396464663162323038
|
||||
61303336653063656332333866333130633338366533323133393566333834633732666262613130
|
||||
63303837343331356333393236353464626464393238386163333431396435653862663861636533
|
||||
31376632656233616435633934306438326363393630363239376632633136383832636533306461
|
||||
30643639636263353930646164336364663031626630613766633437353535356238346361666666
|
||||
38363566353230613965396133353631356432376632656230626166393334616234616663373337
|
||||
63363838653862366439643237383730616563633336356339343936376638333833363039356161
|
||||
30653365393030333565353239346630636532306430613136373863393436623938313838346638
|
||||
32393363313438613263316531636361373434326463643236616239396565663736643563633139
|
||||
63336563326634353435376433663261303030626232636266626662326334323063633530343932
|
||||
65326538303162363532663634636664346638373439303834616564653032613234663530646334
|
||||
33626330373838353333633536313334363136653431613133613065656236356536663734346135
|
||||
64666565646238393932386666663939373936656664626462613737323238663338646635643331
|
||||
66653238666439383165353365303465303835303565633330356335653931393566356439356532
|
||||
32623965356166376264306138386434653932373564663666323062366162356537386235376336
|
||||
64383537333934376539386236366431303639613164306333623238646661336333343539653266
|
||||
39343162363161333134356366373362626165383436623165613161373663336264366339633936
|
||||
66656566643932306438386462356264393835646539626266653563346338306161303934643830
|
||||
31653962373263353937643530303466373237393663613336663737343737316665666138333461
|
||||
65623764323264373338376664616164396137646435313236366239663663326133633035303733
|
||||
33613763633765636165396133656262386562396166363165353361646132363931326332363138
|
||||
37343930303834376161623438633730346439636137336562356336656662376432333165373163
|
||||
61323635626238353365343537323732373864363138333538376466383365346430333662653365
|
||||
33316534666634303266
|
||||
@@ -1,37 +1,37 @@
|
||||
$ANSIBLE_VAULT;1.1;AES256
|
||||
62346139376334306666383835383033613132613836353937373932376235346231346664363866
|
||||
3435643635666236383963333437303961323962306437360a323239346333323738333361303565
|
||||
65333765336233633537353032663230643434336462336439343534323039663838616335653630
|
||||
3061646334326231610a613235366465393662333638383432313932326534356365363438646562
|
||||
31333235666665396139653061653061663063303531316635663139383939396538646263646234
|
||||
31613564383835396463636133323136643038656634656132623864363535613361333331656364
|
||||
38313436353366323132393233316161623866613066643232333564306461323661373661303932
|
||||
64623938336363393663643666363664316235656166313738376263663731346436643431313063
|
||||
36323063333562306161386666383036306163616239383332383032396664396130343362343062
|
||||
36643639383931383433386165666638306132623764363636383566303236303033396662643437
|
||||
64633936663731386232666531363936303739333532326466383335313536393564393931646535
|
||||
34306136643730626630326332356264623638303933313536393631323735326564663866626437
|
||||
30633863653430386363383939313337333761393261633863346465373463333337336263323363
|
||||
35633335626433306566333966643239656339323232376538323965623530313532643264363936
|
||||
61663535316337323164333661363232306635623636353636306465356561363930653461393563
|
||||
36666131336564326132303366346333373761363364623735386232313561316535333964333031
|
||||
30396166373230633833313938363330343865363632636462653033323131326566373861333336
|
||||
61353733653865376333656630653335373231656134643263656566303239613936363132373839
|
||||
33383236373461643666613535393436636261376465363164326435343961363763373533613462
|
||||
62343834353166303165653263336434616136666462373465366162643439613330303436343466
|
||||
33336639373861643237613032636566323265633733333964306463306138653265653065653764
|
||||
37363265623765633166333239633361366265376461303636633639643863366331363032303964
|
||||
36333764373831386135656135623033313131623562636638666431373738346562646236303239
|
||||
63373534343663626637383464613763373761333232313435363962653462633764663464306230
|
||||
37303737383765303731326666656534383963366163383463353365613962656535393162623434
|
||||
65356138623431376136366635336631666431396261633637323232663233323739356361303237
|
||||
63393433366637323861383434303166393962633932373331366466373230653835613236316336
|
||||
32373237303661616634313637353432613765383766393733313334323266316439643331343634
|
||||
35646334656439623836613935643265633931393264333639326634336166343632356535306536
|
||||
65356161653634323563376364633763326634623939376230653261333239373062623562396634
|
||||
38646464336635666237353564333739343864633561643930346166396164656333623339616139
|
||||
35643464393130626638373565623630666365363063663332353738363337323739666530343637
|
||||
33386262373730313463633333623530646635383064646634313731393561306539376535303030
|
||||
63386162666561393337363464613235356632353766323835666166643065396535653930366231
|
||||
38376561663334613632663839366164356366373232663730363838393838313461643334386135
|
||||
31636537613239633332
|
||||
64376135303131656462613130336533626437303662376562356661373536626661373937363230
|
||||
3839333136366339346133613431643234653562653737630a333732376331333532323538306136
|
||||
61323134653164386333643439313962323066386262313830393933646163303466636131646430
|
||||
3061366637376434650a666263633636653262343563633835326437323335623462343364356264
|
||||
38386437343633656162616632623030623936373334396265393030613566303461363633393038
|
||||
66333165366634633934396332386239356564393933666537626563643133643165356666633366
|
||||
38623765643262663036613062626137323961386132306339643363386230336466343863393565
|
||||
32626237346461303733633862356566663335666537633636343733633232383663346135346230
|
||||
35363439326632353532386366396662303466636332376337623966633466633636623035623539
|
||||
32616665373964333330623831316266313730356432356334366265366636616637656538646330
|
||||
39656565373830326632356435663231313431616162633066646231636436333232613137306562
|
||||
30623436613735306365656132393636626239333732386235373864373963333030663031623936
|
||||
65666163303434353165626662646161303038376438653462623664336465616236396265646163
|
||||
37336230373537623065383932333039383765613366373764373732613437323334633537656166
|
||||
36333663356566623661376632626365626465656265343630353034646130313965393762356132
|
||||
34666437653130386133613765346564326235396661623237643935633862386435373531623431
|
||||
62386536636439666630316638333039613561343332313062383561346562353662623563633065
|
||||
63666534313034613161303462343131656266616262353235336232633064336563386162616138
|
||||
34666633663538333163366462636263316436313562373566376234323332336566386261356239
|
||||
39633339666466636239613233623839356565373363333230623761636432386464336130636138
|
||||
65306438643632323932333561346134323762316166623130643635376266386264656335623439
|
||||
62633638613363323631393062323538633933366438386664363864393566616236623034313964
|
||||
62643063383933613937386264363263353761333337393966633734373232356536346565656665
|
||||
39356664393832336463663436323239616163663962353232303564303639343733646233396535
|
||||
32373333333937303532393561386334303739613764363139326661663131323036663538376636
|
||||
36626638373333323735346161396262323666323832353234643436356463333134396630303632
|
||||
65663762326265393764386165313562626632383738346333313063626464613037313136393965
|
||||
39666233353564376339373936363939656537313430633630336563313938333861663335636536
|
||||
61626632323932313264373330303634323437363562386262396631333336343130386562623937
|
||||
66323264616561363634616537623837396138663137386564616137343065633636643866366665
|
||||
33626531613631383137316232656466303565613636333735313262643963633434626536376563
|
||||
34663462636236386437386637656236383634313434323665393562303231373662393162363237
|
||||
33646335623135656237613362626163376266666263356530663630393761623830323831303165
|
||||
31373333353738383665373861363965643530386137303134613936333663356133343163393263
|
||||
61323963303036623762306365313636666361656235343730346438326139633935386664316230
|
||||
62633636656337633335
|
||||
|
||||
36
vars/smolboi.yaml
Normal file
@@ -0,0 +1,36 @@
|
||||
$ANSIBLE_VAULT;1.1;AES256
|
||||
36613037363331653336316432333838353534643336376631383639326561313534306261343865
|
||||
3764633531363565316664363231373931333763313433300a623864656366653737653033643165
|
||||
30336538323534323238643839653836613934303030366438353137646433653733626361653566
|
||||
6538653066626434620a663533363265666235633834393932323331613333663037356532396334
|
||||
30646261626637366435623962353833616534333430353536363264303930343137646638663836
|
||||
34373765363465643835373830323130613733626665653566663163333261663634663330363865
|
||||
61306263663139353366383062313466643735616533336434613864663562323963386534626631
|
||||
61653466613430323366393835666663393963636431643839356162666337643966633339313639
|
||||
35616137616537633931326263353962353264313130383734336666653035666165616437613039
|
||||
64386337643736353136663832633331343535656166313861393338616132373838633732333765
|
||||
61346236386466666664363863353038303234613262383433623330306164623763653230666362
|
||||
37383139333131343633303662393932616163623739346230346632373961373235616438613066
|
||||
35653832366433326334343366383930336238323839343864323865393863646364386236383963
|
||||
30386337616331396135313564383234383630656136323031666131353565306439613932626539
|
||||
39323336653966653162386638383665613463386137333334346332316137353734363764613563
|
||||
33383338366131363565373936633134633636653430303163303264663163363064616538376563
|
||||
30653761633839313765633635356233363132303238633137663131663661626463313030356439
|
||||
64346465623961326639346365323165626639613735646466326535396630353134633432363065
|
||||
38356239393761346430343937343534373865633033373962323936373334316232663935383138
|
||||
65306565646330376463386439613562653637636131643062336464663936356530666637613835
|
||||
38306134353936353539313032623932653661343738343134383732386464616662613261376230
|
||||
65313762376363306263356266656538323262383238306533663036386330663632383366663930
|
||||
36396635393034373738316666636362353936643633353130613136653466346236353937353537
|
||||
38623833633432393631306130343761623163353038623864666265346265636339376165643332
|
||||
30623430656362343834633564363562613239346666383734643631306130636136376132333739
|
||||
63633132363835343036323263326363353264363764636164663031326561643466366436323161
|
||||
37306430626565303238333663626330623863323939633430623833393133383263653764376166
|
||||
61383464303862356238346138383665623930306338663035313335636164666237336364396662
|
||||
65363865616262356236323366303234613161353430343266346566633461306636643831633336
|
||||
65613434376466326136396563626438373732363437623331333466383730353635313862303231
|
||||
35633562363639303665663661646133396134363733623136323564356666306636303763353834
|
||||
32373833363465303537323065316636383661316139373138363930393264333035393933366534
|
||||
32663631626135393362393337323333623837376465313865623066656365613835613561303835
|
||||
32636139313035383761626230656131633763353466393834316465303134656463393234633530
|
||||
376361393935323338323136396231363862
|
||||
291
vars/vault.yaml
@@ -1,291 +0,0 @@
|
||||
$ANSIBLE_VAULT;1.1;AES256
|
||||
33306463623331373636616533346130616463663634626334323437323533303132343135396634
|
||||
6162303766623662336435636362633862643539323463630a646164633131663030666461343931
|
||||
30656361303362663435666439303130306637653537636165306162303036376262346333633336
|
||||
3039383138306137310a363034363132333431383837636132303061326663386637363633623836
|
||||
61623633363061316264323661346639653261346536663231643763633533393334356234633232
|
||||
39363437373064383731356636613135303166636166616533396537666263336632336330376566
|
||||
62393330663931653733353637616337383332636566346264313965326637383730366638616131
|
||||
30333435333639336132343130346564353831343638383735653630623430613339376461353132
|
||||
36383531666162643836386434623263343863653039623431646165346134383834643732373137
|
||||
31616530653832333563623437623636313761613564633365656439303432663232376338653134
|
||||
36333333393264646161386666333536623230646461316461376661366238326232353063376139
|
||||
61383962386362313535333239383936643264383233336433306332616534333366613639373936
|
||||
38346637636434663839343735313861366537356561336636666666333338346338363938626633
|
||||
63363436323564336665396438333466633664613066343466393335343039613838626337643934
|
||||
66623166616239373964616332346437316163636663383533306430373432323866353133643838
|
||||
62316534663838323832363831363834306531346531363732393638356234626366326162633934
|
||||
65306435633762313838633537396463303861666165616537366262316531623135353633393134
|
||||
66343363313433653666613437376236336238346464366435666330386639343063323035336336
|
||||
32376637396561643738613932343133656639633932393966646638376466356264336339323036
|
||||
32383839326433386632656537363739356566636635613131613963636361626339356564326136
|
||||
35636233663265653733313037313538616261333465616630343535653936613431333330363064
|
||||
64303332643563383165623465636566383830333763646333316333313531323437623634623530
|
||||
34303264613161356132336362656332323031333361333335313465336137623135663335663430
|
||||
65393263313366373962333063336636343633313039386336623530323466633532356231373430
|
||||
62643533623864343536616364656164353938306563326563373534336365353333633261656366
|
||||
37623065346337363163653338383734353966626565306233393533663430633034316566336432
|
||||
36626161616461323735363166326239366231666264343262383134306530623662306636323637
|
||||
32376536663964346336386430383936396634323061353265313436336263346435636131393465
|
||||
66356130636131623236633264663836376131663465653034626363393532626263336231643332
|
||||
61636438666266303735643165366462633161666566363734336632643035636139633834643633
|
||||
32396466333237666261383739343634323663313039386161343461666261633165633361326635
|
||||
62623564643361363362316431386461376633646436373731616630633063656332323461316331
|
||||
37623665663961323530313263316662386231333666323663373133613931386238353238346562
|
||||
38643339333862613631303032663633303534333165613664633633623761343234373530373363
|
||||
36333632376534623634366264333232613631323961343364386235646335363939323134373364
|
||||
39623135613336616266393838363761623434613361336537316461383239376633303131333939
|
||||
62356163396430333764366235303961626436333735373664373465383439353030303634306330
|
||||
34643832346461613662336436326235653565333939353834323431383332663363386239306666
|
||||
33303866383430613362333161386662663337383261646262306237646366313631383732323332
|
||||
61616636643434626237666436323832373865666436313166663533383438663433663734393033
|
||||
39366238363732383562356338326333613533396365383138623762373534386539336535666238
|
||||
65623963636662376138333039376536333666366431343134613562353362663465356361336133
|
||||
61663231323030616438623766333466393936386431366230386637333230333138633832343238
|
||||
34313732623735626662613365323538633039613137623932363838366239333334363239373564
|
||||
38363133313062373834643466343133336266653737623031616462376137663238363964656162
|
||||
38633163613932366461623366333061323738363065653738386339623935346361313532653631
|
||||
64646237376331383161633964396130633435376430666361356265633031643064613039623134
|
||||
39323037356633626235356337353136616130353936366565663538383636373135656666396261
|
||||
64333733323933343239613734656435373634633864653030306433613165613538306263623436
|
||||
33333736396461346439653062656537306162383030373238336563663565646231333334646665
|
||||
35313365666664363930323766636239346466303138623332653936326161616434386165313137
|
||||
30636232363662643835316535323765663264363938633636363930666566373365316436636436
|
||||
65646635613065383632656363353733653137333163343839643536393431366131393066656263
|
||||
34306532373162336534663666383239303861393263616662306361636262663533643937346161
|
||||
66323431363466343232656234373865653965343230396330363138303338396532376462633737
|
||||
33656562613334386565343730366263353262393565343730633033363561316637613232356437
|
||||
32303664373035313936663937666431363435656536363236313938323735343463363130626635
|
||||
36313935383634646638343133636335336366316530366463306366386136393865643761323932
|
||||
39323161393736336162636130333738633639343030383766616538386238623765366133313139
|
||||
35313265373435346230303762616366373537633162316135636430653032313137303535336462
|
||||
64663031616132353635343061396363336336626336393536346262643135653939623264613364
|
||||
30633332396461643337306232663837333063333963393361373439616634613632623438393039
|
||||
61343861613661383564663965363461356135653430303630396639636135643636646536656438
|
||||
34393163643737643063313439623462383337663031663166636339313733343232306434303261
|
||||
63336666653039323065633635396638313564393339393638353038643137376630336534363231
|
||||
38333236366339353663383632366234383631326365613562373266643562363134343362366333
|
||||
64316234643436373037343436323839346337393261353664333438376435326233316337653938
|
||||
35373530363932626238343764656634633266653736323662616561363033326265616266376234
|
||||
36386463303864363637393830666263623639336364396230326363653831633832386536303336
|
||||
66346438383836313533616461616465356165653834323065656532346637656234326231666662
|
||||
33393261396663663039356639396163306662376433666461616462323637643735326337326130
|
||||
63353637333631363036383630313634393465663930653837616532646234303638343635666265
|
||||
33383061666339306437393532663966656133366363643439636535323938333463336464326132
|
||||
62346134373630383134333065303435623265383733333235346335663736636463313063616461
|
||||
35366462626661393937303135666538613665343933396665306235366265313934663330333965
|
||||
61373932313830376366653362353664653961363733643438316433303932616338356438656132
|
||||
33376335386336396163623061353135316431313635643664353961363433393066303931616666
|
||||
32666136613063663032643365393964643535356335346439326336353462376332303039353732
|
||||
61346564336232373133323536646533633165336166313639646232336366623462376564333934
|
||||
65326331373263346236336435666437323235353266353431613765376465663866366436343564
|
||||
61343832303336653432383061363934393564633036303465396665363432373133636662393930
|
||||
35666332376138393363336438383034383765376462346662333964363936336661646365353636
|
||||
38333837636264653062343363313563353839363766613430396238376366383064396339656130
|
||||
39333064656562626134396237323165333461316465633638356632363934636162643964653531
|
||||
66613764306262656263323230653639313936346334633435343139323636343832643132373738
|
||||
38623962393035366234636134643739633838313434353265333130353832613436353062626531
|
||||
64393563343939316232663135383730653238356561313262636439366339663661653838363032
|
||||
30663438343461373163653935363035383435613563646464643037316330353139626235363136
|
||||
38613836383766366632356532366134366430643362653933306265653735633132393831393832
|
||||
30636463326563303835366635363538623730626631643230376137633230636464613364613539
|
||||
64623137643966363463616130366262303635633436306432366466323661633131626139356139
|
||||
62333462343163333666343465333232643030323530646366633162646437363162343139633865
|
||||
34383965653930633139633166393431616232616233346331643735316536383965366462363733
|
||||
37306634386363316133333138333035353066386334386334616530366238396666636539323833
|
||||
37353231383032616436643962303333613634303437353031663062356533616665653962646135
|
||||
63616261623864393539393161643135653064343130663939666139306333393333356437323565
|
||||
65616365653865633333343032306165616264396338656532643032373761363832336136656662
|
||||
34333864613731646137633966373830643037393361623866636461316232386663323033616231
|
||||
39373861313765623064383439363838393536353065613266633139653438613865653739616437
|
||||
61363665656637666238653531396630313765633336613635653035633232643436303361666266
|
||||
66383961363631313961656161323066303337316432346130366335613266343265656631633539
|
||||
64343637656133343635663239656533336161613966643933396236303564373835346631323537
|
||||
39333862646134643835383238613764633533636364626665333339323136303864366632616433
|
||||
39336561383238383063643736333764623434623037366239353961313234363434626636356435
|
||||
35623266366536663362376233306238326561343035326236353739303034633164633736333761
|
||||
38396261623565363034626138396136353735336432643434386439663066363932396638353336
|
||||
66303934643965613831616437356139356536303830363235643561643331323461373466326538
|
||||
30323132396639363937666365343930306365653334306330336537313963663061363033316332
|
||||
66363264336435323062616563613265636333616131653965363036376333343337386630376466
|
||||
61336631363465636336396638383737363933303834386636636166613730373530393632613366
|
||||
38373237323536313338646363663661323537363365376238346465303763333639383863303430
|
||||
66396538653336343232663766643966326639633239346537343631613732386164353730616538
|
||||
30633762613362636139613539646335346434346338333037346139393435373366653132353035
|
||||
33336664373765396130653535336562333934636531386138333431303466626463386665383633
|
||||
36643334366531366363353735363264323365383736616130363130613362306237646364313563
|
||||
33363739653566303463643637616430353133373139386139346265303733653232356635646439
|
||||
66633832333132636539643264633666366330373965386165346336306131666331316563636634
|
||||
66366434636662343336396535646364323964356361363065326633333564306166643664633430
|
||||
35346365346363623637353331623430326564303535656666633435643531373336613037383938
|
||||
33313566396632653439346666316536316533353235323865343130316337383366383830663837
|
||||
34643935626564383537643166393431306437313434303266333866646133653031393838326665
|
||||
30376435373730303232373365333263656363393964646162303061316661626133383832373137
|
||||
33363561643062616532353162313966333965653262326333653031373133356236663331313337
|
||||
64393662633362346465333730656135323731373766653164313064616237326230343366393634
|
||||
64366334336435663966353333333266666535326565303238356662613137613866663534343137
|
||||
39643261383131306336353762623964343938653437363936323637623163366162653533353133
|
||||
37363634313331326336333264636638306631323361336233336166323761353364376239633738
|
||||
36326164663934306266666639383532386136396365666662653637326637613832656335356333
|
||||
33303035343061363239363661316130636530306335613664343937323761303930653137313738
|
||||
62393965343364316263356636623731646437376337663961323131306266376431613035616635
|
||||
61326331323862373465386235346239363466663565343964663038353134313332613037666662
|
||||
30643532306666336531613935653737373231323032303639326366383730663932623039633031
|
||||
31333531363935393131346562346235636161343639396361393037316330383637336661373565
|
||||
63303435346263323165316232373836366531323166343639366135303134313666646533333234
|
||||
30663663633065613565663764656631373335396263363064646531303839646561646630333436
|
||||
35303161306530383063323764656538623837616265356630616335386565363065306230303164
|
||||
39663634663137333833353566356163656365303234656563336332373534636262363537663330
|
||||
66356532346538373536643632393562393162643332333933636562633962366231326339646232
|
||||
61616138343665623831366163326530373932333434636436323461326630343232306563306531
|
||||
39386434653232653635373466613765616261306332373233313537346635636237643237646566
|
||||
31316538613565386431643634356463666431393561356362613665383565663762333635323136
|
||||
37393339356636353033303563663833326133323561313338326265366339326263393732343830
|
||||
61303763393635646231643835386332653964623165336663636136356464613336626239333038
|
||||
30663961316365336636333438623661353637663936666635306138643735656331663938633563
|
||||
38656430626633316664663135393930363431626234643931343839633262323033623364353634
|
||||
63313362643034303364663634313136623661323361353737366562373764396434663836643531
|
||||
38316131353261366331336361636262393339313061323266313834306630623563383938336164
|
||||
36646162666466623265383434643631623936353665333263376366396365396136383139613736
|
||||
31663562316365373334396134376434636266666663613532636664313966656463353832333938
|
||||
63623564343030313935353166646231393464303238336130653235626237383763303532323834
|
||||
39363138383335643231303232333935396334303465343434646435353363656438323931653034
|
||||
31616162646134353839626166323333363236336234303538316332653633646530366164643866
|
||||
31356130313633616134613539643635656235316161326338383436386339393863316232343666
|
||||
63643837393862393337613364326132663133616337663966356234613261363762633064366532
|
||||
36333631356463313337383637313766663335303639343864353366616432303936393432326334
|
||||
33353264396562323862363466646666353461346430396135666135666561383532313965653161
|
||||
64373735323631373939363133323761396339643630353038363766333532663032383631393031
|
||||
36346364313731623835306361343839346664653534636534336565313661643734396339376430
|
||||
36326162633631396163353833313230396236396537633337373163336565373063396233663538
|
||||
61396364356263653334616361613732376163613637663963643736346232376331313364663066
|
||||
61323030353966363363383361646433313763363139383235613865363134613334666130616139
|
||||
61346161623532666464643631653266303531313837643765323837323233353862646566376134
|
||||
33303736353534383532373364616365393938643238343536303538633739346535393930343533
|
||||
33613231383064363864343133653933643833613033333038623763623334383566393261313861
|
||||
66393334616139313834613834353964656632613332663836383534376238663863646439373265
|
||||
36346463633134386239646234383465336463333866643536616161623533663662343465323330
|
||||
34363838376435643638383233373365326366353362643864663837313566316165653361636566
|
||||
38356166613439393931353838623233646536626234363035363937653037656434326538633261
|
||||
38343233616562353336633066363733613763613030363435396339663632363736663138663366
|
||||
39393237666531373731363837653265313935653230356634636262323837646263643533633363
|
||||
31386166613535363966613835363630616532663932366330303534663562303934353038633335
|
||||
66613465376561366333663861646264646435363938333262636665613563363236326239343937
|
||||
65643933653235613363623033396462363861333037333835353366323066636239316363396265
|
||||
38623332383536643666356263623933636530326462656262616231643938383966616563626433
|
||||
31656162626330386664343863616661316537373933616263363138626362643436333935613365
|
||||
64303761343362623461303032643565653931386336343532633035356466336632346633616265
|
||||
36663432626133613934353934366536343938613939633434306230363633353135376531356265
|
||||
62353866653937393734663633346139313438666666356465616331633332643137323561663130
|
||||
36363834303735663839383261616232356630633235666163626566656362336137633734643239
|
||||
65633166666537636137373439656333656237313964333439383862373836366431656330383731
|
||||
30326565613233316236373463336338313364643136336361373336623434656338653932616432
|
||||
36636366653735616165663066666338373338613164313530363061616631663733616565306335
|
||||
65623736666530386534656637653563363265646663386662616539623566616264346563616464
|
||||
66616434663237393465396237313436303963623330313032613365633766316462386162373461
|
||||
66346132653138306636313332343432666366323961333432616135366530643033613333633162
|
||||
34393033333639643738393938346538393033353437666136306266613933623637343832303339
|
||||
37393639356136386638373939303466323939303835366639633034373365333933306232356634
|
||||
37383966343232313730346663663939393836643430636434306530353537393535383333303661
|
||||
65383637623234346564353034393735616361383561326366653038313731346639343730373533
|
||||
31323431376234346165633561303235623234303936363239386662643961376165373161386663
|
||||
61333033376637383561313466363837663039643066626630316131383736366335633834633439
|
||||
64313831366333303737336339616465393762616637396266623866326137303166373739323435
|
||||
30653737313465323038323530613036386538623236663434346536373139303538636436623766
|
||||
38666537373165623366363964613735346537303064383839313665616136323236306366323864
|
||||
61353333323733656661633239386233336637636235643861653164653330636334396133346637
|
||||
66323166343530663337363564336466613764626639653662386163653135653165626364623263
|
||||
36636235623430666136313462313566373231353761376135393832303163373066663435393763
|
||||
63613735386462346435656463383836316530613439306461646461616363313536646166313938
|
||||
33323234616331623366613731656464363766373032356166353237313561386330303464623361
|
||||
61306532326537346164636632653932353235653361336130393663396635633430633835653237
|
||||
39613035623665306266366338633334653466383834303639373133363232373434306166303832
|
||||
36353061373232323465613861393339336338333230626335633737386437396165306362656163
|
||||
62333166383835653036633339303433626538376166396436303934663132356339346463356136
|
||||
62313733383739663361333734306530626330363135343039633662343231386263366435313463
|
||||
38353339303132663561636262313031323934326366623334356435613535303666353265643633
|
||||
39656334333835363932656432373839373833353736393431303435653137356238313630633563
|
||||
31616638393764356639336466313163653161386331633834356365643431653532376132643836
|
||||
36626430353762333264353265363563343763373931373165633738323864363833376664376639
|
||||
34626265633234623836333964623262613665393031383163396338643162633635656131626164
|
||||
30386364613265633839623533343364326236633133616265663762633161636139313265663462
|
||||
64333538663963316439643036323062343162333930656632386265653936396635616138376232
|
||||
39353330653063343333623638633466396339653065383132646237373031303666653039653263
|
||||
34613437303638316636633363343233666334363136393130313235396139646433313833346266
|
||||
61636434343362633662306233323834303135336231346136306337313833363562333564383834
|
||||
39343632623935323765306235366533326337353062356237373136663333633766633534363064
|
||||
61343364363234383439316134633763353231653235353234326239333638373134353863393139
|
||||
63646231303261323239383534376339623062383734343262363239376234333931643261316337
|
||||
36616635333630626563366464376263363338353031633633336538326462613664633562616437
|
||||
66333035333365346630393663623237653030323761346231666134303563666237653533363164
|
||||
31333631303365616430366531643864326633643634303032666162343733616637356630393534
|
||||
39626235336434613961666365303333366563373762633833373266653438333162386336343862
|
||||
35656438616136383030336366343039303336323032373536353462383465393931623762636266
|
||||
32373338346163343239373533396135623335336138656336643836393130363438666666383137
|
||||
63623735366361373635666630633266626436353062336236336664363437653230613064373330
|
||||
35383139646431383532336561303963376532396366383366643239366562623038646465383462
|
||||
36386431313033353338343966623965636133396239303465633337373739343030373938343331
|
||||
61616638613139313266323935653437366230643239326637303533323935653465663031656666
|
||||
38356632366636396339343636656339363165376262656161303164663366643936393232343734
|
||||
66326163653564656663393663303835383833383361653739626231646638373535303239373736
|
||||
64393432663630643162393034383039313333373135373839616539393333613035326666333932
|
||||
37353563343834373265663936623837383863316537636233396439303736623964633839353136
|
||||
62383366343566653733373233633837323564393035633266393437643761323938643763383566
|
||||
36623539373064643238666639363138386133366536356461346639373739306161333832336532
|
||||
38616566343664303262326461316339343233383866313232393366386537623337633938343338
|
||||
30393936356635363633323866356138616130383036303135323361353366376662363264333461
|
||||
63643138363038363336613362376463363331303433636638386232346135613438303234356263
|
||||
30363730343333363337346662666633343837643065373161396333316631393165643866643337
|
||||
61656330653362663039626263326531336332393433366433306364333331363936383364363930
|
||||
63613534313264306633326537636564366632653161386430656535663435393939393338633962
|
||||
30643439383530386465366430343164346433363431363138656238643261656262613964643036
|
||||
65363663356330303636303765363935303031303634346136313463666665326534333531323063
|
||||
37386130366336663132303031613164333832363532653732313932393265656135653732313539
|
||||
66643533616536386561383439616337383834663938356539653432646363363338393731343135
|
||||
62643238383239666238306438653734333132386134633735323837373133376161323665616337
|
||||
31366566663833306561643638626235343431343261656164663966626537653466333332303364
|
||||
63356331633232366632396265306230393161313036646462653265323930666164323038346539
|
||||
30366133656633353566376136353265363537353636663866346362633339623765306261313934
|
||||
61346133346133316336623363303665343438313663316530313566666264363839336438666134
|
||||
38366231373339666437333530323930386332313131353533356530396330623863393432653635
|
||||
32363466316661333961643437303166666434333531363130396631386635623935363765343335
|
||||
36393039303662316635336366306136356335623538323764383438333735656431633132393236
|
||||
64343235663931666563643261346364346431326335653136356662336666613337656565373565
|
||||
34346432396136633863383937343031313061343736646334343162333239613063383565643433
|
||||
31323632663336663433373230356539623134616166313661636633633365616539633362343565
|
||||
30636463316565303733353839343965613332326138393637666261306338643665383134376463
|
||||
63373535646362613135356538306238356364663765333938333837383763396436643733346464
|
||||
61613061353033366163393533356635373464643438303632323435663961373231666337343963
|
||||
63353966393738393036346239383730356139653938363532353435326437336330333364306630
|
||||
30376634653539643536333134346564633264623230323163363938633235373739323361326230
|
||||
34383030303438356430396162656362393838666331313764633733366138386365386638346564
|
||||
36313763643665663561336330663532326362653432383038393863656637643661333866616164
|
||||
64313230326332376433643234626438656539383865316365303464353062393764643532366366
|
||||
36353264303830623763356430303932343232663536303733383564643936386132323633373365
|
||||
63663961323862663931346337656135643264303839366338633138373832653665343438633339
|
||||
64333736633665373861313363376364356566663737663038623533396632323535653464323764
|
||||
39623164346366646436643338373334616639643635343736323265643161663233656235366639
|
||||
35626165323265333731613133316363323837313435646364353766663231613566313665626631
|
||||
31636136643061393761363230363638316338386237343635343431386133653432333437663230
|
||||
65356232333234393833306132666534326136613463306336633564313562646538383632363165
|
||||
64396537643663323335383737326663313235643539316137336264323837356265343163343764
|
||||
34353535383665333333626636393736613030393265653232626165633332653065653237626332
|
||||
62623664663062356563643530303666303564356536396233636232623739613361336665393635
|
||||
31336236336161333036393138333563333562663630313838663237316263336537376234646330
|
||||
66373031316230393138336661656338383937663936313731643431663363663461613064633565
|
||||
37663564643734396265373766386332396363383230343230383765333361376336363936386236
|
||||
30303934633862663034383662643836616463363637613661373234326566666231383661663036
|
||||
39323436353133656137663335643734303733623630646261356466376437376333313435653462
|
||||
35353332646537393330643766636235663332313234386332383263343363313634656662376331
|
||||
66626431373430633666363032636232646637663337616463383661333033626163333465633061
|
||||
61636431343030346139363633626633636139333835316463313134613862396665633532343234
|
||||
37653231303466396230636539353366643135633937646262303962633632393338616431646535
|
||||
39366364663633346535343838663135666535396534653766643361666530643530333738306234
|
||||
39343162313264633538383663656430326634653662636439316432356236373234616666373562
|
||||
36636133623437313665383864613731653138383837343530383634376233323430366436393237
|
||||
38653738643631323033313334643039623130613835346166656162303336666563633061633336
|
||||
64663164663535326237363635303736626665656538633231656336323537633566613634623434
|
||||
30316562386538396663336135373163306136376333613164303331656266613037636136396438
|
||||
35353037323464376232616565386232336130613635396361616539306436616233623437666361
|
||||
34653832303166383439646638393331613064636663333333343237643362396639383839656462
|
||||
3731313838646530343965663136316637396537316330343637
|
||||