From f61230022a248d860fe81e615bf72453636672d0 Mon Sep 17 00:00:00 2001 From: Kristof Provost Date: Tue, 4 Mar 2025 22:36:19 +0100 Subject: [PATCH] ansible: update pennestraat22a settings file This isn't going to be final yet, but this configures the alarm Merkers. And sets the API token for SMS. --- .../22a.pennestraat.sigsegv.be.settings.py | 516 +++++++++++------- 1 file changed, 326 insertions(+), 190 deletions(-) diff --git a/ansible/roles/domotica/templates/22a.pennestraat.sigsegv.be.settings.py b/ansible/roles/domotica/templates/22a.pennestraat.sigsegv.be.settings.py index 3a41322..948effd 100644 --- a/ansible/roles/domotica/templates/22a.pennestraat.sigsegv.be.settings.py +++ b/ansible/roles/domotica/templates/22a.pennestraat.sigsegv.be.settings.py @@ -1,190 +1,326 @@ -# Django settings for domotica project. -import os - -DEBUG = True -#TEMPLATE_DEBUG = DEBUG -TEMPLATE_DEBUG = False - -ADMINS = ( - # ('Your Name', 'your_email@example.com'), -) - -MANAGERS = ADMINS - -DATABASES = { - 'default': { - 'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'. - 'NAME': '/home/kp/domotica/domotica.sqlite3', # Or path to database file if using sqlite3. - } -} - -# Hosts/domain names that are valid for this site; required if DEBUG is False -# See https://docs.djangoproject.com/en/1.5/ref/settings/#allowed-hosts -ALLOWED_HOSTS = [ - u'domotica.pennestraat.bramvandensteen.be' - ] - -# Local time zone for this installation. Choices can be found here: -# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name -# although not all choices may be available on all operating systems. -# In a Windows environment this must be set to your system time zone. -TIME_ZONE = 'Europe/Brussels' - -# Language code for this installation. All choices can be found here: -# http://www.i18nguy.com/unicode/language-identifiers.html -LANGUAGE_CODE = 'en-us' - -SITE_ID = 1 - -# If you set this to False, Django will make some optimizations so as not -# to load the internationalization machinery. -USE_I18N = True - -# If you set this to False, Django will not format dates, numbers and -# calendars according to the current locale. -USE_L10N = True - -# If you set this to False, Django will not use timezone-aware datetimes. -USE_TZ = True - -# Login URL -LOGIN_URL = '/login' - -# Allow Javascript to muck about with our session cookie, because we need to -# store the session ID in the local storage -SESSION_COOKIE_HTTPONLY = None - -# Absolute filesystem path to the directory that will hold user-uploaded files. -# Example: "/var/www/example.com/media/" -MEDIA_ROOT = '' - -# URL that handles the media served from MEDIA_ROOT. Make sure to use a -# trailing slash. -# Examples: "http://example.com/media/", "http://media.example.com/" -MEDIA_URL = '' - -# Absolute path to the directory static files should be collected to. -# Don't put anything in this directory yourself; store your static files -# in apps' "static/" subdirectories and in STATICFILES_DIRS. -# Example: "/var/www/example.com/static/" -STATIC_ROOT = '' - -# URL prefix for static files. -# Example: "http://example.com/static/", "http://static.example.com/" -STATIC_URL = '/static/' - -# Additional locations of static files -STATICFILES_DIRS = [ - # Put strings here, like "/home/html/static" or "C:/www/django/static". - # Always use forward slashes, even on Windows. - # Don't forget to use absolute paths, not relative paths. - os.getcwd() + '/static' -] - -# List of finder classes that know how to find static files in -# various locations. -STATICFILES_FINDERS = ( - 'django.contrib.staticfiles.finders.FileSystemFinder', - 'django.contrib.staticfiles.finders.AppDirectoriesFinder', -# 'django.contrib.staticfiles.finders.DefaultStorageFinder', -) - -# Make this unique, and don't share it with anybody. -SECRET_KEY = '0da7c3eeabe91a40686d6651c86defadbfcecf5c65cfd40c82874124def71712' - -# List of callables that know how to import templates from various sources. -TEMPLATE_LOADERS = ( - 'django.template.loaders.filesystem.Loader', - 'django.template.loaders.app_directories.Loader', -# 'django.template.loaders.eggs.Loader', -) - -MIDDLEWARE = [ - 'django.middleware.security.SecurityMiddleware', - 'django.contrib.sessions.middleware.SessionMiddleware', - 'django.middleware.common.CommonMiddleware', - 'django.middleware.csrf.CsrfViewMiddleware', - 'django.contrib.auth.middleware.AuthenticationMiddleware', - 'django.contrib.messages.middleware.MessageMiddleware', - 'django.middleware.clickjacking.XFrameOptionsMiddleware', -] - -ROOT_URLCONF = 'domotica.urls' - -# Python dotted path to the WSGI application used by Django's runserver. -WSGI_APPLICATION = 'domotica.wsgi.application' - -TEMPLATE_DIRS = ( - # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates". - # Always use forward slashes, even on Windows. - # Don't forget to use absolute paths, not relative paths. - "/home/kp/domotica/domotica/templates", -) - -TEMPLATES = [ - { - 'BACKEND': 'django.template.backends.django.DjangoTemplates', - 'DIRS': ["/home/kp/domotica/domotica/templates"], - 'APP_DIRS': True, - 'OPTIONS': { - 'context_processors': [ - 'django.template.context_processors.debug', - 'django.template.context_processors.request', - 'django.contrib.auth.context_processors.auth', - 'django.contrib.messages.context_processors.messages', - ], - }, - }, - ] - -INSTALLED_APPS = ( - 'django.contrib.auth', - 'django.contrib.contenttypes', - 'django.contrib.sessions', - 'django.contrib.sites', - 'django.contrib.messages', - 'django.contrib.staticfiles', - # Uncomment the next line to enable the admin: - # 'django.contrib.admin', - # Uncomment the next line to enable admin documentation: - # 'django.contrib.admindocs', -) - -# A sample logging configuration. The only tangible logging -# performed by this configuration is to send an email to -# the site admins on every HTTP 500 error when DEBUG=False. -# See http://docs.djangoproject.com/en/dev/topics/logging for -# more details on how to customize your logging configuration. -LOGGING = { - 'version': 1, - 'disable_existing_loggers': False, - 'filters': { - 'require_debug_false': { - '()': 'django.utils.log.RequireDebugFalse' - } - }, - 'handlers': { - 'mail_admins': { - 'level': 'ERROR', - 'filters': ['require_debug_false'], - 'class': 'django.utils.log.AdminEmailHandler' - } - }, - 'loggers': { - 'django.request': { - 'handlers': ['mail_admins'], - 'level': 'ERROR', - 'propagate': True, - }, - } -} - -# The IP address of the PLC -PLC_IP = b"172.30.2.10" - -# SMS information -API_KEY = "" -API_SECRET = "" - -SMS_DESTINATIONS = [ "" ] -EMAIL_DESTINATIONS = [ "" ] +$ANSIBLE_VAULT;1.1;AES256 +36306336663737333835313739636638326439646331396330623339353664393764316136663534 +3661393862313832643431366263313761343835313935320a303061323864633163303635333735 +31326562323734386637303830306364613935326530386238373437353434353930353632356263 +6566323565323433620a333364616565656637633763316132616136346466386365633431336238 +64613837363939313830646635636234626137363861383031343236646162643864323730633535 +39383430373662373137356238363838306434393765346262316563363738336132343366386532 +64663633626631363637366430363563383234376561316265343038356339353837393232376162 +63336333323636633834303566333738306365316439323038313038643330663664383634376338 +61613463356362646261343130376431363332613430643263663435643830316538343361313363 +66623764636265643666303339333939353564613166653334373165363130336262353466323234 +66616637623637326534326462323830316362373063343065306633616532663831343730653364 +35353865396166306533336261313038316435323161643539323332303464643662373037343331 +33316339316136636261616264643561376461643337313661376661303635373662306536323962 +66366464623731356639313536363562356131633339646430653066653137336365393632326131 +63633065356661393036306134326665356364333533656461653734353335633435386632376239 +34353139393062633936313238623533633162383530326461396462626165373336343963366430 +37343438396465653431323265366537303664313436653738366430393565303336323234663731 +63353563666331626234616164353432366334393730643837643863643762353335353630336263 +64316436336337383737366566323063316462373837326666356233656234313765313861663430 +34336266626332333332363033303461336430393534326536623634343039373366616436663731 +39313663313337326134316361356464666266336664303231323034373133306464303031323133 +35373462323934346235306134363366383132363634316535613430646565323130623863383739 +64313237383537326264303731663839663834346331393761356362623163653938343038313665 +38343238373433333539653435356563366162353338363238343264633165356265623263383930 +35313430343635326463353065333033323863383032643937326634333438633931313635633166 +32343566663963313230363164663462386263303762303563396637383136373464333835313638 +62393661623839643233333430306463363931363066336366616266653431646563623161663264 +34643330633438373364326435353730393065336164306135646435303666353036356461653034 +65306361363835636332323831623462666634613562626333353763343037346432373137633661 +32323364353064343666653464643434393736623938633238336337363334343837623534633461 +63333832623762663435356664373430323365656362633364303666313431323037646139613537 +38353239353839356462643366613035306634396538373436346562663964356264623930363037 +30383162373361313038653136663036393838393964646439363438383664653965383237376363 +33336538393263656135306432663464653436373938376164613033383263326234653464373033 +36643864336534666335396562343864623365346562323764306233393835626133323734326533 +34363838396633633337393031386162333039303236376265343461633961653433626635333837 +63343131313562616530373464366530373137333861626165653330376337363164303939393766 +61343034323537623262636364353532303835326562336362326234333432613231313762353361 +64613735656262616433396539303465396635363962616162306137646362633365633732336137 +62356662363038633165313438313365653530643639303662343166326433653964666538633239 +30326532323732346136346534303734613030623464303362346566353831626331346433633036 +33356536313134656437303934633565656539323831616534393938353664663036633437323337 +39653463333335393230343936303162613339613736623438393261653964363936356338326438 +32353761343466393037353933663733313266646332636239306565333638303434363034666438 +61396266653334626133363233393162646639383737666333613261636239323339653636336464 +36313332353233643661613739623433663731613766623532623838343163653566393566343230 +30623061383761643166393563393066666338346337303134626263373635643030306433383963 +36386466393335363430303861376261356665383265303432386362633766326363373632613536 +62616363313439366537376537343132633230653533663063663135663535303135333564613633 +64356663333134306331613561643865353863646661646338633434613765636663616465653932 +65383664643562343035366136366166393631303963663462653062396464333466333837326336 +32396238363966313531393637336561383537353538316634626239306361346664613463613036 +35383262333531336639626438353838306633326265306163346631363663363561373365643132 +63626233396538333933396566326365626437343830393130666239376264643437303137323465 +38393062323530363666376462626634656661653836316132653835636464616534343130383763 +39636134313164366566343832653366613930363665633732643733336539646561306361623936 +34353836643639666136323939343937623961643332393834393034646539663733316262396439 +35623861623064313036386231363838663535303532396630386162626130316364656630336365 +35366462623065313831396162623963386365383033386231666239653731353262326463613538 +30373737303462666139373863643431326230633065643539373035636261363262386136363065 +66366439303430663663656439363036313934643836333735343035376237373864646164643961 +36613032313537373733353330303139343831656462356638393133656262636165623539666265 +61626130613662303265623765303133656266646631633439386561366362656335386232643537 +34373737346338663862623435653964656165386437343437373639313333343566383336326638 +30633136313665613238303730636632613665626466393932643663303532353432306466396531 +38396136643234303132646263326366643330336538313833633938633433636665613061633563 +64363639336236316333623639643964326664656462613165633236313963306131323332666234 +37333135613461656465333465386366353464646633346364346561373366623464333438636638 +31643963386637633962386664303430393366366164356438333038343134373036343934623339 +62643438393934313264656163356639393366373139646131353230663132326535356266613764 +65633139316437393637626339336364326134616166616461326634306232646532313737396237 +38383761323962343135636633663539646238346562633862306332373366616666396339656236 +63356262373162343535666636323537616235613333343035386139313266323132636131636563 +39323738343836343235633061363061366134613736383535653231363539663939616263336263 +65303261346237373961643932613430336661623430373733613437333837316436363432323232 +61383032613366366536323833336465313231633565643865353334313365616262333433376334 +38333765393866626165626237366562313335373861346430626539393833656236363035343361 +64323131613231623035616634633163613434393537613139636635646665323932613430383966 +34643166376162353132343939366332393965303533336536633933326431666462373565313233 +32623932356337633236366331613332386330323137633435356435353864663566343637393431 +61376466343032323564643734383236336230633133373165326265383661633863633861376433 +32306535626237623735393236333431326463666637326366393339346564396538646631643565 +35643933383165653536616438633437653433656161646266343233376232373730306363646362 +30613737306436663863336631656531343332326631353339343836343432626332336139343362 +39336161396333613264613266656361393534623537363962646166303232653434663831363930 +37303232663332333263356539343738353734373235363430316233343564373731623832346566 +36356235663066373437663264363636333230386561653234613238636138326231343561616463 +30306235626439643531376336663730663834383261653336376630623463623862623630663536 +34346534663463613732663563353266306530396233363737316130363061393737373866366464 +38623264633537333338326635313239643134643663623762643630613233633938386234656233 +36363537326536663934363939373764626630353365393063303235393664306639656335653635 +37333634353362363633306462316464663835313234363062303336393364646531383361613733 +30316361356462356338383962326133366132366264623939646131653062366561393833363664 +35653336623634386134353966653164613336653565353234653661363338383965346230333436 +33396563303230373861313030643438393339306461343639306635373965336566373339386565 +36353334323833386333636266666338386264373531383866363363393764366134346434333031 +66633736333138363330383036363530333536663766636661653364643265346233343933386265 +39636637333736316439313063356664323437326133336535666332626363323635383366656136 +65333462313837313839313831613730326365346634393234616666363632383863383032396436 +39636139373330383833316532393464626634376434626233646366663565393031306234306365 +36396238636135346337373930643430643735663635626635373838306638326364386630306632 +32323366363931316635636562356266376264393238643831643330633230353261346439646135 +37323931386435393238363439363663373561363734626565613630343132386532346266303932 +39393334323233656566666562333934663065343332643131626439376263356663356137633436 +32336535313433336361616566353531643438383234326631626262313166613934653831366361 +39343939306133636638383432363739333064653934633634356266303332653830306138356636 +30646338616661373536666433616361363361333864643537306332313635333366303832663431 +38653266303430333838313532376233373233376362646339396333326331366338376438643538 +32623365303039303135383639373166653266613762376237373636383034333235383063613465 +62633430373131303332383033366234646333666130366639663433363962633232653761353965 +33353463333039653265643337303538306330363637323361663162623230643439653564313866 +66383738353631616238623235616564346234303063353134303761393264343038303432656638 +37356561313831653831323939613233323765386238373361363866366437316138383861633833 +65613564363936643032343235303037373463373665656465353966346364303062626462393038 +63616261663533313838363837326666323233633531383135643531663666306630353230303239 +39663262323930353162303733363039643638353335346539383064323435376265373833663035 +64363661653436656266353938396566613164303932343461366631653863623365616536326633 +34336335333732646238336631333035313131343236616637306164393137326130363234623863 +66626236396337623065646235613636313861626265366635363932383834323366313438313538 +32656135373139643130373533663032376161303365356662336439636138616237346133343232 +33336338386165363630636136636335383635393937346461643165653663663962666562313039 +39323639333533616537633834633732623833396163616165636434636364363739393364376135 +61626130363133333162363435313334373764313462386538313639353539663530613832633734 +32636632303362386364663766353033316530356438326239613962363635356538626130393161 +39663162633063653063376161383765353837653863333933363036626637323435306235376232 +64353534373537353632313336636363656439613738623563306137396533393838356532653564 +65343130343063626436323266656237383038343632656366633236616630363662666263346333 +63373438326634323132656265383163626663393731663130353832393766653466363539353461 +66316138633064353164633135386639613866653765333761373030643233343733653764376232 +30346431396631343965646636643663643334393330333139363631353261356137613261323961 +31663065626236343766663932363061336364643935633861386562353032353331383666336566 +33346563356637633163393635326235666163626238326437316636633933633631306430373632 +34343263663763343463613636663534396165343865623863353665356432306662663131303233 +66633832636661343038383461323033323764373732656434383365393864373366323036356637 +33313136393161383866656439656464633964656233336436313134316632643061306564613230 +62373935336432346238633331393930616364333535383433343964353964336136626535383163 +64333232633761343263653331386537316235666566386338646132653639626334373739633364 +64626134323061336263653563656238363366323262353832326566343431326634306538323861 +35616531393766623433313166396562633338373033343261626438313432333130386132393065 +33653338626430356231346539306264613361353334353235643063616634356466306631613339 +32333530383236373666333938373034653761653234396232646466623465393838333931316637 +33363734623133336134316464356335646437663539353339626337613732613239376531383562 +66363263653530386337383634353838366437623530323339616631303739636532313866646338 +34373633626364316634333836626666366662356262623762386364333432343262383034666161 +66313934356538363731323430653261643462343536396538646332653137363565323035306338 +31333639373765653462356431316162386635376463333838613161316537353131653339363830 +61653534373933663464663164356237386239616562343334303730626331346631313138663538 +33336661653035373766393331653239383439616332336336316631393166663831383133333065 +62643864306538346533303837323339306165353537666230643762666461653865323034626231 +66313034363832333038653836303638653838636139376364623235653362333133323836353233 +30373061396234313864313934336131396663613130633666396333386362383132396432613661 +31346362313865363035303462633431643038643833353134646435313663336539653339656237 +36303763643839333034393537333163626264613262383837633364353736653638303866616361 +37346230666566376638633961663764396231623863376639323437613234646265616663633039 +31393535346536326134646362396536323935333739316161366434356137626164323034636432 +62323761616137316162336364323865336434306234653631666362313065333437343636616333 +38393864346238663330373939363430653265656166333164386232356134333163303931656434 +61346461343864623233363432346538643938343730306139386230386230366264663766383031 +64646537343963303237336539386634396234343430656339643531616335343664393061633538 +36386636623038333935326461313837636365373765613238663438633062663431623437363531 +32633133666234346537613837306265663235633933623864666537663035313038326266343738 +33353261303836363436643434303265643534306339393262396366636232323135373663373432 +66376231626466323233346263623933393166613632386363636535663166633431396461386661 +62623032316432623663666466636534346237663730633537353664326236333230613966393330 +33373466306336323533646264323266386663383635616162313735363566613838353535616662 +36396339343234316265303231396533356561383431653733363732383430333036316266666534 +30643335376638306135646463323461396163623133623865316232306237383235366231353434 +34386562626363626366656333633865613537393966636633303833626162623538666466656338 +66313836376233363435383637313834646166663866353863383862653636373461326438626132 +32616437393038633438636330326161643166613063356564326161323235663466326330663761 +32613866656562613561313163346539643061306532653438643738646538633839636464356431 +32316432613531306564303431313631316561313739663161353233646534646130663839393438 +61373939663533303035303639316561383836626339383538346236353963356130316338373737 +37303262333864376366613233316665353931383337656630376461376662356165643163623462 +37356138306266356338383938303565376433383031373832353033326237396136393437323736 +62386433343334656462343138666230333566613433326266353731646666656135356462386438 +34363430363937303834313662613861663031613637336331343364613066343866653961323433 +32633331366265396262356361623236386661356639303031306433336331613230333938346662 +35346638393064303936346137616461656665646237383366316166626433363636376665356632 +32393363313935343634326163396537343538386338343361366164626363626337353034383965 +34633463666530323035626230663965333137623264393336343931396365623437626466643766 +36323532343734393836343937366237666535313836393232623464303266333566643264363631 +37383866386437396364313730663133306465653763336535313761666233666565326132656139 +64656232663436626163383037646534346535613333323364306538643261643764383264313636 +39366162623735333161663661316165663963393362636231393163313038653537613964663934 +64373635666539336532616536613331383138353662393761613964653730376231666161636563 +33633133353033343561376237623163666332303632326135656331313533623438366535326238 +31326639346461336265323534313132303036383263613738626130653334303633306233366532 +36313963376534663266613464316561396530363861383563393666353962653164643033636264 +63653930333637316131663635393233616338306436656666326434316431346363356439393864 +66376230646439316138333764383763633733396564313336333136306362303032346562363463 +35663530626361663964333931396239366232663730316165366636373934613038333237366262 +34333961666565316265343664616564303431653661363831623537633333336430386463373630 +62303262643465666335333239356163656364633831383639653538373132333663653864663635 +37393539626366333936633031663233303061396430363139336534306663656166333630623830 +63336632356430656437343130623131323463623630643835633632363238643135393662353538 +64636232343031366362336166323034336461386632663466366631346431346461633532383735 +65333035313739623066353238343934383631313135616430656231336461393638323039626431 +38323332303765616433343766633764363565623961643231356163383464363939376535323232 +61333832643964346230316632623164376362643439323732663665626664333861643462323262 +31616631343939623931343030313434386634356636613866613464303036653937373931316335 +64613464383738376232336465383830326333333938393163633331666332613633373531333932 +64336634303461313162326339383761336336353063386231343637373162363334613930333536 +37376565653966653561643930373664336435376434366265333032353063383562646666343738 +61393731343966376462363935353638616364306532633237333634363363393161663135643139 +35373633326361393533356331643731306130663263356561623766616339633030383433333261 +64333832636230623139656531396139613234393837353764333938616266393265656633396166 +64393163336136306561623538663564343530613961623033393266393739353831323336333063 +36356637663139333034616433613738353261643162663563353863376332623865343162343535 +31643932343432353065626232356162393031613231623933393265633662653935376263363865 +65373366633136623766386539356265366461656562656664653361646334323837636465656231 +30326130363033346563353663383130363433346638663435353065316332633863663237373761 +61343839396262326232656464326366623665356338313038373234663966363838633631616162 +33396561376136386439343965636537346231316664323635323564363837333134643736623533 +37653862363735373062346564383762363135616539336263643633386132653962366439653861 +62356638336666653438653765353032343737323636653038346639666165393761343839326633 +35666663396635613230633335303535363032636166393234656161653332316265316438663336 +61653534356136383432313639343937663535626538326662646665363637366339386235326664 +65396536323530613564656333663637653465363464316564383030376138653339373438366538 +38626234633966313838393238613264663436306434636161326561383533356533623530303563 +65366261353230656238633631653663313230643539346534313961623261396531633836383336 +64333861373663386335323839656233306337613635303639356433663665363732323161643962 +65393933323533316134373131646537626365343038373564383635636261343436346261383666 +33386534616331333130313636626639613338393464653234313232613565326562313330346130 +32313539633038303935333461366261353964336236343731363739376139386332383534633937 +37313362633063326634626365623265386662653562343365643263653432336230366135666632 +39323766346539366136393237303463336266633734633664643731356366613439663432613131 +34336465303834666230343365316261663739393162386364653438616139616232376238386163 +61623239393865663532323136393533353130643535316364646666386230303133643962623164 +34653334633834623662366266343465343137333462303139363830376561646131643938343962 +61363462316330363333366339613436306566333864646465623361633464396565613533326532 +65376633373964306138343637623535623038376430646238383534643833363734306561646166 +32613062653133353033323464363962343163666362613661343131343932353338346234626237 +63373638343634356362303836633630646639653930366538623031333139316237303639633766 +36633035613566623232366338386261353530656665333432366463333837376431623739363733 +30626166373262643939363331643936653233306362386364336437373061653631326231663630 +33333938306539343132626363383362633237363432656639303066643139323938633339303636 +34356133303130313230366166653431303136643836343063613331323262653535323133656232 +30623037633239626466626566363537363464653637353261633234653261326331366464303936 +63333062363330383266656138626332616131393638383437356533363338613531623233353033 +33396635623633343338326438636562636233613862313766353335666161653564383266663337 +37623265336430633135353931623361653030373663333533363331336136383934396239373666 +65383439346538333239633863336530656132383739333239396635633739373466623133383363 +64656635613830643934633662383633613434396366306563613537636339306531386363656665 +64343031303831313464646165346463356466373162376538613238383365366233643130333166 +31613638336366633834663465636366376535373863313664386563396136303238376661623439 +63386339396239366164386230373766316537386334363033343661333862626534386535653165 +32316136373063313164616234666436316265353634666130653433633239313032333334343436 +35623366383131666163343761623938356661623730376436303831633932323963633461366430 +66383862646264633337326463613061303235363630333261363838663338333235626362306534 +65326364633733303437626538666636396662643863623765363433363637666662646664393838 +65363330633163623739653734393932613563633732636639363463343439323133383763656666 +61303962653632353963386262313339376165623062313637626265613165383333636661633934 +66383664363333383036313061643835373564616433633033306463623536373231646637336364 +31393862663332353234306430333833363137616465663630656130376666623631356465333362 +39616533336531303761653362323464623435373065656662326231383265366231306666373962 +30333361636433346664343366636133303237623864653531373532643733303636363030626539 +31303864343664393362326163613036643638306636646466396639373234393738383538646533 +37623338656235333333656333383130323830656665396531386431393462643635306661323663 +35303466383937343866633232363961383438303762306134336461343264386539333038303137 +39633234623435366264326334313337666331363961383733303134333361303863313739343465 +39653838386130626634643531353137626439333736373831613930326561323661623561333734 +37653163303036666161633466333732343135323731373633333439333063323562373766323938 +63333036313132393033366634333636366565383133356336613365303964313762313262336166 +66666564323934663633373466353236363131626338343864656665343034343464383737353366 +65626564623038616336326462336365383931363938613462636434653131323333616435346662 +37666332373131643561376663666532353664653039396438343837613036303362633964333832 +62326361356436376236363564373231616631643665393433316231626432613934373561666538 +64396532333362366433313435353463333337653666613266663165333134383534636138303461 +66303035366134636366616633333732323332366132626664633366633635343033633835313238 +30383937356634663531393462393139313366316630323732386539663335323538623530663635 +34666131666563313261663230386530396132316366613830333039303261323164373834626463 +36633333643039336166306431343132353966303737643333376563613033346565663161653931 +63383537346463393262393465363037623561626235643637623635613763366131636434633933 +37333234383063363365646335653332376265306166663831623139663366363738336231343265 +66386165393831363462366432316164656431623030353837623364343632646634383730626266 +65363837303338306236386561363637333934653630633032633761623039663665386530323663 +64666564303335373830343939383463623161616434656661393564666337643035386435663032 +33346135366338386231646131656433393731363036616438343539653833353231386261633838 +62366335346566336132303964356533653533313963636436393565383062626533643438643064 +66383564393531656437616265616434316536363666643165623561356431346531373462633839 +30646165643530663162323662373635616532373663366530336561363838343333333535616364 +62386339386366663838626164623764373934666462663966633930643164313966643263663032 +63613930383532363030393566306230343134343937383261633064363038306266633762636366 +35383163386462623038313533323835373664336636323731303738353439643535366562653236 +39613531393939383963653633613266663039343666353261316163373237653263366234326331 +32666662303730303834323939336534356661626534633664616634396265616365363765326165 +38393535643563316530633733626166303436343263313162623837363135646163333031613134 +38626666616535643764386164613038313562643836363961313233633862653837613964333931 +32663666356339346161316361366139313863393363313231373730366131633362316433616335 +61313835326463316265633562306362356465356631643434383263643763346261653062353663 +37346535393235373936393561346630373063383634326365663363323538616335373034643930 +62646130633433353062613566633039646235376165323038613265626563386363656466616664 +31623265353334393238393030313839666264633834626134633435366236363637323730643864 +64613337383330343635653264343035373739333764353034666165626463333932306362633161 +66376264323634613137653139613239356537306134653336313535666632383935376438613263 +36323535366635643362656534653635343239626661393639393833323466366431643562333431 +65336236386534663061333439393333363031353566626263353736326338353636323331373234 +66623362653937353636303736303839626661636633336262326565376133336434363837633736 +64633632666464653035616636393739656664626661326630303432343466343537396434663538 +38333430356236343364396531623031363963313133373130646266383064633231373336383861 +61373366366466383739336533356265346438306534653666656638333331366439393735356236 +39616664633037616461363630643830326563396139333936383962383736313632343738313464 +38366635663130633734363061316130356331373130376632333830363534666636383031373832 +34623362373839346631333337376266323037393436633635353435633464336436303765316434 +36653262626565326237366639343835646534393161373932333439643165393965333262386134 +65346631356165326163306239313837316633636365313265646164613135356531663133636562 +32303761626238363431366539623939383632343665643364646363373530616337663338663230 +37373531323331616361653965386631373136633137653737666634333435363066336162333933 +32306663376666666538613736313332643061343166616533396163336261626238663563373462 +31353364613139636532366132623763353738613761643766303063306437633063393134653436 +61653336393961303830383538633866623333376133353736653630656134653238616534633139 +38393036356365346436663866653935346330333139646631336465313665616361626630303638 +64303862633565313832643566373766386137623364663837366565353065306633356361363166 +36633164306664306461616462333630313932643461343433646539616663366432393363633638 +30643562373833363436633662663266653239313730363066636138313431656435373962633638 +39323231303562633132333736333436343834373164613737313037346230363732343030653665 +63393331313465386230363230646435393263643938616364626433313136323536326264626463 +39613134303333326537366134633361656435303938316533316237373638613965323639633766 +32373362343561643339626336656264643632623438373631386539393239383262353664646532 +33396134613330346633613934386331656131393331353362633863373036636131313363613639 +30643036363533383036323838663737616662663131313133643138383463653134343766653738 +64396535343664613866393934363234353561386438656430356138313261326631653239316431 +38313538626336363337666533346562303465353835613731633734616539636632373364383336 +6536 -- 2.51.0