postfix-3.5.9-150300.5.15.1<>,eep9|\FSK,K1o=T41e Й _{[~)1 ݇+RˇX<.C}9Y{x<KN2:CqiI7xHҳ+R  c,\˵fTImʀEg|8{TZ7tc+Gq S(F1^n-ۻЏ7 F7T1[9ě.cڳ`=$cKo.d~R|YfKjP">T?d   B -DJRDt   ! $ O  PSX"\.\T_ `0a@0e0e|ee(e7e8g$}9i}:rj}=c5>c=?cE@cMBcUCcbFcjGcHfIiXj Yj Zk@[kD\kX]n^wbyczGdzezfzlzuzv~;wxyzCpostfix3.5.9150300.5.15.1A fast, secure, and flexible mailerPostfix aims to be an alternative to the widely-used sendmail program.eeibs-power9-11[vSUSE Linux Enterprise 15SUSE LLC IPL-1.0 OR EPL-2.0https://www.suse.com/Productivity/Networking/Email/Servershttp://www.postfix.orglinuxppc64le# If existing default database type is hash, we need to convert the # databases because hash (and btree) is no longer supported after # the upgrade if [ -x /usr/sbin/postconf ]; then DEF_DB_TYPE=$(postconf default_database_type) case $DEF_DB_TYPE in *hash) touch /run/postfix-needs-convert esac fi if [ -x /usr/bin/systemctl ]; then test -n "$FIRST_ARG" || FIRST_ARG="$1" [ -d /var/lib/systemd/migrated ] || mkdir -p /var/lib/systemd/migrated || : for service in postfix.service ; do sysv_service=${service%.*} if [ ! -e /usr/lib/systemd/system/$service ] && [ ! -e /etc/init.d/$sysv_service ]; then mkdir -p /run/systemd/rpm/needs-preset touch /run/systemd/rpm/needs-preset/$service elif [ -e /etc/init.d/$sysv_service ] && [ ! -e /var/lib/systemd/migrated/$sysv_service ]; then /usr/sbin/systemd-sysv-convert --save $sysv_service || : mkdir -p /run/systemd/rpm/needs-sysv-convert touch /run/systemd/rpm/needs-sysv-convert/$service fi done fi #!/bin/bash tail -n 5 $0 | /usr/sbin/sysusers2shadow RET=$? test -f /.buildenv && exit 0 exit $RET ######## data below ######## g maildrop 59 - - g postfix 51 - - u postfix 51 "Postfix Daemon" /var/spool/postfix m postfix maildrop m postfix mail # We never have to run suseconfig for postfix after installation # We only start postfix own upgrade-configuration by update # # If the default database type of the previous installation was # hash, we also need to rebuild the databases in the new lmdb # format if [ ${1:-0} -gt 1 ]; then touch /var/adm/postfix.configured echo "Executing upgrade-configuration." /usr/sbin/postfix set-permissions upgrade-configuration setgid_group=maildrop || : if [ "$(/usr/sbin/postconf -h daemon_directory)" != "/usr/lib/postfix/bin/" ]; then /usr/sbin/postconf daemon_directory=/usr/lib/postfix/bin/ fi if [ -e /run/postfix-needs-convert ]; then sed -i -E "s/(btree|hash):/lmdb:/g" /etc/postfix/{main.cf,master.cf} for i in $(find /etc/postfix -name "*.db"); do postmap ${i%.db} done for i in $(find /etc/aliases.d/ -name "*.db"); do postalias ${i%.db} done if [ -e /etc/aliases.db ]; then postalias /etc/aliases fi rm /run/postfix-needs-convert fi fi if [ -x /usr/bin/chkstat ]; then /usr/bin/chkstat -n --set --system /usr/sbin/postqueue fi if [ -x /usr/bin/chkstat ]; then /usr/bin/chkstat -n --set --system /usr/sbin/postdrop fi if [ -x /usr/bin/chkstat ]; then /usr/bin/chkstat -n --set --system /etc/postfix/sasl_passwd fi if [ -x /usr/bin/chkstat ]; then /usr/bin/chkstat -n --set --system /usr/sbin/sendmail fi PNAME=postfix SUBPNAME= SYSC_TEMPLATE=/usr/share/fillup-templates/sysconfig.$PNAME$SUBPNAME # If template not in new /usr/share/fillup-templates, fallback to old TEMPLATE_DIR if [ ! -f $SYSC_TEMPLATE ] ; then TEMPLATE_DIR=/var/adm/fillup-templates SYSC_TEMPLATE=$TEMPLATE_DIR/sysconfig.$PNAME$SUBPNAME fi SD_NAME="" if [ -x /bin/fillup ] ; then if [ -f $SYSC_TEMPLATE ] ; then echo "Updating /etc/sysconfig/$SD_NAME$PNAME ..." mkdir -p /etc/sysconfig/$SD_NAME touch /etc/sysconfig/$SD_NAME$PNAME /bin/fillup -q /etc/sysconfig/$SD_NAME$PNAME $SYSC_TEMPLATE fi else echo "ERROR: fillup not found. This should not happen. Please compare" echo "/etc/sysconfig/$PNAME and $TEMPLATE_DIR/sysconfig.$PNAME and" echo "update by hand." fi PNAME=mail SUBPNAME=-postfix SYSC_TEMPLATE=/usr/share/fillup-templates/sysconfig.$PNAME$SUBPNAME # If template not in new /usr/share/fillup-templates, fallback to old TEMPLATE_DIR if [ ! -f $SYSC_TEMPLATE ] ; then TEMPLATE_DIR=/var/adm/fillup-templates SYSC_TEMPLATE=$TEMPLATE_DIR/sysconfig.$PNAME$SUBPNAME fi SD_NAME="" if [ -x /bin/fillup ] ; then if [ -f $SYSC_TEMPLATE ] ; then echo "Updating /etc/sysconfig/$SD_NAME$PNAME ..." mkdir -p /etc/sysconfig/$SD_NAME touch /etc/sysconfig/$SD_NAME$PNAME /bin/fillup -q /etc/sysconfig/$SD_NAME$PNAME $SYSC_TEMPLATE fi else echo "ERROR: fillup not found. This should not happen. Please compare" echo "/etc/sysconfig/$PNAME and $TEMPLATE_DIR/sysconfig.$PNAME and" echo "update by hand." fi if [ -x /usr/bin/systemctl ]; then test -n "$FIRST_ARG" || FIRST_ARG="$1" [ -d /var/lib/systemd/migrated ] || mkdir -p /var/lib/systemd/migrated || : if [ "$YAST_IS_RUNNING" != "instsys" ]; then /usr/bin/systemctl daemon-reload || : fi for service in postfix.service ; do sysv_service=${service%.*} if [ -e /run/systemd/rpm/needs-preset/$service ]; then /usr/bin/systemctl preset $service || : rm "/run/systemd/rpm/needs-preset/$service" || : elif [ -e /run/systemd/rpm/needs-sysv-convert/$service ]; then /usr/sbin/systemd-sysv-convert --apply $sysv_service || : rm "/run/systemd/rpm/needs-sysv-convert/$service" || : touch /var/lib/systemd/migrated/$sysv_service || : fi done fi test -n "$FIRST_ARG" || FIRST_ARG="$1" if [ "$FIRST_ARG" -eq 0 -a -x /usr/bin/systemctl ]; then # Package removal, not upgrade /usr/bin/systemctl --no-reload disable postfix.service || : ( test "$YAST_IS_RUNNING" = instsys && exit 0 test -f /etc/sysconfig/services -a \ -z "$DISABLE_STOP_ON_REMOVAL" && . /etc/sysconfig/services test "$DISABLE_STOP_ON_REMOVAL" = yes -o \ "$DISABLE_STOP_ON_REMOVAL" = 1 && exit 0 /usr/bin/systemctl stop postfix.service ) || : fi test -n "$FIRST_ARG" || FIRST_ARG="$1" if [ $1 -eq 0 ]; then # Package removal for service in postfix.service ; do sysv_service="${service%.*}" rm -f "/var/lib/systemd/migrated/$sysv_service" || : done fi if [ -x /usr/bin/systemctl ]; then /usr/bin/systemctl daemon-reload || : fi if [ "$FIRST_ARG" -ge 1 ]; then # Package upgrade, not uninstall if [ -x /usr/bin/systemctl ]; then ( test "$YAST_IS_RUNNING" = instsys && exit 0 test -f /etc/sysconfig/services -a \ -z "$DISABLE_RESTART_ON_UPDATE" && . /etc/sysconfig/services test "$DISABLE_RESTART_ON_UPDATE" = yes -o \ "$DISABLE_RESTART_ON_UPDATE" = 1 && exit 0 /usr/bin/systemctl try-restart postfix.service ) || : fi fi ~Rw) 3'\{{?1%4|61@  @@@X (PP@ pt*nI@$H X@@@ (@ (@ @@ yW1!F``^R3 x @@x 8`@@@@ P@ HX `&2 /usr/bin/chkstat -n --warn --system -e /usr/sbin/postdrop 1>&2 /usr/bin/chkstat -n --warn --system -e /etc/postfix/sasl_passwd 1>&2 /usr/bin/chkstat -n --warn --system -e /usr/sbin/sendmail 1>&2 # ---------------------------------------------------------------------------e(e;dܺ@a^@a'@``H`B@`3@`U`__@_@_@__j___L@_D@_?@_/@_p@_A@^^^b^'@^>@^=@^ku^=Q@^:@^8 @]e@]@]b@]m]M`@]:@]9]4S]]^@]@\@\\\@\~d\}@\zp@\y\\\LK\I[[=@[ͻ[[[[ZZUZZkZ@Z)-@Z@ZY@Y@YMY@Y@YY@YyYC@XQ@Xh@XX@XO@XO@X7@XM@Xv@Xk@X9y@X)@X lW1@W WPWJWDB@WDB@WVVVV@VhVU5@U@U@UUlI@UXU6;U3Tء@TOT@TTT@To)@TeTN3TD@varkoly@suse.comvarkoly@suse.comvarkoly@suse.comvarkoly@suse.comvarkoly@suse.comvarkoly@suse.comvarkoly@suse.comvarkoly@suse.comvarkoly@suse.comvarkoly@suse.cominfo@paolostivanin.comsuse+build@de-korte.orgvarkoly@suse.comsuse+build@de-korte.orgsuse+build@de-korte.orgsuse+build@de-korte.orgvarkoly@suse.comvarkoly@suse.commichael@stroeder.commichael@stroeder.comkukuk@suse.comkukuk@suse.comsuse+build@de-korte.orgmichael@stroeder.comsuse+build@de-korte.orgkukuk@suse.commichael@stroeder.commichael@stroeder.commichael@stroeder.comsuse+build@de-korte.orgmichael@stroeder.commichael@stroeder.comvarkoly@suse.comvarkoly@suse.commichael@stroeder.commichael@stroeder.commliska@suse.czmichael@stroeder.comvarkoly@suse.comchris@computersalat.devarkoly@suse.commatthias.gerstner@suse.comchris@computersalat.demichael@stroeder.comvarkoly@suse.comdimstar@opensuse.orgtchvatal@suse.comvarkoly@suse.commichael@stroeder.comvarkoly@suse.comjslaby@suse.commrueckert@suse.demichael@stroeder.commax@suse.comchris@computersalat.dechris@computersalat.demalte.kraus@suse.commichael@stroeder.comchris@computersalat.dechris@computersalat.devarkoly@suse.comtchvatal@suse.comvarkoly@suse.commichael@stroeder.comlnussel@suse.deadam.majer@suse.devarkoly@suse.comilya@ilya.pp.uavarkoly@suse.comdimstar@opensuse.orgrbrown@suse.comkukuk@suse.demichael@stroeder.comvarkoly@suse.comchris@computersalat.devarkoly@suse.comvarkoly@suse.commichael@stroeder.comkukuk@suse.devarkoly@suse.commichael@stroeder.comchris@computersalat.dewerner@suse.dechris@computersalat.dekukuk@suse.demrueckert@suse.dewr@rosenauer.orgkukuk@suse.comchris@computersalat.devarkoly@suse.comvarkoly@suse.comchris@computersalat.dechris@computersalat.dechris@computersalat.demichael@stroeder.commichael@stroeder.comschwab@suse.dechris@computersalat.devarkoly@suse.comvarkoly@suse.comopensuse@dstoecker.demrueckert@suse.demrueckert@suse.demrueckert@suse.devarkoly@suse.comvarkoly@suse.commichael@stroeder.comjkeil@suse.demeissner@suse.commeissner@suse.commichael@stroeder.comcrrodriguez@opensuse.orgmpluskal@suse.commrueckert@suse.demrueckert@suse.demichael@stroeder.comvarkoly@suse.comvarkoly@suse.commpluskal@suse.comvarkoly@suse.comvarkoly@suse.comtchvatal@suse.comdimstar@opensuse.orgdmueller@suse.commichael@stroeder.com- (bsc#1218304) VUL-0: postfix: new SMTP smuggling attack (bsc#1218314) SMTP Smuggling - Spoofing E-Mails Worldwide Apply patch containing the feature smtpd_forbid_unauth_pipelining as default yes. add patch: postfix-3.7-patch06 - Security: the Postfix SMTP server optionally disconnects remote SMTP clients that violate RFC 2920 (or 5321) command pipelining constraints. The server replies with "554 5.5.0 Error: SMTP protocol synchronization" and logs the unexpected remote SMTP client input. Specify "smtpd_forbid_unauth_pipelining = yes" to enable. - Workaround to limit collateral damage from OS distributions that crank up security to 11, increasing the number of plaintext email deliveries. This introduces basic OpenSSL configuration file support, with two new parameters "tls_config_file" and "tls_config_name". Details are in the postconf(5) manpage under "tls_config_file" and "tls_config_name".- postfix: config.postfix causes too tight permission on main.cf (bsc#1215372)- CVE-2023-32182: postfix: config_postfix SUSE specific script potentially bad /tmp file usage (bsc#1211196) Use temp file created by mktemp- config.postfix not updatet after lmdb switch (bsc#1190945) Adapt config.postfix- postfix master.cf: to include "submissions" service (bsc#1189684) Adapt master.cf patch- (bsc#1186669) - postfix.service has "Requires=var-run.mount" Remove bad requirements- (bsc#1183305) - config.postfix uses db as suffix for postmaps Depending on DEF_DB_TYPE uses lmdb or db- (bsc#1182833) - /usr/share/fillup-templates/sysconfig.postfix still refers to /etc/services Use getent to detect if smtps is already defined.- (bsc#1180473) [Build 20201230] postfix has invalid default config (bsc#1181381) [Build 130.3] openQA test fails in mta, mutt - postfix broken: "queue file write error" and "error: unsupported dictionary type: hash" Export DEF_DB_TYPE before starting the perl script.- bsc#1180473 - [Build 20201230] postfix has invalid default config Fixing config.postfix and sysconfig.postfix- Update to 3.5.9 * improves the reporting of DNSSEC problems that may affect DANE security- Only do the conversion from the hash/btree databases to lmdb when the default database type changes from hash to lmdb and do not stop and start the service (the old compiled databases can live together with the new ones) - convert-bdb-to-lmdb.sh - Clean up the specfile * Remove < 1330 conditional builds * Use generated postfix-files instead of the obsolete one from postfix-SUSE.tar.gz * Use dynamicmaps.cf.d instead of modifying dynamicmaps.cf upon (de)installation of optional mysql, pgsql and ldap subpackages * Use default location for post-install, postfix-tls-script, postfix-wrapper and postmulti-script- Set lmdb to be the default db. - Convert btree tables to lmdb too. Stop postfix before converting from bdb to lmdb - This package is without bdb support. That's why convert must be done without any suse release condition. o remove patch postfix-no-btree.patch o add set-default-db-type.patch- Set database type for address_verify_map and postscreen_cache_map to lmdb (btree requires Berkeley DB) o add postfix-no-btree.patch- Set default database type to lmdb and fix update_postmaps script- Use variable substition instead of sed to remove .db suffix and substitute hash: for lmdb: in /etc/postfix/master.cf as well. Check before substitution if there is something to do (to keep rpmcheck happy).- bsc#1176650 L3: What is regularly triggering the "fillup" command and changing modify-time of /etc/sysconfig/postfix? o Remove miss placed fillup_only call from %verifyscript- Remove Berkeley DB dependency (JIRA#SLE-12191) The pacakges postfix is build without Berkely DB support. lmdb will be used instead of BDB. The pacakges postfix-bdb is build with Berkely DB support. o add patch for main.cf for postfix-bdb package postfix-bdb-main.cf.patch- Update to 3.5.8 * The Postfix SMTP client inserted into message headers longer than $line_length_limit (default: 2048), causing all subsequent header content to become message body content. * The postscreen daemon did not save a copy of the postscreen_dnsbl_reply_map lookup result. This has no effect when the recommended texthash: look table is used, but it could result in stale data with other lookup tables. * After deleting a recipient with a Milter, the Postfix recipient duplicate filter was not updated; the filter suppressed requests to add the recipient back. * Memory leak: the static: maps did not free their casefolding buffer. * With "smtpd_tls_wrappermode = yes", the smtps service was waiting for a TLS handshake, after processing an XCLIENT command. * The smtp_sasl_mechanism_filter implementation ignored table lookup errors, treating them as 'not found'. * The code that looks for Delivered-To: headers ignored headers longer than $line_length_limit (default: 2048).- Update to 3.5.7 * Fixed random certificate verification failures with "smtp_tls_connection_reuse = yes", because tlsproxy(8) was using the wrong global TLS context for connections that use DANE or non-DANE trust anchors.- Move ldap into an own sub-package like all other databases - Move manual pages to correct sub-package- Use sysusers.d to create system accounts - Remove wrong %config for systemd directory content- Use the correct signature file for source verification - Rename postfix-3.5.6.tar.gz.sig to postfix-3.5.6.tar.gz.asc (to prevent confusion, as the signature file from upstream with .sig extension is incompatible with the build service)- Update to 3.5.6 with following fixes: * Workaround for unexpected TLS interoperability problems when Postfix runs on OS distributions with system-wide OpenSSL configurations. * Memory leaks in the Postfix TLS library, the largest one involving multiple kBytes per peer certificate.- Add source verification (add postfix.keyring)- Use systemd_ordering instead of systemd_require. - Move /etc/postfix/system to /usr/lib/postfix/systemd [bsc#1173688] - Drop /var/adm/SuSEconfig from %post, it does nothing. - Rename postfix-SuSE to postfix-SUSE - Delete postfix-SUSE/README.SuSE, company name spelled wrong, completly outdated and not used. - Delete postfix-SUSE/SPAMASSASSIN+POSTFIX.SuSE, company name spelled wrong, outdated and not used. - sysconfig.mail-postfix: Fix description of MAIL_CREATE_CONFIG, SuSEconfig is gone since ages. - update_chroot.systemd: Remove advice to run SuSEconfig. - Remove rc.postfix, not used, outdated. - mkpostfixcert: Remove advice to run SuSEconfig.- Update to 3.5.4: * The connection_reuse attribute in smtp_tls_policy_maps always resulted in an "invalid attribute name" error. * SMTP over TLS connection reuse always failed for Postfix SMTP client configurations that specify explicit trust anchors (remote SMTP server certificates or public keys). * The Postfix SMTP client's DANE implementation would always send an SNI option with the name in a destination's MX record, even if the MX record pointed to a CNAME record. MX records that point to CNAME records are not conformant with RFC5321, and so are rare. Based on the DANE survey of ~2 million hosts it was found that with the corrected SMTP client behavior, sending SNI with the CNAME-expanded name, the SMTP server would not send a different certificate. This fix should therefore be safe.- Update to 3.5.3: * TLS handshake failure in the Postfix SMTP server during SNI processing, after the server-side TLS engine sent a TLSv1.3 HelloRetryRequest (HRR) to a remote SMTP client. * The command "postfix tls deploy-server-cert" did not handle a missing optional argument. This bug was introduced in Postfix 3.1.- Update to 3.5.2: * A TLS error for a database client caused a false 'lost connection' error for an SMTP over TLS session in the same Postfix process. This bug was introduced with Postfix 2.2. * The same bug existed in the tlsproxy(8) daemon, where a TLS error for one TLS session could cause a false 'lost connection' error for a concurrent TLS session in the same process. This bug was introduced with Postfix 2.8. * The Postfix build now disables DANE support on Linux systems with libc-musl such as Alpine, because libc-musl provides no indication whether DNS responses are authentic. This broke DANE support without a clear explanation. * Due to implementation changes in the ICU library, some Postfix daemons reported file access errrors (U_FILE_ACCESS_ERROR) after chroot(). This was fixed by initializing the ICU library before making the chroot() call. * Minor code changes to silence a compiler that special-cases string literals. * Segfault (null pointer) in the tlsproxy(8) client role when the server role was disabled. This typically happened on systems that do not receive mail, after configuring connection reuse for outbound SMTP over TLS. * The date portion of the maillog_file_rotate_suffix default value used the minute (%M) instead of the month (%m).- boo#1106004 fix incorrect locations for files in postfix-files- Dropped deprecated-RES_INSECURE1.patch to make DNSSEC-secured lookups and DANE mail transport work again - Update to 3.5.1: * Support for the haproxy v2 protocol. The Postfix implementation supports TCP over IPv4 and IPv6, as well as non-proxied connections; the latter are typically used for heartbeat tests. * Support to force-expire email messages. This introduces new postsuper(1) command-line options to request expiration, and additional information in mailq(1) or postqueue(1) output. * The Postfix SMTP and LMTP client support a list of nexthop destinations separated by comma or whitespace. These destinations will be tried in the specified order. * Incompatible changes: * Logging: Postfix daemon processes now log the from= and to= addresses in external (quoted) form in non-debug logging (info, warning, etc.). This means that when an address localpart contains spaces or other special characters, the localpart will be quoted, for example: from=<"name with spaces"@example.com> Specify "info_log_address_format = internal" for backwards compatibility. * Postfix now normalizes IP addresses received with XCLIENT, XFORWARD, or with the HaProxy protocol, for consistency with direct connections to Postfix. This may change the appearance of logging, and the way that check_client_access will match subnets of an IPv6 address.- Update to 3.4.10: * Bug (introduced: Postfix 2.3): Postfix Milter client state was not properly reset after one Milter in a multi-Milter configuration failed during MAIL FROM, resulting in a Postfix Milter client panic during the next MAIL FROM command in the same SMTP session.- bsc#1162891 server:mail/postfix: cond_slp bug on TW after moving /etc/services to /usr/etc/services- bsc#1160413 postfix fails with -fno-common- Update to 3.4.9: * Bug (introduced: Postfix 3.1): smtp_dns_resolver_options were broken while adding support for negative DNS response caching in postscreen. Postfix was inadvertently changed to call res_query() instead of res_search(). * Bug (introduced: Postfix 2.5): Postfix ignored the CONNECT macro overrides from a Milter application. Postfix now evaluates the Milter macros for an SMTP CONNECT event after the Postfix-to-Milter connection is negotiated. * Bug (introduced: Postfix 3.0): sanitize (remote) server responses before storing them in the verify database, to avoid Postfix warnings about malformed UTF8. Found during code maintenance.- Update to 3.4.8: * Fix for an Exim interoperability problem when postscreen after-220 checks are enabled. Bug introduced in Postfix 3.4: the code that detected "PIPELINING after BDAT" looked at the wrong variable. The warning now says "BDAT without valid RCPT", and the error is no longer treated as a command PIPELINING error, thus allowing mail to be delivered. Meanwhile, Exim has been fixed to stop sending BDAT commands when postscreen rejects all RCPT commands. * Usability bug, introduced in Postfix 3.4: the parser for key/certificate chain files rejected inputs that contain an EC PARAMETERS object. While this is technically correct (the documentation says what types are allowed) this is surprising behavior because the legacy cert/key parameters will accept such inputs. For now, the parser skips object types that it does not know about for usability, and logs a warning because ignoring inputs is not kosher. * Bug introduced in Postfix 2.8: don't gratuitously enable all after-220 tests when only one such test is enabled. This made selective tests impossible with 'good' clients. This will be fixed in older Postfix versions at some later time.- Backport deprecated-RES_INSECURE1.patch in order to fix boo#1149705.- Update to 3.4.7: * Robustness: the tlsproxy(8) daemon could go into a loop, logging a flood of error messages. Problem reported by Andreas Schulze after enabling SMTP/TLS connection reuse. * Workaround: OpenSSL changed an SSL_Shutdown() non-error result value into an error result value, causing logfile noise. * Configuration: the new 'TLS fast shutdown' parameter name was implemented incorrectly. The documentation said "tls_fast_shutdown_enable", but the code said "tls_fast_shutdown". This was fixed by changing the code, because no-one is expected to override the default. * Performance: workaround for poor TCP loopback performance on LINUX, where getsockopt(..., TCP_MAXSEG, ...) reports a bogus TCP maximal segment size that is 1/2 to 1/3 of the real MSS. To avoid client-side Nagle delays or server-side delayed ACKs caused by multiple smaller-than-MSS writes, Postfix chooses a VSTREAM buffer size that is a small multiple of the reported bogus MSS. This workaround increases the multiplier from 2x to 4x. * Robustness: the Postfix Dovecot client could segfault (null pointer read) or cause an SMTP server assertion to fail when talking to a fake Dovecot server. The Postfix Dovecot client now logs a proper error instead.- bsc#1120757 L3: File Permissions->Paranoid can cause a system hang Break loop if postfix has no permission in spool directory. - add postfix-avoid-infinit-loop-if-no-permission.patch- fix for boo#1144946 mydestination - missing default localhost * update config.postfix- bsc#1142881 - mkpostfixcert from Postfix still uses md- removal of SuSEfirewall2 service, since SuSEfirewall2 has been replaced by firewalld, see [1]. [1]: https://lists.opensuse.org/opensuse-factory/2019-01/msg00490.html- update example POSTFIX_BASIC_SPAM_PREVENTION: permit_mynetworks for * POSTFIX_SMTPD_HELO_RESTRICTIONS * POSTFIX_SMTPD_RECIPIENT_RESTRICTIONS - fix for: Can't connect to local MySQL server through socket '/run/mysql/mysql.sock' * update config.postfix * update update_chroot.systemd- Update to 3.4.6: * Workaround for implementations that hang Postfix while shutting down a TLS session, until Postfix times out. With "tls_fast_shutdown_enable = yes" (the default), Postfix no longer waits for the TLS peer to respond to a TLS 'close' request. This is recommended with TLSv1.0 and later. * Fixed a too-strict censoring filter that broke multiline Milter responses for header/body events. Problem report by Andreas Thienemann. * The code to reset Postfix SMTP server command counts was not called after a HaProxy handshake failure, causing stale numbers to be reported. Problem report by Joseph Ward. * postconf(5) documentation: tlsext_padding is not a tls_ssl_options feature. * smtp(8) documentation: updated the BUGS section text about Postfix support to reuse open TLS connections. * Portability: added "#undef sun" to util/unix_dgram_connect.c.- Ensure that postfix is member of all groups as before.- BuildRequire pkgconfig(systemd) instead of systemd: allow OBS to shortcut the build queues by allowing usage of systemd-mini- Drop the omc config fate#301838: * it is obsolete since SLE11- bsc#1104543 config.postfix does not start tlsmgr in master.cf when using POSTFIX_SMTP_TLS_CLIENT="must". Applyed the proposed patch.- Update to 3.4.5: Bugfix (introduced: Postfix 3.0): LMTP connections over UNIX-domain sockets were cached but not reused, due to a cache lookup key mismatch. Therefore, idle cached connections could exhaust LMTP server resources, resulting in two-second pauses between email deliveries. This problem was investigated by Juliana Rodrigueiro. File: smtp/smtp_connect.c.- Update to 3.4.4 o Incompatible changes - The Postfix SMTP server announces CHUNKING (BDAT command) by default. In the unlikely case that this breaks some important remote SMTP client, disable the feature as follows: /etc/postfix/main.cf: [#] The logging alternative: smtpd_discard_ehlo_keywords = chunking [#] The non-logging alternative: smtpd_discard_ehlo_keywords = chunking, silent_discard - This introduces a new master.cf service 'postlog' with type 'unix-dgram' that is used by the new postlogd(8) daemon. Before backing out to an older Postfix version, edit the master.cf file and remove the postlog entry. - Postfix 3.4 drops support for OpenSSL 1.0.1 - To avoid performance loss under load, the tlsproxy(8) daemon now requires a zero process limit in master.cf (this setting is provided with the default master.cf file). By default, a tlsproxy(8) process will retire after several hours. - To set the tlsproxy process limit to zero: postconf -F tlsproxy/unix/process_limit=0 postfix reload o Major changes - Postfix SMTP server support for RFC 3030 CHUNKING (the BDAT command) without BINARYMIME, in both smtpd(8) and postscreen(8). This has no effect on Milters, smtpd_mumble_restrictions, and smtpd_proxy_filter. See BDAT_README for more. - Support for logging to file or stdout, instead of using syslog. - Logging to file solves a usability problem for MacOS, and eliminates multiple problems with systemd-based systems. - Logging to stdout is useful when Postfix runs in a container, as it eliminates a syslogd dependency. - Better handling of undocumented(!) Linux behavior whether or not signals are delivered to a PID=1 process. - Support for (key, list of filenames) in map source text. Currently, this feature is used only by tls_server_sni_maps. - Automatic retirement: dnsblog(8) and tlsproxy(8) process will now voluntarily retire after after max_idle*max_use, or some sane limit if either limit is disabled. Without this, a process could stay busy for days or more. - Postfix SMTP client support for multiple deliveries per TLS-encrypted connection. This is primarily to improve mail delivery performance for destinations that throttle clients when they don't combine deliveries. This feature is enabled with "smtp_tls_connection_reuse=yes" in main.cf, or with "tls_connection_reuse=yes" in smtp_tls_policy_maps. It supports all Postfix TLS security levels including dane and dane-only. - SNI support in the Postfix SMTP server, the Postfix SMTP client, and in the tlsproxy(8) daemon (both server and client roles). See the postconf(5) documentation for the new tls_server_sni_maps and smtp_tls_servername parameters. - Support for files that contain multiple (key, certificate, trust chain) instances. This was required to implement server-side SNI table lookups, but it also eliminates the need for separate cert/key files for RSA, DSA, Elliptic Curve, and so on. - Support for smtpd_reject_footer_maps (as well as the postscreen variant postscreen_reject_footer_maps) for more informative reject messages. This is indexed with the Postfix SMTP server response text, and overrides the footer specified with smtpd_reject_footer. One will want to use a pcre: or regexp: map with this. o Bugfixes - Andreas Schulze discovered that reject_multi_recipient_bounce was producing false rejects with BDAT commands. This problem already existed with Postfix 2.2 smtpd_end_of_data_restrictons. Postfix 3.4.4 fixes both.- postfix-linux45.patch: support also newer kernels -- pretend we are still at kernel 3. Note that there are no conditionals for LINUX3 or LINUX4. And LINUX5 was generated, but not tested in the code which caused build failures.- skip set -x and fix version update changes entry- Update to 3.3.3 * When the master daemon runs with PID=1 (init mode), it will now reap child processes from non-Postfix code running in the same container, instead of terminating with a panic. * Bugfix (introduced: postfix-2.11): with posttls-finger, connections to unix-domain servers always resulted in "Failed to establish session" even after a connection was established. Jaroslav Skarva. File: posttls-finger/posttls-finger.c. * Bugfix (introduced: Postfix 3.0): with smtputf8_enable=yes, table lookups could casefold the search string when searching a lookup table that does not use fixed-string keys (regexp, pcre, tcp, etc.). Historically, Postfix would not case-fold the search string with such tables. File: util/dict_utf8.c.- PostrgeSQL's pg_config is meant for linking server extensions, use libpq's pkg-config instead, if available. This is needed to fix build with PostgreSQL 11.- rework config.postfix * disable commenting of smtpd_sasl_path/smtpd_sasl_type no need to comment, cause it is set to default anyway and 'uncommenting' would place it at end of file then which is not wanted- rework postfix-main.cf.patch * disable virtual_alias_domains cause (default: $virtual_alias_maps) - rework config.postfix * disable PCONF of virtual_alias_domains virtual_alias_maps will be set anyway to the correct value * extend virtual_alias_maps with - mysql_virtual_alias_domain_maps.cf - mysql_virtual_alias_domain_catchall_maps.cf - rework postfix-mysql, added * mysql_virtual_alias_domain_maps.cf * mysql_virtual_alias_domain_catchall_maps.cf needed for reject_unverified_recipient- binary hardening: link with full RELRO- Update to 3.3.2 * Support for OpenSSL 1.1.1 and TLSv1.3. * Bugfixes: - smtpd_discard_ehlo_keywords could not disable "SMTPUTF8", because some lookup table was using "EHLO_MASK_SMTPUTF8" instead. - minor memory leak in DANE support when minting issuer certs. - The Postfix build did not abort if the m4 command was not installed, resulting in a broken postconf command.- add POSTFIX_RELAY_DOMAINS * more flexibility to add to relay_domains without breaking config.postfix * rework restriction examples in sysconf.postfix based on postfix-buch.com (2. edtion by Hildebrandt, Koetter) - disable weak cipher: RC4 after check with https://ssl-tools.net/mailservers- update config.postfix * don't reject mail from authenticated users even if reject_unknown_client_hostname would match, add permit_sasl_authenticated to all restrictions requires smtpd_delay_reject = yes - update postfix-main.cf.patch * recover removed setting smtpd_sasl_path and smtpd_sasl_type, set to default value config.postfix will not 'enable' (remove #) var, but place modified (enabled) var at end of file, far away from place where it should be - rebase patches * fix-postfix-script.patch * postfix-vda-v14-3.0.3.patch * postfix-linux45.patch * postfix-master.cf.patch * pointer_to_literals.patch * postfix-no-md5.patch- bsc#1092939 - Postfixes postconf gives a lot of LDAP related warnings o add m4 as buildrequires, as proposed.- Add zlib-devel as buildrequires, previously included from openssl-devel- bsc#1087471 Unreleased Postfix update breaks SUSE Manager o Removing setting smtpd_sasl_path and smtpd_sasl_type to empty- Update to 3.3.1 * Postfix did not support running as a PID=1 process, which complicated Postfix deployment in containers. The "postfix start-fg" command will now run the Postfix master daemon as a PID=1 process if possible. Thanks for inputs from Andreas Schulze, Eray Aslan, and Viktor Dukhovni. * Segfault in the postconf(1) command after it could not open a Postfix database configuration file due to a file permission error (dereferencing a null pointer). Reported by Andreas Hasenack, fixed by Viktor Dukhovni. * The luser_relay feature became a black hole, when the luser_relay parameter was set to a non-existent local address (i.e. mail disappeared silently). Reported by J?rgen Thomsen. * Missing error propagation in the tlsproxy(8) daemon could result in a segfault after TLS handshake error (dereferencing a 0xffff...ffff pointer). This daemon handles the TLS protocol when a non-whitelisted client sends a STARTTLS command to postscreen(8).- remove pre-requirements on sysvinit(network) and sysvinit(syslog). There seems to be no good reason for that other than blowing up the dependencies (bsc#1092408).- bsc#1071807 postfix-SuSE/config.postfix: only reload postfix if the actual service is running. This prevents spurious and irrelevant error messages in system logs.- bsc#1082514 autoyast: postfix gets not set myhostname properly - set to localhost- Refresh spec-file via spec-cleaner and manual optinizations. * Add %license macro. * Set license to IPL-1.0 OR EPL-2.0. - Update to 3.3.0 * http://cdn.postfix.johnriley.me/mirrors/postfix-release/official/postfix-3.3.0.RELEASE_NOTES * Dual license: in addition to the historical IBM Public License 1.0, Postfix is now also distributed with the more recent Eclipse Public License 2.0. Recipients can choose to take the software under the license of their choice. Those who are more comfortable with the IPL can continue with that license. * The postconf command now warns about unknown parameter names in a Postfix database configuration file. As with other unknown parameter names, these warnings can help to find typos early. * Container support: Postfix 3.3 will run in the foreground with "postfix start-fg". This requires that Postfix multi-instance support is disabled (the default). To collect Postfix syslog information on the container's host, mount the host's /dev/log socket into the container, for example with "docker run -v /dev/log:/dev/log ...other options...", and specify a distinct Postfix syslog_name setting in the container (for example with "postconf syslog_name=the-name-here"). * Milter support: applications can now send RET and ENVID parameters in SMFIR_CHGFROM (change envelope sender) requests. * Postfix-generated From: headers with 'full name' information are now formatted as "From: name
" by default. Specify "header_from_format = obsolete" to get the earlier form "From: address (name)". * Interoperability: when Postfix IPv6 and IPv4 support are both enabled, the Postfix SMTP client will now relax MX preferences and attempt to schedule similar numbers of IPv4 and IPv6 addresses. This works around mail delivery problems when a destination announces lots of primary MX addresses on IPv6, but is reachable only over IPv4 (or vice versa). The new behavior is controlled with the smtp_balance_mx_inet_protocols parameter. * Compatibility safety net: with compatibility_level < 1, the Postfix SMTP server now warns for mail that would be blocked by the Postfix 2.10 smtpd_relay_restrictions feature, without blocking that mail. There still is a steady trickle of sites that upgrade from an earlier Postfix version.- bsc#1065411 Package postfix should require package system-user-nobody - bsc#1080772 postfix smtpd throttle getting "hello" if no sasl auth was configured- Fix usage of fillup_only:-y is not a valid option to this macro.- Replace references to /var/adm/fillup-templates with new %_fillupdir macro (boo#1069468)- Don't mark postfix.service as config file, this is no config file. - Some of the Requires(pre) are needed for post-install and at runtime, fix the requires.- update to 3.2.4 * DANE interoperability. Postfix builds with OpenSSL 1.0.0 or 1.0.1 failed to send email to some sites with "TLSA 2 X X" DNS records associated with an intermediate CA certificate. Problem report and initial fix by Erwan Legrand. * Missing dynamicmaps support in the Postfix sendmail command. This broke authorized_submit_users settings that use a dynamically-loaded map type. Problem reported by Ulrich Zehl.- bnc#1059512 L3: Postfix Problem The applied changes breaks existing postfix configurations because daemon_directory was not adapted to the new value.- fix build for SLE * nothing provides libnsl-devel * add bcond_with libnsl- bnc#1059512 L3: Postfix Problem To manage multiple Postfix instances on a single host requires that daemon_directory and shlib_directory is different to avoid use of the shared directories also as per-instance directories. For this reason daemon_directory was set to /usr/lib/postfix/bin/. shlib_directory stands /usr/lib/postfix/.- bnc#1016491 postfix raported to log "warning: group or other writable:" on each symlink in config. * Add fix-postfix-script.patch- update to 3.2.3 * Extension propagation was broken with "recipient_delimiter = .". This change reverts a change that was trying to be too clever. * The postqueue command would abort with a panic message after it experienced an output write error while listing the mail queue. This change restores a write error check that was lost with the Postfix 3.2 rewrite of the vbuf_print formatter. * Restored sanity checks for dynamically-specified width and precision in format strings (%*, %.*, and %*.*). These checks were lost with the Postfix 3.2 rewrite of the vbuf_print formatter.- Add libnsl-devel build requires for glibc obsoleting libnsl- bnc#1045264 L3: postmap problem * Applying proposed patch of leen.meyer@ziggo.nl in bnc#771811- update to 3.2.2 * Security: Berkeley DB versions 2 and later try to read settings from a file DB_CONFIG in the current directory. This undocumented feature may introduce undisclosed vulnerabilities resulting in privilege escalation with Postfix set-gid programs (postdrop, postqueue) before they chdir to the Postfix queue directory, and with the postmap and postalias commands depending on whether the user's current directory is writable by other users. This fix does not change Postfix behavior for Berkeley DB versions < 3, but it does reduce postmap and postalias 'create' performance with Berkeley DB versions 3.0 .. 4.6. * The SMTP server receive_override_options were not restored at the end of an SMTP session, after the options were modified by an smtpd_milter_maps setting of "DISABLE". Milter support remained disabled for the life time of the smtpd process. * After the Postfix 3.2 address/domain table lookup overhaul, the check_sender_access and check_recipient_access features ignored a non-default parent_domain_matches_subdomains setting.- revert changes of postfix-main.cf.patch from rev=261 * config.postfix will not 'enable' (remove #) var, but place modified (enabled) var at end of file, far away from place where it should be * keep vars enabled but empty- Some cleanups * Fix SUSE postfix-files to avoid chown errors (anyway this file seems to be obsolete) * Avoid installing shared libraries twice * Refresh patch postfix-linux45.patch- update postfix-master.cf.patch * recover lost (with 3.2.0 update) submission, smtps sections * merge with upstream update - update config.postfix * update master.cf generation for submission - rebase patches against 3.2.0 * pointer_to_literals.patch * postfix-no-md5.patch * postfix-ssl-release-buffers.patch * postfix-vda-v14-3.0.3.patch- Require system group mail - Use mail group name instead of GID- update to 3.2.0 - [Feature 20170128] Postfix 3.2 fixes the handling of address extensions with email addresses that contain spaces. For example, the virtual_alias_maps, canonical_maps, and smtp_generic_maps features now correctly propagate an address extension from "aa bb+ext"@example.com to "cc dd+ext"@other.example, instead of producing broken output. - [Feature 20161008] "PASS" and "STRIP" actions in header/body_checks. "STRIP" is similar to "IGNORE" but also logs the action, and "PASS" disables header, body, and Milter inspection for the remainder of the message content. Contributed by Hobbit. - [Feature 20160330] The collate.pl script by Viktor Dukhovni for grouping Postfix logfile records into "sessions" based on queue ID and process ID information. It's in the auxiliary/collate directory of the Postfix source tree. - [Feature 20160527] Postfix 3.2 cidr tables support if/endif and negation (by prepending ! to a pattern), just like regexp and pcre tables. The primarily purpose is to improve readability of complex tables. See the cidr_table(5) manpage for syntax details. - [Incompat 20160925] In the Postfix MySQL database client, the default option_group value has changed to "client", to enable reading of "client" option group settings in the MySQL options file. This fixes a "not found" problem with Postfix queries that contain UTF8-encoded non-ASCII text. Specify an empty option_group value (option_group =) to get backwards-compatible behavior. - [Feature 20161217] Stored-procedure support for MySQL databases. Contributed by John Fawcett. See mysql_table(5) for instructions. - [Feature 20170128] The postmap command, and the inline: and texthash: maps now support spaces in left-hand field of the lookup table "source text". Use double quotes (") around a left-hand field that contains spaces, and use backslash (\) to protect embedded quotes in a left-hand field. There is no change in the processing of the right-hand field. - [Feature 20160611] The Postfix SMTP server local IP address and port are available in the policy delegation protocol (attribute names: server_address, server_port), in the Milter protocol (macro names: {daemon_addr}, {daemon_port}), and in the XCLIENT protocol (attribute names: DESTADDR, DESTPORT). - [Feature 20161024] smtpd_milter_maps support for per-client Milter configuration that overrides smtpd_milters, and that has the same syntax. A lookup result of "DISABLE" turns off Milter support. See MILTER_README.html for details. - [Feature 20160611] The Postfix SMTP server local IP address and port are available in the policy delegation protocol (attribute names: server_address, server_port), in the Milter protocol (macro names: {daemon_addr}, {daemon_port}), and in the XCLIENT protocol (attribute names: DESTADDR, DESTPORT). - [Incompat 20170129] The postqueue command no longer forces all message arrival times to be reported in UTC. To get the old behavior, set TZ=UTC in main.cf:import_environment (this override is not recommended, as it affects all Postfix utities and daemons). - [Incompat 20161227] For safety reasons, the sendmail -C option must specify an authorized directory: the default configuration directory, a directory that is listed in the default main.cf file with alternate_config_directories or multi_instance_directories, or the command must be invoked with root privileges (UID 0 and EUID 0). This mitigates a recurring problem with the PHP mail() function. - [Feature 20160625] The Postfix SMTP server now passes remote client and local server network address and port information to the Cyrus SASL library. Build with ``make makefiles "CCARGS=$CCARGS -DNO_IP_CYRUS_SASL_AUTH"'' for backwards compatibility. - [Feature 20161103] Postfix 3.2 disables the 'transitional' compatibility between the IDNA2003 and IDNA2008 standards for internationalized domain names (domain names beyond the limits of US-ASCII). This change makes Postfix behavior consistent with contemporary web browsers. It affects the handling of some corner cases such as German sz and Greek zeta. See http://unicode.org/cldr/utility/idna.jsp for more examples. Specify "enable_idna2003_compatibility = yes" to restore historical behavior (but keep in mind that the rest of the world may not make that same choice). - [Feature 20160828] Fixes for deprecated OpenSSL 1.1.0 API features, so that Postfix will build without depending on backwards-compatibility support. [Incompat 20161204] Postfix 3.2 removes tentative features that were implemented before the DANE spec was finalized: - Support for certificate usage PKIX-EE(1), - The ability to disable digest agility (Postfix now behaves as if "tls_dane_digest_agility = on"), and - The ability to disable support for "TLSA 2 [01] [12]" records that specify the digest of a trust anchor (Postfix now behaves as if "tls_dane_trust_anchor_digest_enable = yes). - [Feature 20161217] Postfix 3.2 enables elliptic curve negotiation with OpenSSL >= 1.0.2. This changes the default smtpd_tls_eecdh_grade setting to "auto", and introduces a new parameter tls_eecdh_auto_curves with the names of curves that may be negotiated. The default tls_eecdh_auto_curves setting is determined at compile time, and depends on the Postfix and OpenSSL versions. At runtime, Postfix will skip curve names that aren't supported by the OpenSSL library. - [Feature 20160611] The Postfix SMTP server local IP address and port are available in the policy delegation protocol (attribute names: server_address, server_port), in the Milter protocol (macro names: {daemon_addr}, {daemon_port}), and in the XCLIENT protocol (attribute names: DESTADDR, DESTPORT). - refresh postfix-master.cf.patch- make sure that system users can be created in %pre- Fix requires: - shadow is needed for postfix-mysql pre-install section - insserv is not needed if systemd is used- update postfix-mysql * update mysql_*.cf files * update postfix-mysql.sql (INNODB, utf8) - update postfix-main.cf.patch * uncomment smtpd_sasl_path, smtpd_sasl_type can be changed via POSTFIX_SMTP_AUTH_SERVICE=(cyrus,dovecot) * add option for smtp_tls_policy_maps (commented) - update postfix-master.cf.patch * fix indentation of submission, smtps options for correct enabling via config.postfix - update config.postfix * fix sync of CA certificates * fix master.cf generation for submission, smtps - rebase postfix-vda-v14-3.0.3.patch- FATE#322322 Update postfix to version 3.X Merging changes with SLES12-SP2 Removeved patches: add_missed_library.patch bnc#947707.diff dynamic_maps.patch postfix-db6.diff postfix-opensslconfig.patch bnc#947519.diff dynamic_maps_pie.patch postfix-post-install.patch These are included in the new version of postfix - Remove references to SuSEconfig.postfix from sysconfig docs. (bsc#871575) - bnc#947519 SuSEconfig.postfix should enforce umask 022 - bnc#947707 mail generated by Amavis being prevented from being re-adressed by /etc/postfix/virtual - bnc#972346 /usr/sbin/SuSEconfig.postfix is wrong - postfix-linux45.patch: handle Linux 4.x and Linux 5.x (used by aarch64) (bsc#940289)- update to 3.1.4 * The postscreen daemon did not merge the client test status information for concurrent sessions from the same IP address. * The Postfix SMTP server falsely rejected a sender address when validating a sender address with "smtpd_reject_unlisted_recipient = yes" or with "reject_unlisted_sender". Cause: the address validation code did not query sender_canonical_maps. * The virtual delivery agent did not detect failure to skip to the end of a mailbox file, so that mail would be delivered to the beginning of the file. This could happen when a mailbox file was already larger than the virtual mailbox size limit. * The postsuper logged an incorrect rename operation count after creating a missing directory. * The Postfix SMTP server falsely rejected mail when a sender-dependent "error" transport was configured. Cause: the SMTP server address validation code was not updated when the sender_dependent_default_transport_maps feature was introduced. * The Postfix SMTP server falsely rejected an SMTPUTF8 sender address, when "smtpd_delay_reject = no". * The "postfix tls deploy-server-cert" command used the wrong certificate and key file. This was caused by a cut-and-paste error in the postfix-tls-script file.- improve config.postfix * improve SASL stuff * add POSTFIX_SMTP_AUTH_SERVICE=(cyrus|dovecot)- improve config.postfix * improve with MySQL stuff- update vda patch to latest available * remove postfix-vda-v13-3.10.0.patch * add postfix-vda-v14-3.0.3.patch - rebase patches (and to be p0) * pointer_to_literals.patch * postfix-main.cf.patch * postfix-master.cf.patch * postfix-no-md5.patch * postfix-ssl-release-buffers.patch - add /etc/postfix/ssl as default DIR for SSL stuff * cacerts -> ../../ssl/certs/ * certs/ - revert POSTFIX_SSL_PATH from '/etc/ssl' to '/etc/postfix/ssl' - improve config.postfix * revert smtpd_tls_CApath to POSTFIX_SSL_PATH/cacerts which is a symlink to /etc/ssl/certs Without reverting, 'gen_CA' would create files which would then be on the previous defined 'sslpath(/etc/ssl)/certs' (smtpd_tls_CApath) Cert reqs would be placed in 'sslpath(/etc/ssl)/certs/postfixreq.pem' which is not a good idea. * mkchroot: sync '/etc/postfix/ssl' to chroot * improve PCONF for smtp{,d}_tls_{cert,key}_file, adding/removing from main.cf, show warning if enabled and file is missing- update to 3.1.3: * The Postfix SMTP server did not reset a previous session's failed/total command counts before rejecting a client that exceeds request or concurrency rates. This resulted in incorrect failed/total command counts being logged at the end of the rejected session. * The unionmap multi-table interface did not propagate table lookup errors, resulting in false "user unknown" responses. * The documentation was updated with a workaround for false "not found" errors with MySQL map queries that contain UTF8-encoded text. The workaround is to specify "option_group = client" in Postfix MySQL configuration files. This will be the default setting with Postfix 3.2 and later.- update to 3.1.2: * Changes to make Postfix build with OpenSSL 1.1.0. * The makedefs script ignored readme_directory=pathname overrides. Fix by Todd C. Olson. * The tls_session_ticket_cipher documentation says that the default cipher for TLS session tickets is aes-256-cbc, but the implemented default was aes-128-cbc. Note that TLS session ticket keys are rotated after 1/2 hour, to limit the impact of attacks on session ticket keys.- postfix-post-install.patch: remove empty patch- fix Changelog cause of Factory decline- Fix typo in config.postfix- bnc#981097 config.postfix creates broken main.cf for tls client configuration - bnc#981099 /etc/sysconfig/postfix: POSTFIX_SMTP_TLS_CLIENT incomplete - update to 3.1.1: - The new address_verify_pending_request_limit parameter introduces a safety limit for the number of address verification probes in the active queue. The default limit is 1/4 of the active queue maximum size. The queue manager enforces the limit by tempfailing probe messages that exceed the limit. This design avoids dependencies on global counters that get out of sync after a process or system crash. - Machine-readable, JSON-formatted queue listing with "postqueue -j" (no "mailq" equivalent). - The milter_macro_defaults feature provides an optional list of macro name=value pairs. These specify default values for Milter macros when no value is available from the SMTP session context. - Support to enforce a destination-independent delay between email deliveries. The following example inserts 20 seconds of delay between all deliveries with the SMTP transport, limiting the delivery rate to at most three messages per minute. smtp_transport_rate_delay = 20s - Historically, the default setting "postscreen_dnsbl_ttl = 1h" assumes that a "not found" result from a DNSBL server will be valid for one hour. This may have been adequate five years ago when postscreen was first implemented, but nowadays, that one hour can result in missed opportunities to block new spambots. To address this, postscreen now respects the TTL of DNSBL "not found" replies, as well as the TTL of DNSWL replies (both "found" and "not found"). The TTL for a "not found" reply is determined according to RFC 2308 (the TTL of an SOA record in the reply). Support for DNSBL or DNSWL reply TTL values is controlled by two configuration parameters: postscreen_dnsbl_min_ttl (default: 60 seconds). postscreen_dnsbl_max_ttl (default: $postscreen_dnsbl_ttl or 1 hour) The postscreen_dnsbl_ttl parameter is now obsolete, and has become the default value for the new postscreen_dnsbl_max_ttl parameter. - New "smtpd_client_auth_rate_limit" feature, to enforce an optional rate limit on AUTH commands per SMTP client IP address. Similar to other smtpd_client_*_rate_limit features, this enforces a limit on the number of requests per $anvil_rate_time_unit. - New SMTPD policy service attribute "policy_context", with a corresponding "smtpd_policy_service_policy_context" configuration parameter. Originally, this was implemented to share the same SMTPD policy service endpoint among multiple check_policy_service clients. - A new "postfix tls" command to quickly enable opportunistic TLS in the Postfix SMTP client or server, and to manage SMTP server keys and certificates, including certificate signing requests and TLSA DNS records for DANE.- build with working support for SMTPUTF8- fix build on sle11 by pointing _libexecdir to /usr/lib all the time.- some distros did not pull pkgconfig indirectly. pull it directly.- fix building the dynamic maps: the old build had postgresql e.g. with missing symbols. - convert to AUXLIBS_* instead of plain AUXLIBS which is needed for proper dynamic maps. - reordered the CCARGS and AUXLIBS* lines to group by feature - use pkgconfig or *_config tools where possible - picked up signed char from fedora spec file - enable lmdb support: new BR lmdb-devel, new subpackage postfix-lmdb. - don't delete vmail user/groups- update to 3.1.0 - Since version 3.0 postfix supports dynamic loading of cdb:, ldap:, lmdb:, mysql:, pcre:, pgsql:, sdbm:, and sqlite: database clients. Thats why the patches dynamic_maps.patch and dynamic_maps_pie.patch could be removed. - Adapting all the patches to postfix 3.1.0 - remove obsolete patches * add_missed_library.patch * postfix-opensslconfig.patch - update vda patch * remove postfix-vda-v13-2.10.0.patch * add postfix-vda-v13-3.10.0.patch - The patch postfix-db6.diff is not more neccessary - Backwards-compatibility safety net. With NEW Postfix installs, you MUST install a main.cf file with the setting "compatibility_level = 2". See conf/main.cf for an example. With UPGRADES of existing Postfix systems, you MUST NOT change the main.cf compatibility_level setting, nor add this setting if it does not exist. Several Postfix default settings have changed with Postfix 3.0. To avoid massive frustration with existing Postfix installations, Postfix 3.0 comes with a safety net that forces Postfix to keep running with backwards-compatible main.cf and master.cf default settings. This safety net depends on the main.cf compatibility_level setting (default: 0). Details are in COMPATIBILITY_README. - Major changes - tls * [Feature 20160207] A new "postfix tls" command to quickly enable opportunistic TLS in the Postfix SMTP client or server, and to manage SMTP server keys and certificates, including certificate signing requests and TLSA DNS records for DANE. * As of the middle of 2015, all supported Postfix releases no longer nable "export" grade ciphers for opportunistic TLS, and no longer use the deprecated SSLv2 and SSLv3 protocols for mandatory or opportunistic TLS. * [Incompat 20150719] The default Diffie-Hellman non-export prime was updated from 1024 to 2048 bits, because SMTP clients are starting to reject TLS handshakes with primes smaller than 2048 bits. * [Feature 20160103] The Postfix SMTP client by default enables DANE policies when an MX host has a (DNSSEC) secure TLSA DNS record, even if the MX DNS record was obtained with insecure lookups. The existence of a secure TLSA record implies that the host wants to talk TLS and not plaintext. For details see the smtp_tls_dane_insecure_mx_policy configuration parameter. - Major changes - default settings [Incompat 20141009] The default settings have changed for relay_domains (new: empty, old: $mydestination) and mynetworks_style (new: host, old: subnet). However the backwards-compatibility safety net will prevent these changes from taking effect, giving the system administrator the option to make an old default setting permanent in main.cf or to adopt the new default setting, before turning off backwards compatibility. See COMPATIBILITY_README for details. [Incompat 20141001] A new backwards-compatibility safety net forces Postfix to run with backwards-compatible main.cf and master.cf default settings after an upgrade to a newer but incompatible Postfix version. See COMPATIBILITY_README for details. While the backwards-compatible default settings are in effect, Postfix logs what services or what email would be affected by the incompatible change. Based on this the administrator can make some backwards-compatibility settings permanent in main.cf or master.cf, before turning off backwards compatibility. - Major changes - address verification safety [Feature 20151227] The new address_verify_pending_request_limit parameter introduces a safety limit for the number of address verification probes in the active queue. The default limit is 1/4 of the active queue maximum size. The queue manager enforces the limit by tempfailing probe messages that exceed the limit. This design avoids dependencies on global counters that get out of sync after a process or system crash. Tempfailing verify requests is not as bad as one might think. The Postfix verify cache proactively updates active addresses weeks before they expire. The address_verify_pending_request_limit affects only unknown addresses, and inactive addresses that have expired from the address verify cache (by default, after 31 days). - Major changes - json support [Feature 20151129] Machine-readable, JSON-formatted queue listing with "postqueue -j" (no "mailq" equivalent). The output is a stream of JSON objects, one per queue file. To simplify parsing, each JSON object is formatted as one text line followed by one newline character. See the postqueue(1) manpage for a detailed description of the output format. - Major changes - milter support [Feature 20150523] The milter_macro_defaults feature provides an optional list of macro name=value pairs. These specify default values for Milter macros when no value is available from the SMTP session context. For example, with "milter_macro_defaults = auth_type=TLS", the Postfix SMTP server will send an auth_type of "TLS" to a Milter, unless the remote client authenticates with SASL. This feature was originally implemented for a submission service that may authenticate clients with a TLS certificate, without having to make changes to the code that implements TLS support. - Major changes - output rate control [Feature 20150710] Destination-independent delivery rate delay Support to enforce a destination-independent delay between email deliveries. The following example inserts 20 seconds of delay between all deliveries with the SMTP transport, limiting the delivery rate to at most three messages per minute. /etc/postfix/main.cf: smtp_transport_rate_delay = 20s For details, see the description of default_transport_rate_delay and transport_transport_rate_delay in the postconf(5) manpage. - Major changes - postscreen dnsbl [Feature 20150710] postscreen support for the TTL of DNSBL and DNSWL lookup results Historically, the default setting "postscreen_dnsbl_ttl = 1h" assumes that a "not found" result from a DNSBL server will be valid for one hour. This may have been adequate five years ago when postscreen was first implemented, but nowadays, that one hour can result in missed opportunities to block new spambots. To address this, postscreen now respects the TTL of DNSBL "not found" replies, as well as the TTL of DNSWL replies (both "found" and "not found"). The TTL for a "not found" reply is determined according to RFC 2308 (the TTL of an SOA record in the reply). Support for DNSBL or DNSWL reply TTL values is controlled by two configuration parameters: postscreen_dnsbl_min_ttl (default: 60 seconds). This parameter specifies a minimum for the amount of time that a DNSBL or DNSWL result will be cached in the postscreen_cache_map. This prevents an excessive number of postscreen cache updates when a DNSBL or DNSWL server specifies a very small reply TTL. postscreen_dnsbl_max_ttl (default: $postscreen_dnsbl_ttl or 1 hour) This parameter specifies a maximum for the amount of time that a DNSBL or DNSWL result will be cached in the postscreen_cache_map. This prevents cache pollution when a DNSBL or DNSWL server specifies a very large reply TTL. The postscreen_dnsbl_ttl parameter is now obsolete, and has become the default value for the new postscreen_dnsbl_max_ttl parameter. - Major changes - sasl auth safety [Feature 20151031] New "smtpd_client_auth_rate_limit" feature, to enforce an optional rate limit on AUTH commands per SMTP client IP address. Similar to other smtpd_client_*_rate_limit features, this enforces a limit on the number of requests per $anvil_rate_time_unit. - Major changes - smtpd policy [Feature 20150913] New SMTPD policy service attribute "policy_context", with a corresponding "smtpd_policy_service_policy_context" configuration parameter. Originally, this was implemented to share the same SMTPD policy service endpoint among multiple check_policy_service clients.- bnc#958329 postfix fails to start when openslp is not installed- upstream update postfix 2.11.7: * The Postfix Milter client aborted with a panic while adding a message header, after adding a short message header with the header_checks PREPEND action. Fixed by invoking the header output function while PREPENDing a message header. * False alarms while scanning the Postfix queue. Fixed by resetting errno before calling readdir(). This defect was introduced 19970309. * The postmulti command produced an incorrect error message. * The postmulti command now refuses to create a new MTA instance when the template main.cf or master.cf file are missing. This is a common problem on Debian-like systems. * Turning on Postfix SMTP server HAProxy support broke TLS wrappermode. Fixed by temporarily using a 1-byte VSTREAM buffer to read the HAProxy connection hand-off information. * The xtext_unquote() function did not propagate error reports from xtext_unquote_append(), causing the decoder to return partial output, instead of rejecting malformed input. The Postfix SMTP server uses this function to parse input for the ENVID and ORCPT parameters, and for XFORWARD and XCLIENT command parameters.- boo#934060: Remove quirky hostname logic from config.postfix * /etc/hostname doesn't contain anything useful * linux.local is no good either * postfix will use `hostname`.localdomain as fallback- postfix-no-md5.patch: replace fingerprint defaults by sha1. bsc#928885- %verifyscript is a new section, move it out of the %ifdef so the fillups are run afterwards.- upstream update postfix 2.11.6: Default settings have been updated so that they no longer enable export-grade ciphers, and no longer enable the SSLv2 and SSLv3 protocols. - removed postfix-2.11.5_linux4.patch because it's obsolete - Bugfix (introduced: Postfix 2.11): with connection caching enabled (the default), recipients could be given to the wrong mail server. (bsc#944722)- postfix-SuSE.tar.gz/postfix.service: None of nss-lookup.target network.target local-fs.target time-sync.target should be Wanted or Required except by the services the implement the relevant functionality i.e network.target is wanted/required by networkmanager, wicked, systemd-network. other software must be ordered After them, see systemd.special(7)- Fix library symlink generation (boo#928662)- added postfix-2.11.5_linux4.patch: Allow building on kernel 4. Patch taken from: https://groups.google.com/forum/#!topic/mailing.postfix.users/fufS22sMGWY- update to postfix 2.11.5 - Bugfix (introduced: Postfix 2.6): sender_dependent_relayhost_maps ignored the relayhost setting in the case of a DUNNO lookup result. It would use the recipient domain instead. Viktor Dukhovni. Wietse took the pieces of code that enforce the precedence of a sender-dependent relayhost, the global relayhost, and the recipient domain, and put that code together in once place so that it is easier to maintain. File: trivial-rewrite/resolve.c. - Bitrot: prepare for future changes in OpenSSL API. Viktor Dukhovni. File: tls_dane.c. - Incompatibility: specifying "make makefiles" with "CC=command" will no longer override the default WARN setting.- upstream update postfix 2.11.4: Postfix 2.11.4 only: * Fix a core dump when smtp_policy_maps specifies an invalid TLS level. * Fix a missing " in \%s\", in postconf(1) fatal error messages, which violated the C language spec. Reported by Iain Hibbert. All supported releases: * Stop excessive recursion in the cleanup server while recovering from a virtual alias expansion loop. Problem found at Two Sigma. * Stop exponential memory allocation with virtual alias expansion loops. This came to light after fixing the previous problem.- correct pf_daemon_directory in spec. This must be /usr/lib/- bnc#914086 syntax error in config.postfix - Adapt config.postfix to be able to run on SLE11 too.- Don't install sysvinit script when systemd is used - Make explicit PreReq dependencies conditional only for older systems - Don't try to set explicit attributes to symlinks - Cleanup spec file vith spec-cleaner- bnc#912594 config.postfix creates config based on old options- bnc#911806 config.postfix does not set up correct saslauthd socket directory for chroot - bnc#910265 config.postfix does not upgrade the chroot - bnc#908003 wrong access rights on /usr/sbin/postdrop causes permission denied when trying to send a mail as non root user - bnc#729154 wrong permissions for some postfix components- Remove keyring and things as it is md5 based one no longer accepted by gpg 2.1- No longer perform gpg validation; osc source_validator does it implicit: + Drop gpg-offline BuildRequires. + No longer execute gpg_verify.- restore previously lost fix: Fri Oct 11 13:32:32 UTC 2013 - matz@suse.de - Ignore errors in %pre/%post.- postfix 2.11.3: * Fix for configurations that prepend message headers with Postfix access maps, policy servers or Milter applications. Postfix now hides its own Received: header from Milters and exposes prepended headers to Milters, regardless of the mechanism used to prepend a header. This fix reverts a partial solution that was released on October 13, 2014, and replaces it with a complete solution. * Portability fix for MacOS X 10.7.x (Darwin 11.x) build procedure. - postfix 2.11.2: * Fix for DMARC implementations based on SPF policy plus DKIM Milter. The PREPEND access/policy action added headers ABOVE Postfix's own Received: header, exposing Postfix's own Received: header to Milters (protocol violation) and hiding the PREPENDed header from Milters. PREPENDed headers are now added BELOW Postfix's own Received: header and remain visible to Milters. * The Postfix SMTP server logged an incorrect client name in reject messages for check_reverse_client_hostname_access and check_reverse_client_hostname_{mx,ns}_access. They replied with the verified client name, instead of the name that was rejected. * The qmqpd daemon crashed with null pointer bug when logging a lost connection while not in a mail transaction./bin/sh/bin/sh/bin/sh/bin/shpostfix-lmdb/bin/shibs-power9-11 1703241111  !"#$%&'()*+,-./0123456789:;0=>?-ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdeghijklmnopqrstuvwxyz{|}~~3.5.9-150300.5.15.13.5.9-150300.5.15.13.5.9-150300.5.15.13.5.9-150300.5.15.13.5.9-150300.5.15.1   aliases.lmdbsmtppostfixpostfix.paranoidpostfix*.lmdbaccessaliasesbounce.cf.defaultcanonicalgenericheader_checkshelo_accessmain.cfmain.cf.defaultmaster.cfopenssl_postfix.conf.inrelayrelay_ccertsrelocatedsasl_passwdsender_canonicalsslcacertscertstransportvirtualsasl2smtpd.confmailqnewaliasespostfixbinanvilbouncecleanupdiscarddnsblogerrorflushlmtplocalmasternqmgroqmgrpickuppipepost-installpostfix-scriptpostfix-tls-scriptpostfix-wrapperpostlogdpostmulti-scriptpostscreenproxymapqmgrqmqpdscacheshowqsmtpsmtpdspawntlsmgrtlsproxytrivial-rewriteverifyvirtualdynamicmaps.cfdynamicmaps.cf.dlibpostfix-dns.solibpostfix-global.solibpostfix-master.solibpostfix-tls.solibpostfix-util.somain.cf.protomakedefs.outmaster.cf.protopostfix-filespostfix-files.dpostfix-lmdb.sopostfix-pcre.sosystemdcond_slpconfig_postfixupdate_chrootupdate_postmapswait_qmgrsendmailpostfix.servicepostfix-user.conflibpostfix-dns.solibpostfix-global.solibpostfix-master.solibpostfix-tls.solibpostfix-util.socheck_mail_queueconfig.postfixmkpostfixcertpostaliaspostcatpostconfpostdroppostfixpostkickpostlockpostlogpostmappostmultipostqueuepostsuperqmqp-sourcercpostfixsendmailsmtp-sinksmtp-sourcesysconfig.mail-postfixsysconfig.postfixpostfixLICENSETLS_LICENSEmailq.1.gznewaliases.1.gzpostalias.1.gzpostcat.1.gzpostconf.1.gzpostdrop.1.gzpostfix-tls.1.gzpostfix.1.gzpostkick.1.gzpostlock.1.gzpostlog.1.gzpostmap.1.gzpostmulti.1.gzpostqueue.1.gzpostsuper.1.gzsendmail.1.gzaccess.5.gzaliases.5.gzbody_checks.5.gzbounce.5.gzcanonical.5.gzcidr_table.5.gzgeneric.5.gzheader_checks.5.gzlmdb_table.5.gzmaster.5.gzmemcache_table.5.gznisplus_table.5.gzpcre_table.5.gzpostconf.5.gzpostfix-wrapper.5.gzregexp_table.5.gzrelocated.5.gzsocketmap_table.5.gzsqlite_table.5.gztcp_table.5.gztransport.5.gzvirtual.5.gzanvil.8.gzbounce.8.gzcleanup.8.gzdefer.8.gzdiscard.8.gzdnsblog.8.gzerror.8.gzflush.8.gzlmtp.8.gzlocal.8.gzmaster.8.gzoqmgr.8.gzpickup.8.gzpipe.8.gzpostlogd.8.gzpostscreen.8.gzproxymap.8.gzqmgr.8.gzqmqpd.8.gzscache.8.gzshowq.8.gzsmtp.8.gzsmtpd.8.gzspawn.8.gztlsmgr.8.gztlsproxy.8.gztrace.8.gztrivial-rewrite.8.gzverify.8.gzvirtual.8.gzpostfixpostfixpostfixactivebouncecorruptdeferdeferredflushholdincomingmaildropprivatepublicsavedtrace/etc//etc/pam.d//etc/permissions.d//etc/postfix//etc/postfix/ssl//etc/sasl2//usr/bin//usr/lib//usr/lib/postfix//usr/lib/postfix/bin//usr/lib/postfix/systemd//usr/lib/systemd/system//usr/lib/sysusers.d//usr/lib64//usr/sbin//usr/share/fillup-templates//usr/share/licenses//usr/share/licenses/postfix//usr/share/man/man1//usr/share/man/man5//usr/share/man/man8//var/adm/backup//var/lib//var/spool//var/spool/postfix/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -gobs://build.suse.de/SUSE:Maintenance:31975/SUSE_SLE-15-SP3_Update/d91e2cee8b7b7eb78fbbc6021e6bac87-postfix.SUSE_SLE-15-SP3_Updatedrpmxz5ppc64le-suse-linux   !"#$$$$$%&'()$$$*+,-./0123456789::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::cannot open `/home/abuild/rpmbuild/BUILDROOT/postfix-3.5.9-150300.5.15.1.ppc64le/etc/aliases.lmdb' (No such file or directory)ASCII textdirectorycannot open `/home/abuild/rpmbuild/BUILDROOT/postfix-3.5.9-150300.5.15.1.ppc64le/etc/postfix/*.lmdb' (No such file or directory)ASCII text, with very long linesELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=561a2bb1ad1baad24b5a9b23f385360133081b1c, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=7c06ab6fb480e9183dd2e149c5e5653efbf0ba15, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=ba1e1fcf74c5bc6cbd09e6506aff3518e296178b, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=abe26b81b7650a33212846f67963750a7e9b5542, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=45601e5ee3ceda24525d5405759f2e031dd7e540, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=8cf8116bbb9077a1ce36491bb903a4804ac21862, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=66cbcccbe8e00d6dc972dc99aaed34d08a85027f, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=3fec12128fa217590f2280b3aadac54007095832, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=6d0f14624ad40db0ff8e78a359851fa41cd00f09, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=c0fa01fdbcd7c7f02d3d72cea36cf27d23050af4, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=39b8931aff1782a4132f8e7dea8cdb66456281fa, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=fa09ba1a40ac9939965310114a18b9327fba8297, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=797db747e2d854d66196882d8fbcdd80e907fc72, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=acdd51837cc47e3c495d63baaa5a6f4ebfc9fa67, for GNU/Linux 3.10.0, strippedPOSIX shell script, ASCII text executableELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=ec4afd10e9efd71e9e676c54dc8248db89b0efe2, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=e5e9e58a8bb191309537c749c40d45fde54f2171, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=6a994f5913426f4f5a036e759a9227c72129f194, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=9cf739885c6b91596ca1076691fa13ad00893d24, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=a2df65f8fbd6fc1407f8656357c6260adec0a3ed, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=173c3041089d632c14ff2dcf84ea7a9761f94de1, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=5a1433eddf1bcb786143b5de70ec6013d9a77962, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=9d9a30a8f233689b0b09a16c46abce4a60eda3d7, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=1965a3d070f5a85f15445acab90c0057cb539bb0, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=5494644fca0352a52e083069e7ddb1045fd394e5, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=09cbca9fbba9c1a5927830b689791838e9421418, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=6b8352421b1e53777cc1196144986148c64f3ce2, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=0b4a5ad30467c4b71156de38bf74038c4ad88192, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=95b8870f9cb700a0c88c15073cdfc0e4bfcb23df, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=7252862f2ab43bd4ead61d1c6a43b3c035735880, strippedBourne-Again shell script, ASCII text executableELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=5d8a8f3f3b571a58127068a5b1e5ecd908a63730, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=10c9ae5528b839f7f2e043198c750c83184b3ae6, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=122f339d1ea55ef0a406fc54753a8499db92e261, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=37668f9442394fe0cb7c0cc7f65593ba75707190, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=8bbf7c052a8fac9565c0ff7c2b5f1f6f357ef73f, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=53ac889910c2f9db0b43aec723ea09a5c1a91b74, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=aef715a6aaaff849a330e72a9761322fcd67ae72, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=bcdd90534557ef937a9aca1ce17ddd59a33decc9, for GNU/Linux 3.10.0, strippedsetgid ELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=8af0cb498805d5c795eeb685dc0e9ebfc4a7deec, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=1c15b0e038cc2fd47417d83de1edceefa60df5c7, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=582810b41230cedc27768f0ac715a27501a946ee, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=d91b80a15b412353e7544d5a0f00b1ac666bd5a1, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=c36ec673131336cf5352497a8a1caa2479137b6d, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=83c582b6fef7db36ab0d2907a43157e940d0c55d, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=80ee06dc6589e067f4a559c99a5c7412cf0678ba, for GNU/Linux 3.10.0, strippedsetgid ELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=46135ca3884fef179c8832435d31c5415ffd7cb7, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=3bd1e12cc73942af6ccde3b13a7b806f6abf9482, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=3504103b4a75186576d2ef465223f65e6bd158af, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=7e42dd70413e26dad71901d218c10abdb67816d9, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=217bca6e7f3f6ad18f3463125886126d80c5bbf3, for GNU/Linux 3.10.0, strippedELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, interpreter /lib64/ld64.so.2, BuildID[sha1]=799ed53b58eb4e320427934bab3def18926f4bac, for GNU/Linux 3.10.0, strippedtroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix) $.37<AFKLMNOTU\afkpu     RRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR"RRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR"RRRRRRRR"RRRRRRRRRRRRRRRRR$RRRRRRR#RRRRRRRRRRRRRRRRRRRRRRRRRRRRPPP PR!RR RPRRPRRPRRRR%R$R#RRPRRRRRRRRRRRRRRRRRRRRRRRR"RRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR}Dn<fCCosystemdsystemdutf-8ad2473c5b31c73e23c2dec011f3f06d5a05da2abff7efe97f541ee141eb2e20e?7zXZ !t/ ]"k%UNܮGVcl1qbn(Cc3awJQaĻ0M#]>C`W:.K  `I:Cծk~`RF7@ŻSVq}u0X6"@!a"q^ֳVbKͺ`t! ^f]/fپӭp3pVQ)&I7^bwbyҵjLc0 !2˛FknlR;5;b|8]4p{b1}Gno~q.~ ͯT@bxCWB_cA!{b鞬 -~l7m]oo65FMrƞ\'촢?)TY;,Xq [THɋcH< %pS|LMs lWCwpz [UfS|J}^\Dh0sr:^0 & t +xP[K-|z9ԃ!8ATl$k!Bu>סlHߡqQOrx_\h[]cZ`+jGQ)[IePi2(>ùh@y,*-:~4R~慠r]"FNV!>#xɫ4p nxjVhd?ni+Ӥ+-<\)&rVvWwxJzN'Pc h,hjӈ=W" mf8]۪;VF t%~_jbS$6b-ìZv#o݇/֧XP28I"*ܲk 'u8(U4!\;kۍN\,?`>"GKvp]R14I/ǣU;;~Ikw 9R!Yw[^dvTF OQ+#:!*V3pϑ҅ǁ2KS/<`ІL":>V k y`a}42wt1W6 #B$L*-\؉* : 'Q +35U.( ْs.h1EFy{tv4|0YD}aBZ0tBXe6"=tQ0:Jk*7ɏW;t{U bUX?#~wS@ pg֞ . vK;P-t 85Xra [HI##Å*NY|[ BS+Ӆ+d(:Fw m(brfդI zVȗ/dҫ-<=u)~kZ{˳^b]5vڭɮz) u %fȵolGkb)Ry$AH~u&i7Qe{9toS!RAL1B;Lr*v {yS)۾Pdm)W2ҩB6l~} @ g\p7G,1)pM|$Qzac7 37C,4~.c.O6EvZ`ff>Xox\Ŝ;sPf- @ CKBv8T | y"K'7 :F0sͤw5Z-]2 Ɵ\I1'8=籙28$m"Lx@fFST Y.R E~gȡ߀QW:h(o&m Ze0gpVI(IAVؐٳ$rV`%,Ir՗dum/ %snIEn(-t8~j^:'1w@1mҒg* ='[H1էZo=+*.$EzɺGQ)U?nN$32NTǏ PwH&^ezzebP |h<ӌN2}=Bǻ|9%ݡUGEEnKX'AS6͒GYvڹh(>`VH-8`-";!9NR3:0XOh:J'__݂pe8xpeрK nYɔ)ek5)B -c`DPtƽJ4Sɿםvt*?]0;>8Ɂs51PH\? \}0҆!_U:4 z9 cO+7*eƖRB.w^-4!P,].|+x_OP#L:sâyѶVv.\ج$RfZ!m`~M} _D̪Uw5(73 iBuM拥v|_$ -)( i@mB!ι!'1tJOQk>#Si"f(Rk㑣-WIℽrF$/|V1vQ|">ڨs;ӏ踍Neb)PN(uo /E{A~q[2Gv0hF>UR(CPa9TMNȽ=`3zCL`B; cf^J{V# Nxշ=lUsֽ7uػd'MC a;dyȖf?e&/d 'Q9K[+#Dk35A."OZOBLGLKf$Vv?'~VUg^h@L4Y &zrA.33Sr(*7Ś5RjcT.g`xJg-wδEj C8#Ξ\mMW p\ICIK8H%D}JbWYO / yo$_FB\8>Cy: ʹ$Qe/8ৠ izt8T؃.Z(;Yާ ?6c 9|\bIdhi| ҷc$/iF!*omv=\UҍM :fbtVb!kW=O| ۹"2Vw *7$~Y1ʺȽx58-AЅeF,=w#%X 8T -* NסΊr(| mL׫"Rm3YmFqXϥºב;ؔAf[Yw-vs(*bme@?Fwgdn8V#_wpbJa %?tԇU5\ͭ-mD}B)i Q9)ZOMyhp# .3u:0==(T4ϖxN\Ԡ-qEa{ w@i]-49fγvlYUx$~*[ӿ2az 4C<=PX~P!w!*RZ{jUpy燄K22՗ r `w0w*TdlV;Z|5pjg;dMف^T[3Jti6y: Dwgj,^JY/~5Coq/FGKL4ꎅ!ž\\`+<튍)Rf@j5GsB,TR%2 *?@ĒT#d,e ifw̯ z`D%hD=fԮ$!3%|b|{+pBRf.L&$U>* ˲!cX3H篬Ra\rq2a1F?=?i%R\ɓ L$_؞3'0`S֢ʻaKN8 C㧳[ 2E2ky(f0_Ũ]7 7>,.a-4Z/R6Pzuׄ;WOXH_t1 F]IO4ާg0Aq{KyL/8nG U jU!2F-MR Ϛ,dvBJ^skC.U]1L%a|Y]"]*zn>BNjr?xH%%  OJN'A3^/Ӳ8ثZ!œDG{,QWvj$:Mӌ d׺*b\7{Mm)c ;YAUcAU7D/e$.=PGuZA7A{YFʯ#Uٺ98+.s"#C`$0 ~q4>8 е"bz'-CxaĄ~L;^SCL!tZth]IC0r o>lOF`)$o3f1\:%Pgvc}6̗k1DaiIpɯP0\Y@uM{ʗ'^{X Q:vxF]&v*GS#ż<_;4:.1{%s5:70 V7^ꥷs@ՙarbޮ̎Y8g$g֖-}&٣8t IܾP(¸Z-&fN%BcQsvhDL(H4|8~h0نd7M[H.:d'9V~H{7S b֌~gs@3C^S֒$QwT=ə[],&Q 5D(lFTTlh"~~([7;JP!ä#1u0##PrHI;=D^Op$~%.IMYv 2} l&r/mfX${5-YR8%@{3"~.5/af55ˡ yPNj³q3@h3Z̒cy^qI{+Bj֕#Q9Ҋ im.`7pcm湭E/h|Ծ|d/3LOxࢬ>ci>䋆)l}0\N[7BY*c=*Tz$l\}[$٪ %0hءi sXWQ6OaA R)6`Q:̥kfNl׎nm摁e?4/_4ۻ(l*^; @Z) m#m M\}W͛H/8++1skqb5!ZUՙ ϖu9~<܋{XjC.|;1T}0{#^. ~`~! c tBJSSވxrn4a߽[(L|{ MTolC$OKH_f/ݵtC y{A-ޓŸ"TCȡ$碂@~$3_v?bF? IeLL4 WkMنX^ʮcocVGfnN~vNg]9b_AQ:yĄя)5R=-U@4sD5@bSH&:GߝxLCbw}#PkBX>Hq8-qz` 7= NG$NΑnƠ5೔2ϛ;bwul͛0 4bj^'D ƒx/B9Xk;'@ceo!#c6KjuPZ {y-Uؐl: JHiY_Q5_1oܲFw;YPj6;U (?YǃЧm2kS"cA w/FK,L ;>/YToFM譇5r2+ܙjzŽf 93'Y콺NCс&%LX>\[6Niάن3Ftc(>[WSkWOiӵdTwp,MCS`;`Rp j-AkB;5aE$]Lih昒()qYIqJh]{팲c#'ҢakN KYJD,t@}P}\D_5.pIC(Y* CN&/+W22k%so¬WQ:Zp9^:mK߼m+(oqZC,6~*׿$" |*nAst=+^5~Eivx?QE'|Bn9?oHsHSN9=LٗGo1~;}3ޡdGO6oT4z. ߚCfArfc-yb  FξȒ fAaKYWSReҪ(ܙ 5sLLU^KQv_t&Xb P+"qC=?*u`n.IWx8 W#u1L0=rTWB9MIGFӐ~j@XzN/4?c|J)NwJf}}J&w16+k,Aƚ!mWfV~95t+Y:U1 py-HuϖpBaZT84t20=b+Sxm2a>.mݼ;GWBzu/ȦH#(K2y^-.DU'`SxJoMNv$ @Gc; 7@e~8Q.d$Q eu)O$UZ!C3W_ |pWR7##V,q5 ?XtWQ)ЀH\͞BRtÅC֫? Hzv?C^YlPey9&@9Bި};ti܌GEU]y6MA4ODr>+HspǼ޶ s6,"})XXjBhJ5dt{Hu @s% j@ƅ]?_v#\;ѣ,>Ȉx^Q l*P~@aE~yu[tWf]6LOa G4:̧Vu7cgA7JEPx'H+k&FJol%ؠceC'mҏ PihŜjPj ^/d Qt 󇲷gp0ffhUp<hZvyhZ=E!y~t*MմCgx{ًLHc:x"5G3fzHzuhO枕" m1JJcJ,4 F>"I XWpp&nGTMe-ܩ54炋@n|M3Sa/ߍp6ByT2u^&ߐ%֯ @4$i%-Ԃɧ 0Y66WxP'6qfm({ @i6mSw17-JX mv5&ȃX6\lD`_vG!]jy&2E5bUlyZ: 䝎P.\>ad>Z.OJsߤ>rYz!{T+msmgiη Nϫ~Fs۹Nm]XQ\kIlF:Ut|F B ;;.Kg֊߯vRͦf\YU#A|/nƋ0{(Ӏ~?S:kUӗx#d&,)Cm!2i;Ro_ 0œUr+X~Ϝ tP܌2[hA0o)\-+*+ l}wúpIQzZsoiojDǭbP.<#5d'T|RܗAq# u󪂊mE{+2GF/r*dJF=Y0x-'=d9|ТC9Q QN>h" "mOƖ8KQecA;eON~O*K:&6-1.{2#|Kˁs,}jdw8ɼL?)7AY⅄5-zLxFDp瀹M䕪 ]0zƽ漽e%. 4]y6$u{1*D%~y|%O/x7IųC'_\zZKj!HA\qnRnԙz؋ x9E&fSt.ȲYW%`"˜(SꚖd2-3FoH/o7mk+;Շ$|9=YsjF|jc>]IpЛKxDjӸsWfѡ!|mAGeu(QqגaS; fu>lhԝvnά="EK;f~I&#"'oHz"8sbXsNf\tZ|>"Tlѡ{cvϹ내&pMtNU'/3L5( ڹUBfF$\ ݌;P.~ܬ.O-uxWCs[KTpԪIŸgGRTOJ5L4GcDRNE{Z:ŏWd>btaьoXX*ȒerhLOb.f ЯqONwf[i*0Wxr$ԫ(hNq˄gB;b9=ͪy.K Iƹ ~TpRHIGƭ |_ː׬4vx1F(Π1f;fVsy6ez $ d(j0LunG }G4t]2y]լNl@6u~ 4*D@ O<*lfoRM`@Mū6^Gs,RIؽY,ʃ%mu7"$~K V^ J0wcpWE)oZ'V5gb\}&O//ruY䑍%@VK, /:3  W0_7*2w= KDROpl))s\&ϪhSd y5A禷kݩ!ep%4Ad-M:L11/"rNQhuVNU|"Vm5 _vL{v nMN}ΫtS{d Y1_W2!Ce+Z9L>85z@wIZϒ8§KA?e}utTXKʢ4rl ?~Y]5ۂ(f` $>u,4CڒsuD WV,T#ԥ9BSX nI۞Zk!Zٔx1 =4T>$D Zlȹ[զq,)0͸K29B1qVnt!R*,C%&.d,a$PR}"mTTs0!PGzd70[EY z# }΀F+ ;>CT{x6H kNLY&SDY0f:xŸ艭2lߪyś?3AS?LIm>>j]0}őɃɵ5\hy". My(Q j,C/d<&Ɓ@.'] iqt.4g{lʢG*h -]:2`Um}m5]T4߰2n0gF< :O7UT73Os&{NR<1:ʛ)4]|xد4< Da,x>9T%բ9s0ob$mLr\&|fU<',{4uQVЍ [ډQ*@%䅐"*: y&7?$CUb# m؁ItT"]T(KࣝVs׮\A3l9h]Ygd#fgJŰwM`=x`,@DL;RkGNRuH v{"? 9^sRe48;n T@žpS.nBU\'Cl)HW)!ĥlKC]Cˌ2d{]e" u1]L[p:ʗW{o뼹HWuZ/$skE6z+{."^;qZV;%if=JO/Ea.=PHIs|9bD]4rD.qj,Z(,9) B.2찝Bvecz' ys8#LQ:kn"T>[BL:4r'5&,h9;cBprq /BP/,@m%6bC8z[}`I9 ۥ |͊HRwgRmN(_q/b4ZJއ~N? ]fFPKuO+ bMHV~/fTUJՂv`z)]aPtg"ErUGSιR9L(\摉QV}; oya*Z l v_ltsW!ucZ,}! &$Ҳ(j r`HQTY᱄pY;#a|t)ŋ ⡞QA?g/p$IQg2gN=2kiջ|&_=3A>KFdyý5%Ewk_01+ LIhzva72Q7 Ld(e-ztRRh6n"{][+<$b$:: $;Ga4ԟ(e?[5. |n_kc$RpCKcԟC`1bW Ǿ3`F7KEiZO̐f֌ҊjZLuIM;}7;V:#"a(X+:!2m*rru!~IYÝԨOC)b?`ݩ"ĨGm<\KuLBͰ]AxY^Yީ LoV2#Up fEe,;jp[MӈG?xۢfl_rn| eEO;QQ]:#yvc /(9:70txPPGǷ* @3+IG?ime~lG3 @RQnh"0iEجנC0DAlШ7b3d 𺐒 >w81:mw<Zx̜2Li4lY1I}XV]t&v60ؽywŏ]56.? yNGL1B9bLBngųD"cY\HMH,?cu da+.\qn"R#5>*|‡.xܫ AW>,u>c ΐ)k9J,N8eF_v+."md~&q#Q|*ߚW=+H$#]WSA.6`/(GY*?w:?a.WP1:[ҪBum>*$4Bj z2✮)R?Kh4pTqgu+B”rV lJ_>% H:.Y4n^dJqcqn!lz%~F$cq @BT+Ϥ.ߵNҟg,&dv\4l"(԰*T /o,7֘ؠߩۑdww{g.]tߐuXuGd3[_CO5]{ڿ5'>%-/ 8>UnEV>Àf`9~3xh 7'N?uÈt =_ZaD~td?<"~ӝHlYuWx1VT"{XG:[E%{["[j2韙BrOBi3Fs"-sG'MUer4v~MI \Q8EI# +{lQSȰ4͹]S%n>xTR FXaQb{/oet\.Հ -z YmQ$^u_[I`*rw, V92 ʈ1Nұ_8ʝs> wqcw3ϐޠ+(ɓ ,,wU`Bq*ti)c˵"^*5*+3L_ \b{$z(9d`ʎWyVN YðS(J"P0;Y&T?_#yӗx?]ϲUvТ-Y\/wJ% x59 Ki}Bitemɗ5^Ke B@Ɨ~ Ȩ:tV [6}:}5n2w >/<6[W/}/p[9}ngXU:i'iLWI)qP˱ٙW ̤ [Z):o,;ׅKOs|}K+-iփd 98Fal&Fl0 lM8Yf?e6%gW0p<=rJxFi̝2yEt=ۄe)I.RRs]NCm'e']ߋr6~1$@%Twpgnd?T804~2-tv[T-;70vM2=MTqgƵN%z;( (HԀi'$v['>F:Wm)4c SRr X(ox0߀0yhEf}Sv3+ +κVwk(j(Ǿˎfp¯ݚzbU(#]{bwKʳG!0 <_SY×Hh%'n;2`21%>e &l/akK'g4I5GuUXr~Si&ejǩR݁ PT!Wי,sTFZ饢Jk s+a1]#Q 4|~bLf9iS8 <;$u!Ûڳ=xp*dVH~#~e{0o{`1u,(1QN v)O3vs&0-n6vԱ$p(jzJly.5![óD C>F"L "JݴyҮiD"&ZP.?e PDl^b,7NDX‡#?OQ%6ڪ}\h3tVfW%+BUz30/^.BQI%LT~faڿt"Q$4mר˷vWP<]謴w-ny (ZX윦f`[ ;TAzL4tĶFMe XFrZ(nt]elNtCY+3}9QŏmvR_?xR#bkVq)"tl!ļClW@$7mf5[A>e[A܆" $ %޴>zh-jq"E(oܛЉw 3E9]c?\ْ* 6ͿV4/# ^%c9*VBjk>3`7xiێNTVX~d֏zR*L} >yV>F>D _^!i1=H}}Tч'bE= @ :qD^X+x6^}Eovs۝x"V={j\X5D6iyeݞgG0iǣaۗ9I59ݡUpj5gKiມ;F⽑fu Q@\2ksICIN 8|OFG\Hm^[] 2.ʑOwKvk  أ ~2AvEK?Br,TV"M㢯и_F@XBeN4f%c[[7VoCe;:tt΀/6u\Qn/5tP ">>pn(lxP >@ |WQ0aM@^oZ6$àW/WpHF㼚R TMpqԖvbuEș$Mks%LX/a(agVF#a@h>P #.ifK%݆P=n0F:h<+i{y_6 .Xz>ˆ&plćXH7UMDJX :ċoIh%A>/hDRy`)1*   q-l/ aU0N{i`r4/Րrzls(Væ3(=ZMɔ"[+ EV#S }$y T2@V0nMQ'N.)B.15ςyN""I0- KbF"8b.E8AK+ O:˹Չ|{DLu7t~^cmRpwęzYCQx5B\i/Dsˤ1koѫ2ȼX!  ix˳V*en?u ! Q8XzƮIHƔ <jxV1ױ;+0" ĭ`O`ßz$J; 飪U5\ro~U^~YH:ySxiA/1Pj 4Z/P^4A黓"Qa Rh0X`sG bn+U=oq3(@+l;xlpL/gOcQE85,C }s3**|%ߔrMKM ڇF۳hHO8⡇eR~gbdgBt_ٴ gwJD?!kTV\`: pG7O=-ڸhOZ`]'gJ!Bf{I8^1υJbځUPd1fwv'C>.>dwgpmoKJvܥfײ'SƬdem* ~S~lHBt^Z_U~ɼE&"VB|E2T Ҍ\!Gv0X1ޝ.xU7.+8eY@1[tF'*3(nꙸD`I=1׍VhC&!SltGG(_\!>9xw[U,n'48V^Kۉzp8.~lٟ}FRj zi_4@h:h$'Hootv/(xm,|a'(k[T`s#-U$\] iS~6gr+x~;)aĕ Zx .P0cua&G:bāG$$:FjD^'P{i"gܑ1߮o񊁿戢AH:k@s!ptdQw??-X.־&JS[Ύ(HMq␍IgZ.HMNNfe}kGrlj b_N;[(Pf~}P/xBΌ(Pۛ"?#(_J_ ."ꬼ2m*};s BTZ9ۚ&۶S*^'0 -UG I9e Ȗ,Az2E9dЂx?ho~RfGX6[ Y^- C4":Fi!{S)#K,}g}ŨH}u BG(rtOCv*R -2]L"B^JDhl ܯ'wl}/8I""2}:foё_:XmR#.8LWx6~}w,Nke}ơpFG]eBCCv_bmL9 RõjjVwi\ 7"b*7 8ւսZ?{ ݼ*PS5<>üS٤3TN̩m?z`!F=1EQһIdnhGđc>Ѕn%҅O89A;9.m٘)ST7VPuiEͣwfa!rj%.$P;g4ukf!2g5u<3٧b/?px4PhndB=xUEh6*lm\'RzAxz"`a-C)5dSsľͬ±a.zʚ/2iXp]s5tPޖ6 )- <|ê"_ljgZ6?;.Ba\O eyĔ^QH14 6YϑC0,-ҿrE'ݓWۡEYsɃ׹l:copT'hs RnOɮѻ[a*>ZvY j~VDž3V6FDep\LjGUjI 䝪ة9\tR\nX'C#t!*3' 6!V% 8N9j9 "B7;mjJ лmRWM|OdC71yxo{BX,$q>#7жtMIeőG%\L${klV<;RcMQ0jӟ%PfA9!unx * [`21Ԝyw^zEH|ƀK(=ȵT>'.B5c/08țͳAo;:2k*$1Ǔ/B]q)d{)}=q0˒hdl(%V#5ʂ#h>?Q9% @~iA䇗d:;2ꇲ(%lF d;'(#Lh=Rp{Os O>l0k&lX$vCP2 mO"sc^]=5;XH8CZH ɺh"ٸg9,v_/lV$UՎR lpoNo4j0^Ⱥ-Uvgc )sA][\LQ;eMԎ$5:.˄8~,Z>flGq- 4øhaШ?7]PB_npIYFMV` ) 9À‰6ax4rc¿G$sQ [DN8N~wn -P=ߺWƉUE<^\@R㿾tTgd׌%D:4]Kcj=d?=$\] =Hdmm'-bz~#%|'>ia>=x¬͆G#7_ m Zۜ;PUNo/;qP!NшW6?wJ9&aVJƞ# hW1r a:8:t'΁j|@qr=J;J[{osƠLGsC  1}GOe,ОcK'ou*@y'ʐ~ th -Xq#v1lvZbs)cA.zt%f+dum~tTw'7SZZtLiwYz?[KU("E`ұ%U,:TYtɺDU>6.\8g^^yPST8+)xrf!$c=)R0@uƓp ''BB#hR:I3^Iy;moA6k0\! -K.?Wx>aבPBUf՜%if ,(hvK$Xe.וM>{==naEUCz0'bL_-*"ʧ@vhCzstmшxBtX s AYϫ+Z{e?:;Jfl>oS#xW J3GGTbH˦,.>{3\vUb!]%Ԗ[vmXHShguup8r9Z`=[8Ex< q\~tVET Ul :DvCjqC8.C== D љ@X>Cs#'&]>p\M}V9ߘw>"nQ=Lmy#N!H)X5[<9M bVfKe@5n[ أL s?J}/ܛh)C \#WVزC]M+iՑnp]6O(<5lȖ^%%Pqxq^Ǯp'L9S-%^ c 5@ݲǙXTYgǓEm'@rݛ;7cX!8p|R:=6uCh~Nh7cH|rj,7g Mnd+gKr] Oߗ XBƻð!{`W0C &Dޱ0?5.5 kJ:R<(7y+94)iQ8+Z)s}W5O'x!6HTTɛ6?rdq۠`S.>MCp'Vp Xc\Ჟa ͛~^P`=r-o߫}$YWxHBTw:i.ŧ}& _;[e;+] VaCLm !;ŝU2gv 9U.ˆm@rޠF:$n Tt+M272{ԥ?9'NdH';>]AbwaWPj]|(EMUyVt_-8be_F,KyD^ϦPH! aVG(2|`]RBlt}ϸa ^IHgi~ G$jfեDwP^ڏu{ʹOX2JD̤-w6( u6]!;7${4{N(*qDgQO(ږ-(aBPa$a6rA#JYONf ˢ(,X-mQs+uK[Qх(0Q^qzqGr] &˝+ϑub$O>n7Wן;D ]S"֭6r] G,&ځcpq:n'2Zsz.p&0%ă kQ`Ur&?UwV1%w@[k<%pMpV zT͒Pgt]X@# {bQ~ 9a't?Yͯw91܉kBfb(;ey߯հBAȦl!]<+9{ (zp_P? / 끣>O? n'*mCǾwILlVzLgo$0rd|QhMF#G~(&_QAx7^F8)?F dJGguPth~ѓVk)Tb`ǭݒ 8^Qe>޳#o,`MVș,>S]Vov@!g8@+9ZF(p(kgfPw1v7Z4|˃ga%=Qғڻ6,b2m{_}?R frT[i& Iܞ5>0¬=g ])tŢJ}`?PA&sx'(24oy=d¡Poyp 'F4@$@ YLϋ;ЌP?y:[ܬ48;{#qkVqoy5Q YGtv_ՌAϙbyx1)>/WӭkE)Ęge1/?ɪrf)ʦ39M8cU\1Қ GD`VDWCߔRV̋xNj"< v!bvAk|(K֗xt l!W|k[.O^3ۺH'] Z U{m`4HThJ1Em̩;P bAKJ8^} nHhwޤ j\;}μ> ^A^/`;*E}-D_^CSqwRUQXk)TEӎ;`}5<[\˜i3p"UaSuޟRLZ2HHӕ O;l $`w.Ex&]w nL!< fvN,|TISeFQa7lPs0N:\3BgW (~muv;$TpyjaFqvzdNxOH@mmZKN<">OsHKi~倭"}Ϝa<~ \ M+l"}p^#n&>7E]͒Q::s?#ےzL͌YudwbN՘ݧhMY#Mn#ZDȡ#~JYՅ~Pbvol#Y'{]jcf#+DX>c.5,tT2k.J*">,ZfTD2rGZUZ5Z_3Y9FZSOdg{"MǙňeVxe\c̕ETKDph zw 9߀`>:At~ZׯRʭA",]4nX',QY.܉Yf}H6 8̵xG*O 1jۘsa`\9`zgU7jYYyt[S/4TBVkdÁbb_,݈*b!2#0} K_a3N`|ghYiJ5ff˘j }RQgq-KxAg& )X?htm<>1qU?W5Y!eXiw&܇Rʺ":Svǽz}tDc0l+/i,}R*"&v+8zK+.FNIYCPӠ  !TyV'tBe,攁X(_mn3ᆱTn&է4*R=)VkwMKڏ%Q_ )=^ʐZak 6+9mW_;35Mh\.( a9.+5Lx9UOMēp[hdu|1%jo$h-;n)Q9q{۟Zx 5{@zBIrcީoǞNTOtz4a|'CEqdzO3(n`%ש HFS>YZԶSq)S@fAjj"CA,wdI&Xzό*O ˜7V6ݔqp7Y1.C_z:% $2]T4HqxiE rp5?PJ ^jXƽ,s2d (NɲE3g߭ɶ,rDij^i=ʰ@ܿLlEXh"LV(j=tRIZduBĔʆ2MzY1f~>:()7U([5(OvıD3̒SX+VuͯGR!Xa_3[wzU n?%&jdjGPL&O\ңeHVuV@~At 5nDh'OcG_5hOё k>*cKKQ(OdϽG0~*oEe|Puv/YSV/ТvG$ҬndOqjz=`x߼n|2MlE"v1;regB¡CW*maf ;i"cޜ.f)i jb8Yn,oSLkLЛ)Vp2ŏ^l:"\gi͝,nW($g2 ۵Y;H Ou\ѳ+눈}å]Y2ӯ Rw"OZp *&__Tedf'\ z~n)zdLd27^O98~Ӻݍ͙g>%6-,pg [v?r6Y 1r¿-J'#PL.7 e#Su6 nc?뮁rmv݇{׳e |4bYm.a\9`εNװnm掎z~RY31L67g) sށ'fwBw>Dv^e'^[}}dfrRmZ+aJ j^IYh' Y=O8c!DoNyI ?&Tv<qbbȽ ]R-~O ے%ZOȺUz Rpn 'We@??TRT wa7ў9 ? ^;j"HTQNIQQ)7;QOuQ^PwxyX* 4a5JrR%/8[ .=3JP{蚜=:Dd8 Xc`{Z8@`'xEo6]?-]F+Ioe|*E֠IWMJêuW̅/#D~ 0%v9Emg)jvO}=6յ'"oiD!.R?,k;~CIX> imu>.,~. q5ErJD๣kBfnN J3VWF _tF!JMZ{{dѻJhZPjN :N۠ <@ߥX*BI×`{V Mʏi5QuʐtA.%> `+ EpΊŭUHb'px\ˊp}47lixc4KKgԋllY,f@氾>6N7/|V^ k> o_( [*co0;"C\Oqk ܇gΎ& b:{R^"yPt2f9~ UO&Hu#^/ w0ay ' 7i,Jbg3T=knSܤ;iNxXp%DŽa>jX (lBPNVЗ` xrLQDP$ ,OfZ `{u$׹nEz iu -(#}6Ng<7*( BW9a g|B6æb@Z'%`;(o/$h =&,/w2do"1]3M'"8N_'y_֍zwNo5`77L-]cbԔȎ`2_E21ipPKR<z}@u 7!eӸSQp۵*( V Z #KoohN(a(Gu^T$S+ )o돥!k(IT3jC"_(>%.fl E .|1YtB"H*D(mx`G-E$כ?md\0"t+I5Y'Y\x_ի=Y&M|3])j[,H$(AhrT۩r'Mttn(T>XSPD=kʴb:{,%0S/%6LQl鋲#zC|[/fЩ_-uZJ%/@J}R@G &0#h7&:R@`LkQU !nUׂWfmEVY`ǛΓFa:1~8g wZ2}5#o8)ۑKd7&WZJn+:PK:y6rLL7\ ~ޖ20!-^q6)׾g +]=ddiwL?+wCթ5sbc4<3ˤxB}&4 $7lۭi3HmW1j$js !n_5 T-NkR _zhz!x+E9δڕP}"tq%qǓ4^}eM<KV{>&')}gVWˣoCl:N‹JTpqSs@ Kcmh={NuLz}Cgj~y!!Z~T'#}l\Bd[B 5?Og9yU_uIy(X /\0ەcShWSb!8(L4fy7Xw6Ȯ"rC9N3!+ ǔP e-DHR\eoa=|!ΦH\ŊPU^.2x}[JoHsn䧬xÁ!On4Y.[ Xz,"aɶByO+|؞~lM#$u`SEGNk7Wҵ G.֢$1ʙ2(`(TJ2N 2+2'2E#~iCֿu:e Bt]]ЏvT33- IsoT 06E=?}8)J}C+="2W<t VfX;)r ,,rU$"q2-5|دJ(Zc ޽b[/J6ưn ۪`/%UuwI} oQo} 0pj /nLtf[Ct:a:5 "N>Ѱ*V& [Ҡz$y 8 9e#,{w䟬.PtM] yϗF"DN)-ʼn}xA!X;)Ѽ]5 9WPl/Kecs?(\"Kt*y.?85HNhmo?qQR=6 ґ@$+]x4:n(zfC aiAI*Ŧi]^2]N~U¶)RM;8%(>VV?snj|q9_6'X&E$dTCԢR-.aBfwj'L:|$3r$oW$$#Pgۆ{wn}g u"[˯d S *!sKCq(PUey$>@CXy$q]UR׵m .oo}>&ޮnؾ'S V+mNq'P vtcיYͶEsfYSaȨ Zadvo`a˙)tV|1M\ێ:JTmOml ,xJk˅:d(mWmwV?t*.<cI5;pkq>8ArrU}zuXG&f(Ljja 9d"*$nsf$aY_A^uIHI^E$AÕ^WV$#>+S\FQ<#ֵn{&ʁN4T4zqkblOj*51J74R!=9+u djbH04\zA+,zu+ _|Zjʩ&'Uc'=CNd%~C [/g4'"t!sw?A?؃}DŴ{wos@C"##HxQ?vU{ʿNlUYWQ>檕k MT5A֚ r˞loUӝ.[?BA[E^W {>XL>z+_g 3 IXG3Qx+j@CRs96U Y㻄/3 UK:o3_nɚRYxsOG<}d/9f-#Ru1|zBy7-#çs xLϓwgҿ[S(,I>ۖZr\F+$]=uk yܠYi1j@e7 NpJˢoL C@HZu1՜6(OKTWNfIO(s0 Im] "? 1%捙>kݏHe9n "y60q';$̷F7XӔWOsu&,ΫEax3U2=xq9 T"]/bL;bg\@>1?G )c -%jNGmoNSpiKsẺB(כF#V|̲UB4ԠB}Ew+EHpEV:?JZsۆMSC|._B)8vwËPNWl*s?vue[\uO-UAb%y^{F5s+fEWEL0#g$C}u:4F(sck !U; uԬ ~+p%*$x%< SF j0JV3(pKT,o-J)Vj LW.8휳?cf |s'g3|{/LJǸ)ȹ:_ %cy\~yj)5;ѥ+.E! arW8i, EVJS?r_kh٪sʘoh/f RPQ6:N1i\za yw-P<@C3g&D32;wDVdh\~ub1j@5/@h ZT]$OO{0` *Ժe0Uy &UV>gX~ȫAT(!۹Fi^ oN-֕, j$XF`3ށ-Mާc@R"DP —%4~9GQ4N`Ʊ\ +ɐ"57;JYHwusMAHeIAϜ6{F(W0{>'2yWCH]:3$˰~}E7 O"<}߶,. !^+':q/YZ%/mڄVb4xӿ ($Lv^Bd |T|p/qNP'Nr]* 3X3߉5Q۝F1 ^ݢraϭr@w֛I/RC%u=5aZD):5ϭ7\أӹ8o#ZU1Z0wno0t7Ex$m&)FV ֬VXht Oo\oX=>PTF:BKAAWc[*P` p6SɦrbKi_0TO|5TsklD΍nTktc?"h}e9HlX 8p%|l5\Oʽm%QcHv* UOr_@W<ቡ|AvWa\'= wځ\@,ͬԶ6R,T7Y (J}>z/wS.x3 p["}K$.A} RTTV߀NbZ,] *je*ƀVvoXџ Tj_Zi$1k$L@]ό[>hW]Ḱ1n*%QgfǩDh> Y0yR}Z_Kl2t -[( å!>qUdTF2sF!! nXGѹ20OELokUf,bcu._T\:\ه]\c_"YZajk i18 H./>ٰ}rE<SV\6jD5aֶ4Xn@mދh}%xBJAHOjt7uug ˱H1}Z¸_;za{ݲi4g{[S_RfR34ĭbKD79Y…BS9sB0+(ڇv˱n)U}8ϵ7ة2|}P1H!k6p^K\w_?:EA7FɘN`xU++ F;U[, .PEfr@]^ZT}B4 e?!.WD·E#W@` ˇՠЪ t䢤\ ß,B☊DHi'W!\ fux).bDuxo7-JQS8NwPC,hJ"܈**J!{KDB'?]qZSqni庹s1 Ʉj4Ud$*w&ͩ)Kq/`V-&DBo>|y0P3x=oM|޴,QGr&0ȳ&&Lݼ!s2W I+h:4(}*&&l__ЋͣjV\U1或,S. ;4+,pi:U2fpᇡ2p!jb7.Ws%68eo]v ճ#Ajo 3 YMq:AQPWG(3--AfxU'7>ؙqEUkC"%K#iD6F#tRzya\ߨ>ڲ$^KNt+bp*O1 C<}|)x膩AN|AթGmr|o =a|p]/m O ehΞT!43[x_Yj@Oz3h#\=D5Dݚ]2pڽ1a+4ؗ>='W< Y< u :yJz+мBat׷ t;0rYH8VY&(ij]ֱ*xeV'] Dkc9#4O^ 0SZg<-fvnζӿl,b! cbl Kk+'1\?{FLzrk arK5xE WT|;OEMcM31 NvUע`aL/LZ-䪮Y&7"jHk\Zu:&[FLfhEh:SПN/&t${f[%jz9G36i3ž)V@rTϗ-xœjg.,bJe2yѝ򒂕v{ki !25<d3!eg(O9%}_gu%{jkCQ2FJݵfsUc3M(M>Mr '^%&e<\ =`?X`_LZ_*fy}oAh4:s zn*} rt9mdD,<8h9@"ˠkeUP,Gqet>As+)g`X;4}cr!Wo۽WAţ Qn&Qqyxea =,qs])Kc<~!uo+N"(+"xp7̄G3+FujKVsAﷱzxB}V6GN݄U(m֖'Q:/2 N-'g+֮#xM# Uk2~r׆SQd`3f!A1ecnpOOo%r `\8[t>ķqzg dJG{RSX4R{W9jK237 jEWm]Zzߵ7~3|](_t#R))y+⁛ FE)5sWP~0k| R:t)g~5k"i7"&3RhޮvbJGoS |M V::@8Ҫ* |WzxfP ©SR~zA@T)>:~\L^OyFku-*)L󕵢Iΰ2=L$|q[M/ nS~ }EMq|ak$gu+Q8ԎMUW 7W{vΧmNݒ5Agқ2H9=PX>eƌ@xʗdG>>*(iz2z2_տjm1SSdF}lqo-h9,= ʥܝ<(.s=v"6|] f\k :MI +q Ǒm)pk%t'~!FL9Gt=wqCTaFinK`L@SmbRA>ޓO5 Ri@;l[1q[mFrBVrE&A JI :G6rLUaRi(=ELFc%xllLa"vҜ={]y.B,%ru%p\p#[]dV_:ӟpOz1K aHIo=il?$,T| g=C) GQ)+Gȕď% XF ڋJ7:Ve! ^t%eCr֣FU"*j\to?(ʨX@`a%ZSV et| D Z` ?t8&+̭<~·oϦ6;ZTʬ3$lrotfZ8?9 Y\ݒE xjM*kIii P"BO\Ưw1qX8;#a$ 1Jrl)3: {kȲc"Nvu- \b5Okf}&e,§ZsQIXRƫ5`?7G`]YCg8|լ`/'΃ֲN*>ȣ*u%?*Fu? Bõ NQ΢Σg΄T3-0AzǐW6W5kzo}{ ьVsB8tbX?`O._{͑_:L:F!vGϹ> Zrahd#9V'lA/[wŠL2bz(}각Lw@2Rv8VpLp>Djc8{Z1-VfR l:~҄ᡗ9ٌN}>{lcm`2S~@(puYYŕTZfrK+aːʚ 7l~i-}yԑSZN,9aGZe=x2QJ2#"DSu,VVwl.[A{&2Y!qUylKD~4B3 hW شN@ĕp[~"bhu_Ez}Hp=k3%_[:r+am^v~L-?8ɧrNysa2nˢl?gA12ѵHT!P8<[3rkWe3>F%0fqeǷ *jk_m!Z18NhtU]O)uGvyg6:f ^%0l6OCL,X/m[nAtP;&=? 4}腏JrIZR⌼&,o姾W$HNRA/6aI%(-F9!SxsxTq}ޟ_vt) d)q]5mWFu{_J@1ĔfYۊXٓ hFpŵs^C;b 4pl'-O:I~ػGaμ`iZ1{Ar"X'\nkS:SL{ngb)[|'`Y^y^{4꛷\&xqn܉(9{f!+d|L ޡz(ZDD[d츄(D8ZV&TfsNb94?:I?[D_E^ ޒ6ЅvTGxS&|3T-LܥvՔ\F܍po\GFuٔ1[ 18,:LfHd'LWϝ<6Fц䱈N .Q[2ݡR!mrdX&>_D!5H?$d'N[h6)soG[31=:y>sMY[6Rck;V9Z{qq2c9w3M4%$,L( &f[FoW.t(YT c\P0ۙGc` .pC]r9!])h@4z.qt3EvI|'κ<FyNܗj쁓ﮃ\:qk$1 'h 9C40$_ ;}qZGC#TfV@͏T$K̶|ߘ`F'4iQ $Y]`\ՠk1zܶ:K-t,cZ+_KW굞n+vz};vjT-2Kf ԓ| ۵AԽ%,D~_pEۈY&F$BrnsZ כYqP}i 0[UۭERS͞{Zke֛lSJNjG>aIrH*+,Fy. S- ˇd<9Dܲ&q(̈́&U4J\&3Q0:$6"T?ƹ%Zȅz6-Dhe~znaa+={`[ȗ8b&ry5t%@C N`LbQ)Ν-{I5B |2Yqp6s~ n,]6fԴ9G" q#v&0#Fvda\+2$z$%Pp;n DMOwUci&]͝,B"XjŽ2ֱ*4EFmujQ査꽈猄DfU"_MuI!Kg?P@'T< s{sRqL]ێT=w Q|K_A@r8`\S]Dz*Űn&x#o^/ ΧcP+8i4@suūCO1dӤīv>}t?eVxͣX 31"ֆ>֩ 5^y5)w`<D/z#C Z]ur#EtWFlM"7^ƊWHWuM9'N.:W3Ia:ެJ2j[q")L:;9bm~vgm1}y.a#:Q~ڬ*RaZL藜߼Ɩ@E$徃/tFJ|q!P$4h#09iqţU{1[HVY1W?FjpJ |r} m-ڙB Te:>":q)EKǿ|lw,{d^Xpe"]gx?L4WdD5>] s(K5Ө[N֗!J-,C1E,2(loV<ڏ׳Qnצ1VGϝ@f{a~QkY ~η}Ϡ\70+xEC>cQZ&{?z*Ul_7fk+`Zw:"!p%ݚd^3*ni{Fb޶T#Rމ/ZXwJ燫=UP'! -(#[u 9;ʞoɣ4AF:<"Oo b_ BQ‚  QR~̴;o +}_ #XK |<10{ass)dÌ뽠dU>F#d'4a 22q>D'];񃠘S@v$pk'6m*/" @HX0&:+=WdPZvA;0K&tr}'=L[k-&g})_7ŘO-6_-+DLv@EW@i{MRKV2 "HfILI4! (E 1'ВI_ 9n?l+}#"9&ܩ,V] D5˃ݟ=h-ઌV0=܆AݢCSCq>ivfX`Vʶo@(vUzcIG 3#.(+FkVI[oHԂ G4RNdm8U5qBjBovlVuPUF6;> ~ L Jm\Vf8>w!^t%FI[1X񬳸Aݻ-{;PiFIC#eAj(c@Ed6Dl}J1^/% *NFSSaaoFtL7+XOBԴas5Ȏ3P[j//Kyy4* @DD`z~>U]3˒^S1オ>o>I1 5xmgcr%V≰MRUo$FABDTx((z6X|>$8A,_S/Ԅ¦4DP!$e=dJ<7\ >VXz2_2bz>JxܟXO\JqCϤWB↉~|C iDHRMޞ{ ^aLBs8mq!{0\.k8C b/j@;79V'/Г!'1J_~(#uo[ߦRZ`b T^iD ACvThP %>0䳅Z҆L"/J0PY&X~?S{n 6j;Xqf$J]%rkPH>T,#;7UZӺ<_Lmbg޽juAoaˑC',)߯ o|Z!uב|zwcK*i)`}?"ٕ] 9 6 s*UdE*P9!YVc؟.qTmI!eh,nslؙ tMkl}w@'?$2^#r3ז[6/R$JvuPN_vvui*[Jyl5$wG593t |³H/XImi!_`t{Fz-ͮ8ozCk߼ 0İS6ŽR[aqlAuY *=™<\F}p-Vwj9v̖:"  &+>0Eяc')5s} r%b=q1B-$ZE_̿cp?q* \?AAuZ鰖7|?w렼,q%*X,g8G4|E  3]7d]\a֖PK<|{qO;oYr)tѽ{ݴ&{5pAOʘ8`ԮX8YJޖT( +7xj;0jd*_k׺=X`,,Z io,ƏQY)XsKmdsAOڊ|4ji7N+')˨Q]Ώ0>E](Y+ g]S€g~@?Җ lQS InR7-'^iǩ8~(%-|Bv䓊ps?ӄhe1_\Sp芣#(?u]*n8\ 殇ʙtL}nQ-h\r*~lIz>G)" 1`߫q>[eWP*-F %O?ῲľ[* 8 يVt[k\ºM?\ $L F97\C\LT7>3r.iXj(rzGߔNMF/YʍoҔTD*2p!\-m69o'rAE(W5C"UМѮ&kJglj8/H(Dz 4Л?K,5fRW¿U<^FB92[6o'u7d; "J$Ks:rv<ч_IFXp{*ѧ‚+sN-8ҍGY̓}`wfbX {Ot)/jg kf ʊU;=Ϝ[ 5}N'Lz؁354BAup2E ZRm5htfu&EwQ#v&lKJg?Vbn\0aag@G$W(RܿS)lʑفbHA N f>QWBT-S1]ċMFlq+`N@;54jS3p+㭼:o@xH%7js$XފauCsAǭ9 X'v,Io#q&m8,<^>9)ȧ ]X]av0M1jc˜Xvpȩ#,=eUU74%ycͲՙ}o]@HX]:r4g36ʩƸntl4L{7C_|+5l(:6 O)rlhި_Jޗ[UwcA RvPضǜj(¹<;F[Z{͘^yi&"G  wCbRY4jzvduy5'q2+?& S~pEAxN)ji1Dkԥi6P }F>FqW< X^yAZhVIJu-K$aZ̉ Vq"vh,Bm8V/~ , 80Cӳ"<ܑUQq F"N BNFT!Fؕ?Rs]*P'3TQ6 0\@EIW"ڈ)כ~6;1#,Vwp<ҩQgf([fE2MTaVHٲa) 7^/}%[L~kTZ*"S54QeK_ѹ."U|10R3g+Y Ͳqr7(,G^UXly}>oq8iXɐ L-gD!f4kiE5:|,tz+kJF_)!2<Qnxrb` ^RP}#:65&?6ʯE#GnHZȸǏzz苑t^ͪM[| ƪ$GIFb:-/= fW02ڀAs?3UyC/CB1PnzLs c#!̎Sן"$@z(0>-@8EaE_cG>xX"zo^թWyiPrU ]Wʪ)/'G u1*jZQ??%n32!RR h''J E } @˨QW/!]jV쵰!na;Dc*JTpuۨvt'DY/t\Ws"\]#L8>9%\y3ت&3^~W 6ĝQbҳR`ܭ)L3L*im['R};SuSвkȭ4N[b{$~3»)) Pb$~IF<^y܍i-]iM߅7'~x5]q-,V:E;k~:py+{h|%l}af3MİFjZ0{E!I5TDo0K~ (Ya8# IUŝFX[/q ngaׁK H\Q1ޡ@țAȃ}DjX@<ˈW,O7NK5KLSb;8T?=eHqer5'/7^ _jCȪm8&&!(+"\i^7UUO1:&YO`3-݅m6ys!x<:bgvX !dXwc=*vi>'tY*G9`p7 2^ؗIc $1$b)ꛡCmBWhhvboWDK_I_VP# N8gG[ (4ZeSAKE[)=-(A1Ʉ2pfR.;7>ReW8Ί'_RGx.f o-<K-VVߦl&Ƹ6--19gyWcjJ]L}$?ց|ݾdqtHegY+þt Ϛݐj9 ki^8oL,yӚU΂ qQmIiL KA~$ӎ)Wgw Q ʘ[2%I|cL|3aG 0 fb)=QRIVuȵsnMG^A 35 J׫=#ɔ%(x5[̊>?nqT"A8mM`}Rp߷ E$ai -gЪF<¸}~ǽ\rKI,օP2PܹT^OuDǖ-(!xMjoqM룥_/h1ngZ`!|ȁ#Oc4e;~j-L/૴W ;x(gRyІWK4wD 7;TⰚtyfFkEw[`ut XV)Lmj״Xǁ?ǁr &tVW 9;',YA_Ǡ=; 9 жއI|5XHUAvoUg`Gb}+XɚL}sn[mI \\. NfO8%Үd3I^à[>\e ^I[2H7*Ċ.g#}[|S.qfk|*t*7'qt7´=L#^|i 37+ 3$4"=,rލc1qS $[PpuoBфR:XQa;~g\ׅw6p P@k;x J0;6!gF>'SZ)MMݦ]f&6VXE;(gÛ͟m#+*Zc{7:NiPrʕYc>Rq- 2wKuf[U`럽^}}]v60:cy oNEJ4~3YVKTJiw2`YsR4HũS9mOͫ?AXx1{+pYp uuYӷc2bJT<I|HAn|M]Saf:b%*vvmS$و6T*oݏp7o>nT*r/kc?(hMOF 2`FadU:J2ePUU"糠^!KK =-bkeWGدq6 ~dUh K!WG$(j']pЄxE;8ߪ#°w 0r:jLWb7zSђ(5,$lͳr2u5XF'cq.^Z*_tLF57!%}9 _[Bp:_\]u,9vr}2[XnV1Y7#덈`.FM) 4w0^c@<9gIe~ ]i]ΩD 1{uVRe\[?NcmcmP' L/?6@Lhy5-FU <3E1Skhq9Ѝ wk^T.MaXW?Pת(ႴzpoAY/_WiiiRLj$yJd K@6X@ Ru܇)D څ%dTMP~-ؠKbb)rP_t;qkp 4_*k\\It ԤW4J% dcr \5dvkH7&7@r,JvAqor`._U-*5909-8^j c)Ҵ4{`Kol#[Xϻ}Rd7Yff'qt-2n:%/+f$vEig7ݱj"ʎ f{lZR3QCEmSȉ>1Vxktf%Xs$0t\:76?Hbfy0)!pUFG_R=Lo#@ceKH [f-Y2NwHYwprG,u}mm!>pz[pbMr~Yl-PsKE7 1p#> hQTyl+P?o# T" sYN, ;D%8 qJf9=/Pr2?(Tb QDuP@CBx;(f͈3*I7y=tg=pYbNQg3s]51igD1nab]O:LBHa,͝AβI$9W<펻ǔ{ywcǞ?"d8ъ1s<$[d7>[ӥp4 ay>@S^~x &%ԈÅ͎eamǮ$WۥgZ1/_Qpʆg=Wc6Z_tnK8+Ǐ? ~>stz>lX9O=m̑#b^Br7Q Cm#Lw%YlAO(uUN{NUs ~dQ_SnN=1S&" [` R>lC }19 L^!\%F9*qܥڄ:~VGzWݺ 1H?Fi0svv2SGV}rq, 3P6 Z?8_q8qtW^=uە33-HH-TX8aF,Dy >$6Mn:)  h _9 j*_a~,cvL ~ϸ(>E`f≓NRO/#C6XCQJ۷nL J׀B_@H:s VeXj@5/ u lsj:F M ,_{Oz_7Kk7;U?n9Y=?rߘ&;T">W݃"!`ܡ@-`G]qTZyRQRu~w7~8y|uŻ,}r&T"$a;0kD :tӍUXw,BzeHk0֑X/5k)טCPU}'*|~-]D*Ύ?{6˨w`gyHys;,}#+BywScTHKIlˤ czfj+#+B鯕eN%ֲhՅQK](z7?/]Ϟo3Gfc8^6{ ='>OXO_鎕^xsr͞Zq8<$30TF*rh{d`Rw Gi.t䅊quHj9| cmp75z=6x$Ln YG2gmZua`7Xw 37-fH ( n!7{݉aE*|sG*H>J_3uܞ9Rܷ0c<љ6\N%Sc!]eͬ`;$ª!3-d=ˆO=I D.A!P@8dcYj-=2/ђEN~̿hzT[H]-#XUdߜ?cƩ2AJذ5|?Vjin=QW˝/RZO^HQ$ϒsN"e:U-"61Nϗ'-Hk?v,l Pl&jNX0A^^ahr'ăǕװ#Iz84v6q5۫V0cgX`&¹[8*!ezT_aR#S5Xj&=drBt [96T!Ee[G#݈pxxBl%ӔjCo!-g0}Jݸ~=.SJgW ;碡[EQ|zK)mZϢ D܁sUcXa÷0fvYe)v^X`3Xpdzt<*@/NLRZOX2UΠrqY3@u⊃+]ϡJan_k_pջ.[>!#)kwrMD ?Z .V!} V (ydQZ"%0Z"Ѽ/- JWr@r!0`Nkt?p+A7iq3/nL=?gۍI)9ڮ9W*S#= 0h|9y2g )M°Rtɱ!Ia==vZAzG~TtX<fw~.Q!Dq#Pc iH8 )׌y"$`/ )Ƙ5h!iʹx)<3G|/C\SX 1њa&s,\Ӵʠ/s B'n$=F0zoZjmxG|-WyY75\Kcq֤Hs0N8S0^Avu(gn`{k,搔ͶcH>͚NEK`cyG Z ? &РYaVy#\bP7TDZeIe2hFMJvl^tUy3)#c($JWqx[~dG3n&LpER ;Av?O-^KK'D$Up^1syoI0pP1O"Ea݇B=rS80f4dQ/jTp._(́/ltk)B:fnTv<+}isr3q1c#HLs/7]m"bOleR.YNsR;u|֫%5cqC[l<_']A\@QD+sfͦCk'1(h(u|+93?[9f4.p$Wm1+i8tͽiΓ6FzJ0UN˖>Nc 3gRhNGYEiDP?-.ի YM3mKY*/N_^][s j`A#N)̹ou@Bsl0~jadlV/\QW?LDܾU/W(j_z?E^_bģu9.}; ;iY_5žMtj{9 }X@R*F*2~pJ1ƻW@qgdYs"kƺv0ۅD {.<:2.c2H Uj (Ygan䥎RD }dz+Y`gIԄe.+pXp*^};c†4KbFJ(*Y%q"s&_k qx?ccv2r . yk#mj*>,vz0AJfg_Do+H >1 iZL'˯wyy|w^"S3 N~w5a0mPjNwS>)xwQM1mPۦndXcܤ~Ὺ$ 5tF|#gX&'XAzȒ1\@'rJS$Hx#B j,%^jh^pi??5nAԐ7_zR,k桺K/!O!Lg5!;7l)퐟E̲н'{)Q( YW!)AlwX5VT6q8=qpSHWXtSE۫rA!@g8(r5v^.mdEb %RyѼaa@Xtv ݒ!pscJv/+pօ H%mXiWLϺwwfiDNGՀyz"R/'u6Cw݆+]^+w(B#lBJR0 z"&j6Yo#GMHF#j8ѓ bV8yz,m!LQfF'U"xxB~n$<ׇ֑bKOLxF ߋ\S)bѾU>Il"EDȫy/G'*Q˶n̫=u1TOkf+e 9}f FR]2H2iZ!loV}NgZNZyiqY=1poS8=HB9oR qǴX*%xA4JTkԾV.3K}KN'p:&LrwLbG%<ǣaz>"9 YsW#Y/ؗhAаEh'F۞R=|Mc~xkҖ8E=7V m65Y3D;Vrg刓if_,kG)&XS3E1G>P!畟z@ )35;9J+\|COf-}em$~X"u)uV@wCoH1&7! _ڊ4#ڄcOD:[>.7e"B/ b-ʹO c~iC+F&TX"0 (+uwxzc6qwм݄DZ&Q40 -jV+J޷Ǐ&hպ912nWr:7?gŁqp<6>5cA z^ح%ɣZn{Xgs'cUs!"1鱃F+g/0ե yL&4_$iq2 34η4XκSMMc_Y,׷3Vҭ\?'WYl :Ջ]/p9ɒDf2 'X K}:xnyЀU&."7/Xj\XqvΣ?&הdls^~d [@,ig^& crT:jds?0r> w+݀tW!y%zP4mhrX@o~mf{{`o笯x2sn$=21r 3/#QF؁hKdIsߢh^l)I-9F^Sl:\QR^a06͟m Q)Ce4@U[ EC0qwaL[penah;nm'nߘO'FG;e*BD[K&Iod `TGHn<7Ty|CH^$FCYƚ\fou6q¼תMP-'%v$kaV\XCP86`1wZչDO6yi\wE䫙0;lo ENC`Gg$²zU\S6 NgI)3 h]#n1خKT@?KWpJ]ѥ 'Fu,aV 8G3c NUEC5gJ%tѴ{ Y#C*Vzp_T~4n8:G Mm[D|!P2?(_˅!<$nM0ſ1t8OAD?>@i-ox>_م!8NW4gl{#T F]T,4%$5 z( -&9go D8y ; /p{LДfPothGY?܎1WoP* . H#N(Ҡ.m2-m)srvORX}N18 n0CJAL:19R|x/j%?**Sa>L' FC1Q(i+[eF5[ ,{..HBzX ;OբD |T2Jc=4ô&?d\OEA vg9(՟Z{.7Gպ?2@'~'C|VF/†2W>g} 'Ю1v_4_/Zfkp@9E7c M!ٴ!ƍ7G>#,ŀZgo(ă'SoMHT5H#xR'61dE?b5r:)Ӥ#cOTIiH(U,$.lc#lVO6M#x|]5PdU@g %ȯ柙R4[]tb5Okwb޹ϺwtjSS@Y b&uwmКҕXW =m+ 2LS"e56 ~g) D 8 ,loĢ*0Iruq-(XLٔ!g 7czhDU7fuqCTJA;v7~칋͜KZ1=zʻ|$#XZgG9&OK:I . ㅷu_0ee ch ^x@5pom(X+qen}<ˎ{y_gÀ6wn+R ]5 xq5 BB݄/x>+4AJѫ Xvڜ^ ]<=sab~u Ybu ʻ8%FbGQy΅nNgT)  OiONd#&lʋh /LB6#k 1L̊넃̈́Roy4I^sz)rCr_٨_Ә)djʂY82v릂 .[)/ Cm/xt y% wRsw5-$x\ieoEg8̖0)—gڅ38"Cd~?IdǢ d,>Rhh,@ iw70A7Wc}sKs܊(v>v=^}lxЦ@ C]\ߟ&]KV]{%pkEKE#;bvxى9qY#>,_D-'>jo0Tʑ~~v ζ~'J({bVsT΃1Siq*=聒A@}y{]bnMk(rJk/Z0#o_#b*i* Ȇ"̏Ef\Lΐexm’]ۈW]ݎmgKϽ&T{.)!KC^ẁ#fޟXo͞$VYe@_/wkn}*=rjpàn00_s60ظdDWYlO8nB]M09;_4ɪ7O_ѵaEKDR('KUnmHk2L23Npφߝ-Cz&ꃼ0pUK|C[}7)z^ue<3=D.[^U{J`>)6P͞O;|i)< |GDYU̔ ٹX<&fZgK?0+"*.q1եG!g*K%BnWgb?"ZIumQ$bKl4k!^G lQ|C&$,90mͳ̚7kOyw}BЫ]|j୶lڔSMwFx2ybpƗR` _ܝp!r3( [X7%3ʂNGj>{&yq?j ~{,,YqZl lcYi!ڲ6늗.wgY.}J tZqpV<Ӈ:l8)UGT]b+7_\Ep1*|!:U51) aA<2qM 1Ti1(Io~* ߇=NNA[b^Yw{']dBJtUɎdLB;9abI_!  !cɪCf3]f8cl=Y?)T0Q(7_v*l.1(ȿ[9ޔo?U%_Q#*|q99AgwJdvЯGb'8TxG T(@3%e1E& O^" /#7\nzNaFBV޳,톓-DN ^8δ{~Z+~ |=fU^܎|;2(4bpTG^ !R+]Ch#;7KD T:>DƦ Hz$|3"`?Q! 缟+0[QzO\-m̭ `P ]w2p xlf6 ~ȼ|0Gwիڶ$AfI:cNxJg1τ gxԜh:&zLnbY^\xi]]&g-'ZAφ$ciz +<`zT OeG ;з% ʁ&I,mAsSyljtQ4p_ #w^(cvf*u}(U-Y*I Omc$dMCޜ.V͔]?v2Yz"\bLgj-IUkES_2jn%4;i P!xby q#5W>8B\=g4mRQ=lݢHtdcf=DVïB8]RU>sE"SvwŨ?Xea{ 31w?JF".<4\|%={+@UAp& 4"v]9 >Ƅ#}G| wM%A+qe֣]WDsZ#%P1.k bF/ MJ2:݅En%2ij)M񱎱9ϹkV0F hZ{ VLWm.Y-jN}CHLSSkX-NĤ5({Tj+y= cq;#~(y1E/b)R ܋鵩7~& KpED}؋v{/L/4N0i`BJץDgTx깷ؑ2J bX,͊nJdTmU5ۙ+ chL@Cm 1C֪jPRɱRne&rsol7 1&}, |'!RMݝleVg/~Q>:ڍ1t87奱cu2 b^wHQKsMQ?O/l)a\F\%xhu&XQsg}h<㓖Z ./ 6/mC/Xhڔfx٠QSsd+d*Z A!BV)I}o~vpPxN'aF%(3XL#'.Li f+6^GUY(F4W~zNU8- PGǪce)rktq]<]GҴ?!:UvƩ{ngv M\cTB҅ף(rtD5J kwWsc5 vJtAKif?oke\. ƵߚUlR6qcƥy__#F2j z*XjvH _s Kik)L6}T"t@ڢ|k2Is 8δa 4_ӽA%[ Ksm΃tsM$覥G *W.p2z8&;3Ձ-Ϫ@F[T.i5Vapyh"1l1jQ7oϬ'~0hk<ҪA,IeE % I ٽB;/y%yGaeVx|Sz5x}'_zIz4oı!v r$8Dis[JS\э%`_/hoR0Rk:A۰YY4R;F m3f  5O Nmn)G8>{XO(T!겟0ۙwD߁#[-yʢPIWѡhȩy 8n9dž\3ߚOQ'\dm €澖Bm˶r*{!GHB{aZ,e`wnOH0ll <]P3@o"NhSOJ 1[aڧ\\[&%r4vm3n(MiyJ&1>&*X F55pl ?mnD⮩mE5/6)$%ŞkH/bz+&ZS d"эJ qDT[ŧEy)8x}66rlSQh]ԋqI7*>^y*mZ[cmO vC5WJ[#)̰sWӤFu28%kB9sL.bdVq=&3a n)P8 UM^[=4a)4Ο stoރVB@}0utĪ/8ϑ"IxuN V<1ŷ帵E&\oG>hh,uU -'_!'?'ı*7̭sl"غpcnHf\%Zՠ`֯焂:X5㗻<:0H E8%[TVl!:s 5ϤƏ.T2CmTȖJ;0p(;!ߟ[U Tzo}i-wG/Q~tOO*Yc, bHW8&*ty)/8PC;d w.H[NJL%V닒^WG?L#JǠ~!Eif 'v3U Hu9 *vjNJ5[ʿ$(mS*c81pؾyksC~Ǵp%T過\靥g60߉.)-Q1'|)2[܁&#d f /M*],.ڍ, I&8l2n ei!*'}ຯAx11;gpKPBrh#R\73hrl+$i>ȱ\C^m2IhrLB9Jq -HlZR5?.IՇX> KCd>4Hm %~*\l~62Oe +c0C,2w[Od^H =}/,O9&~w;@Q{X:"9|sۥOS=yB\tEtTG%Iz֌K~f H!?\MPX6b/ _{d@B-)ٱڷbRD5Q^-=IjHe_m#Zx DZbi'>x(}yM*6 Q/gq?ǩ0;_ r@!)A ^3-waxR7*q*LwW:9%DEכ$#1L DkՔ|ƪh%<2Hk 3/e%;DB#8l$CY@G~id ]ш98RcFL#ơQunTXc/Iw%G$myT qYy+>  *G'R0RUZ즚擎2  9P_Jz1OP">LxtraH#yuj]{6d^յ˹Rz !Yc`nrLXH$/rFT`TR0ӆ|Vw!R)7/4C9"]%zͮT`@h_%\ Iu5g1?)VcW}Mp_汀^$:m{hP/5wD(' ѩgDA)lfT2 ~-ˁ巅u}hQb^><m=39'cA wĦ>OUJL>„I}[%):K"cy(ިpȈq/):/ɫ)Z/9K=l%c/ Âpi0 \ʿ2FU Y3L/>#V~I_dgƂ*L SvRq\38tU0if" i$nϞ׌B M\l+3'lacl{'<"0+BTdﲝ&vR+o80 2IL5XMYhKFӊ6~uF4ҡ  諓>]oҔ>0ʌ8N VlKl߬^$Bܪe|cewDtW[*3~d,UNl]^FP0mO"7$ل=)ǼhP DZ+#]囔 rr~57~Oi:drxњ[Gϣ|:C=i\*;֛ :Xtk [|ƛ+JW]Ad\qd6 Yveؗ4.iEWD\ V\P>ټRѺ`d{$㕍]WۊggV۵9+-gpZ{Ekm*JS&TۯLܺ l=H{9U=M-ɺqCReGNLW4'֊m*+g7INh1+8נ =+z5AU[̉lO)ܺq]3[5W ,}ܴ-g"|P韏M[5xAͧC\O܀daز<1*C~0H1cx0 R>(S8rrfH*"j%& Y~FWU>'iU%ӆ*:}XD^UN#G/x\vc𝭨|+q +.+wax$T몼d#.>gȯ*mѠ9&Dcaob$LJD=1'agϛ5q,EU(8yhxp Ω5.o?})d`6WC7CuAKqfUL>]jK~h-hfʇ8|Qe9Hf\{yS ,}b)-v2@#` K"ž+O勉S5–aH&W+n``ӯ-Ams.G\4!bH3PMd OkS,hooԟLDql`a|R cuDӔR*pnTlbX MCҫ3Y!c%WfXŒ715%f0NUhFޚ7Z_1M1xanoUQG7] 2gG\pf:X)ٻeUfE"F.=7qk{q'v"K _'Vf)iǪш?o&AN({d[gӌB[bUQ^b&*ek2ԌT]^S[D7@9(}CO/F6xK7پ Z0J;B福0-D.kHk:ił6c۵ӀAhpX['F9[Tlq< !YuBpzuxJ7 hɾV!TUS_ Oq,Ш@uh'R;>|dA0x_swm}q'en9]:K)*B$%! dʞ@5V&iN#Fғ;3: SܢSN@ٍ`7ƲU~\+vx$dѾ<\ Rtx]gns"RvP;_k(U) c*Y*yM1jH5 6 ۢJPU!pߏ'fi )tr7&ѯωYqzYƋ&1|KP4-`^מSN6-NHSH: ND@pXR!qɊug 1#F9xbrBbwP:A B_5AvN4,!PbRkl'C3N'/A—IsиYJvn,@R_,U"]<ɸbM*h4SaO|;`4#oZMOӽz־Zpby;G@*jB/8(o}p쒡Rx Q1{3$vl;S bd_]@\Tw8eǙ/ HR>PTFiTz:sA߉]R켅qy{;Qz>%3I^\m:k:+u37%^񍹾`g?f{ 3 4%sc8 ShKЌ/ 9VH7z .݁=_y;R`aϡw.G"GYѝPMWV7RNReA\yv;8y@,V6CFq3'bSis}j/Cj5 L{lܻF [OR6.S}Ḋ"ѻ_(#@غ` s7Ο>~l_k.N\/nXyel&[eGw-Sm+uyb0p#vpE9HoAϠʅ"?%FZ4YfGMnؖ'kbr6U/TT ar QH*o{߬1n&t#,!7>`-#X.k %+/"-tEobE)X1/V'Oǃ.ʟ2J'6YJ)/ԑ' 6?0yp)nȅe# aL UOYK`>pBo5b֤4[]H'@3:h #%/Zb6z1~lhTf':?R$YJ Kϴ3׏xC,蜷 ^UD%s.M@馠6L%{݀iJG3;a_DLcY>@a8pdbpRB[KmzԱPuv!DGTL\a9|n~<]qPo߱{~x;7d!RPOoG GstŶ4G̯͝-%z:i7 &N]Y XY1DE?H3F!Slu!P=]cCHPvMkC *N!Rm,Z3Kl$`6#GIQoa@33  ;<;;u ᑄPoP=OZNuoS5Lxj bC(]gҷcZQBAũ^^ؼ{J%UKh"ENc#lH~k\d_rՔû}ߣt RķD-Mh|Cpuf`1 [4aۆHxCȆu]Ɖ$39 :\J[)THIY{fx,򱀝/)P޾t.vBT{s~l?NmWȳ#xʇCpf&_ba_ZAOZ:)OE" ixeagsݮESZzL~Q&naٲn bze_Pu;Gu]3#|كĽ'č7Ňe,E oΪey853#K;DIy"eJ)A'!f̬9T1Yagɧ:nFLph;N ߋ~ɸ=gje!!Qៜ[v"mH]Iijr5aX693w0c{&v 8%&7Sg÷TYg!@3i'ŠY(m/K\ eT\ u >e0~F6]3iRwgMԳa4@o!w?tpj4a(a1a*0~(JDSX3ss2d u03cW7Dx~sE[[~4 ̛o}~~ f)^ڛ( c˶/}r5=qPB!pbC)PJ^c*|&SoQ+Cr4qf/-d퉔n|0WB]神naзuWC:XTAŰ*BR:LNej\W7_d_ΥJ^g&Mȴ5̺ “mm)<ϰ c.ɸ)Uł} q~'有3.k Y<_dZYDESS– KZGdTu U;._J:3%gI*%)+%s;1w}Gn0L3fw + 8g~ ]9zY 7p n.%g*F$\gr5JPf _@\ISᆓ7M yD(QB|n_J*-wo!mbmVHaU}j oy}}˰ah,35DQ'ӸU/m}Ryv pvOҊj#A1@ڝKT4"%yĉt^[ޅ%ߊM%Am#jQ׷"O;ao~p Lao p9hBZ-aStCng5"[]n4PZPbb7j,iBa{Q \tX678YxdGd}}8JŬAMwn$! rx/e%X*xZÀ/5Rx e`a(?Ijʓ9CiDT 퓶'.(\^$ >G5O.Y 75wžKYhd>eoNKT" mt_7܃*(v@]^EKb!JYk$ PC]h˜<؏+_^.{Ȍp$_,-@GJ;d{N?so?{ACK mnɃuJ= Gޯ]1nu"A''i .MK7~ Gq) ̃U痌}oN}‡m]0f !GVK󑱀1&yh8k\3L/]eRCc\ 3N[ʵIK_ 7l/o[']89klG]@Ώ1HΌטPz[5+p˾ }&ƥ0U:aRJ-P`1V AW TĽkެY7>LMxa%z8ifMF8 DǍ2 Dj598EGbqoqG2פOS?Z3qbADV<.= x Tbd X66´6NV43s- UDhy8d#\3j *\U@=a},_낵Y2͇hNU#D,VB#zH t-.y~!;5OH u%'xԱnCNDN`&"Όd&*׉z{#L%*zn.6Yaj,(Q%Gsq]t,bzh6cV\LgQ-q/N dw٣0/g@O{ĞTSg BAW2 oZqV)4Yʩ_ sxl ڴgVlo:9N/aFA'F_\+t==LEɯ 9d3si2\NK"[GsO bl7&yZִЃS0FD` Hr:S?N7&NE,I/S G_iEdh>̢UgQHp8qO:I1Pٹx# ?C(eN#ہA{ؿc{R4m%FRb MHOj#;vZuZMqJȕ7f|̬HZ|!ĥLƚ"|`.r΃-Zk5e ;Ȑ)]pd}jqAiq1(.m4G2ˈ@g~ 8!|o[ 'E?ca%̴ 6#8N pT2m2 IĽB & 鬼zH"sn8!rJFW,Y;*DS!(KI3f\.-\9n5-Oh=aog%ZyG6z&u-.*Їຊ"As{tʂ3h ΅*QfD[%qaůhKevT+[}wc?\`/Nk؋(7 jN8" &Sr 4;b4ߌl'<)8IP\B6ROFn# p#|Nb!v,2Ymo66OInkڽSF'Ӷ ]gE/>z}Wv$xBj5AXJSikY@r9,bBnJ1eV Xྍ4:w¿w=呀;BX%7|jQH!P1&UՒMˍ#o n9 SQ,/|nDJXJ,~#-V&wӦ-$\@ĥ/3Lk6l{^w2K BPm}[mC3İ5 ' lO[dDq L9d2~\`8F񾗘ZY{ q~Kֶ&i$Gw5z2XS<d@تS4zZ7s 7LxĸyBF2YP Fã:dtdž<ᵣޔ- BT6?g&xC|(vNz:[]xU:PyaY:ŭA[u4lo--.hHJh.f `vS%.E밯 "c%v}U-eg‰6;b/o҇%i9f:leT\ +?[bGŔ4>LD呱@Tlլ#i[suW{[Juƅ{c^m5 }ACm49BmwNƽ.T eRs :8|#?XJ gL{Y&.Wo^On=GO?C:B(ӎ&]g`Z7*GY?UsxzN3|U$M@I4X*PV6A3B* /3¶(ˬ:,JAlj 0-~g=TB: BeSVID>j?x虪*[G/ vex 5\[ƟU&m`B#[>M^'k%P%H.UK8FvETj%=evޘӾU ~iiv^Ng͉nU\Rp߾\o+IP?nO0-,nImLsarDyCmf7}<OG$j#ECpFĞT–У +נZ2/P# PP#"̽` d•8Nk}? 7_m+,? .s:^&Wn  {_ԌN+/cm349eAF{X[ R B$yjѢ#/*Si .qy+(%4mXAF;WgDW6ZI';Qvܵ˹:c= %kЪ4Vg8 򴠩%8&jW _00i?/;;ԏn9M6Ŋ}fLC#Rq=#oTO  ԊRjچ`w8^.PzM A+ mΖj |}Ny&^B\,/$,r& $ߡ*On0ɞK Aϴy$,,Ԙ}Αߟ}")فp6Nn~JrHHôKPEnERc0/7- [sD{f6@";T! 5D=b&&uyFҩ ?&܆܅`1]g3.,wi~J}Z(gey{p$I˦5E@S8l!LrTRRAAf*t<Ұk|0*ܧD2k?<˖cQs!`Xͦca(`Tc~qL-Ax (8udx.]G,!P0 IApP{X@'y2)A<7YL!Tk-"X5G֏P$d3,{ݣ216+QdGx剏H/j6pb,(-/8Z@]]pA`یدXI sd! ԱiO3\\{fKr(e~;Qi9Vܧ"b%"hQq1w#gv eV@ 'Ūi }#H< ?r{d3`)r0Q=rk?r|A s2ŕ'.OVM81Ay+p{}`m)'\lQDЀ76?-B'v[NKj 5T(bV%pĚ'J .!-mD66b9~wG_>C42fAB1QrREHA:Brl3G5j60-%eK,V0b]6~TN:n ]B%]n#?2hQBQ^[$k؝i̪ 6Pv[u4HSX>"*b ?ü}[֩l b-U[#52+rN& [yb`U_tP/>}h܍07K7PVu5Z~JfYk7w,a,Ugi pUDy7$IZ~TP&kR;5$41=A&l֥㸳?ؚɍ-ѡ0^ zٔ }${]]{+@A~/U3W|:  p\!:a#Z kz/l/HCRInBDK/)% tQapm>? T^eǨlƵJHߪ.ge!L<#JI/?3qfU*/2"~򛄂gӜEGv;D=(@rV^=XtY7{Wy'W:k{@ @]3R7SU" v>iXfiLJ/WmK"@eR_\o/ñ$>:XށSyU<KePV;;d9ΏYfSFJǹ =Hc}4|Mʹ;P"|_>g5 ln!tYۡk1V2CC1+lK,܌5ڪ,A[<;2dHmC7ݖ4V"z1EKDwyO6mwx;g t/nFnc[6g|~ZkLpCq,UY^}RY^lScOJ5-c؅T-sϋŻNbeı~ ~ڞ-GDYC8[xODy;Z5`= _p5Q/22 ֍ߖ$-p'Z=k|7NcFd"w鯰uYaɨ7j֝%Hb Y+7$;4Lv"=)3D23wȝuE/iTP,9c(%ѭlpcRSzrf4į^f:Z7Am۩pH%ӌBp_GkJ_>s S G2?SBU1, 3ֻ+ ]_DPd%qŚ" )[jf{ A/#2 >BK]BB{m‘q&FH7'K:00 I56ek?s$ H PCp#<5G Cy-֏Ntlfp"،&<[͍qQa<>t4 )3|Cv o,V=C > 7 X(UϾec ?#` e01+ΕxfZ~27V4s䉚 ȡ0uXF;GMџ`ߝ$L<8{5! H`60-Y?t]Tc8siSNk Iئ' QGC.נCԐGn_luKARVoST=N`Xy+?7Q^^X7ucӥ*۞yk%ynlQ ~ 12ˢjDQ$qcρ?LW 3N^+yI*e:dFY}xw(y3nYd( Ns&^QH⬒Sa)*Dr^Im˴Bs*\{]'2yҟ^'mOkH*)k\6CŖĜ hwkNu=]W$,>guD&ؙ J)_z<';c{'j~9o^}Dp Ž,XA* A!,t}- 5KrFr#S魴SC@eT}LHUȵs8F^Mb`diF~tn>HXPV&^)@:1)&ć}7hqvCiJ{1dJ/Nze0'bBsf> BwGo K7fݓSNQTd4^MA&yHV +τGED;vmt[i$!?C®)x2mU*؛F)ZHY$_Ϻ@/sm[R|2pW3C~XʎG#.YQ]"K*旹ή !O]Nۯ8_{ot zc*$MMA,%6XzRl l\,wo"n0; 73I.2ZrtMw@pu-y!'PMOb@ FYd TRZ><] 4, ;pإ?kCR# Mg4 0PU;0<(z_\Z(K犲̯wrX?{)iݕa/8S?v˴N7gݨs/ |_ڻY1$aXtFР cL0m|%H7q;5#@p@73HA |획!z@հY`5Ir'=e`N>'_ٲn`xlq \t,?s8$UpN1:S@%H&F9-H(h9ID)¸E-؆\]"_dstRҩzu_c_#hἔf鴫UKCiLͳ Jxyں{.cl^uARSi&Sމ!#\BV56N;7]zzxnc ^~ )tU5stZGg~mv[WY,7jJ>P+ؤC`UOjkPB8j@|*MpwQڛJV92.'%{#c lL0+!x}8K߂܄bS6^ Wj5ϩe°!$ ~4;+[5@>@Yf8_ .2%B9{ [JF3g<> ^viAɳ|iݚkkJz)*jǑK)Tt0au4 8ȭ>(Zó\)RQ $8DdqhHMUa2c}XJ2;qs]|" 1?S_n2$v L|~ D?upA6ژG P_FVrtFt{0"Ŵ%rQ>t+rOVP%>I*LF87ϿlSSKIt {~ᙹ܅cPX$ ޹szFdn殬' 8;렿25 ӆo9d4oRF8@,v"hy}=,;lϨo\.2d%3;AtR'ҍ-Hj ؀S03Li*gMO330Gu|,h!'ߺqTccRD6o74Sf |{zrlm} @!G!Jd6>;/+ 6+f)Ȣd;^Hp7i{i%lqX8p,X Zgw S Y1rd=U ;A, Cfhj}Gb N HW8Nl|0ʿO&ǫE\f5ٺS᧳H=o>[^ 7XO JIsG @T+Y Z|GŽԹ}L~ȶbK,3gk3*vS/MrT:-7IR/φ*03iGI=]Y+6VޯN-)ՠ7k??5q4IU`/1\%fӏGBnmE&Ht6g6"{%V(|#IP.2@\8W2o;vz[G>:;FnhƉ !'![L/ 0OD1"gcz8qq}~=.Jjc ,i&.c;|I0ĚxALB$)|R7[jg/vO@)TzrjSr6 YSL;A5@!CCH}iYOt.cgz|-tIc+Xcun8ZȿRhiײ`+6}4FR_Dn;?? ʇГ",IU8 kUrĠ<&-w 蹕iW^BA `'UrL .m3x?AL}_c}/;A\1tv=%V!xB괇yd!P.앲Q,.ٷ,?\T 9 `1b9 Yf%z+̵Ě,ʠ J$Dqp+[x?}A5~YoRrji,mW"-<5b? RjT57V+~:(' -3dEuf,}SkMtSQ0miM$mnyxK/n"V |MĐ]oT?J(FXb;ȘkrGe!vkrGC"/m ]t??|u;oWDzdeC$وO`/*t= (Vl59׿]JU G^odlS34(͗Yt/f|ȨW{__ C=\&udSw# փH._1|ir0Ζޅ`*cF('aֆ ׼}›@=Q}3cK"¯6:(m lޘ/~g}Cv uպǒu<آ2(>Xܸ@M;ؔ0X9<1&Ps"v6ȤMjQ B U^o83(6`!@j[񜠦DԬäZ哪1@ Bp3Ϩ4F{%kuĩX{H,ùkr*5&<)\S*1'/H\ ® Z娞vK>K,ٖHL*²Џ1S|=f'1**oYzh(ƻx7*3DFFG5Q^H:)KYGٹ]Aw6/ڙ"&摳kn#dd+4i뽿͂ԪeV 6y Nq EjiBTg%HAhVє,N>WMΈJ$Ր*^1C%vjx0Zg)pѧv/ЭU !:KrKPhq>Gь\ZP\/bC)e{n)'9<֏|iNOR<ǰ(TjI4ЀMmGLRHyV^,R/"XuSJQVMnP!-e!TBDs B_}7È9^4n akB' G=Uƈ,WE9"nasV&xyGdMMDM%Q 9cƨfͩ/q&tXRp)ql²h C^oa v٘vY+CCCf,&:DhF ._PnaO_e'O6spGNHyYr顏2I.ᅱ0Nh3,:5pͤc§ ƣFR~z[ʸr;%ebl.aOs\+^OOLrWYwmR]?bޑށJYl(q~Q\nĵQ[5w`bΘJA@*b0ufJL:g f?U[3$%YvGŘnĈ**PmWĐ"yt0!wz@}!rW鰜1qJ!gC[aѬPg`TO1*Y3U6, @٠@N&<5ퟪNg5~F@E'$=UλCMI!k 2&Tb t70bdBrjXǠٌaSޡ!wL sC}Fq*l\?*XCs=(T H~_Rڤ,rC++o#S)kڵ =V{Q rwi;l2Ê3f\(O)-"`lJa@ 'XO?RQ>0p$)AHuZ9BxZQhoV4<F/ql(MKȵX(7hTT7Iw;MF}Y:3/rWۥڙeREu2rF^`xYLE&($OAQň̗]˥.h(nQ[MKe+Kf27|\.*6`ՆPz,i@A ϞY>M7eB-Ͳ_Uxe$yΚ%2sm9zΧujI3 ZSrbhyo~E(- Хh[kSBx) 앶ʩoZdG$+C y\^,FbG\X_@CYk[*uJj{uz8ՠMFxxQC`X$}}T:?!rWKL3qN " ;`&"|klW puACZ7˳>ckWTJ ~iQSvzhD7p9IzR=oϰkA| MA2bOQqaHN0Y].!Z(Y\rzCKIP X3>׹)cdB%zp@ZV=GT,G:…?HYXKL6=b-Pnsȗ(&>9VB^B&\m.E-/r6 .y͝d,aOת$Mdb}4dg~EV'~;\䵞XȶTw`RP@2=4sPx\1y{e_h =&i͠vRU ?kGp#ˁ9?86+ Bfv3 p9iY@g9o{('}l:׻ޢ8K +4v%Jnb(Y=[aSfĒUz'g4kQT\4P_W,pR#R'R&MZl#6 ^:Һ[K8(735gPIx>@3ik;xs?_J^, >Ec/l) W\ŮucᯩEO J~ d­e~wF4BgT24x?NƵ %p`g .ٕ1&W:\ء@xڏܗ(yM_ ɔbmv$Ԓ[&1,m]J' $R4Bֹ|Ý6lSb!njKS*tJJH-e׋_ @mz";}yEܳtX8[&$G:E AͭVjK'!:6q5dC)57tv/䦜:[9D?uWüIgsԑE4ܹ)Ő;OiXz&D-U,Ts,4]C:Y@x'烡؈j:׽@zw%r&YtݏO(H֚Sn4E\p[QP|3~MpSģ<ϚAu]Qr5T}Pic-LL꟟"&=ZڤQCi͘;.}c1Qp OIA@)#cH k8hbc ]G"\Bd;fj  "V3L6qjJ7AƸBJ$TPI&Zt!ɦɆM4AW9nd\m:*h30פ?6>M:m)=͑jlED@!ŭY@F8r~8"1]f ]Y5tP̅WiaLűِmFi~bdZЪH|-v;#ۄsc#mzO,op㇛ORA]˝- HXtVRB_3Zx/hի€u%\nW8]p{w뉝:7.MG9R =SFVr=Z*oO}*-*MX̳6A;4.\cZ[t] ht󉨎LVVRoV R9? ͌{3ckYFs;`2ox' 6)Q8rcCl4sk=wVF5ܥz0u6fTA<+y6/Y;c`!i?ΆnsH'թu]9Hڞ4,ї7a@Si}t,цu^~}ja4eeE H/G_Ic \OWj"_v2VX"2@/؄UhvPh1rټFFKI9a syOl}*𸹯ebܖl@X- lE꫆|gNcZ:'ɲ %|8vu>Gk}Msl)o}~$"aiM^)+[X`Ĺ`cGk$?9- Bc@ :k~U2+.U K/RnOMՈ1Dhp%6SupgcFRI]"PO!+-zCQIQʴDp"JvsWI5`qHAPa]Ϧ-axL&k$~6Ţ^%¦CpmpniTt{$ldݝ/o[L.[l#Sf%>mL O!?xPw[ 3⺒ڼma+hW/_kBQ kV"C뜴6< 0l0Nitv\cv7Bz2iT6JDgHKx3ap`Vr @{V,UiÙF_[z減`Vـ1CTigt3s=_ :k-l^V\-- Y^)ew8\aC^O1M* . I}d#mJ16Ƙ!)HjsHRI1g%UE}]F8fm窱3)L8CW{95XW~@HMІz:r3fCmdZGOIV,\B^wV#~k1J=, _L~W&Lm ,%3l\EM@~=I:'>nLn|0ipcO՗IRVQɒoLUN cuǎibEW(?6'YEam&ji 8G Pϱq=&B{ sZE$0:z ͝%{5<vuL)K2:x?Ј%pR,N&sjߎ}>ɨm{,6Lu(K9O*oF}.*1ƏmwPG^ڲNX-3I~Z/iQUxI@hW;E*Wi``Պ#2yicJЉKuB/eޮQ'K!>;giG<3g{$j74}0(3J7%ޠbݸM'R=(\IU#%1CnSW[xDG [ + w$/#;60MR ԅ \;K`j1_V<`V /J1" ڼ|..#uG;@$Z~;ŭ8)pspRsr>xa" DKߛ#6n+#UN\\1v9\1vi_- $VXΜdv5 '/G yy,B}HvA\V~Fqx<%锩/Ng?I("T٢O0\(;I@srbrxa`S/"VxML ;".f?;4g=t|6DpG?Đ_#tٙpUnHEX~Ȝ%0N.Bp#%=Э䷀N. )Qk^K"漃^%I>0 1]lV*S4kze?;Ǐ}$|s :#j7).e\J* ^VեH)}Dl(<2l{.C#ڂ7t[ͩEy:`irmٽ3z-3Sv^JvO~- KPp+Q8h~Â+"uZ2)$^q4b B" 80RҀͬ7J6D%l,M>pM9b(7Ncuk gJ<΀C~6XO{|'F ̴b%RIiƱ:N ;^Y2mm LO4N2LEOa >p*1.ay(x^ty\D7$ x-s?T) BJhYos`Z"4Qd?0oP} p @V"Oc$ktZ/<ȿüDKHP~^+lPM'HMdrf(['fY8q^jUwGh &uJ"5~O"ġxevFN}x6aGt5l"CV  =| guRWE.{~xV`diUUJ[g_ݒv[CB3Łp6% aEobTd*%Kjn@n̶v꼽S󅷩)Kȱl<FR3MEixy[A<ϏY1f21(A,I"jn{7Ma(a8¶] #qd$l_*Ȑ#Akc{$BtfXhe[J8n/h3_NqEN640!`*B 8P]5#2}SjH,eΥ;{2hCaX4Pxacz_WPdYvy[H@#ËAJԢo[{<;RU9Wuwٷ^**-5,Si%CRG-,%O}s8"mp]FCM=-`=!y, :=R6QLEA?;ѱ`w ހ\By v˻I-/'fP$I{M 3ӑ11qT-j-h{U f)T>EuՓ-;xۥO$;?U?RdhbwNUin^.zxh:{ R #@aNtF=u4ta. ݗ, "rs #UV({y=_WQ&,tlXq,IAx2rt=64P$GTfЀ˂Q4{kg,Q'E&j^J.v]2Q< `C1|I#LOLpH9A+T!9ת^|ﮁ}@{p@B[u[loD3ZI첥4C~yR30e<HO +0SKrbNXlSmoʰ4\y ’#ޔL ~j1R'SPnF.1f@C#X'׆\lWڃW̗/s.4,D izd3l8șUAU6͗~WĻ#z'\9Iah#]kZ>hC{UK8TՒv<,C=R,ϊ&QB-T۞Y s˘)(=fx*0T^([PI^B{TUxs,AQ9:?~=a@ijh;˂wS0#&תҳ08Kqڵ9IMgQW-Q+P¡_܀ژvC0Gxh"Ǭ->fԼ}#8BW".&-7˰AhXzFbKjZx+,x{WXIywXvhzZWpXVohÂ:DZa\_<n}Ycm&wY'nOt_P>*MuxI[wWc[AS3%w %6;w;,JR"wH&pyy@r} ȼgں_k1G,3SSGBjf$RjE= =i tN6z#>BT3:R@]ӓxkdOK.& ~16d,M7%)h8W󩲤U?8G\%Df|QB|l%䃗EVK I|BQ58\$Q!d =,]}Ƌ- 12iJF;,lq ?-x%,mO l1HJK^nRR3ee'5\e /c #?NK.!NU cs}{GWQL~Pi T6ʸOq) e`a $m}8#F`V[<5ꫣ*D@V[/ m"k 7W.y18K[+g!/Y("ͺ)CXc-q)W']z9MI v,DSa.^B)-KIDaD821}0,rs)hC629D `pjoqor"td fќ0pHMFT]zȑFqeBּb%X*c[Ր\wNgKչX1oWX@vf|zzڹX'?G2E;\acɝwڊ!5 }~i5v$Ul߅$X=|s iHSDmcĢ:pM/<,eIY=t2{^4 y[`ۻ ~-Ȅ'kP4:}Ґu/rV~96,*S&)XU:)VڅƏO=VE)|u AeƼ Mحΐ ʹtUΥ U V,(h5iB^ْ> GZbo]ä$19ttɎy># 'x@!;s1ʉ͊gw21/knhlP)@"IF2:z`jBb;$zħDrA3l-ʓtҚG8;Ku3dC&Y' z-r3;D"I7&)Z{D^B6σ4zZmhFr6w xx njɇ Yv\ %Q/[υMi6 u,JQЕxvJ6dVs;5AG^t8Y:omd)ɧFfqկխtwŸ:_ 'Gҍ`=eDfiUPmcm?ri)U(ߵPPvu6\#ުR v0mvr)H X&dLߺé9ldHn/)*ps~Ok/BO.[v'wCGZW.\Sҥ@U󁻸Zps5 \N9 ;Ċx[{L} cU<8Gp *wrw&t(=|Pm9ru9ҕ,3@y|+C1Q+VTD0 bc!G:N%B93&+eV$D_?okОY&Yyd.,yahovC&벁X %*m]\j^O>!C=-ߐ*tr ۴/-A:-NQ(s`FyZJv AҴq!kb4 }ヘDmp`ɗS1ZJ|^|e0F A4$_o gڎ0H Q|֒?y)=4]PG>'yb~#-ZegA:SG+Aꍓ/4l]GTC3WYƌ(+0 py'#/veO m|w^IZlNy-K @Op/#:o3'- Xn-P^`jK'] wsЂ8]eL@b,%gO)uBJU̾s M1Sǿe38̖s]s Ǖ%K\O b ȍL]26zsP̾JN)!tq~9,ͭ @5]Zk !"xK3XxO޵Gpta,-\rH!i@9m_ NLP$any̘Ɍ/(=T;M`75ȷjC(]ޞw}, |5zunI~2f4ESSKݮLPV~nq&@p WÏئU`:8ՆQ>nJBtjrŻ/U_3k?!QㆍCq}瓽_`*PCS[ e*h "H]_ ѷűN?$-J`YH_0gZkp7T=1n%]Z!wk]Mlih~R2fp\o$O]svC(ajdgq2 ^Hi=;CBw$M TQj1u=hUwHЕeݒv~nI5%">a~@ö|#N0ִ8\,׌AQQ,Ti; 9 c %:,*94FO9~X IrE* @_3/k @3mnrSl%XhIw$>M!?д=G]8BPQ#RmrلrG~/\wO>S[ ~s OX4ƲW?=Qn˙b 58(.%")bEa1[n![S118]{dgX:?*XTsLdm @( vқzM c$S8a ǻVXw&η@C$Lk(ȏc:EWL݃YI/CΆqgɚկK_ co lQEJP$G4L:8 q!nSǬ= ̢ICrZScʩuG)p|*6 {@gUZD8}.+R֞X) b7,^L=gm|g|픺_ZΑ: h_jv%Gj|Ѝ{`"rb99U #%=(R|݊ɀX;n&f֍/1C9.1].E16hٗgLaّ3jKMa̄ܘj(?ҩO+>3,pAu{)$**!i:2pk:'{TrjNgʡB-EiDx_ɾiH}&*d_lF/ȞtK*0P_s(3ų.-CՇ0{_V'52[qmd(b+)Xgӓ,5MԚ]h? I8s܋)/#הk";EV!kazAM NU9@f/%C#w=dⴍ+xLH1_`SR:Mjq ׍iX`duN \xmߎxr=Rmj0Qu eo_I`20VNʔ/%ф) W'w(<\c]]mFN$8p #j)>3΋|RXw<jw0!]*.̇"_{0p6vGw{̳;t\ɦ[zXH =%10J)ق S4-63J@~ ;sF6| V(k!c( Km|+8I ͬTcQR7NbiP_,P\1{"`dq][g j%$Vlpƭu {Cu& Ş*21oNc0e:|<6/cȅR8c#bs0Q EQiDžr.,?Q 8aFҘQCБ^-7/8A}*&{c9)xJ̬;+ל $dg_\sLؕVze,9PAUB  rvT[Gc|0}0,#^"G9|я{Kubȕj4R$"15eSw>ӎUH4X B?"k?CZ>pM!a4ͼd\z*|BtjJ*+24kw{<`(@CGL2Tdu'9s?nCnD+!^a+V&6Rz;$<א?Ƕ,nA1A{?8'qA C4s2 QkE$5~[<-Dw"&3Lw 3Nӛ}"tܠ%lLz}N!ה&=?x{wKIb/ 11Oqn֓DQ   h.~M=7T z@>4'—?f2̂GO+&(}M$m$TZ:"Jөh?1d&-ҩI=#+Eݮm8'E꛾Q}6Hvn陿vf\in`3H&;" ֺWtԞDDO"ؤBFfŢrY )<ͱ1MN L'kƧ̖Ox.h^h}^jil|nR'5{0_/H/RF V\΋*"7;{l0kJ.)z.4,_an}l\U/**~UjuTxmv~QP5 &)h^w2gn1jpBruƂAհ$BZs3HZJ)}X` _)kӠ ƚHO`ʉGhk Kkaő<|ي!aWA \e=Z;"aDe2丿[tѠjhLݠ^jj]_ $ aܴK4ȢZ _FN!S*de޾&XS71GPӰГIm'o]ųP?w} ףw1##t /Bb'WD؟K^0*OT9>zI?P5Y7`>`Utq k]p+}Q}x|OcqE.|A~=&dnraj`+'`7Zj|H3cW΄K~%rJD[rRsV[~x={D~1|x "C>͎]U '`QkT.­BsJA<k`2BlY *9$I9hL, w&\+A=Q5rGtvq{\@(mcզJ9/Ú6 |l`t-ܦl`# ]$ӕPܖ®*J*'N͗&]>OGWLc& ]!n-1x0|tqmUC7+-2?cb> NliڄC(OC'A40A&0?`D%{%))ef*4kr?iHrTs*A8-dO4$dtz+Fctu5ЬWÒCeÞd[΂E @XO?k) mt%Ɛ̲@wOq @#/4\$֫"b,L V-Ȑƈ"?Qʂͧ 0d7ٝz6sQ[)[[4#y01x2O- 6k .9I=95cJ/0 fvS0Cb,,Cfha*7dۓ7HE ,]~`|L{\}:EDpDA92l^[ r8k8a=f_m|%O0ڀo/&9;42i*}d=HٗyO$(pFs鏛0kO-z^*0sK;A6|!% |_\8zmMPӇ31Q>i$"i U*il ҵ,Aq?+lt寉wI] 5D2Fū!pCHa֛_ &hCZi*J^$L|$TUcQxa?P 㡊R礭 !3L!8bS)~ Zr"pk0>3قpF=*Ud xs0`/SV!b!]9~@SmV <"\)=^{*tސEgo77/VcZ,njnP=61T..y8a {iYM39+ Op|scy'G||u=Wu/4bA.ƹa(:bq$duFseUG9X[ե1lǦg woW0s΍-M(WP]ǂ՜³]f3#6~T[ۍz@˞/>/rO`'oiUΟ^J^@vIbot?P>6HnJ(9 V Q91䉤W _kP Wy=TBTzT bMFKbJOhXnaeiCsPCd_~5lg̯ÎkiRO耣%Nզڛ^!6J& Σ@R,Ȥ_ZY,Jes&z '2 ׄĿÓF-Tx^$:nށ"Wb Hfkq m" DtVng[-xós\s~Km0kX֓ ewix;TcIٯOiS-r^p=mF1&;o"}XDgC?@8t) k ]x@/ȫᴇdQjK8>q.I<YC=> nrì`ޅQ;Ewv1ാ?L_AOWJ9K8Br+Pn$iG? +7u~$(&=MC嬳|CK*/qρ蔰j~&0m{Ĺ3AX))F-V=m .™j䓗 p91$Y܍7HFgJ'j.2`U/K} uMhz7BGyg~EXXzɧ.m ;#JANeZy'O>~RT PsOb d^*FWLJs?ڭ.[$jQZ!E=>1U aeʆS/ ]L2xdK| 36nFg|K[3&(8a&}LD=¯C_nI+ |CAF%o%W$9\~`~MU ^8 JΞ-V^>\ @Dmb+k#bih Run;ҒM!G $Ey!#?.ݦrby A>0uV~Yѐd5gN8k YPVNq 4л?[MUS/r ۿafgE09T}gN WnWc/ǛbKQ4ŧJm*ii4ϟ- lzg-Q [ҍԪ`eL v #Ͱ)jtiz}j@}"Pa;MR@VhkWZJbm IF{7y'\ ΏLJ/U9UhK fK? ¡uOgvt"vgV6HLA3It#5Y'@]=HnKIw.a2:Y2BBe,YpgnO>[ Q1alZ~_J_p@Ĕ5[O'^嘣(AR^R)zhx:.]3wP`^e}ˏ7,*-6q^Ă͟G{=P}yk50XڏHYWrHS 5z`:r* i[GNv PyMFb&cF5 #՜2P 1/zSPC$ ]U*7R#^lf49]Az=权5i ~8Jʋ| uF09* `h XMFH vzU^N<ŏGדK?雠tmrʟ3E&)[n6$_%CtxJ>?Z=X+&T>?CH.z^ƥ,b iAsh+DbL=mbmؖpuH0&IEyO TT|l-) =Ě~nSgkVjRjwKv)2 |waSx[*BAyT'?І1 #f*Q )7 b\-ӍlOLaء:(=)_MF4FjJ}4Un}QGUfQ#_fʱ;.r1pCL-%y@_nԛМcPMP#qNȘYpj0\f| W9buZR 8-AܪyW[ћ Ȣ*Qo\*~@OaU6)eol9ؤ:*|o3Sq%63Vd50M}^R'U9k^ITR> J^v.[A. u9l{ SRcpPCp28aǻkl'iXhr( !50GTnx_zlX?ќ˺ fI;  .V+$%А&fQ'KfPv 5W)JuQK*z7XeeHEV<2ø ) \Q5zh7`wq:;o kQt.TD0Q߫D{a恎0&*4G:AndhZm@ѳ$u:f>VR5w"v!TI!,(Cbѧ`,[fA*%6 X=ji \&ƱnRp)1In?~]V~E~WvIþklí,gx)1  3r^qSp1.TY1so {]ԍ%]iS.\|uqÉ~ӀxmOxbyq;c>Bqu\;:M-]+q{\K. OA'>]sƫQQRJn`m oTOO!}M! fg^w@B `n=ϣ0 ,3U!ww^]{/O o;dVz 9lc+wȦ??h+b>-~C˛J<2ٰD0fDB 8uai^p ćWZ p ߋ(!]eI~D4[02 LE'3|:ƟCqGʑR|d YJi؆ܱ6*T֚Eѫd s"]`<(9-rEQeYTdt9.ZNmʩ{S]Ng]צּTMun8,)(#)i6-#n(OXPݏ&j½' R8 Q{~y̝2P nC ̭Hޖ(Fytjm<wA{Q"mLfE6f=;eq2:P ޠE s,LӉ:b+JDYSY,B&}e+U3tK!zغ i0 1ִiLo3>hUs薨fNqdyy&O6**'__Z'JL U qk7l5J,:Aʕ1 {,ZvEN b;Vy2`= k%$gcvbODPV9`5Nֺjtsx^}l>jRڥ\)K|ٶ%q:y:f2NŜ2>r{ɜV1/: '<`:*I|Z[ór`?]Sko:(LspF/-;u{86LSrމ*ر542a3` וs ta #$eu-=ÀB uɣ.0HT *utA)71u>%a#1 K5iP2 0F"?>Af鋾f#"A 0qgZ7 t?:zゅ:)_Ʃ&Cf Kmsj ";;s/dSf+cι!Qb ڐ6xEl פn$H )oYM -u.AzĤ Hح&0v֋%xfɸ te0uyAISCiBH"x\j6ɔQxºiWiWzx5viTQh VJdZ^-y竦'#% U|N*E7 ]a/3:"TipЭ5?sXi{n|jJ6(N&.&v]*lTwm0Ϯ`5GlCQzG 6q`4fpHP LQQVa[r 9]?AܕjdƅI'Ů;Dqz8^RnBNlXӝfL>g׎T鐝͸bY?CsWJƟ9]"83ڪr(= #N1H DNjIU\{5&N!]J&;Rm!m"eR*>ǚ$,ǧ?K؍`9%XZU+RU(4vp|_2'"ؿY_tK_ޛOTDo;*<֨4 -0ZR9rA Bd3ͯts@nen;qwe &7ңd,ۯGFŠMMȲ#0b BEO'BٻȦg((J*޻5Tx9]v\vH>Rp&- p>6;a3‡,RTDBv1h .^i]bO[uu-?$Qk_ ]^uF=Q  &6$8_ XEBBd]N\lI&sݧ="G1PJ~8$bYg(0t809 &O 4Vt{Tz7ӢӊM9u1k6B0iW&*Yfe8DSc~!:^}B&U"& ZWJD9!/\D#г}c\e?LGzbmZ^;$x寃U>S {[O\ށ^ϱ6Vy⺧c;EC+w/vm Sv\"^0XےB'J)w]8kdKI)HIzd_׋߈>g2]mJ}N]AAVE}n@>=EN]xaP XKkj7]Mr+ Ǥw2.*S%0VWm7w$)蛵rdCOl_x C@I븘;Fw< ]v "5'8@AGW:6f7 k3O]O4gWаUvT1Nb|2N5tm^>%.l^@u#:jG~º Wywp"7VC-8O I$ljN9Ѷu)}9Ha* Oנz`_ϭ %gᇨ^jQR8Zj?O '\w; ?J@TBP"ZL͟m0ÛSnH`%CBWQϟRO)7](1j7D{(-)90m gfln͡}ΧI;7$ߏP1xL'hE\9O/J;zPNRl.scWRn^_.hΝ_-}*% ; rG`T8n$HhEƗ5 8V s1)Yg: kBztCwtx|e ukM׶lec}TMBv&L΀o*O?0do˃8NɎu_ϤoqZ,c4ڨ}N: s{Kb ̦1@$ɝ_`-(zӶ)]i(O#'{y5c2)1 +dzBE<p8J_Z5)Uu7XkʅD.CR%q>(62W=5o ",bV\@`/_5;lfT#/hH<]]*=kc= PU!Cp*4K(Bu?9hWkP{V~{k 5=:|ygU]Gjn~cii]J5g36TdqL!xfAG|>~ w$;!-߷M8 UR*EUm|5|G0ߦFQeە'g*5|.}VyMJY:[z[nWПKR\<· 'C|9~ `k[1ںW/c,JtZ(Y/ ;hDmØϭlДgA 3: ]&oy躧Xu WWLQw@x:;74z>⺽_iLx?iKa\<*4U9q/\{=S:٣;8dnaʯYDJmV}:etW 4}nujgo%]:)t1)nBs?DV a7g`*} {>6 b r"^lM&ɸ.3 }8NE{N6 QA@օ;k"v0H*x]VQԹglskvkWTw?ݸh(\|6`E7~ Oܣe~T4wKtBblS  +WkQ*$6HzBL ?pl3 :_㫆=mZjkőSH^>׾X@gzZl49_9TCM5N)Nm`o ,n0d2DЬ$'Q ]%&V+(Z3dxY?]X  T+'8%K*8Nj]}: zቖ;gwz)Aթ;:}vjCedN+eM}~}p?P f7@I;&6&6~_BS3DKJ@ON1ALLdxzz,eaT_3 vi!Ll&xL$@&6lc]J?̦OqG{e]r6u^6lTa/*vSDdB4>O!*ܮz؄r);M23ν_1W;?l|-7!aS<0(iZ jfF!Lw^EVWQTݮ*2_Eu,{|`j(Q,>FFU87v||9ήŀ Z<];S .ڕ\u!ﴤIsFs>⑃e/AlAiTH륔DRKu%\o9at<pV)ǝmSC:gI9hoV*DAbbuXnW3ʯ A -p׬Y|4 ;6$tiīr[Dx#ڰ6.+z 74{o##.%Q>$}Tk"kLkRca iHKP@Sfy2A/ +Ra_Π%B>^Fb,oH퀽;NUfuϦ Cm$PbvoX@*,R --CGJP;sҋIM)E hV$Iԟm7C{ȻW98KgV}lu=RIE>[dwng`bP WoȊsk Ias˸$߸ĸ?|Жf&nyYUIoF p'1g<]>TM+<]S03]i[4d:cZu5_De)p0I&d;!N,o~^kL"I3D' lMϐ~J$M}K=>ިߚ>f-[ZempʁYw$+q5i+%4T×a9]C*:5DW0XZeDQUf [<@;GUD< P?94WqyD-R>r3Z==hv񠣸ѳ^sPRna vk22d)o;$ڵlPn: @W-؛n*^% ƿ%_HD5dH+< ~K4,fh6Vmy5+1q6]3*X8d= WL N'ٶwa˷ !KYz3.~rMmEСt řqNI1O!q킛nӬXp[U5|sL|99'}QG N7߰$W _X-½î:Af[dQ?\5 <>UD( +7=PVce_ .JR0>VO=fGv!?ڠ/9W^#y<%;8H5koh+_# By>qjJ1\dfdy"ȋ7r֮n`x&_ ʏ6+q hi07l,eR(JvN:Yu?sYq_WD̓<"!fѸ7Zw26cMVkJEdȔT]}]'Ȩ>Mg,FX+"hTHy-)4Z5ܲFBK}hNJL.dݧL 8V 7O7;V#&b{%P0oY cPGO7 %OE)_淒@ʸ"Q 8~Ϯ)4 >hڪ88އ=͠^1+!96SXAdB;wq=rE}h|T#1Q(ZؑB/E/uz6i3ZM% mBceZ7A? Vo_0tr OuR3xUT_t59HjjpE`Ze_`_TlOC#^_bO&y2g2c,TYuP" AK ў|ys9sߙʍ[B2ݕɉ,FE0e zz@s܄hΕӵ{t:-M^a| @cQ"{ Mٷ'o۶1>}5W 7y4S;Dfs3:Huxpx"Yl`!94A_5F J[R'hKRA0`]; MPzF5bUvɀ>aVI3 ue9ne܉`^YQsN\D+ $DH(4{3F`J]ţá7P`CBy ڕ S/rR;g٠LűN?jQp ACw*4ZRDIkqɛ\4ǽET3 Zт$[#ZWeyXj^1C 8%ˠ >[E*r}ڇ} Py~R_rC?} _i\n .q£`%10r!2/1/p,%T rj=Id4)zMqƪ,wǪYJ!iɰ0L7$ _SCxOZI+V.M2⾵2XXd! Mǝ;p7L@ҟu=/TF @nVbcY*vvڃc5y h?t_0i@-@IwA)H'W穴Dv8uے3wAzۇcDV{CJutf*E]lb1‹nPb^㹠PU_Ŵ@uVQ[UsE Q+,E&Gie߁^Ĕ6I|k| |_16?/QX2uoNg'@s|!b$w_ŻS7 +r5}{Yd??rDX(rCp1 Vl| 2j:k|o}JœAJ0gSEc"dl؅oRE!/ {;(gSosg,%{y׷V`Bo[WB^aD._j_n.\nٻ gSwΦ4F]}& ` p$]K"\utyNŁkf +&R =!_;g*+`SMM W9g|u[e@q]Ea^Gt7A(L?#1$TG6|*OR}HN69مǪķy~ p`~Ҳ15M\x3::; F :+ پWD@\fϣ?4)~F3ʳd` VM:!`IoW,ۇ9 ЎN@+]cgN?byT:C&Z6T)'r-b87Z ;*hWX0;g_gq]0ls0I`*Etv T*RF sIsFCQ4&i.%PbҌ!1X%&@a[a0S!D*b2bרa -}svK$ 3dz+".1S%0o+? I3zfB%^f|R_xX 퉣3ںSk6;*k)S^6q7n4*x/ۙQ5԰ehuQ*(ɪ FpP"M-^]fU$Bs?vPHi #.o:cΫ{ GhIź>V&⨟|lcN0Eyǣ %w>Az^F? aO^׀1 VҌo'V+ny9gu៼FvG?}x~tc_mo'WZ<1>нU" F!N†ܓg)eׁ MS 6$+it ñ|jcU&*4nqFokf_ZN;IBZwdgwh*OLP4tz8ӿOIjX> c2Q#kh@)4B"T %{ S FENb2q{eF fݑҋDK4^p霆8^5> 4գэK!tqU 7e^&Ғ΍?ԝ㩃B:х"l!*/.8dGyF+`8Rh#{'x|>B{ L'V:(X™TH)e)pdӛOy\DsO4 o\0 q6iPp|Sk^X <nj=IHHs |xDQHQ- fq >奘'$bͦMBme.ro͂<-)7 g/wpx=z`H ͑z!t) n#K"ہ~ֈx/T7ۅG Sx0M>( u%tDz4f:d6ca1ulE)p;Ax7LZ}FDxCj縰)ID!#FQ\ǚAvI.W ̞Yގ`Bf4VZq\d)2lvX]I)M>̊J;a ,bf7`Y_,:wDY~rjH(>s)_.)FAzP IX.H>[15 b>Oy .% 4?REz&c )5RQQ<  %ȟkjI⸐kYxMC%31lݸ@. Cܡ:GI]2K[Pf&lLvs5'nWIal՚xC.S>W-6MP%0X""#kjQzJ i^`9jG/ (*p :2 wtTՠ~/fRU\d>D3 [ tnqNYWKvl"n=*U^4'2&&NX *O\),<"fg.~CW:θ2noLpa9̓kh Wl5C a|4Q4G;C޽BN#($ׇh7xy0j;σrĊ?Pu瓅DXNyW'$LަMߠ]V+`Jlbγ nroxQqXvVU:$ ,Vvo ɯ1ZH"C (*a#HϤ8q`'rǜd4ś`2MGSk|LyE{HholaM-4~t6iTx7o$SBP;!J}^>ET7gb +Ԑ'NIUB0a]ua/}tom:QW}G3B}"`!@^J 3k\pP jw"_@yz<܍ާFT%j AQ`WqXPVx?*P1?GYj$2',:Yqakmx4Ekpc$xK!R_=T7[kKju#N D7VjW LXo"G0;xWH0ctmϡP{Rqg< zD#X Y3!\JV-L)¤A~@ac2r}JiU(m$%QdoջiyLR`fངH<5"=U3)5JK*bpA.ShSPgrY L.0oQ|g;2 29wzs( :QYZJ[ &)(\f.4jxuj&#}p"Ò^{{e> Ec1n,ⱀM @,6|-ALvQMR&A:3Ml}=jdJU=r{y% I9ybv#€B@xn*dCm$| ~ƅSJChnrN QR )G G!q7p!_FV|"kckۧkn"FW&)2hꄩ8J^[yLU9haTK]yD:Ü*p4BC޴km[7hc=:*i&bq9wu&bް;O?݊6[ucC2}1z'`6ZkkQ /n MAJ1f" vyJ4Tf=×{#PO`UZ)Ҿ+,_Y ( 8f93Ǟ JbߏbJʸG !8-L9iQ  l`|,9xfNO[O$C!V/XR",UjÕ9 @Cg ,MQo> *@q9*x`=@E k?{nG4iuQ/h6sv.Ң V >;2co0VBtC w7A~\Sð|U r,ۦϮE?wQhWc(q^,WD;M]_ 2W1! uUI'7+VGq7H(`g AzOW9WJFiuPx91;Gp Íɰ E{ >rvQ=BwćDMh,>Rץ4:< r< `) "” W fٵýP\_}Dӈ[KU:c596^<**fj锹CHEzð:QseO UI=5d`y!dN-bžSUFx S<)Jd Z/΢INp.-U`ŅxR=/m+jFo{Gkwrytt@jU}7 P@8t;\8 '1h\ȆڒL ,_I X:革]M?Z򮚔_LJ--)J\FKUBV4azGIVDI!"X;(W}pC]m6ü̦YE`.< ; D 1i?B)/{[>W'j&!CMϪ%4 -B(*GM}uЪ69k^AFRU.m:::pQrsp__dwٴ4V \dh˰'S9>eUwЖ˪wR6r#b,b!P)xu>@盅CLih݂'(afkDĤ};M2Wy5@P:Qf R9\@҆m3cf%Z2UZ=޴g_˙ǕX> F[S-_bn&2Lw=.Tr+zm9G3:'d⭇ Ns ZmSMUQvڴ3wU5X.Xt1.VH) b%/(K ׉$q,B ,)x1yo< UZ/(k=䍏2rq6J\C+,œ$ڊDw]%8%CrA7 ÀyJK65IN/qN9}ab7]AEloQP 3GpSrV\LLf"|.ͩ']Hg*p3&KGC6GɆ|K3aY:3̢ЙSd5@n@вf^JDbiF?GT`;(jEO):-_s|I,<r4Jzg ],,p!'X4N%ۍqD]r_Pz^m Ƿ |L>{v=Wj:qJjd<U;襂J;>@'ǩ$qly\8\l[^ _Ŏb5,f쏲B'q^'9.W\naJu\]ؘ\z3,,Hg^TXLjoWR.Z@?j#$*L;Y`䂔$77?WQĵyxא%iG!ὀN7Ì7lߺW*a ǹE$TDp9W(3;2lQ̈`_1m̀מUo'sp~Dgb{K`rs0 sTL䜅PQfw %ONג1dm9i`I1%Hz.9 .Ұ;&zH`P hV*84F `)ov#d})lts(x|}|y_vc@E%?2F6@m ;J)Ozi:gYAjoܕnEo}e37h$4G.;E&<(&9{PkwWgd[kiRheUĭ-Cϰ[u}Gɲ7MhpĦIzuEb;fWIL\C )Ddm)]狛tQܡ۟6aBUıvDM( Ŏ=F\֔.63[3۾Psک$V3zu~xw89;]{jX' n> - Grxlgn YrhYaMq>m{YIЛŇ"o /gҔ.hFJ,VM'ԹW]e·'rs_jR4՗^o@s`5kJXA (3\ҏ,[UDxiW+FMo&B={7ة"j|xՅ3m Up{S#uk0=%󸺟 f<5YH7pU9:p8x5'ҭ@"tݪw# If||;,C{S@8PgYs܌vã߾m+t<'LXUtI#թ_h =0gw4Ez~ɵȏC6] csp&82C4e?:!Xz.7j*$eQ#`AL(;@C˙H. Ѯɓ,evp݋?R΢6\E!rܾ?ksjbI e{P~/w?<پgw|/}0"Te7N{zNw+`_W滠Zh!CpL~.#@]Ү lb 7AJz6V̹ݷa0`hV \ Eb'K@ РFh^h'] Mmh) h:Z,€^)sm;.u/7V:ڑ\4KO 6*#r^/2Wpox2yӇ_xRITk~=mkK?}+ܵD<>2W 7< u`_^Ĵh^S^\pq!;=lHY\RHeX`ST\ѥZbSS ؔSlJ0`͟0SLHHɚ:F+\r,7zR*MAt2Pu7HG:qث$yyܼ(s/E*ؽ_d U.j/IjS(aA&@dc@ݑ$cV6Mijft],8XV铒_OVe<3R+@W6!D{+s(50Xp\m6$ g8Ċuwbêd><(ajeȇI29s[zܿ빳R9YQׁdoá 1H9Y^DN{ך3 nۻLս?uفpp_ۻ!w28֔2O^p4~0nN䴔R^)r&A蠟V;:yp H/T(֤[v}2{U(΁O/Fw/Ikfka6%;`bQlw(|t]z.4,8>9Pb5miY7k0֨)ǶqO6JǀjqXq4*amr$j+tϤEܠ`÷AK*! Xx~]DjӉzꈖ if 2>5Xr*vHĔQOav:FҔaa7Z m- ,2bJt;=]T 8 4Xp}sLQs;`/^̠hϸ1؁A]|VPP 7 V+:x~΄.U+| 'Q21.yA`h`T˧ 5w<qXkv1Y/V8iHC?]lfL C~@Lv!SSkyMvez:O Ɣs"OQ_σ, K] 悚cNU4x `/=3$_)fiG K+g};X#+ O"7i\K6){s#vlldǁ }}7[?p@ >j l1a&P≞n/̦6-v:$ݿp~IWL{äXBG ` X;4pr)OL{r dBy% RR"5~#%]`w@CJ5PI.#ucWg`  &h DzhϚ*ύjGq6HeNBУtY٩p#K3$!;aS0}+E"NB8^xONu^+1yy0MdFT<-"%jr8:] O WПH^)7*xy-D8ݠu +r+Q|5(E*/mT;O@&IĻD3X(& q;Iʈ`eaGqp#҉#r#A!EQQ\*$ҬNr~B}6>\Y0MPP .O-#81(\ij`3s9衉2k2؋sYbn}kVY}#cm᠄@L9z':* LLPURI.ݔ"Jc̩AfQ! }X\]a69I>X&˿&PM_S=JeӵVCVI7gފ﹁Z,Zڈ(8+m xo̎&ɈJ$9p&QoID@節QP[tマ hä|(דXC0Ӥ`Mi\tJWh yu +WA$= +\ߔy /걇?_B@Q! qeVO&tzCnj5 UKYܣJe.B]=EP$ȆxgD!m8E +Z.,JADLbRez"C=0-~1Rp8UEazIrEnUѭ/"=X}KL6LN=xג}?| fTF-M' 7P3?/P BYE%UĄL/M> \nь m ¤J$NϭrY2'ޮ[rrhJ?K,95ls)H:b=tLJe+_h #2;NguOy!:_:I ʰ޾K"Uv!cc`kab,S@` oN&*.~ѽmkkhh0$7t)$_Ma0z;o Jƚ23:B#SqsPA8bg RV!rao1#Tylwgjs`}#n`{\>ӝfɸ@.!*P(z% " 1 qM_0dH-  X_E'CkB]t2xVǮJޮ98bBE]d8ʅ9uVn|CR`xbCO;p]hxCHN.+QOBuѠp3=@~Vf5W #@sVojj/gㄦt-ڹ1pUv-l}Th\k?s}>ngkmշ?~W;{{t[_}?Wl/u|7𹽃+vkgj?o;t.G_MƏw;_}W d?;w&m}۩wuo>iYxyQzzQ>|9Z뿦_~ otoG/lU:'ۃa2}6ͷ8~;L[q~dg\/;^rڋq{j>}Ƶrwgwm?v/7$;''_y&|q; ~N~?Ny~o769J~}56O6aoh`_=5Sy7o /?EW) =hra_Ua^p ;S*|"iR8QRFc,wM&Qr ҆$vR+Zю#wu$hʥ#P-^~iPxP ȯdM?hC.1F?j4% vDbk#q>y1"$0XP!#r5xu_%sЁԄI #x4W܂שш~gfJ>9ru]WWo>o1TebW˯HW\|Ĵa$_t>iCrC>ݞa^ݤ* x'=$SQ{bH[r˜BwIA#oj}FU$qnE=q: [&$qJڲKi5UI*'%B~D]Imp1Ӗ{BZ׸6a9*]TܻKP^~/67pܺow DEqqE{Cyz$fQPc@߇g*tl=={9Yҙ ަIJaٵT## ȝRDL |BD4l6^ ,^7/˽NRjVup @-1Twabܸ CZ>UTy Gyft,ֿ?pSg9H\4XoR$7ﭯI)1a>tAV%/DYVe}~IFBt4 -B'0'SBvEqOa]'Ko7fZB=F3f),Vil<{*MN^V)$ԫ1u.l+LU JY#$W@\-SO&QWLg_]Z+iZE.{4Fo//Kb1>+[X%y7΄, d'U,rRz$GҳZ%O5^6SIǗr&}bzk醪7b {x!Tڸ!E5,! iܐn`{.HXRZPj Mƌ y5L1nӵ7V}K|$@~ZDtz,ѐ4lN\f9[!?+#F_cx3W"ɍ,fYLnml|] ڂɚM7E"{?}PF4d2~D|7P7*؝;83sT&rͲL7~y.E7l`v #z4\B>Ph;f`og (k}Ncfל}Jiv ^Bx9Agjx L4&0_|"_4zU 2QY E3w2!Ply&8f@sȤk0!cńq?áU`Ems{12Nj(>'n7ݽi\Lgxs6xjm]2>:,R'x媰yN6@ m<Ep mU 2__6fyvUיk渁>F8 fޟj)I@,Ij$uƳ3sqosʫBFUQ潙U#} &'Fp_PLXFbtTZˢ[>.}  FO):ğ6WтѣDܭU3o򔯧!-#:UE2oC\hGX nP5N׬s4D49M,}W=A}j#aHO3E*o@vA$,_ /'zf%s2z~2ho ڃd[͸mA=_7Ӎvk?뵟1Eu Ui@|9ky) 0b;Cv|7g~lE%븯(Tf3Xj478g ,Z&ڲpV6 f`IJkE 29H:fhgF%ztS6=&f|z]B':+ >BQUQȲz\KV{OSuvاa:N$yN޶gzuOׯڛ{]lr}<JgۯwϞw{'*;vlhmJ@VE%Tih-)lwYvGw `8awc 3oU-, &w8\aRC6jEs'd Z!FìGWhmvNv5V #"b8k0 . k9ZaB2]%P,*rҤ[6Dڢ'\/i>v^oI0Qgp.2yy6Kś_z_bJ uwmj0Hֲ AÀOtNx*iT&f5@.&z"-ؤ^cbV +%O99Xjy %:CbJ1A 4݂бcW eSN'=f<] QR v 4eyUVd t*0(yzs\0u&}CD2 2s惡[ϑegrYC7@X >:2k%5&,sgn* -\x H>łS!xW\cG'>bTOKdISv$QMmśPI p@81D)߸Low1XS*UN[0o[j,\,3SN3s 0bni 2$ku=ߌ쐀Ի;^B '^Z"ٸX(c^qRY~)5ƛVM]O|Εxp,Rpk8&KE+,9haKʥuYS.A SNv/Nȯ +A gXkneu*/e Z~KܲX%h+>ŰsL[-5ԖF jK])-|$ ZRt)R|Q/<K oתLDֲ#l3Sq CM3Ί^9⮲cnWT^W ̉}aJ: y CA ®*iHTRbSkvs !USQ.ML*y%HYLPJrf_ :ٻyr֋wfoᢒGCY:LAGUG.[JbRCH@M [=H3'5cCΦ Q[B+O4@Ũ 4F<5I1%pƉZyjqI !'T{B3F 9@jfht>E9$3=d_kgo7P"^=+J} IX*}BOybm֤G55djGVX%dP* :{]%3$3k8yh$F9'$E%/ a\RCviv@voͳQ@%OEx)l2 0@^,Ғj]̑#Y^JBqŘcCv(Q3\b,0F2vFU=򶌃&)ήHfKXsJg3=rҞ"r^q3Lp@u'5>Vs!P_v0[9 uA>y||PWC h{X:N@R9Tz1+}2*Z1KY n+{W_QRItlѲh]p~q[X_a\e K* Y~ydpïL P(׎=lI'wr3t u804BD_(+P0}\!yH'}yͦcА>zCO >y=#]x/.pOjg,i L۩\Z ^ڼӫb D; 419 {V%X0¥4/rW)fv [Oh'_Eg]ea S?h>Dx.>W*+[S<J8dsdDYa ' cQ V>9I*-bLjcn/@o=s]L+P~R(d-G:/M݋wȚJ-+9%\R-l8[cՌ0CTΔԒ;mvYogwF+Ty6.U}HKx Upy^س TIE &R6;W]j<;ӵ8'.PQh@M[*fc,C !uu-`:w -:BEzmtOL>1Q ddR_3v9IGtSY]+SA Cs40!/mToM?+0UK,iӍ~j.م"xI i9`%dv$5^~lbmnxXk"egD]%r16 9M dZ4 ]sѫ vX(^('fv \,ԐwM.}l${u3Jս?Ɇͥs'X:]eʮ[<AEe̲jE`XC&.y6xm[DBTcbH; *?d~1KMҁ""(`n8ѱRQ )JVa'l-Vzk :VE'󶰟1yFj(@wfl2-6kE W]S\yaF ]+.Îg:oXBCɝzoPa㐱6yP8`7FT/tXuzeQptg |>m*|$dN @X#;T1xj O4ڽh?O6Z-'{.;/tb̨֧6xq~ "5H1XDV@vlh)DK>scbDE%m1 xn:1A>ɦo퉡sȆ d'6P-r2KnGWt_^Kf) J%dLI) ׻x'l+}X6'gExl |2 ֎˫hS"Zڷ:ZNKPtbLZDoO Q($<*>;v ֧!tٳn:;bj!.x1RM5QY\vaur]pM2޸-V dXQ=4brFl-9w5s(0o|a^m,'4l z+nl~ݾrEf^*mh6g)Fhj_5W2*$PAhr$p+J|9q}ysG)z001 DYGHH[#)&${4`4 YG8xHk ]GVVVVdauL6=ނ F$g6 λ݃ѫwHx2AFi rO2Tk/b};˳m Wa%*Ԅyg.sp^zqu*8;nJc 뭮Zħ +b;qq4`ʗA˛#/ͬR{ę ފ,Wuߛe$ԦѠb'~0/ ҿ 4ThT$h5d${w'hW !9 _5_zoMyw啇ːEf#>|{w\BhQ@NMiVAW-_3o#]9"2NfR+l|O(Y]Tkl-naΕ2ʠFOEu-SFk|e9p/Q9@Xi/xꤞ7=Es.Ny+79ܧqqD/G*haZ.J$5ƲYcB0)66\ nUaG2:j-S%}T5C8QS}5[OD~(ΪjСm3bp UCAKs >DXL&hX$'כ;lLmI>Z^i8/@ S׻SasїA+? ۶":]`Ѐ.hBY9hZ[ŏbw6&bVJal=o(R7#T}૎C}n# ^zˆ/wE0/UQ }^|gKœti,-1~% ɋtAQPOkC罩'w³,q$1-G$h3zr1v=B(I=d]WvI'S8::|e]Y #WCL T]gկeOYůY@pX.]|}\wiޥ[Vn}TAP C^/}6am,aW;-X:ВE-/FØ't\JABFTܤCjh_LL+#e/9(Xm՞K/V/o񗀟À%~'U&NkUrK`eޏpj ,˚4U1,4̅?S7]^‡آD1& "{ {`J5,b4Rx--B(iaaV *,$+: R-ƋC_Zi &o[ Z!ZZucskq54hrg(5L6T(rڟ_)a~:=܍)#ĨG24m0 cewZ*=*@7,V3eۯsf\byh7XYC{(dg KV!wKn]O&_aϥ 8]3"ujR[Ć2%&\g~Xc2ދh_m1 (y, {aPbJǦU0C P57p1>b_115D2b! CF8^EO{'uem3?ڠ`p#4, H11n(T6Gΰr@?4]Ηf`` gC/.ɗԑ61A*[04c:uEfc,-_h%S( KHQQ{YƟaτUyMsԮY0l -y$?Eb[bTBik:,L(Eb)*pqs_" CbC-j3\}B Ǻs Yg HSx2nxąkye*e-D9(˲ _[sAg\(o1JEz!-`qPTNLpsgyLTx>E5XI}w[td*K[:a"|wK"] X{܄+,CH̄64FqRvjpib.f #6?97lO x3, @tg lY~{ѤxB!r&ώpv+S:^Ho=*~:]H6\V ς5zb*A9R u)p%--VPcQq#E:nz剅+󷚄S:}z 'D)Oɩe2r{px9>v޽?x 'kv^څ~w;{Lt3N^^w᳟_>$ [j6d{|}pf~4 9[܁L۟PU}ouH3%Gt%E'܈= >gqӓeםȶsp\foѧa_g_Z~ ER ~|e^˳&xyxC(oCyvk㣷o_(me,[et8lIQ 9öYo?KqL(!P#\:$IuA,ya fm`G+Y% 5 ?[QmQDRO./ԗ RFM dlBr)`C'O~&|J)-Ѥ 2 XO4*Z"F0 V/5UÂ%G9MVd8Tw!x;. !yt0DОN}kӠj>x4dlb*6q썔89ēEn(ܖ\<|=6~A̿v(R3UzRmGV?6};KgO&?D3*OԜO?l/>"=x)KtOQr%IҠv!@{6*]=8ԁ_]sY:$C2Z4sh!=dx}zƜΙ?.3RӤ+  꾥$0& R%sA߉3/ö`S2[iUVׇ-DUަըX^g lCF7KB" phr)RV 6tVD1b%E43Yo4j&}3WݢF"_ͦ][L./,X~(׽aQG`z \* ,uO*px5 #Ww*XHŀ8@9HIFƔj蹩ژ7-g˸w]^9"\nFoZcKEۧ2d.uA/z?h5#>w'F)q/`m׳wG,B߈ }zSsVH*[ı?T F*R\B)ZJ˄Ὦ7y M[5Sqͨ~;ˬqXq6nXtzFtA(BnkdJ7R&FH9E|_PN1%8\P1.@qR{z \mjfrs1PtntKz mg1"+0h 7ñIeOnD/UB]u`@Ō$V\#ո" &b_o V@n>ޥbMG]XAP=;'g{/xiX\1'>n!' M 1ЂWy `e";l \U kRIfNxIk~3;{-3u^SH8Hf}w6gGlɠ+dR' ~eGRI\E+bb.Me1z9:^֜H)螱Q{jcta [X퉃FVV[W˱HIvI뀒ҽǘUGUuJuۣʺn=0$M\7l7%'k  ^"? kI"yWR> n1НA@Ѓ &iV XX@ [A:ሴKR:QŇq؏ܶi5lވ-aK߻u hڐ=׀ m t;za/n6yc>S#Ѵ'L`>D#3[Ϭ}EeBmLGU&Ps!"y5O*RɵdϏq˓}D7b!! ˌ1)?J5a;6ͳFq0}D_S|X"yBqQZD2p* Y_k'MW]$3P`2*u`1AƎUq Т$,TGFPqw8y;P-f9dE@baT/ +$(0Đe shbs F EA^YZw G<\OQn$Qރ؅>" GF<&Fdtlq,{'"CZ<;&E(fȞP]J=^*)l4a 6ßJ 7ܑExx힭JP Fo )QB+鋃{Fqqfz!RNcd 褃鍼*)GNBW*yKdE:\dd ~n"_i W;u]8Sjn{_)palQ}^ҷUۑ6~ZjyyE҆Fi^,Ax>٥ۇ|W7A}T:RR%g%eMNm iuΒ}cۛOdsWB:[],-H~iʳIC:auNFt+YV / QιdmW^O }_ou/G?ŻCYRQrFR 6<~YbLzòy˺7Őrfze/¸32p3̈IJ\]D;ȞnTp8K6Om0Y ?8H t4 !9Ir1 N4e`<S43bYKwr(e=r¹@'%Ie1UIbVAr=N<#r<A(q"F BEm.jԠx1-)vV [REZ_A"88>Ev5Rk4cϾJE pc.>C?ՔpJ=78Kny #c*+*VU[M u4I/Sd!ŊM9=\Cc\1&4w/,%8,Op;.9뤠N73 -e:7`}OY;u2$k^p"eut1B @ hS!5 J(1 fM}ߊݜ߷l$7߮q <}NV/};UwU@}ݼ "Oܰ(zʂ@[3eUd=JI 98?N#c򚛁"5OCu:kId˂R2nPt8 W!Lp=-#$v/*tSEz7:i~8Zx[7; +u],1;LYm٩%If߆A]רzyKPr=}C(VPdohO\~%G; |?nO\Qc)ђҧd٦8u\KK:m=L+ .WZQo&7“ `b$'ն0 킨%No"$o>$?[=xR0iZ*~`AmZ-B=2?PٞdE'F^Bڊ[I> .MRq /TH>v:(gz?#*Xh7c ( iک3P'RПTl:M8gXmpaُ)Dp@Ͳ$fѨo=DV#&w1tnY*UW!9pxXDa2R <5 ./ ð2Ζ$xPiDU^q?,!z`.Y 4ep]]iXEiD@(y4pNy L Q`9VFqЗ&{&9  d՝&bQFw.|\dv.rna*<(B.-@Z!"hR `%Qdka`I;E+#** %c鞑[yWeeI?eUVEdҲtXpw&tL }A)Nݎ7N6زyzl~s$ϐ4a\2P5yPO/6VpJQEoɛѧ,HGW8:>8=%.ɻj@=/޾#UZ&/7T-6X=ڻz0Nl%pA]]w0v3 rSFo{!Mp`7~h^5q^-VE}gtp=l|`{//j]s&jwL`K͐r4YQԲ̢+d#g!g!oe)!r0R|Y]j$Am;JS 'pb9gk3sN17eP*1 Z$=7ͺfV\` \|oPQ@t{xZ5wDԕމ'pv\K[ORBthߋ^*܅(r~ڴXՊS V\ܻݻ,E}A׋q44!=3b᳻5,嬽I?GS Ǝ]0`#](|oW1H6 *# RKy6)n4Qǎ>.\ &>jy%Qkʏ.[\qr&E*EM|Ftk>mWeh(UaJP5]9P 4@v82I.lqKbB{vϙ ԮS>7g|^ߞW`növ,ZϥB2 OQG}z+չtcfȒs|eҔ5I%y~"*C^quFPa=a`FHUs8E3#*A:"y皆3 P)(wSೊ!b郒e:^aw[q>j[k0d*"C[ϋ^HhLTctw2$wM\>ayŋPrCWeV<ƘґN>v[~qhn4@yz~5cTBO W)<Ћ {"\@>b*9h|'+@-k|HQY֥[/WB=+@dZ0Ɵ{8,Vwd{&Uk1a"3njs~ƞۡG'ǧ 8Hk<(7U?Z 4JFLz.=ki~?BA{6SLo]s<)XuЪ٘g5Enývʪ̺U$=u]]:Qi?&`Mt}JHO,R Qo. [tFC^\p=4]2LA4CNH9WvT7Ѯam1+^cO~0!6ݳ|uvm$oI8:c&mm>" M$U=4TY4SLD5BR>p-1;xb ]fPpp""SBu '0 EVI$,V+HݿB{{ 'MTᤉ = V5|qR!_JDhԂ\XC z1my%Q8SQÃeYBj(v0-L@mgbxQ;V_.\:KN]O̱ L+D#*Bf)!UėA7r^eY^{6ѷDȅߣRWwC2,s2t̔P3_,^hP8+oM*E{kFE ֹ~ wl <YFhʎujSy48ݙqɤeAxSҔyD?,-oPoUA*)[1 HrR $jS)B" `]_PaSJfOTYTGS.Ѫ@+3l[̧%IhTMޢLƝO{ZX~]b]n%cy@]3k ,oV/qe t+96r#qI":)?D:0xQQ_$ N ?|A-_5UDRM /bxTKy23PvDXmX_|adL J^do2D sgc[P@09Okâ"@LF,Dר24} ?1`m&6H L C$>3BtȟGYnuA[Uv5MO_u|̛KfIKjCa9N~V)"0 Us3ٱ1`5 A! 98s1X=XURfI*F֧F?!jݥ8vizBQEiTLќ ʙ-BfRTAx+0wD#j{ FoX9ff8*f7]oM{P҇-O5,cnvT+_EU|e* ̵PM׭"L׭"[,2l41;tNWjdg6w1j̟1K.c0^$IhWaa}4?$,堖>7-@["p/У ,bU-(U|kB&-8_[5b/`1CS,"^,v CC\8j|WN|EJvi#ExPwllեeA;_[zxכV@S{.j^SܵVj䓠oc&>`G ]D"\ԎNu~\1O fb@6xyRa0l\,q9NS˥dgOkŎ}4$Ԫ#'RǺ ̕`-ˋPs?l\-ڵH۶ u^<4G<@܏Vn?fW*iR|'әD?I.g1mpPo_!}_DjʗŪu/`M=:\n+5.KwU*Xy/w*{ 7~3_QHPw/$罢^+߼;g}g xu\Κ™F񁎛nJՄ|]^Lm`!w &hȸ 8e'O:,}62,+o*sjjK!-S͵|@{l?׻P":YshFi58Hz {.|fLp1X`j]äȠ^%~sՔ˦DzjOF0u1U\JU|:qZ@oSLJO7f0_G(Ҽ7~;9w$nEgly'+)TexIYK"L~ !p!xANGq9z-p/0)y>dq*}l}}Kbܺ#n-h? `mx%!??oh` 4 佃Y+c6κbJ6;an.dgSgdBe%[AD+k<n ܘX|Ra;Oz1U7ŠD{ƧRR|ֽ$,-6HEթIʃѺb^c)˶0)7%A)e4hV쨫`Y71b^Wx#fR&I0s]P# =Q~ $ۦG(K))& @gnzxJZ> HG>*K'BX(p$$:c*!甥t1|'6Ux%iQU һzvR2\`YAӉ,vN !@DḴ?"+a2re-EnK^%ۘA˗!C3]4wۙ]4wۙ]T̗vv{Yٛ#<;ozYn %7*RAFٶ T5W@n;+ }rA! v;w-hkqHE7Ceq*_=MfM9r? _mfɺ?w %A1¹ȭ5EdUpbɣaȣX./pEs}Yo'xM?n0]yYܑ-"i,wF+r{!٧2,(q`+)*< { UxVͷB-܋_^_5F3Fo]V$x -X}Ym!rQ26gYHfbq5lp0U D=]8;)5p?MBUGSX~oʢpJ9$"2ŻGY9oGBQNmC"6$`e,YN-50(ށkRW.Et\">y{cwr^_gqXEcpomǝ]ǝwʿe/&dl&2_Ǔ~Ng<չB#` ζJ܈WQ5I23>y|N^ z f#&Nb(jFsZ2S=-'sA3\˖:[6F.Ʀ>H."8r+jl 7lIDcέ)$$DXv2hOgOߣ.a~?dSd_ub ;V0'H WӬ܄P0!@aMPѣcs| >gi>yL6!]$."\qh'UYE`KO?ݎV7R.R ˭46"'lÞeKǤwjG G[.IzI3H R!*;>j2 i lGdž04F41'aHwq|pzpz~ ɤ-)U2An- 2{g:|ne#,.` C=*.dPf9AJed$שpXP1rN$ٕµ5e1oX+{yr Kcm2?bp_hl-u!MrL!٥xֆoz&xZ$&g hŒ.-z. JRT,3n?A h(Q"P{AK)&eW#V4L_s~dbaCTg yd (()ÝڛW?e]&vK /,+ "W"uޒܥZbR0~.sElh0&\fT7ʕTqpFQXT\xF;<m4SKn$ PuO?i%]za*#yc!e\(,v.C]9& hS<٠Y jˆ[[MVr6+T";4w"kz}E+FZ "s%X?ɦgFʋwʧo΢ZY2?ip7jK~)(ZD9 BUl{ Upsi8pxz>$ԒR>@Ӻգ#6+MX8 ӫQq9d|l-OEf3YE& ё-@VCJ'4菦;d2k^W Ix 7%ԆA∀&M46]nŗJM+RPr 'Mt T`P +Xȣ|&v7SSN6 *~mB+3vKj wDz̨ͮkӐ6Th WDeiC'bٴe\)1 !~p1maZG%*,ыadOy }^W>_.Da ^V ^jѕY/ߠ)FCEV= N$ RҼ;br?3UtYrW|Ɓ#+˚J$T\(PBLM׾eHxE*K|/ WTPpL>t oZ-˻Őg ^OdVƝc;^cs~ZX° 423/q16TM 9NM1f(~U\K]h=>m`!Ȩ)lK,6hXGRW12Rz!3%nѽ]M>wMDlTzQ Ab-SM'NمQ p^cIYL8ZExkۃIG<)L'`5}A&bMMBߕNcuNK)}>uW=9x UpVv2@lWQqe$MzVҳRgzLTtMG +M祉 r=t)"J՛,EaSֿȗX'S_ٜ~8,נZ>}BQc5S%YrBݪ6SWL؆=ǫ7<>#2hm uHdJ@êftPwc\d%݆Fmk-/#R*_zGfŎO4jjΧEǥ{h #_i`U* $ɞcibJ2]Q;S0jؕ=>N >e5TǪSڪR@uk5=VpT+wX;.TʬZV.,_!k6I2 $y1A7HSER҅e{nhmi.# -Æ:`' RLs@orckKF|:U0FJxf(mDy}o9wԭS':)8k\'1#B>|k߭|tx,t_:o#:d#Y7n!|(9!atwbjGܽƒ]{.]厊ij^4I]q}f5R 6sH~xڣ|p6 y q;;m_G7DD<AdДM[aVL[(2 GC:ql"C\02A`9ɞ [@j)fN+KۆVg쪽T'PWK7r8 9-rhct4[pW;xV~kmޏ|p83]~heazV#8(cqst|773=dpᙷOLhdFO> N='_y-ec ӈTHBNd pVLCff3`g^im Gas{x(w+00*QC" ] ySjH(<#wqc!2͐\zI,bN"̀Y*7| yVYAU]|GT&6lb/uAs]ȅHP3IuFOH*%8N$7iopr~zؓ@zUxC8/ߛ.t NG"2_H71d d3P0Ü4ZEpuݬsgΒBfnP/͚]tz A~bXp1v?^~82Ũ R 8/^F8Kob-7 I1 !, +egRn!x|TVă犘i,rN(rsWkՈ92/\~R{.&{ytp*3Wrth2]ފTb&7g'NDᥢ$ajT%)bgUY,vz^Es.Xd%#k_a,zO_x$Cit (ZA4&%򕚿a4ʘ9=+T0uoN z3P"T@2 ) ՙSiMdM+D\_:C_.KsͧUMhbD.<Wa=#Wm_6*ѭfDCI^G21:Ii=ڄ]ʟ%XyHK{âsU/¢O1OOXCw(#yhYUb%IN#_tϯ^xz† qie0" #*˘ɖ_[kF"[ x2O={1~;p|S:(vAbHj*<(Tb XDWcoS&8y<e3tlc\2`ɝmttjk4ZJv{g蹝siqvQc. C :B[qqQ@wzˋ.H k 7|9\RsKm}jiY5e t6Ǟ1He%y4OpVk%ځ )`C nyb-dN A dFm,~Suqx*g>@Vl9r#j_!5PVTCod-Yr4*t&Oo^hrV7fʷz8A#wPPǖа^QbδA% ].&C0`/.IE Xh@:<Jׄ E-d=vⲻz q S%Pύmq|f~?4wFfDr>n2⎌RFmA5-% @zXZp˵ h Bn @y\ѹPT#1uytsz-o!&Bu/M8Q;8&7(`烂VΡyUP#7I`LH̀ z"jsRWܑbf9(dOpyg@ "%CG4dr [[lL-&3=9V#SF>Yps`Q pEgrz<L(,ىUyZTdfβ쳆'Nh 1SK{侚;kK3wJɪJiKdʢeG:Ua7L­&{idy 'V%1o׉| 8Eי/Sv&; XnnSyj &0XtG)R}x*4Ayk;t2; N(hwvHa( Iq/$]C'5([kH45t-Ϗ,r| ]Zv%@0: ;h4KO-J+i6 =v)AZ@e tOL%anwx\`!ʀ2x&k_KrX'Q-Zh)ǷuրuY4E~SAjEA|+KĈ#> C2S(GXР3<(z 9V?]Y J*K&  +>UׅX _1y~; DPr@<,42mD!p!vAmJ/ACiR\&i:Z-Ew6=,TJkdưM9QOs/n‘4Ӎ@0m3Alq5&q$&+cA< N9ly] cOFj>nZ20~+꭫%b_\ ޲2|231}wvz9XêL9{dX G @uInc86x0gTa@Uͱ$-'ecc&[1BH[]-Q.`,z\~@.WrGJޞ̀hh \B?qq"쪞\_Xn/ OƖݼl>kJvOtUi~ e |5J6i@)fFZ = S][Ny;ħg>2Q7x3&j_|6ˊdޅoZ+Z9^^nq9@~a|gGG)Ka@,y(;ݏ+}2!!e:ÜѩϫYyc܇),Gy6|n*R1!L|>;dPTIdWry a'n4O3B"^PxvR0yA_SCG>Z>N Yؔipy @-6T·qZ[}2R Şl[==ndCQ'|Ņ'+$7ivb8/:s f~*MnOh3GJs핇 '(Lw>z-a2A϶[y{6v᭖-o{"tJyJ `ӥti]ԗkZwcT%1׽RZn,2:I}Dm{:)׀5)cKsת[<x+,OE_2b8"._]yy θV.Ptq;,9v;19FrI[vmHNl"xy ѬXdY-;o8ý G}]<~]MKL- Yaʬ+,)_ipϧ9Jl#McȺ@2t(6)|]bo?-2 OĮs b !hRb6`=ri;(NқLo7JzЬ߲A*;2k^\ItztYKF(ԑop_wkb_!gҨ1ÒYLgԧ+a<e S,yޅ f} <täy s%IpbǡemLᬝi;QڿL 2L3V5H?M?*'ԆӺ} xՓ7ÐD҂AI Ux;4O NSg&`'KJpXeQv9!"~phace]ِe HXQA@ 9}ܕjr`+pGܲiPd+4Vw.v[{(79@+7,-N3\ƃ/\IuPR8 ׮36x,8[}'(jR*&s͑P9B:pɏ3K a9u8ϡ.(:*qh~:wU{4F(`B< Q-]9e,?p)$%0,{_i缰SuRdy;k)0.LV:)o"CnrjYT^"fg,]{HZs%iZ#zGBW7/plyLf Oz%;_ٔN=vNL;~>ꭑWt9}%GWíuYH/-UB1G =7GmH-vk٠bhA:+ު؍ӏ- J:Ppuw&je#>C!$ݍ̶WC_i@ :qy d'wPWo=hIf /RP-qX7E㣃?qWo[XO/W}Ȃ 3@m~^ [OK4/0+5eĵְ-9x @$Iջ "R]8izƺpFWhX4|H#ꚵ.̊UaV{Ps<FQЁN _rIE">kTQo|ςmg6-Am.|Q`=`Zz ?"t7[ xʙ>9~ z=ͯ泌1A)GpicZcѦ&eg-/)rM8X>!KהST#}vRMiR>\J#غe?zUS. BPHh)ȷ9 +dxǂ["3ҮPvvŒjK&)Ūlnn9nx6/E}wLHa+O h^$6 qB{QM5?Qӥ(iCЫ^'Pi2Fbv.)]PIЭDGttN/NC_(V?( QX&ZVgatޏ͖KO8@t f ec"\#z\;]̙2Χsc~EJ t 9r&@ꗃ_7/oI Ry=Ctg:Af{TVuݯӛINjEJq*mX3"<ȇAx))o^O79d 1O}~Q{=amd˜0 -s0bY6x6kR+*JT&9oĤfԫFH9ˑxrG!GC"n)(a hL{8{On۴ߔ$H`koD-ѸK!1B7Jڟ"?L>)t(=ϜkLEw2s/0Kr,1r{Slg_QkIW 9M4-č 6 $/I[E=R>2[mѵ5آk;9X'Bof+vxцd^ףڐtO:0]xm1h@ː{ ) 7^9ĂkU6s7 f HW|7[9klA&Y4\{HA`Q$͎s?n /"5ɇSXR]\{팼zBRv%($BSGB\(\Vd1%>oj!mP&k 4Cv-O[L;i @=a"&<'GE} `E?A /'& B݇k#w~5H-KI>b98z|4Zu34 ҆ɥe456J"@+chVٝ0Ya}¬kܼQ5Vf@E@Yj͕kjz4_nw2iE!B88 m7<%)ӫ({{O4G3i#/iJ\A'.Gtw_QP7oquZjб_eTڢzb\Mˈl+3m0->ð,7&!0<#ʐVaսnTsZBaҊ/_nKmivW{YQCN0>ˀįxfګVXf'S@ ǴuO劲+ ߶Ƹh5>~*҉Yѳ}$<_Mٹ_ϳ뱫Э@P8خL#+=;8O7 +da9ɦ9)M/f-c!;NU .cjYݥ="9_=R0ٝ~ؽGGŔ̷݋;!:٩ )R܀&菳O!Z \KQ1G|-|c~0#56_nM3$_ `cQ.Q:XLѤ3h}cbdbzi@)7ۢ!^q,Vww9a8#jf@5fIdf# a|+JڧF^,Emd\[z"!t3H dMwO~]Z FUVt̰G& ؉o%CW k蒑hr r+^q*Z~/`)N]R)Lu%@ IeQ*f@}kUjoʶhe5>~?cʤw p2ݗ6aaz+L.}{YLY̓VipQ.a .O|`a) :$y R2R':#Q9ڤL8fPKiHF1U\T\B>tQ2ANyv1Z9tQ[gLWQ? <<z@|ͼ"Ζ,@@bUH!dh 0~m mg"z)@&P:N</uS;poVl/4 mkLk({ycu'}E t"$I[22:t?}SNڷuѺ`Iح# ʬ54ܤE ϟ|Szy;6 m UPD aMc+ZdkNOO[@]Fme.r?^6\Npx6@{ݳ&3ETH;2V;w "⨧Og_UNl#!(,tEղ IҦ+O]ҜQ>by{&j|NYTG|_1wr(ou7 PQxp: TK/ )Qwf91̼>R?~SRч1} ^3Dbt äN,s7`x}ݿGphGrQ}Sev?Rm+ihd糌F˗r@cN>isq_E|'X1ϞL 6o*#eVC_8h`&?0%YX!NY|6);6=nz&C >1|0w=U=OY'@jؓFkHqaŧ_\2\ N`T(6$TM}U!cIS%_iÇS38Q#߻*8q>l3?%W$#t6(<=Z?1lDhϮƓ)x uK`W' Ym]wܥ3r+!O]q`A{g~hi.070701000000c5000081a4smtp_key_prefixnqmgr07070100000030000081ed???Y@A >;[| D T < `XX4@`դ?'XU9#\fQ_OO7X6 @j YZ