apache2-event-2.4.51-150400.6.3.1 >  A b<"p9|  ᆔcŰ3}O ͆MYvyG%9qJ{f7;O%崷j+ C`[%,m890N([=ؐq8|}p-Kn^ٵzz q滻̾IxsA*?T[5 zk쩩ՙJ_5I!,WqzWr45܉L|MvkMVLc2 XYGYkV5,7e4066ae5ee6d9a3ed916b277dac2c795d53778b9e7bc6c09662bd94f46c2bde4fbadd40a0a0e2d59baad4bb54dff9a17009e66aŒb<"p9|HU\By̎]患DG7Bə`%29aP6f m^- XLh#eVR&thǍm BqV|? }~A8"L$oЊD Mt2fF?Cqh|!20KPoR.)^ ^L-{NAէVa`R]$nW5Sg\=)C9焧.HOd,|=?:P8 h+- ; WvY,OΜ?D >pDd?dd $ Q&1 Gk (y y  y  y y y yy"%y$$y&&'(()"8),9+:7>H@HFIGIyHKyILyXM`YMl\My]O|y^WbWcXdY eYfYlYuY(yv[ w\hyx^Lyy`0z`t`dddddCapache2-event2.4.51150400.6.3.1Apache 2 event MPM (Multi-Processing Module)"event" MPM (multi-Processing Module) It uses a separate thread to handle Keep Alive requests and accepting connections. Keep Alive requests have traditionally required httpd to dedicate a worker to handle it. This dedicated worker could not be used again until the Keep Alive timeout was reached. This MPM depends on APR's atomic compare-and-swap operations for thread synchronization.bApache-2.0https://www.suse.com/Productivity/Networking/Web/Servershttp://httpd.apache.org/linuxs390x ( # it might happen that apache2 including # /usr/share/apache2/script-helpers is not installed # yet even if apache2- has Requires(post): apache2 # because of circular dependency between apache2 # and apache2-MPM if [ -f /usr/share/apache2/script-helpers ]; then . /usr/share/apache2/script-helpers find_mpm # when this is run in %post(apache2), it may happen # no MPM is installed so far if [ -n "$HTTPD_MPM" ]; then ln -sf $HTTPD_SBIN_BASE-$HTTPD_MPM $HTTPD_SBIN_BASE fi fi ) exit 0if [ "$1" = 1 ]; then if [ -x /usr/bin/systemctl ]; then MODULE= if [ -z "$MODULE" ]; then # restart all instances touch /var/run/httpd.restart.flag echo 'Requesting apache restart (all instances)' else running_units=$(systemctl list-units | grep 'apache2\(@.*\)\?.service' | sed 's:\(\.service\).*:\1:') for unit in $running_units; do instance_name=$(echo $unit | sed 's:apache2@\?\(.*\).service:\1:') if HTTPD_INSTANCE="$instance_name" a2enmod -q $MODULE; then # restart only specified instance, %{apache_restart_flag}@ # means _only_ apache2.service echo "$instance_name" > /var/run/httpd.restart.flag@$instance_name echo "Requesting apache restart ($instance_name instance)" fi done fi fi fi ( # it might happen that apache2 including # /usr/share/apache2/script-helpers is not installed # yet even if apache2- has Requires(post): apache2 # because of circular dependency between apache2 # and apache2-MPM if [ -f /usr/share/apache2/script-helpers ]; then . /usr/share/apache2/script-helpers find_mpm # when this is run in %post(apache2), it may happen # no MPM is installed so far if [ -n "$HTTPD_MPM" ]; then ln -sf $HTTPD_SBIN_BASE-$HTTPD_MPM $HTTPD_SBIN_BASE fi fi ) exit 0! %%$$$$&&   "  Ab. [Michael Kaufmann, Stefan Eissing] * ) mod_proxy_hcheck: Allow healthcheck expressions to use %{Content-Type}. PR64140. [Renier Velazco ] * ) mod_authz_groupfile: Drop AH01666 from loglevel "error" to "info". PR64172. * ) mod_usertrack: Add CookieSameSite, CookieHTTPOnly, and CookieSecure to allow customization of the usertrack cookie. PR64077. [Prashant Keshvani , Eric Covener] * ) mod_proxy_ajp: Add "secret" parameter to proxy workers to implement legacy AJP13 authentication. PR 53098. [Dmitry A. Bakshaev ] * ) mpm_event: avoid possible KeepAliveTimeout off by -100 ms. [Eric Covener, Yann Ylavic] * ) Add a config layout for OpenWRT. [Graham Leggett] * ) Add support for cross compiling to apxs. If apxs is being executed from somewhere other than its target location, add that prefix to includes and library directories. Without this, apxs would fail to find config_vars.mk and exit. [Graham Leggett] * ) mod_ssl: Disable client verification on ACME ALPN challenges. Fixes github issue mod_md#172 (https://github.com/icing/mod_md/issues/172). [Michael Kaufmann , Stefan Eissing] * ) mod_ssl: use OPENSSL_init_ssl() to initialise OpenSSL on versions 1.1+. [Graham Leggett] * ) mod_ssl: Support use of private keys and certificates from an OpenSSL ENGINE via PKCS#11 URIs in SSLCertificateFile/KeyFile. [Anderson Sasaki , Joe Orton] * ) mod_md: - Prefer MDContactEmail directive to ServerAdmin for registration. New directive thanks to Timothe Litt (@tlhackque). - protocol check for pre-configured "tls-alpn-01" challenge has been improved. It will now check all matching virtual hosts for protocol support. Thanks to @mkauf. - Corrected a check when OCSP stapling was configured for hosts where the responsible MDomain is not clear, by Michal Karm Babacek (@Karm). - Softening the restrictions where mod_md configuration directives may appear. This should allow for use in and sections. If all possible variations lead to the configuration you wanted in the first place, is another matter. [Michael Kaufmann , Timothe Litt (@tlhackque), Michal Karm Babacek (@Karm), Stefan Eissing (@icing)] * ) test: Added continuous testing with Travis CI. This tests various scenarios on Ubuntu with the full test suite. Architectures tested: amd64, s390x, ppc64le, arm64 The tests pass successfully. [Luca Toscano, Joe Orton, Mike Rumph, and others] * ) core: Be stricter in parsing of Transfer-Encoding headers. [ZeddYu , Eric Covener] * ) mod_ssl: negotiate the TLS protocol version per name based vhost configuration, when linked with OpenSSL-1.1.1 or later. The base vhost's SSLProtocol (from the first vhost declared on the IP:port) is now only relevant if no SSLProtocol is declared for the vhost or globally, otherwise the vhost or global value apply. [Yann Ylavic] * ) mod_cgi, mod_cgid: Fix a memory leak in some error cases with large script output. PR 64096. [Joe Orton] * ) config: Speed up graceful restarts by using pre-hashed command table. PR 64066. [Giovanni Bechis , Jim Jagielski] * ) mod_systemd: New module providing integration with systemd. [Jan Kaluza] * ) mod_lua: Add r:headers_in_table, r:headers_out_table, r:err_headers_out_table, r:notes_table, r:subprocess_env_table as read-only native table alternatives that can be iterated over. [Eric Covener] * ) mod_http2: Fixed rare cases where a h2 worker could deadlock the main connection. [Yann Ylavic, Stefan Eissing] * ) mod_lua: Accept nil assignments to the exposed tables (r.subprocess_env, r.headers_out, etc) to remove the key from the table. PR63971. [Eric Covener] * ) mod_http2: Fixed interaction with mod_reqtimeout. A loaded mod_http2 was disabling the ssl handshake timeouts. Also, fixed a mistake of the last version that made `H2Direct` always `on`, regardless of configuration. Found and reported by and . [Stefan Eissing] * ) mod_http2: Multiple field length violations in the same request no longer cause several log entries to be written. [@mkauf] * ) mod_ssl: OCSP does not apply to proxy mode. PR 63679. [Lubos Uhliarik , Yann Ylavic] * ) mod_proxy_html, mod_xml2enc: Fix build issues with macOS due to r1864469 [Jim Jagielski] * ) mod_authn_socache: Increase the maximum length of strings that can be cached by the module from 100 to 256. PR 62149 [] * ) mod_proxy: Fix crash by resolving pool concurrency problems. PR 63503 [Ruediger Pluem, Eric Covener] * ) core: On Windows, fix a start-up crash if is used with a path that is not valid (For example, testing for a file on a flash drive that is not mounted) [Christophe Jaillet] * ) mod_deflate, mod_brotli: honor "Accept-Encoding: foo;q=0" as per RFC 7231; which means 'foo' is "not acceptable". PR 58158 [Chistophe Jaillet] * ) mod_md v2.2.3: - Configuring MDCAChallenges replaces any previous existing challenge configuration. It had been additive before which was not the intended behaviour. [@mkauf] - Fixing order of ACME challenges used when nothing else configured. Code now behaves as documented for `MDCAChallenges`. Fixes #156. Thanks again to @mkauf for finding this. - Fixing a potential, low memory null pointer dereference [thanks to @uhliarik]. - Fixing an incompatibility with a change in libcurl v7.66.0 that added unwanted "transfer-encoding" to POST requests. This failed in directy communication with Let's Encrypt boulder server. Thanks to @mkauf for finding and fixing. [Stefan Eissing] * ) mod_md: Adding the several new features. The module offers an implementation of OCSP Stapling that can replace fully or for a limited set of domains the existing one from mod_ssl. OCSP handling is part of mod_md's monitoring and message notifications. If can be used for sites that do not have ACME certificates. The url for a CTLog Monitor can be configured. It is used in the server-status to link to the external status page of a certicate. The MDMessageCmd is called with argument "installed" when a new certificate has been activated on server restart/reload. This allows for processing of the new certificate, for example to applications that require it in different locations or formats. [Stefan Eissing] * ) mod_proxy_balancer: Fix case-sensitive referer check related to CSRF/XSS protection. PR 63688. [Armin Abfalterer ] - deleted patches - apache2-load-private-keys-from-pkcs11.patch (upstreamed) - httpd-2.4.3-mod_systemd.patch (upstreamed)- use r1874196 [SLE-7472] [bsc#1164820c#6] - modified patches % apache2-load-private-keys-from-pkcs11.patch (upstream 2.4.x port) - deleted patches - apache2-load-certificates-from-pkcs11.patch (merged to above)- require just libbrotli-devel- build mod_proxy_http2 extension- fix build for older distributions- define DEFAULT_LISTENBACKLOG=APR_INT32_MAX. We want apache to honour net.core.somaxconn sysctl as the mandatory limit. the old value of 511 was never used as until v5.4-rc6 it was clamped to 128, in current kernels the default limit is 4096. Cannot use the apr_socket_listen(.., -1) idiom because the function expects a positive integer argument.- apache2-devel now provides httpd-devel [bsc#1160100]- add openssl call to DEFAULT_SUSE comment [bsc#1159480] - modified sources % apache2-ssl-global.conf- use %license [bsc#1156171]- load private keys and certificates from pkcs11 token [SLE-7653] - added patches load certificates from openssl engine + apache2-load-certificates-from-pkcs11.patch load private keys from openssl engine + apache2-load-private-keys-from-pkcs11.patch- Add custom log files to logrotate according to apache2-vhost.template- Remove redundant metadata from summary.- version update to 2.4.41 with security fixes: * low: Limited cross-site scripting in mod_proxy error page (CVE-2019-10092) * low: mod_rewrite potential open redirect (CVE-2019-10098) * moderate: mod_http2, read-after-free in h2 connection shutdown (CVE-2019-10082) * moderate: mod_http2, memory corruption on early pushes (CVE-2019-10081) * moderate: mod_http2, DoS attack by exhausting h2 workers. (CVE-2019-9517) * moderate: mod_remoteip: Stack buffer overflow and NULL pointer dereference (CVE-2019-10097)- fix typo - modified sources % apache2-README-instances.txt- revive apache-22-24-upgrade [bsc#1134294] (internal) - added sources + apache-22-24-upgrade- version update to 2.4.39 * mod_proxy/ssl: Cleanup per-request SSL configuration anytime a backend connection is recycled/reused to avoid a possible crash with some SSLProxy configurations in or context. PR 63256. [Yann Ylavic] * mod_ssl: Correctly restore SSL verify state after TLSv1.3 PHA failure. [Michael Kaufmann ] * mod_log_config: Support %{c}h for conn-hostname, %h for useragent_host PR 55348 * mod_socache_redis: Support for Redis as socache storage provider. * core: new configuration option 'MergeSlashes on|off' that controls handling of multiple, consecutive slash ('/') characters in the path component of the request URL. [Eric Covener] * mod_http2: when SSL renegotiation is inhibited and a 403 ErrorDocument is in play, the proper HTTP/2 stream reset did not trigger with H2_ERR_HTTP_1_1_REQUIRED. Fixed. [Michael Kaufmann] * mod_http2: new configuration directive: `H2Padding numbits` to control padding of HTTP/2 payload frames. 'numbits' is a number from 0-8, controlling the range of padding bytes added to a frame. The actual number added is chosen randomly per frame. This applies to HEADERS, DATA and PUSH_PROMISE frames equally. The default continues to be 0, e.g. no padding. [Stefan Eissing] * mod_http2: ripping out all the h2_req_engine internal features now that mod_proxy_http2 has no more need for it. Optional functions are still declared but no longer implemented. While previous mod_proxy_http2 will work with this, it is recommeneded to run the matching versions of both modules. [Stefan Eissing] * mod_proxy_http2: changed mod_proxy_http2 implementation and fixed several bugs which resolve PR63170. The proxy module does now a single h2 request on the (reused) connection and returns. [Stefan Eissing] * mod_http2/mod_proxy_http2: proxy_http2 checks correct master connection aborted status to trigger immediate shutdown of backend connections. This is now always signalled by mod_http2 when the the session is being released. proxy_http2 now only sends a PING frame to the backend when there is not already one in flight. [Stefan Eissing] * mod_proxy_http2: fixed an issue where a proxy_http2 handler entered an infinite loop when encountering certain errors on the backend connection. See . [Stefan Eissing] * mod_http2: Configuration directives H2Push and H2Upgrade can now be specified per Location/Directory, e.g. disabling PUSH for a specific set of resources. [Stefan Eissing] * mod_http2: HEAD requests to some module such as mod_cgid caused the stream to terminate improperly and cause a HTTP/2 PROTOCOL_ERROR. Fixes . [Michael Kaufmann] * http: Fix possible empty response with mod_ratelimit for HEAD requests. PR 63192. [Yann Ylavic] * mod_cache_socache: Avoid reallocations and be safe with outgoing data lifetime. [Yann Ylavic] * MPMs unix: bind the bucket number of each child to its slot number, for a more efficient per bucket maintenance. [Yann Ylavic] * mod_auth_digest: Fix a race condition. Authentication with valid credentials could be refused in case of concurrent accesses from different users. PR 63124. [Simon Kappel ] * mod_http2: enable re-use of slave connections again. Fixed slave connection keepalives counter. [Stefan Eissing] * mod_reqtimeout: Allow to configure (TLS-)handshake timeouts. PR 61310. [Yann Ylavic] * mod_proxy_wstunnel: Fix websocket proxy over UDS. PR 62932 * mod_ssl: Don't unset FIPS mode on restart unless it's forced by configuration (SSLFIPS on) and not active by default in OpenSSL. PR 63136. [Yann Ylavic] - deleted patches - apache2-mod_http2-issue-167.patch (upstreamed)- Reduce scriptlets' hard dependency on systemd.- added patches fix https://github.com/icing/mod_h2/issues/167 [bsc#1125965] + apache2-mod_http2-issue-167.patch- Replace old $RPM_* shell vars. Avoid old tar syntax. - Tag scriptlets as explicitly requiring bash.- updated to 2.4.38 * mod_ssl: Clear retry flag before aborting client-initiated renegotiation. PR 63052 [Joe Orton] * mod_negotiation: Treat LanguagePriority as case-insensitive to match AddLanguage behavior and HTTP specification. PR 39730 [Christophe Jaillet] * mod_md: incorrect behaviour when synchronizing ongoing ACME challenges have been fixed. [Michael Kaufmann, Stefan Eissing] * mod_setenvif: We can have expressions that become true if a regex pattern in the expression does NOT match. In this case val is NULL and we should just set the value for the environment variable like in the pattern case. [Ruediger Pluem] * mod_session: Always decode session attributes early. [Hank Ibell] * core: Incorrect values for environment variables are substituted when multiple environment variables are specified in a directive. [Hank Ibell] * mod_rewrite: Only create the global mutex used by "RewriteMap prg:" when this type of map is present in the configuration. PR62311. [Hank Ibell ] * mod_dav: Fix invalid Location header when a resource is created by passing an absolute URI on the request line [Jim Jagielski] * mod_session_cookie: avoid duplicate Set-Cookie header in the response. [Emmanuel Dreyfus , Luca Toscano] * mod_ssl: clear *SSL errors before loading certificates and checking afterwards. Otherwise errors are reported when other SSL using modules are in play. Fixes PR 62880. [Michael Kaufmann] * mod_ssl: Fix the error code returned in an error path of 'ssl_io_filter_handshake()'. This messes-up error handling performed in 'ssl_io_filter_error()' [Yann Ylavic] * mod_ssl: Fix $HTTPS definition for "SSLEngine optional" case, and fix authz provider so "Require ssl" works correctly in HTTP/2. PR 61519, 62654. [Joe Orton, Stefan Eissing] * mod_proxy: If ProxyPassReverse is used for reverse mapping of relative redirects, subsequent ProxyPassReverse statements, whether they are relative or absolute, may fail. PR 60408. [Peter Haworth ] * mod_lua: Now marked as a stable module [https://s.apache.org/Xnh1]- SSLProtocol use TLSv1.2 or higher- do not create sysconfig.d when already exists [bsc#1121086]- use secure http sites by default in configs - Switch to DEFAULT_SUSE Cipher suite- the "event" MPM is fully supported since 2.4 - configure an OCSP stapling cache by default (still requires enabling SSLUseStapling in vhost)- updated to 2.4.37 * mod_ssl: Fix HTTP/2 failures when using OpenSSL 1.1.1. [Rainer Jung] * mod_ssl: Fix crash during SSL renegotiation with OptRenegotiate set, when client certificates are available from the original handshake but were originally not verified and should get verified now. This is a regression in 2.4.36 (unreleased). [Ruediger Pluem] * mod_ssl: Correctly merge configurations that have client certificates set by SSLProxyMachineCertificate{File|Path}. [Ruediger Pluem] - updated to 2.4.36 * mod_brotli, mod_deflate: Restore the separate handling of 304 Not Modified responses. Regression introduced in 2.4.35. * mod_proxy_scgi, mod_proxy_uwsgi: improve error handling when sending the body of the response. [Jim Jagielski] * mod_http2: adding defensive code for stream EOS handling, in case the request handler missed to signal it the normal way (eos buckets). Addresses github issues https://github.com/icing/mod_h2/issues/164, https://github.com/icing/mod_h2/issues/167 and https://github.com/icing/mod_h2/issues/170. [Stefan Eissing] * ab: Add client certificate support. [Graham Leggett] * ab: Disable printing temp key for OpenSSL before version 1.0.2. SSL_get_server_tmp_key is not available there. [Rainer Jung] * mod_ssl: Fix a regression that the configuration settings for verify mode and verify depth were taken from the frontend connection in case of connections by the proxy to the backend. PR 62769. [Ruediger Pluem] * MPMs: Initialize all runtime/asynchronous objects on a dedicated pool and before signals handling to avoid lifetime issues on restart or shutdown. PR 62658. [Yann Ylavic] * mod_ssl: Add support for OpenSSL 1.1.1 and TLSv1.3. TLSv1.3 has behavioural changes compared to v1.2 and earlier; client and configuration changes should be expected. SSLCipherSuite is enhanced for TLSv1.3 ciphers, but applies at vhost level only. [Stefan Eissing, Yann Ylavic, Ruediger Pluem, Joe Orton] * mod_auth_basic: Be less tolerant when parsing the credencial. Only spaces should be accepted after the authorization scheme. \t are also tolerated. [Christophe Jaillet] * mod_proxy_hcheck: Fix issues with interval determination. PR 62318 [Jim Jagielski] * mod_proxy_hcheck: Fix issues with TCP health checks. PR 61499 [Dominik Stillhard ] * mod_proxy_hcheck: take balancer's SSLProxy* directives into account. [Jim Jagielski] * mod_status, mod_echo: Fix the display of client addresses. They were truncated to 31 characters which is not enough for IPv6 addresses. This is done by deprecating the use of the 'client' field and using the new 'client64' field in worker_score. PR 54848 [Bernhard Schmidt , Jim Jagielski]- consider also patterns in APACHE_CONF_INCLUDE_DIRS as documentation says (patch Juergen Gleiss)- relink /usr/sbin/httpd after apache2-MPM uninstall [bsc#1107930c#1] - simplify find_mpm function from script-helpers - /usr/sbin/httpd is now created depending on preference hardcoded in find_mpm (script-helpers), not depending on alphabetical order of MPMs - simplify spec file a bit- updated to 2.4.35: * http: Enforce consistently no response body with both 204 and 304 statuses. * mod_status: Cumulate CPU time of exited child processes in the "cu" and "cs" values. Add CPU time of the parent process to the "c" and "s" values. * mod_proxy: Improve the balancer member data shown in mod_status when "ProxyStatus" is "On": add "busy" count and show byte counts in auto mode always in units of kilobytes. * mod_status: Add cumulated response duration time in milliseconds. * mod_status: Complete the data shown for async MPMs in "auto" mode. Added number of processes, number of stopping processes and number of busy and idle workers. * mod_ratelimit: Don't interfere with "chunked" encoding, fixing regression introduced in 2.4.34. PR 62568. * mod_proxy: Remove load order and link dependency between mod_lbmethod_* modules and mod_proxy. PR 62557. * Allow the argument to , , , , and to be quoted. This is primarily for the benefit of . * mod_watchdog: Correct some log messages. * mod_md: When the last domain name from an MD is moved to another one, that now empty MD gets moved to the store archive. PR 62572. * mod_ssl: Fix merging of SSLOCSPOverrideResponder. * mod_proxy_balancer: Restore compatibility with APR 1.4.- updated to 2.4.34: * ) Introduce zh-cn and zh-tw (simplified and traditional Chinese) error document translations. [CodeingBoy, popcorner] * ) event: avoid possible race conditions with modules on the child pool. [Stefan Fritsch] * ) mod_proxy: Fix a corner case where the ProxyPassReverseCookieDomain or ProxyPassReverseCookiePath directive could fail to update correctly 'domain=' or 'path=' in the 'Set-Cookie' header. PR 61560. [Christophe Jaillet] * ) mod_ratelimit: fix behavior when proxing content. PR 62362. [Luca Toscano, Yann Ylavic] * ) core: Re-allow '_' (underscore) in hostnames. [Eric Covener] * ) mod_authz_core: If several parameters are used in a AuthzProviderAlias directive, if these parameters are not enclosed in quotation mark, only the first one is handled. The other ones are silently ignored. Add a message to warn about such a spurious configuration. PR 62469 [Hank Ibell , Christophe Jaillet] * ) mod_md: improvements and bugfixes - MDNotifyCmd now takes additional parameter that are passed on to the called command. - ACME challenges have better checks for interference with other modules - ACME challenges are only handled for domains managed by the module, allowing other ACME clients to operate for other domains in the server. - better libressl integration * ) mod_proxy_wstunnel: Add default schema ports for 'ws' and 'wss'. PR 62480. [Lubos Uhliarik } * ) logging: Some early logging-related startup messages could be lost when using syslog for the global ErrorLog. [Eric Covener] * ) mod_cache: Handle case of an invalid Expires header value RFC compliant like the case of an Expires time in the past: allow to overwrite the non-caching decision using CacheStoreExpired and respect Cache-Control "max-age" and "s-maxage". [Rainer Jung] * ) mod_xml2enc: Fix forwarding of error metadata/responses. PR 62180. [Micha Lenk , Yann Ylavic] * ) mod_proxy_http: Fix response header thrown away after the previous one was considered too large and truncated. PR 62196. [Yann Ylavic] * ) core: Add and handle AP_GETLINE_NOSPC_EOL flag for ap_getline() family of functions to consume the end of line when the buffer is exhausted. PR 62198. [Yann Ylavic] * ) mod_proxy_http: Add new worker parameter 'responsefieldsize' to allow maximum HTTP response header size to be increased past 8192 bytes. PR 62199. [Hank Ibell ] * ) mod_ssl: Extend SSLOCSPEnable with mode 'leaf' that only checks the leaf of a certificate chain. PR62112. [Ricardo Martin Camarero ] * ) http: Fix small memory leak per request when handling persistent connections. [Ruediger Pluem, Joe Orton] * ) mod_proxy_html: Fix variable interpolation and memory allocation failure in ProxyHTMLURLMap. [Ewald Dieterich ] * ) mod_remoteip: Fix RemoteIP{Trusted,Internal}ProxyList loading broken by 2.4.30. PR 62220. [Chritophe Jaillet, Yann Ylavic] * ) mod_remoteip: When overriding the useragent address from X-Forwarded-For, zero out what had been initialized as the connection-level port. PR59931. [Hank Ibell ] * ) core: In ONE_PROCESS/debug mode, cleanup everything when exiting. [Yann Ylavic] * ) mod_proxy_balancer: Add hot spare member type and corresponding flag (R). Hot spare members are used as drop-in replacements for unusable workers in the same load balancer set. This differs from hot standbys which are only used when all workers in a set are unusable. PR 61140. [Jim Riggs] * ) suexec: Add --enable-suexec-capabilites support on Linux, to use setuid/setgid capability bits rather than a setuid root binary. [Joe Orton] * ) suexec: Add support for logging to syslog as an alternative to logging to a file; use --without-suexec-logfile --with-suexec-syslog. [Joe Orton] * ) mod_ssl: Restore 2.4.29 behaviour in SSL vhost merging/enabling which broke some rare but previously-working configs. [Joe Orton] * ) core, log: improve sanity checks for the ErrorLog's syslog config, and explicitly allow only lowercase 'syslog' settings. PR 62102 [Luca Toscano, Jim Riggs, Christophe Jaillet] * ) mod_http2: accurate reporting of h2 data input/output per request via mod_logio. Fixes an issue where output sizes where counted n-times on reused slave connections. [Stefan Eissing] See github issue: https://github.com/icing/mod_h2/issues/158 * ) mod_http2: Fix unnecessary timeout waits in case streams are aborted. [Stefan Eissing] * ) mod_http2: restoring the v1.10.16 keepalive timeout behaviour of mod_http2. [Stefan Eissing] * ) mod_proxy: Do not restrict the maximum pool size for backend connections any longer by the maximum number of threads per process and use a better default if mod_http2 is loaded. [Yann Ylavic, Ruediger Pluem, Stefan Eissing, Gregg Smith] * ) mod_slotmem_shm: Add generation number to shm filename to fix races with graceful restarts. PRs 62044 and 62308. [Jim Jagielski, Yann Ylavic] * ) core: Preserve the original HTTP request method in the '%] * ) mod_remoteip: make proxy-protocol work on slave connections, e.g. in HTTP/2 requests. [Stefan Eissing] See also https://github.com/roadrunner2/mod-proxy-protocol/issues/6 * ) mod_ssl: Fix merging of proxy SSL context outside sections, regression introduced in 2.4.30. PR 62232. [Rainer Jung, Yann Ylavic] * ) mod_md: Fix compilation with OpenSSL before version 1.0.2. [Rainer Jung] * ) mod_dumpio: do nothing below log level TRACE7. [Yann Ylavic] * ) mod_remoteip: Restore compatibility with APR 1.4 (apr_sockaddr_is_wildcard). [Eric Covener] * ) core: On ECBDIC platforms, some errors related to oversized headers may be misreported or be logged as ASCII escapes. PR 62200 [Hank Ibell ] * ) mod_ssl: Fix cmake-based build. PR 62266. [Rainer Jung] * ) core: Add , and conditional section containers. [Eric Covener, Joe Orton] * %check: do not load all modules, just use default loadmodule.conf; some modules require to load another ones in advance * %install: parallel install is broken- Updated description for SSLProtocol option. [bsc#1086854]- Updated description (PCI DSS) for SSLProtocol option. [bsc#1086854]- SSLProtocol TLSv1.2 [bsc#1086854]- updated to 2.4.33: * ) core: Fix request timeout logging and possible crash for error_log hooks. [Yann Ylavic] * ) mod_slomem_shm: Fix failure to create balancers's slotmems in Windows MPM, where children processes need to attach them instead since they are owned by the parent process already. [Yann Ylavic] * ) ab: try all destination socket addresses returned by apr_sockaddr_info_get instead of failing on first one when not available. Needed for instance if localhost resolves to both ::1 and 127.0.0.1 e.g. if both are in /etc/hosts. [Jan Kaluza] * ) ab: Use only one connection to determine working destination socket address. [Jan Kaluza] * ) ab: LibreSSL doesn't have or require Windows applink.c. [Gregg L. Smith] * ) htpasswd/htdigest: Disable support for bcrypt on EBCDIC platforms. apr-util's bcrypt implementation doesn't tolerate EBCDIC. [Eric Covener] * ) htpasswd/htdbm: report the right limit when get_password() overflows. [Yann Ylavic] * ) htpasswd: Don't fail in -v mode if password file is unwritable. PR 61631. [Joe Orton] * ) htpasswd: don't point to (unused) stack memory on output to make static analysers happy. PR 60634. [Yann Ylavic, reported by shqking and Zhenwei Zou] * ) mod_access_compat: Fail if a comment is found in an Allow or Deny directive. [Jan Kaluza] * ) mod_authz_host: Ignore comments after "Require host", logging a warning, or logging an error if the line is otherwise empty. [Jan Kaluza, Joe Orton] * ) rotatelogs: Fix expansion of %Z in localtime (-l) mode, and fix Y2K38 bug. [Joe Orton] * ) mod_ssl: Support SSL DN raw variable extraction without conversion to UTF-8, using _RAW suffix on variable names. [Joe Orton] * ) ab: Fix https:// connection failures (regression in 2.4.30); fix crash generating CSV output for large -n. [Joe Orton, Jan Kaluza] * ) mod_proxy_fcgi: Add the support for mod_proxy's flushpackets and flushwait parameters. [Luca Toscano, Ruediger Pluem, Yann Ylavic] * ) mod_ldap: Avoid possible crashes, hangs, and busy loops due to improper merging of the cache lock in vhost config. PR 43164 [Eric Covener] * ) mpm_event: Do lingering close in worker(s). [Yann Ylavic] * ) mpm_queue: Put fdqueue code in common for MPMs event and worker. [Yann Ylavic] * ) mod_session: Strip Session header when SessionEnv is on. [Yann Ylavic] * ) mod_cache_socache: Fix caching of empty headers up to carriage return. [Yann Ylavic] * ) core: For consistency, ensure that read lines are NUL terminated on any error, not only on buffer full. [Yann Ylavic] * ) mod_authnz_ldap: Fix language long names detection as short name. [Yann Ylavic] * ) mod_proxy: Worker schemes and hostnames which are too large are no longer fatal errors; it is logged and the truncated values are stored. [Jim Jagielski] * ) regex: Allow to configure global/default options for regexes, like caseless matching or extended format. [Yann Ylavic] * ) mod_auth_digest: Actually use the secret when generating nonces. This change may cause problems if used with round robin load balancers. PR 54637 [Stefan Fritsch] * ) mod_proxy: Allow setting options to globally defined balancer from ProxyPass used in VirtualHost. Balancers are now merged using the new merge_balancers method which merges the balancers options. [Jan Kaluza] * ) logresolve: Fix incorrect behavior or segfault if -c flag is used Fixes: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=823259 [Stefan Fritsch] * ) mod_remoteip: Add support for PROXY protocol (code donated by Cloudzilla). Add ability for PROXY protocol processing to be optional to donated code. See also: http://www.haproxy.org/download/1.5/doc/proxy-protocol.txt [Cloudzilla/roadrunner2@GitHub, Jim Jagielski, Daniel Ruggeri] * ) mod_proxy, mod_ssl: Handle SSLProxy* directives in sections, allowing per backend TLS configuration. [Yann Ylavic] * ) mod_proxy_uwsgi: Add in UWSGI proxy (sub)module. [Roberto De Ioris, Jim Jagielski] * ) mod_proxy_balancer,mod_slotmem_shm: Rework SHM reuse/deletion to not depend on the number of restarts (non-Unix systems) and preserve shared names as much as possible on configuration changes for SHMs and persisted files. PR 62044. [Yann Ylavic, Jim Jagielski] * ) mod_http2: obsolete code removed, no more events on beam pool destruction, discourage content encoders on http2-status response (where they do not work). [Stefan Eissing] * ) mpm_event: Let the listener thread do its maintenance job on resources shortage. PR 61979. [Yann Ylavic] * ) mpm_event: Wakeup the listener to re-enable listening sockets. [Yann Ylavic] * ) mod_ssl: The SSLCompression directive will now give an error if used with an OpenSSL build which does not support any compression methods. [Joe Orton] * ) mpm_event,worker: Mask signals for threads created by modules in child init, so that they don't receive (implicitely) the ones meant for the MPM. PR 62009. [Armin Abfalterer , Yann Ylavic] * ) mod_md: new experimental, module for managing domains across virtual hosts, implementing the Let's Encrypt ACMEv1 protocol to signup and renew certificates. Please read the modules documentation for further instructions on how to use it. [Stefan Eissing] * ) mod_proxy_html: skip documents shorter than 4 bytes PR 56286 [Micha Lenk ] * ) core, mpm_event: Avoid a small memory leak of the scoreboard handle, for the lifetime of the connection, each time it is processed by MPM event. [Yann Ylavic] * ) mpm_event: Update scoreboard status for KeepAlive state. [Yann Ylavic] * ) mod_ldap: Fix a case where a full LDAP cache would continually fail to purge old entries and log AH01323. PR61891. [Hendrik Harms ] * ) mpm_event: close connections not reported as handled by any module to avoid losing track of them and leaking scoreboard entries. PR 61551. [Yann Ylavic] * ) core: A signal received while stopping could have crashed the main process. PR 61558. [Yann Ylavic] * ) mod_ssl: support for mod_md added. [Stefan Eissing] * ) mod_proxy_html: process parsed comments immediately. Fixes bug (seen in the wild when used with IBM's HTTPD bundle) where parsed comments may be lost. [Nick Kew] * ) mod_proxy_html: introduce doctype for HTML 5 [Nick Kew] * ) mod_proxy_html: fix typo-bug processing "strict" vs "transitional" HTML/XHTML. PR 56457 [Nick Kew] * ) mpm_event: avoid a very unlikely race condition between the listener and the workers when the latter fails to add a connection to the pollset. [Yann Ylavic] * ) core: silently ignore a not existent file path when IncludeOptional is used. PR 57585. [Alberto Murillo Silva , Luca Toscano] * ) mod_macro: fix usability of globally defined macros in .htaccess files. PR 57525. [Jose Kahan , Yann Ylavic] * ) mod_rewrite, core: add the Vary header when a condition evaluates to true and the related RewriteRule is used in a Directory context (triggering an internal redirect). [Luca Toscano] * ) ab: Make the TLS layer aware that the underlying socket is nonblocking, and use/handle POLLOUT where needed to avoid busy IOs and recover write errors when appropriate. [Yann Ylavic] * ) ab: Keep reading nonblocking to exhaust TCP or SSL buffers when previous read was incomplete (the SSL case can cause the next poll() to timeout since data are buffered already). PR 61301 [Luca Toscano, Yann Ylavic] * ) mod_http2: avoid unnecessary data retrieval for a trace log. Allow certain information retrievals on null bucket beams where it makes sense. [Stefan Eissing]- Replace SuSEFirewall2 by firewalld II (fate#323460) [bsc#1083492]- build mod_http2 also for 42.3- remove NameVirtualHost from documentation [bsc#1078557]- for older distros, still use SuSEFirewall2 [bsc#1071548c#7]- Replace SuSEFirewall2 by firewalld (fate#323460)- build brotli module- Do not requires w3m, only recommends it.- do not build with nghttp2 for SLE-12-SP3- which was split after SLE11- Add which and w3m as dependencies. poo#28406- Replace references to /var/adm/fillup-templates with new %_fillupdir macro (boo#1069468)- APACHE_MODULES now contains authn_core in default configuration [bsc#1066661]- updated to 2.4.29: * ) mod_unique_id: Use output of the PRNG rather than IP address and pid, avoiding sleep() call and possible DNS issues at startup, plus improving randomness for IPv6-only hosts. [Jan Kaluza] * ) mod_rewrite, core: Avoid the 'Vary: Host' response header when HTTP_HOST is used in a condition that evaluates to true. PR 58231 [Luca Toscano] * ) mod_http2: v0.10.12, removed optimization for mutex handling in bucket beams that could lead to assertion failure in edge cases. [Stefan Eissing] * ) mod_proxy: Fix regression for non decimal loadfactor parameter introduced in 2.4.28. [Jim Jagielski] * ) mod_authz_dbd: fix a segmentation fault if AuthzDBDQuery is not set. PR 61546. [Lubos Uhliarik ] * ) mod_rewrite: Add support for starting External Rewriting Programs as non-root user on UNIX systems by specifying username and group name as third argument of RewriteMap directive. [Jan Kaluza] * ) core: Rewrite the Content-Length filter to avoid excessive memory consumption. Chunked responses will be generated in more cases than in previous releases. PR 61222. [Joe Orton, Ruediger Pluem] * ) mod_ssl: Fix SessionTicket callback return value, which does seem to matter with OpenSSL 1.1. [Yann Ylavic]- gensslcert: * set also SAN [bsc#1045159] * drop -C argument, it was not mapped to CN actually * consider also case when hostname does return empty string or does not exist [bsc#1057406] * do not consider environment ROOT variable- updated to 2.4.28: * ) SECURITY: CVE-2017-9798 (cve.mitre.org) Corrupted or freed memory access. must now be used in the main configuration file (httpd.conf) to register HTTP methods before the .htaccess files. [Yann Ylavic] * ) event: Avoid possible blocking in the listener thread when shutting down connections. PR 60956. [Yann Ylavic] * ) mod_speling: Don't embed referer data in a link in error page. PR 38923 [Nick Kew] * ) htdigest: prevent a buffer overflow when a string exceeds the allowed max length in a password file. [Luca Toscano, Hanno Böck ] * ) mod_proxy: loadfactor parameter can now be a decimal number (eg: 1.25). [Jim Jagielski] * ) mod_proxy_wstunnel: Allow upgrade to any protocol dynamically. PR 61142. * ) mod_watchdog/mod_proxy_hcheck: Time intervals can now be spefified down to the millisecond. Supports 'mi' (minute), 'ms' (millisecond), 's' (second) and 'hr' (hour!) time suffixes. [Jim Jagielski] * ) mod_http2: Fix for stalling when more than 32KB are written to a suspended stream. [Stefan Eissing] * ) build: allow configuration without APR sources. [Jacob Champion] * ) mod_ssl, ab: Fix compatibility with LibreSSL. PR 61184. [Bernard Spil , Michael Schlenker , Yann Ylavic] * ) core/log: Support use of optional "tag" in syslog entries. PR 60525. [Ben Rubson , Jim Jagielski] * ) mod_proxy: Fix ProxyAddHeaders merging. [Joe Orton] * ) core: Disallow multiple Listen on the same IP:port when listener buckets are configured (ListenCoresBucketsRatio > 0), consistently with the single bucket case (default), thus avoiding the leak of the corresponding socket descriptors on graceful restart. [Yann Ylavic] * ) event: Avoid listener periodic wake ups by using the pollset wake-ability when available. PR 57399. [Yann Ylavic, Luca Toscano] * ) mod_proxy_wstunnel: Fix detection of unresponded request which could have led to spurious HTTP 502 error messages sent on upgrade connections. PR 61283. [Yann Ylavic]- suexec binary moved to main package [bsc#1054741]- do not call and do not ship apache-22-24-upgrade [bsc#1042037]- make the package runable on non systemd systems + deprecated-scripts-arch.patch- updated to 2.4.27: * ) COMPATIBILITY: mod_lua: Remove the undocumented exported 'apr_table' global variable when using Lua 5.2 or later. This was exported as a side effect from luaL_register, which is no longer supported as of Lua 5.2 which deprecates pollution of the global namespace. [Rainer Jung] * ) COMPATIBILITY: mod_http2: Disable and give warning when using Prefork. The server will continue to run, but HTTP/2 will no longer be negotiated. [Stefan Eissing] * ) COMPATIBILITY: mod_proxy_fcgi: Revert to 2.4.20 FCGI behavior for the default ProxyFCGIBackendType, fixing a regression with PHP-FPM. PR 61202. [Jacob Champion, Jim Jagielski] * ) mod_lua: Improve compatibility with Lua 5.1, 5.2 and 5.3. PR58188, PR60831, PR61245. [Rainer Jung] * ) mod_http2: Simplify ready queue, less memory and better performance. Update mod_http2 version to 1.10.7. [Stefan Eissing] * ) Allow single-char field names inadvertantly disallowed in 2.4.25. PR 61220. [Yann Ylavic] * ) htpasswd / htdigest: Do not apply the strict permissions of the temporary passwd file to a possibly existing passwd file. PR 61240. [Ruediger Pluem] * ) core: Avoid duplicate HEAD in Allow header. This is a regression in 2.4.24 (unreleased), 2.4.25 and 2.4.26. PR 61207. [Christophe Jaillet] - drop upstreamed patch: * httpd-2.4.12-lua-5.2.patch (see upstream's PR#58188 for details)- Adjust dependencies for rename apr/apr-util packages- remove /usr/bin/http2 symlink only during apache2 package uninstall, not upgrade [bsc#1041830]- updated to 2.4.26: This release of Apache is a security, feature, and bug fix release. For details, see http://httpd.apache.org/dev/dist/CHANGES_2.4.26 - refreshed patches: . httpd-2.4.12-lua-5.2.patch . httpd-2.4.x-fate317766-config-control-two-protocol-options.diff - removed patches (upstreamed) . httpd-cache-forward-http-proxy.patch . httpd-cache-revert-svn1773397.patch- server-tunning.conf: MaxClients was renamed to MaxRequestWorkers [bsc#1037731] - gensslcert: use hostname when fqdn is too long [bsc#1035829]- remove apache-doc and apache-example-pages obsoletes/provides- PreRequire user wwwrun and group www- start_apache2: include individual sysconfig.d files instead of sysconfig.d dir, include sysconfig.d/include.conf after httpd.conf is processed [bsc#1023616]- revert an attempt to fix PR 60458 + httpd-cache-revert-svn1773397.patch- fix caching of forward proxy + httpd-cache-forward-http-proxy.patch- Don't require insserv if we don't need it.- Added new HTTP2 option to sysconfig to ease enabling http2 - Added new protocols.conf which is included globally - Enable http2 also for Leap 42.2+ and SLE12_SP2+- update to 2.4.25: fixed several security issues (CVE-2016-8740, CVE-2016-5387, CVE-2016-2161, CVE-2016-0736, CVE-2016-8743), many fixes and improvements of mod_http2 and other modules; see CHANGES for full change log - verify tarball: added httpd*.bz2.asc, apache2.keyring and remove 60C5442D.key- fix build with new systemd + amended httpd-2.4.3-mod_systemd.patch- Replace mixed indentation with predominant style.- add NotifyAccess=all to service file [bsc#980663]- Remove the omc xml config. It is useless nowdays- readd the support of multiple entries in APACHE_ACCESS_LOG [bsc#991032]- add httpd-2.4.x-fate317766-config-control-two-protocol-options.diff Introduces directives to control two protocol options: * HttpContentLengthHeadZero - allow Content-Length of 0 to be returned on HEAD * HttpExpectStrict - allow admin to control whether we must see "100-continue" [bsc#894225], [fate#317766]- version 2.4.23 * Fixes CVE-2016-4979 [bsc#987365] * mod_proxy_hcheck was missing due to upstream bug. * mod_proxy_fdpass needs explicit configure line now. * Full list of changes: http://www-eu.apache.org/dist//httpd/CHANGES_2.4.23- Remove pkgconfig(libsystemd-daemon). Nowadays pkgconfig(libsystemd) is enough and replaces all libsystemd-* libs which are obsolete.- remove Alias= from [Install] of the template service [bsc#981541c#10]- remove unneded httpd-2.4.17-debug-crash.patch- start apache services after remote-fs [bsc#978543]- removed note about ulimits in sysconfig file [bsc#976711]- do not build mod_http2 for 13.2- Update to version 2.4.20 (2.4.19 was never released) * Drop httpd-2.4.18-missing-semicolon.patch now upstream - Big changelog available, see: http://www.apache.org/dist/httpd/CHANGES_2.4.20 for details.- enable authnz_fcgi module- fix build for SLE_11_SP4: + httpd-2.4.18-missing-semicolon.patch- Update to version 2.4.18 * drop 2.4.17-protocols.patch in upstream. - Change list too long to mention here see: http://www.apache.org/dist/httpd/CHANGES_2.4.18 for details.- systemd: Set TasksMax=infinity for current systemd releases. The default limit of 512 is too small and prevents the creation of new server processes. Apache has its own runtime/harcoded limits.- fix crash when for -X + httpd-2.4.17-debug-crash.patch- add a note: FollowSymLinks or SymLinksIfOwnerMatch is neccessary for RewriteRule in given dir [bnc#955701]- restart apache once after the rpm or zypper transaction [bnc#893659] - drop some old compat code from %post- 2.4.17-protocols.patch from upstream http2 module: * master conn_rec* addition to conn_rec * improved ALPN and Upgrade handling * allowing requests for servers whose TLS configuration is compatible to the SNI server ones * disabling TLS renegotiation for slave connections- LogLevel directive into correct config file, thanks Michael Calmer for the fix [bsc#953329]- do not build mod_http2 for older distros than 13.2 for now (nghttp2 does not build there)- Include directives really into /etc/apache2/sysconfig.d/include.conf, fix from Erik Wegner [bsc#951901]- gensslcert: CN now defaults to `hostname -f` [bnc#949766] (internal), fix help [bnc#949771] (internal)- Update to 2.4.17 - Enable mod_http2/ BuildRequire nghttp2 - MPMs: Support SO_REUSEPORT to create multiple duplicated listener records for scalability - mod_ssl: Support compilation against libssl built with OPENSSL_NO_SSL3 - For more changes see: http://www.apache.org/dist/httpd/CHANGES_2.4.17- start_apache2: reintroduce sysconfig.d, include it on command line (not in httpd.conf) instead of individual directives [bnc#949434] (internal), [bnc#941331]- Fixup libdir in installed files- fix Logjam vulnerability: change SSLCipherSuite cipherstring to disable export cipher suites and deploy Ephemeral Elliptic-Curve Diffie-Hellman (ECDHE) ciphers. Adjust 'gensslcert' script to generate a strong and unique Diffie Hellman Group and append it to the server certificate file [bnc#931723], [CVE-2015-4000]- add reference upstream bug#58188 along httpd-2.4.12-lua-5.2.patch- update to 2.4.16 * changes http://www.apache.org/dist/httpd/CHANGES_2.4.16 * remove the following patches (fixed in 2.4.16) * httpd-2.4.x-mod_lua_websocket_DoS.patch * httpd-2.4.12-CVE-2015-0253.patch * update httpd-2.4.12-lua-5.2.patch- add patch: httpd-2.4.12-lua-5.2.patch * lua_dump introduced a new strip option in 5.3, set it to 0 to get the old behavior * luaL_register was deprecated in 5.2, use luaL_setfuncs and luaL_newlib instead * luaL_optint was deprecated in 5.3, use luaL_optinteger instead * lua_strlen and lua_objlen wad deprecated in 5.2, use lua_rawlen instead- change Provides: from suse_maintenance_mmn = # to suse_maintenance_mmn_#- apache2 Suggests:, not Recommends: apache2-prefork; that means for example, that `zypper in apache2-worker` will not pull apache2-prefork also - installing /usr/sbin/httpd link: * do not try to install it in '%post ' when apache2 (which includes /usr/share/apache2/script-helpers) is not installed yet (fixes installation on 11sp3) * install it in '%post' if apache2 is installed after apache2- to be sure it is there- access_compat shared also for 11sp3- apache2-implicit-pointer-decl.patch renamed to httpd-implicit-pointer-decl.patch to align with other patches names- apachectl is now wrapper to start_apache2; therefore, it honors HTTPD_INSTANCE variable, see README-instances.txt for details + httpd-apachectl.patch - httpd-2.4.10-apachectl.patch- a2enmod/a2dismod and a2enflag/a2disflag now respect HTTPD_INSTANCE= environment variable, which can be used to specify apache instance name; sysconfig file is expected at /etc/sysconfig/apache2@ (see README-instances.txt for details)- provides suse_maintenance_mmn symbol [bnc#915666] (internal)- credits to Roman Drahtmueller: * add reference to /etc/permissions.local to output of %post if setting the permissions of suexec2 fails * do not enable mod_php5 by default any longer * httpd-2.0.49-log_server_status.dif obsoleted * apache2-mod_ssl_npn.patch removed because not used * include mod_reqtimeout.conf in httpd.conf * added cgid-timeout.conf, include it in httpd.conf - fix default value APACHE_MODULES in sysconfig file - %service_* macros for apache2@.service- reenable 690734.patch, it should be upstreamed by the author (Adrian Schroeter) though + httpd-2.4.9-bnc690734.patch - httpd-2.2.x-bnc690734.patch- drop startssl from start_apache2- allow to run multiple instances of Apache on one system [fate#317786] (internal) * distributed httpd.conf no longer includes sysconfig.d, nor this directory is shipped. httpd.conf includes loadmodule.conf and global.conf which are former sysconfig.d/loadmodule.conf and sysconfig.d/global.conf for default /etc/sysconfig/apache2 global.conf and loadmodule.conf are not included when sysconfig variables could have been read by start_apache2 startup script (run with systemd services). Therefore, when starting server via /usr/sbin/httpd, sysconfig variables are not taken into account. * some not-maintained scripts are moved from /usr/share/apache2 to /usr/share/apache2/deprecated-scripts * all modules comment in sysconfig file is not generated anymore * added README-instances.txt * removed Sources: load_configuration find_mpm get_module_list get_includes find_httpd_includes apache-find-directives * added Sources: deprecated-scripts.tar.xz apache2-README-instances.txt apache2-loadmodule.conf apache2-global.conf apache2-find-directives apache2@.service apache2-script-helpers- add SSLHonorCipherOrder directive to apache2-ssl-global.conf - adopt SSLCipherSuite directive value from SLE12 - remove default-vhost-ssl.conf and default-vhost.conf from /etc/apache2. These two files are not (!) read by the configuration framework, but are named *.conf, which is misleading. The files are almost identical with the vhost templates in /etc/apache2/vhosts.d/. The two templates there do it right because they are not named *.conf and are not sourced either. apache's response with no explicit (eg. default, vanilla) configuration is contained in /etc/apache2/default-server.conf. * remove apache2-README.default-vhost as there are no default-vhost* files anymore.- apache2.service: We have to use KillMode=mixed for the graceful stop, restart to work properly.- dropped 2.0 -> 2.2 modules transition during upgrade * apache-20-22-upgrade renamed to apache-22-24-upgrade - apache-*-upgrade script is called in %posttrans now [bnc#927223]- fix find_mpm to echo mpm binary- apache2.service: Only order us after network.target and nss-lookup.target but not pull the units in. - apache2.service: SSL requires correct system time to work properly, order after time-sync.target- align filenames with upstream names (and add compat symlinks) - find_httpd2_includes renamed to find_httpd_includes- access_compat now built as shared and disabled by default - amend config to use also old syntax when access_compat is loaded - added apache2-README-access_compat.txt - added apache-find-directive script - see [bnc#896083] and its duplicates- add httpd-2.4.12-CVE-2015-0253.patch to fix SECURITY: CVE-2015-0253 (cve.mitre.org) core: Fix a crash introduced in with ErrorDocument 400 pointing to a local URL-path with the INCLUDES filter active, introduced in 2.4.11. PR 57531. [Yann Ylavic]- simplify apache2.logrotate, use sharedscripts [bnc#713581]- remove curly brackets around format sequence "%y" in `stat --format="%{y}" %{SOURCE1}` that caused an incorrect evaluation. Add escaping to proper spec-cleaner processing in the future- remove 'exit 0' from the %post section in the specfile that was placed here incorrectly and caused that the rest of the %post section couldn't be executed.- /etc/init.d/apache2 reload -> systemctl reload apache2.service in apache2.logrotate [bnc#926523]- authz_default -> authz_core in sysconfig.apache2/APACHE_MODULES [bnc#922236]- Add Requires(post) apache2 to the subpackage -worker, -event and - prefork: their respective post scriptlets execute /usr/share/apache2/get_module_list, which is shipped as part of the main package. This script has the side-effect to call find_mpm, which in turn creates the corresponding /usr/sbin/httpd2 symlink.- Patched get_module_list to ensure proper SELinux context for sysconfig.d/loadmodule.conf- Pname -> name variable reduction - Try to fix sle11 build- Version bumpt o 2.4.12: * ) mpm_winnt: Accept utf-8 (Unicode) service names and descriptions for internationalization. [William Rowe] * ) mpm_winnt: Normalize the error and status messages emitted by service.c, the service control interface for Windows. [William Rowe] * ) configure: Fix --enable-v4-mapped configuration on *BSD. PR 53824. [ olli hauer , Yann Ylavic ]- Exit cleanly on end of the post and cleanup the update detection - Remove Apache.xpm as it ain't used- Cleanup init/unit decision making and provide just systemd service on systemd systems- Deprecate realver define as it is equal to version. - Explicitely state MPM mods to ensure we don't lose some bnc#444878- Pass over spec-cleaner, there should be no actual technical change in this just reduction of lines in the spec- add httpd-2.4.x-mod_lua_websocket_DoS.patch to fix mod_lua bug where a maliciously crafted websockets PING after a script calls r:wsupgrade() can cause a child process crash [CVE-2015-0228], [bnc#918352].- httpd2.pid in rc.apache2 was wrong [bnc#898193]- httpd-2.4.3-mod_systemd.patch find libsystemd-daemon with pkg-config, this is the only correct way, in current versions sd_notify is in libsystemd and in old products in libsystemd-daemon.- remove obsolete patches * httpd-2.4.10-check_null_pointer_dereference.patch * httpd-event-deadlock.patch * httpd-2.4.x-bnc871310-CVE-2013-5704-mod_headers_chunked_requests.patch * httpd-2.4.x-bnc909715-CVE-2014-8109-mod_lua_handling_of_Require_line.patch- Apache 2.4.11 * ) SECURITY: CVE-2014-3583 (cve.mitre.org) mod_proxy_fcgi: Fix a potential crash due to buffer over-read, with response headers' size above 8K. [Yann Ylavic, Jeff Trawick] * ) SECURITY: CVE-2014-3581 (cve.mitre.org) mod_cache: Avoid a crash when Content-Type has an empty value. PR 56924. [Mark Montague , Jan Kaluza] * ) SECURITY: CVE-2014-8109 (cve.mitre.org) mod_lua: Fix handling of the Require line when a LuaAuthzProvider is used in multiple Require directives with different arguments. PR57204 [Edward Lu ] * ) SECURITY: CVE-2013-5704 (cve.mitre.org) core: HTTP trailers could be used to replace HTTP headers late during request processing, potentially undoing or otherwise confusing modules that examined or modified request headers earlier. Adds "MergeTrailers" directive to restore legacy behavior. [Edward Lu, Yann Ylavic, Joe Orton, Eric Covener] * ) mod_ssl: New directive SSLSessionTickets (On|Off). The directive controls the use of TLS session tickets (RFC 5077), default value is "On" (unchanged behavior). Session ticket creation uses a random key created during web server startup and recreated during restarts. No other key recreation mechanism is available currently. Therefore using session tickets without restarting the web server with an appropriate frequency (e.g. daily) compromises perfect forward secrecy. [Rainer Jung] * ) mod_proxy_fcgi: Provide some basic alternate options for specifying how PATH_INFO is passed to FastCGI backends by adding significance to the value of proxy-fcgi-pathinfo. PR 55329. [Eric Covener] * ) mod_proxy_fcgi: Enable UDS backends configured with SetHandler/RewriteRule to opt-in to connection reuse and other Proxy options via explicitly declared "proxy workers" (] * ) mod_proxy_fcgi: Remove proxy:balancer:// prefix from SCRIPT_FILENAME passed to fastcgi backends. [Eric Covener] * ) core: Configuration files with long lines and continuation characters are not read properly. PR 55910. [Manuel Mausz ] * ) mod_include: the 'env' function was incorrectly handled as 'getenv' if the leading 'e' was written in upper case in statements. [Christophe Jaillet] * ) split-logfile: Fix perl error: 'Can't use string ("example.org:80") as a symbol ref while "strict refs"'. PR 56329. [Holger Mauermann ] * ) mod_proxy: Prevent ProxyPassReverse from doing a substitution when the URL parameter interpolates to an empty string. PR 56603. [] * ) core: Fix -D[efined] or [d] variables lifetime accross restarts. PR 57328. [Armin Abfalterer , Yann Ylavic]. * ) mod_proxy: Preserve original request headers even if they differ from the ones to be forwarded to the backend. PR 45387. [Yann Ylavic] * ) mod_ssl: dump SSL IO/state for the write side of the connection(s), like reads (level TRACE4). [Yann Ylavic] * ) mod_proxy_fcgi: Ignore body data from backend for 304 responses. PR 57198. [Jan Kaluza] * ) mod_ssl: Do not crash when looking up SSL related variables during expression evaluation on non SSL connections. PR 57070 [Ruediger Pluem] * ) mod_proxy_ajp: Fix handling of the default port (8009) in the ProxyPass and configurations. PR 57259. [Yann Ylavic] * ) mpm_event: Avoid a possible use after free when notifying the end of connection during lingering close. PR 57268. [Eric Covener, Yann Ylavic] * ) mod_ssl: Fix recognition of OCSP stapling responses that are encoded improperly or too large. [Jeff Trawick] * ) core: Add ap_log_data(), ap_log_rdata(), etc. for logging buffers. [Jeff Trawick] * ) mod_proxy_fcgi, mod_authnz_fcgi: stop reading the response and issue an error when parsing or forwarding the response fails. [Yann Ylavic] * ) mod_ssl: Fix a memory leak in case of graceful restarts with OpenSSL >= 0.9.8e PR 53435 [tadanori , Sebastian Wiedenroth ] * ) mod_proxy_connect: Don't issue AH02447 on sockets hangups, let the read determine whether it is a normal close or a real error. PR 57168. [Yann Ylavic] * ) mod_proxy_wstunnel: abort backend connection on polling error to avoid further processing. [Yann Ylavic] * ) core: Support custom ErrorDocuments for HTTP 501 and 414 status codes. PR 57167 [Edward Lu ] * ) mod_proxy_connect: Fix ProxyRemote to https:// backends on EBCDIC systems. PR 57092 [Edward Lu ] * ) mod_cache: Avoid a 304 response to an unconditional requst when an AH00752 CacheLock error occurs during cache revalidation. [Eric Covener] * ) mod_ssl: Move OCSP stapling information from a per-certificate store to a per-server hash. PR 54357, PR 56919. [Alex Bligh , Yann Ylavic, Kaspar Brand] * ) mod_cache_socache: Change average object size hint from 32 bytes to 2048 bytes. [Rainer Jung] * ) mod_cache_socache: Add cache status to server-status. [Rainer Jung] * ) event: Fix worker-listener deadlock in graceful restart. PR 56960. * ) Concat strings at compile time when possible. PR 53741. * ) mod_substitute: Restrict configuration in .htaccess to FileInfo as documented. [Rainer Jung] * ) mod_substitute: Make maximum line length configurable. [Rainer Jung] * ) mod_substitute: Fix line length limitation in case of regexp plus flatten. [Rainer Jung] * ) mod_proxy: Truncated character worker names are no longer fatal errors. PR53218. [Jim Jagielski] * ) mod_dav: Set r->status_line in dav_error_response. PR 55426. * ) mod_proxy_http, mod_cache: Avoid (unlikely) accesses to freed memory. [Yann Ylavic, Christophe Jaillet] * ) http_protocol: fix logic in ap_method_list_(add|remove) in order: - to correctly reset bits - not to modify the 'method_mask' bitfield unnecessarily [Christophe Jaillet] * ) mod_slotmem_shm: Increase log level for some originally debug messages. [Jim Jagielski] * ) mod_ldap: In 2.4.10, some LDAP searches or comparisons might be done with the wrong credentials when a backend connection is reused. [Eric Covener] * ) mod_macro: Add missing APLOGNO for some Warning log messages. [Christophe Jaillet] * ) mod_cache: Avoid sending 304 responses during failed revalidations PR56881. [Eric Covener] * ) mod_status: Honor client IP address using mod_remoteip. PR 55886. [Jim Jagielski] * ) cmake-based build for Windows: Fix incompatibility with cmake 2.8.12 and later. PR 56615. [Chuck Liu , Jeff Trawick] * ) mod_ratelimit: Drop severity of AH01455 and AH01457 (ap_pass_brigade failed) messages from ERROR to TRACE1. Other filters do not bother re-reporting failures from lower level filters. PR56832. [Eric Covener] * ) core: Avoid useless warning message when parsing a section guarded by if $(foo) is used within the section. PR 56503 [Christophe Jaillet] * ) mod_proxy_fcgi: Fix faulty logging of large amounts of stderr from the application. PR 56858. [Manuel Mausz ] * ) mod_proxy_http: Proxy responses with error status and "ProxyErrorOverride On" hang until proxy timeout. PR53420 [Rainer Jung] * ) mod_log_config: Allow three character log formats to be registered. For backwards compatibility, the first character of a three-character format must be the '^' (caret) character. [Eric Covener] * ) mod_lua: Don't quote Expires and Path values. PR 56734. [Keith Mashinter, ] * ) mod_authz_core: Allow 'es to be seen from auth stanzas under virtual hosts. PR 56870. [Eric Covener]- Redone lost patch to fix boo#859439 + service reload can cause log data to be lost with logrotate under some circumstances: remove "-t" from service reload. [bnc#859439]- Fix URL syntax in various files- fix IfModule directive around SSLSessionCache [bnc#842377c#11]- added httpd-2.4.x-bnc871310-CVE-2013-5704-mod_headers_chunked_requests.patch to fix flaw in the way mod_headers handled chunked requests. Adds "MergeTrailers" directive to restore legacy behavior [bnc#871310], [CVE-2013-5704].- added httpd-2.4.x-bnc909715-CVE-2014-8109-mod_lua_handling_of_Require_line.patch that fixes handling of the Require line when a LuaAuthzProvider is used in multiple Require directives with different arguments [bnc#909715], [CVE-2014-8109].- fixed start at boot for ssl and encrypted key [bnc#792309]- fix shebang in start_apache2 script that contains bash-specific constructions- small improvement of ssl instructions [bnc#891813]- fix bashisms in post scripts- added httpd-2.4.10-check_null_pointer_dereference.patch to avoid a crash when Content-Type has an empty value [bnc#899836], CVE-2014-3581- httpd-event-deadlock.patch: Fix worker-listener deadlock in graceful restart.- httpd-2.1.9-apachectl.dif renamed to httpd-2.4.10-apachectl.patch and updated (fixed bashism).- drop (turned off) itk mpm spec file code as mpm-itk is now provided as a separate module, not via patch (see http://mpm-itk.sesse.net/ and [bnc#851229])- enable mod_imagemap [bnc#866366]/bin/bash/bin/bashs390zp3a 1655192728  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxy2.4.51-150400.6.3.12.4.51-150400.6.3.1apache2-eventmod_access_compat.somod_actions.somod_alias.somod_allowmethods.somod_asis.somod_auth_basic.somod_auth_digest.somod_auth_form.somod_authn_anon.somod_authn_core.somod_authn_dbd.somod_authn_dbm.somod_authn_file.somod_authn_socache.somod_authnz_fcgi.somod_authnz_ldap.somod_authz_core.somod_authz_dbd.somod_authz_dbm.somod_authz_groupfile.somod_authz_host.somod_authz_owner.somod_authz_user.somod_autoindex.somod_brotli.somod_bucketeer.somod_buffer.somod_cache.somod_cache_disk.somod_cache_socache.somod_case_filter.somod_case_filter_in.somod_cgid.somod_charset_lite.somod_data.somod_dav.somod_dav_fs.somod_dav_lock.somod_dbd.somod_deflate.somod_dialup.somod_dir.somod_dumpio.somod_echo.somod_env.somod_expires.somod_ext_filter.somod_file_cache.somod_filter.somod_headers.somod_heartmonitor.somod_http2.somod_imagemap.somod_include.somod_info.somod_lbmethod_bybusyness.somod_lbmethod_byrequests.somod_lbmethod_bytraffic.somod_lbmethod_heartbeat.somod_ldap.somod_log_config.somod_log_debug.somod_log_forensic.somod_logio.somod_lua.somod_macro.somod_mime.somod_mime_magic.somod_negotiation.somod_optional_fn_export.somod_optional_fn_import.somod_optional_hook_export.somod_optional_hook_import.somod_proxy.somod_proxy_ajp.somod_proxy_balancer.somod_proxy_connect.somod_proxy_express.somod_proxy_fcgi.somod_proxy_fdpass.somod_proxy_ftp.somod_proxy_hcheck.somod_proxy_html.somod_proxy_http.somod_proxy_http2.somod_proxy_scgi.somod_proxy_uwsgi.somod_proxy_wstunnel.somod_ratelimit.somod_reflector.somod_remoteip.somod_reqtimeout.somod_request.somod_rewrite.somod_sed.somod_session.somod_session_cookie.somod_session_crypto.somod_session_dbd.somod_setenvif.somod_slotmem_plain.somod_slotmem_shm.somod_socache_dbm.somod_socache_memcache.somod_socache_redis.somod_socache_shmcb.somod_speling.somod_ssl.somod_status.somod_substitute.somod_suexec.somod_unique_id.somod_userdir.somod_usertrack.somod_version.somod_vhost_alias.somod_watchdog.somod_xml2enc.sohttpd-eventhttpd2-event/usr/lib64//usr/lib64/apache2-event//usr/sbin/-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:24653/SUSE_SLE-15-SP4_Update/2e6eb9a1975cc442b4bec0fd9173a375-apache2.SUSE_SLE-15-SP4_Updatecpioxz5s390x-suse-linuxdirectoryELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, BuildID[sha1]=8f91dfee0b2d4011c6b1df8fc90c05453e1787dc, strippedELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=4e9e8877b1578e6664eadc860a154e36b77b68c5, for GNU/Linux 3.2.0, stripped RR RR RRRR R R RR RRRR R57턦1 /dev/null 2>&1 || : /usr/bin/systemctl restart apache2.target > /dev/null 2>&1 || : echo 'Restarting apache (all instances)' # all instances was restarted, removing all flags rm /var/run/httpd.restart.flag* else /usr/bin/systemctl daemon-reload > /dev/null 2>&1 || : for flag in /var/run/httpd.restart.flag@*; do if [ ! -e $flag ]; then # %{apache_restart_flag}@* have not matched anything break fi instance_name=$(cat $flag) if [ -z "$instance_name" ]; then instance_suffix="" else instance_suffix="@$instance_name" fi echo "Restarting apache ($instance_name instance)" /usr/bin/systemctl restart apache2${instance_suffix}.service > /dev/null 2>&1 || : rm /var/run/httpd.restart.flag@$instance_name done fi fi exit 0/bin/shutf-8aeaa4fb1413304d7735bb3560e177fc0b302abbd96d3109a2c5d8252ec7aaef9?7zXZ !t/b/] crt:bLL Ay[R+5_QԈ2kZG(LZ\0#!`9/r.OyT*yF|-[  Tr}c=蒶Y$k,{ %SϠ\)JSM(25Q+tX~o@ mU;5tD;m&%Z-I<꼧\ڸBjAy8ݐ&qlqKOB0 ˱Iѭ63uT2H*MV_\w1k_A/1CGsj*_[}_/]nP\MZo?CjD{3M߿beNt8`06Q=^DV^QT rm!-*x??=:=([=ً޺ acs^Lw)H|Px"aܱ{Ja,A* e&&1c_BfJ~$6a߉(;0MX{҂p0~]_gnM2ɚW7ܕA,V*X]0aN"x^P3 +d,]`lc3nƢ[]}]E˱6^6[k Op 5 7pChV&YpM î l*6=-܋Ǔhg dOk i@!p?`Acdw ط|p 7=ےcȴ!.裾E$t)3!RIHRFa,Q7^U.ץ"qr^J7&m32wsyX/[$ JYs68_Vńfhbv',z+,Z''e_BTnIF6"Ѥm(d̹ύn$+l6f;0`K'~*7az wѫUM_j3Ȟ;z },*%kQw !Kn7 McCsLv.vo\ҥ` ؖE H *:# uۙ'nU(*κ56FOӁ/rto"QG(EAO/!eۧWI+TsP61!<dcs("މ0p$3{;t?l3+iyeNN:wI-ު X;X2+fäA|U2Lx»f`dd_9[y!ڪ!EJbOc@;X 2؜m:_4@[_ 1J@tyƁ\[üِB~4'{O}ѫ! 1Mkp\1zҵ| fHS @|7۠"f7g un,1u*: 1TVSV@j{\ٟ)$n]t +tDKằ11uR.N |S  i dǜX_WR5(MZVƹ_w 9|ڼ}a*[Gj\O%W 1Dw^l`4{Xd*V6lD͘a!J`N[ZA 1Հkک `iΙTW0ug۱&7Ge`5ChTrM=^!ϔ7b $/J1UPݜ_ KDOU _x@N"-_px3S [`)rGÆ|0 KDq.Ŝ4 ˈ/#g7}YpGV>RW,? HnNs9Wԏ&8 :ފAb;SP6_ƴpy(V˱ υ8&1X"2^S!d4l'sl/Ƨzns> `f6|K7f>/[ Q$$8=ANK) aQ.ŐNC*TG~kɌ9|ytgig2P_c(!}_8_X&vY `,8ay K(SLckv'ۥpKR|pM"P J~:!ͅb s({+a|ENg$)%>w[&?cKFc s_88!ZX[fZ2(dznsJ*%3U 0&/62HA XMG7' ԯbfK. q01)P_4Q:A`@:3RL oЍ퉱֢w/QF+|9Dfֺ;@.Ui4,g%Iñ(ak"b#DJg9 oU68TyIXϊͻ }4Y J9Ta?n=r_hJܙJX-LOuLI-AɢPFf: Xoο֡=;ignA헋6ݨ\*^' qW?s=C[\-?G|eS*Z?@rZxR6zKߠZ蹞q^h(>dTg~ERn>P@p64ըZ}tx6mJ0- &s;|eIzbo)?>e@vtexYNk^D=JR.Q}>|պܔ F&k},*C4k=+кnHE:58O!"PVYRy"fI#pN狇4&z#A3L在Dru,O m/L(hGE)fϷN̈́6zu뗎Yhaey_w ,,tpKn3g^C3?q"pj]bR$+AS%@я (!tY."eB?)`ga;G?ɋFޢ7h*Lg7I2;,V`bDST} )Zč$L hKN%˰+_OT}[ǎG4IƓ?f% 1wm; oyCVQl$2jN;~Y,b}o[EV7'9. bDSeџ)Tw[P ѻ5H=Ih6% .`9i4NK/gBV)5zb;v$ByMBU?ɡo$<;'#ԙtĈ䝍Hfs N<~-tiiF#æ`vBdkP80֡`ŦD\ooV/}DE\ .ڮδ@heI;K/T Wdx08)^4fw~PDصiogj422-eq~Vs/0m1AQZKĄD!Q8y,6j|5iprIG#JET*ڣԼ[M.Q#tjQo*rlU³'4]c%ӲVN[*>^#b*e_\"+G`z٥kIҼ.HrIń< Ň/jFF.iNMf` 1ƷQ;50 AoeQp L<Dۅ ^.?!x~P⡕І|y1-Y~+N&_׀dGDs |U hpB5\k4|8 ^t[RvZDBa]=4o_y-D,5|`7B皧?) d}$dgBLkWg;oN`'Iu?st;Eɡgz;^R}֧pxԲ.HT:rQ[;|q:+zvYLIWm MB ǰY2~|޺t2 6uRrc/ 5T8J%PZmKAqkڧ$٘9k2 @3;6ziz@D[ /-:%huX')\%i&B'\ΦJ>QTjW}5zYj:`xrFS/FT-˱E8s;/=v,dmZ|&.\IV8{2R tB )X6V kmZQzّR +ef\MC|,0`5PCV äm]蚊,٘[l % l!9OQ 4J}\`_GšߍFvuQ,|i x1 Ͷ Bng:Btv@b,? 0eH(ܴ3HN[|gFX3]u# /sp%dK3cK e y6<1ͷuo+6gz7,;`*lh]K+\u푔a-0+ 'ov!G o"qezmsP\\c C'(uy-儅zcMh HWŕʵSs1Sw^~,"NXtlxfZC"bp=5!qGhFo6g4S󇞝'fQZν pow;,z2E>j no^9Cej&mO+יQoj7^)# )\#* KUSZI< z7#6k)veTn3wAr!ۍiZ&c)ĺ5}hka.GHFYA88'C/H1 )?$B6MʫesIR CF_S.@S."yj~eǣh:oFGRpa+pf0qhO&@~ ,X[ᆜZg֨9g7Pj%vR\GU mff$'[Pp g}7pwLQ*I";l9՜3"T4|InG#zPR /I,c] n65j[%QWy|6>M g䍟b*|ڳ<~"j /VeH9&8 PIqe&I-<E?P/%%ZFÑaK?LѓR+zqb/K2*:j44LkxjY7E LAd3WtP;_ۂdcM"[0$u+-HbDUa!Rj% yIh؀Ko@Nbl2콤4s̨ȗZE7| tS߶w=бh/F5A3r/<h&Jv.p+}Α2J-܃q̍MؕX#꽒EU1"= Tfh6~kXu}7 dԍU:m='N|u4uf_PX Nؚcbni =oRj-'մe쀄?SZ_修Lt5²H\`k"?Er}٬g:*VQ@IPy?hrN_ rmJۆv^$bc +2Du,E<͎9;*Ȋ.HO $nke+snʈ}y:G<^^YjP8jnpȀ;ߌ2jcs%S}˷S͋53 CN/}k*$CS#<'j= LIj櫓7`:应My&G&# ).MWZF=_heX p6 Ib$_PAMXtC,WD`e'$6,A5p@ߞ6ϘVP",6@xe@5+D;f?*Ih* :cubAW!b{Q@:.듗6}Uy16O ⎠9uUR pfyuebSy$P08P62ţ̛Û}Tvv#8tfԍܬqWcʂ @մZrt#Ea=-&'TdmwkUȔa2‘X'IB{5BƸ[ & }e%ڔ[cm#_5'PQq¡0%4ׯ<Rtwl7؞45Wݼw_b+Wj"@q#:QDzDià+1Nhjp8T#n5bɠ$aƕB|;jե (Y !zq'. aLW&nsPj hMQOK Těf;֑zgQcD)w1y 6^qSU2K5a{J3:Y{ <\T18"JٯtѵQxoH> c0h̔t;)!`[;.eNfXn8 Lأ,Yz:܎-.h XO: 4BzOd ~,fcq=T^tSn`~pmg)ƅ&Ln(&rQ4w.şog]SLܲ=) Sյ9)`"jk p- U ~B_\0+&k,ivSE: P(g!GmV1,مhDT%5KF"탷&<*hp dH`]2s4.*aj3S,~SMG֊,%ՂtJ@tD-BP GQ\;2h94М K\T LvC>!-mYdGDf)LA{) .p!Ԩ?I!%]ahhbI^>ث iUc:n8;C 9b #s]*! $9!#!]=B3YV+>IGZ8t/*\_d|)± o(~qU9to"LVpÅ#IЅٴc„p|=׳gOms5T9x(,jR_0WgJ0 ͚Q+ɢlVV6lN6O8m!ޘgL2xp`>޹80i5F bx|a9X(82~_@ ]o)[1^k--%-6~M|\HQO'QP{ Erb\wrzX\$Ok*LQ6ua.J~@C /dJA'XrserZ<4ӥb[;"d%5GrW~ɉ0o9nyOh ^Bf)w@,H)MY7ްnI h&Q/+=:}aF H 9 Kb ǟ-ݣ>A[}/4YdE z}'ԌBm>VZWeAx-80!K q cddt]-F. 8/c3$yZ|?# ;>9P|c[@tqW50".H@d8^ZM#1g:agZܸ3Cur7o$3'%~2VS[ X.l^<5;f AٜE5fz?s.8H@ b9UqL19JಹxFM1[Σn3W5-n^W or-=CZ>}㨦d2Hf썢 ;aFh;k$tHBYn9Y_@&FKKpRҘ0m81D8"/6IӘIH7LfH_橳x]GE͘@wA@Js165 hLY UEyYy>,iͳT2ߩkC5a"TC[G5Ƴ&Y&#oO|0`RiGϖ_;ȥzy^g8 ?S8?/|+/UGbmwy SuG=U*KxLkﳉ$ڲi' _.*nD(od`CeEfWXE>K44 XK/C V&_zԇ@Z@:((p%=Ui:J?" ܏^V= xSEle1{ɞÊPԋA5taSƭ1cXfsdygZgy,Q=03蠩ڙ88*urHE^qNİ[+x9@?Ἃ`Q~sybnAK ,@):ƥ'eHCh>Uo}LCL]Z a, ݮVԠZc$FD yM.OY>[[cg[)Tv<ԧ?]Qcİҿ{|d]1{tɛy!Ceޠ͸83c R02Fu^Qw*-FHQ gŢ-ן5N=}y}4 5m*&-Ww`boR-MB0I6,zvkPY^9HoCR;:݆%mÎ';07ja-MMG̐Ư{ȰL5tkSgHpHNpwB("oȧ)N޷ vOOi<x4$dOHkTЕ 3R/aO׮$1K;KD1) P%Z< 7QJ[hJ_g.%$:2W]Ar2Li^B7eCwQrvM'c11Myfxt\oWy-L '1W^YskM@H5NʢZA?p7m@ܚqjF1,WXe3v"l5ϵR!D< oxv:Ѫ,_ǽi&P $WX8ZcƸ^ZB˾p>Wmwi_NLr,s/>OP&5 99b@AxC>HUPѲ>%! YkAV/O(%E[kP(;+Ceo(8ų閉I `ѤtV3aidS ߶2FȆ,9jUk UNI2 mR<_=DLh")2lmggub}t-jR0C?ަ"y\|[Ln/9f/ }4F1ӂK2'33hAUxgLOufyE<4NR,2z X1IƦvB4HwVjSꮍ3 <'G!iB%`)ۏ%1}1TC:7&9Hm1Y(B"J>"o*&2^9PL;Eҵ?< 񓔍X489dL[.U%]%dXF@qkQ5jybik+c Yx+VyEi2噺eKb&UߖRIGcUQ$dK>E`J0\qo;3%NsbpTMB<DϯIAj$ܿE k$|3&gRB |75$`VvQųVJv9Js:39Gۤ؏ƴ7`&{#R9ur(0#kR Sro!e n˳CmzJFWD<Ğӧ(j_ , $JI]|օ `]V_*1O q]6s!}x3 J _G1MAcLϥh`+,kQalCVe5c"5.._ݞzMε`r B$=MȠ[-'[KfDHM˶~ȳ &BYip&4hMU!EZD$φ(S 8xmxGUEoͫ$$ǶCV<&8ճFbQNJćd~ ~h4sG ќ+ x2d0w%H{ ?{UI0r`\4W60p*2 JgXF9%zxgA}HZi  v;ʺهdH#20780[cP7`88_'rlSxuR/ƸYҶTCةDTeB:ͤ|4Z d#tmLkPihN`$.,MA]X wpmiEMPc^5KǗ_uB!X Y R֞%Ehl?`MZƐ]5l߾]jPƸ>tNZBJp"R=:H,i3&Zl/ 8;eF BQTò_H3x^3=a2D4w9PvG-Ynbbnzz3B#3@TPAu+ AfֻP>\a7U%N.3JATݒY"{P&'Mt!4 8dN_NX`ں-y3;,Wf%mn l] F&]lszXT&m\b薄j͚)5:=KK`n~ .Ћ܎OfA.Vj MS^3e+G+49 "Y 0{(Ynr 5D'KSp  ޓ uELbQēU1Z.}m@\P/&FgyS7W{z"z lݵAra9G&l7 aJ]Ȉ=0\ɝ_2Xdžygg5[WUT+ҮSFk_i$F7?Z?_j!EK#0?}oC^|pj"1[ܝD%D _Hx[B]vSP^z(]8|be @!Ú='ۇ@(k fyk*aEcSg{{\<8o -L< lh'KI8E$uj1͔ juF 78ii_g2Gl[ 35\20 ︀sn c@b&)準R`RCFT BTS /0 sS`tR̾ 7jf|PlK'Q/Tܘմq ;&J,2D=sB9HpY7('cWzC?{LU-P <)qܪr}' 穩@O5'ٹMl|bܹSg$XՈ+(_m+K(qY9$`o+GP*(Sγ|X fpJ<Ź)|<̣&Kâ$g%_+ALsl׀eޯJGi."mâut^ -S2yDKڃJr ,,1Qy-Aر^\N(@ߪDъ#/97OR4Y-ޛWPؐ:;$Rͥ{,MDOH)m3)jW mPaf++S '1w"+}vn^'(5+t~J/Ⱥ{di[ :ևds@A3 .Cāa*ial bT Ƴ}pGC6uǯlqsP.5,Tg],V(5`ׂ-3ZJf)1I%.] -\C: idFŗ2͞qQ++P0Ю>lûC5T p^_.šJ&+-{zuarK_m/BWhxMex•'d* fҥ2hݔU=T`k<ĹL)c)n\/Y">Ay`}¸59[8b'ZՕ,/}k/x|D7OT`e -s[IF(V%%[3",\~[$Ӫ${1 `о`R߄2OQ*$=?ꜼD mI XM%Ak)B+ydvfC,ZOe=*yˢh< 4:+.2$I%͔[5!"O8[A$z4>b4]:h7pBE- lo#n'9¯' 矻ެӀJ9Cuqzk+^&aa͊洒FP9O~P1S5Q-wMۯCw$y6$`sŹ E&@xqb}sw/a=Tin,WاS1j 4ߥ6˼3rt6R/~DsH\R7^(hp6 U|ӎ-|T8xv~ FmyG !@+g̨:+$&JY{[Y8fE7;:s羝DTCtߴ*Ga1AT" (;(lj{dBD9knf=mk`t!Ƞ.Pڭ`&5 LonEB{cn1+^59H ') zYDcMt}Fbfు6t]O`Kup֊Q1S, >5u8/ UʥrjR ?JV~@92>L瀧$|Ks-{#k%t(DV45jBYkig&+]!.Tdp8KZKd?=|ЙY2ڶŔ Z*M02&zNP;6X=6L1f$[+G @3go$ Ԍ̓lga/懎;k׺Ra#0p6 u oXlN;$,?ѩ̰ly?=>A-F?e<<,$xHf[yKRx jSwapB[2:^ts<p: ~8l9X\Z7Cpk<ߤZ8$2Q ^l3#ąbvA_⮷tLT 8 蚪sQ@^E䎕ygmh!ĵ^l.y+i$,o0aSsH=}q!QdO1*t&&rv!P%{T<ȡDutaPx39x-c^@Pm썖K *{5t*BQ;uX \:[;|%ϣƧ5-[,=0RqoO=J <[2}1 ã3Mq7 @cC4 # AOĤxhʀW;"}3oB}}2FEvG퍻 wkJ>I E<^&ڤR,,>eΝ Lka}(j#D6f$F<ʅx>`l: #ٌbDGxr_0q cIkz5D:̲O2MfIG[:션|/]:!ː)Xtc;X= 2$In:B+Qh0&Lڦ3U3%w6YNP@V.}(|ajt!EPOZm`)Ob/Rc-=s|ObQLX@"-!zɿ)MU4:5.Q.A:1Nfgl$q<ړ0"H -[Y{TUٶz| x>}6j$"R{24~]$Ed* 6:܅~8ɽYhoKL윾=[^ߝ\qb EDub!X>iJD<BJ#^6*)G}^Jԩ=eCNoJ2o_sh ׯ[W,%Aa^,PJCI߽-1 ?F_d[?]с*+K>RJ$eRE~Q+i~@b+J!R F ݄6p T ` d3ɑp3h:0wOxYɡv)8X'#AEK+.(A?f -6Hf8-9j6 GXS:y4' G z,kea=.%<"}d0 817WBdPuHګ**ƲdL=yђ8phC7-ytkù)]ͥ>P[ [%{}߇:oZ@&RVc]yĿo+0!H7|%E|İڐ_ޚLd7qu!24' b /llT(Q6VF0; ֶWCO?i_k20yVMB=$J!c[u.0oƐifqvx\\5zs)u5Gԇ7VH T0*ԽGe!Yd=f(E?ulxxy'F nJ|O'zgNAxc*^M}CYwr2\u͹.KK_͈$ ^5ٵ㮃J/ǚ@#ӭݲO;F`yY[8D9cNl}L?pN4 |9L '; h;w^q8sʷt[P.Hx'gAbhvN;v{%zLO8ac;K*QS.ZJ?@e"Mc"xSXO(&/pEKv_-z 3~>-O-嶜0.s7HM⁸ b^K35k;+rZurtl{Vş-L%=M3l|H\,J_XC~I}2tʽ!UW]%W';4xa\#"Qkw |-653X< 9C$3]uS"cR X0j|xK.}]J,zeg}>!uq\A?>9C5L؀Sew$Έxl5mx^5n=$ēiϳ]yh əá2GMUBpkQ)ERiL997Wy7h?Z;WbUǫpZ4;EOL\Ex,4Sz*Ѐ!Lk830W0#ݾ:01k&<,BTcW%QF9yN]dc7^FWoe9 2#qB_;Oҥ{C9Q)g$xj tKHijƵl"WrG,IJwH3vy 5TrK\ ?dbl5YbHNo7#Rxۑ bj XJL>FC(-CZ_v;" yGf a #ؿǃڤpS6T].4P@>tD:!{Bbk#h=d\`p0fetBqbc@SD1fXj?+-y!? AŝSA8ˈ>?h,?J81,;{5K'>uio2pCp9_pٶ` ֐2M:]ܛ#@;ċ]HFVRfA^ԋK9ۂߥ6J|)-k ТW&5Pܮa*x9" ɧH P 7b\">~F\]xqqo!R/)w[<V_R¬#5as,WQhuwȝe7`y Swޮb=8i`X ͜JȓՊ%=b,cR0 Jrژ ?mg =XL(ecĴi6GU:[tOIdmwOC-MHą;؎gE<>U=eDĞɓK0 #Jp²Cc oXxWD ֠없y,ՋqG3:?рUA *&'-~mE{C=(,kf^.>M8qht;*^4m͖:ߥ780Xv"fq*#͚γ )M}*W„~AQz1Nu?BSZE0[J-wʤ Z% iWqԏ"GπI Wgj}T -6QnH(bXwQ +X8`ɝA1J{% UwW&!EKf +-Cv[m!ۈt]#<a*Rw{nt c/O s%EoMC1dXeSߝb2' _#fQ oZzM?j3KV윚DY5f,rPp+g_w8r4Hgd#"?'|3βG_]Ѥ8z09!:UP8YX:>n`k Uuz ]<]ff1|7Ȣ /m}9^p7b~]ɛNk@`,ŸrJ͎ɡZdzs3oǵ#.ȏiQ ^m;)gҿ`vcCAlj]Ї=}.t+EkF?;YF/o7:L0DS,,\ت%_ޑ}V;w'VE2*}}7|07 ۝o!ӫNyL` -8T,زa2Bq[އ`Mh݁T>~ u|O--Tׅ#&*5dhСD|zSpY #MQ ;&pz9Gx5 ՇQK%{O܊ YY q嵧{E 莫_N}+vT/B&H.@,yLwb|%~yU94?&E |6>Hb{;&#:Ho^In!R\:R>ֵp`zGQsXd߂?Y 8dgk ׼żlW>«+vG`s qXf8hvoi|e_qctˑt.l/`[<;xI.p*2@J+owO ,!'l r=oT".NjyTRKYYo$k^v{];7bi ttfR(1({+{KI,sFJb3+k GW@D [{[=q!5WDn՝V89P<;*N fُ[rImF,u46+UoHA?a?%0idۼPu5!`,y(ZJӳ|U}c._$=ؤrJ ؓާp@ o¤ƤEsݸߣ|9Kٚno>hIN:mCt,cDe.uS+a.|{&[A CT8j hдܦ-K,ew~ш͐2Bޒt˱paMh u۸ rLsmS-:Damaɍm "Y)f} #^Gi LM/jNp^)Զe>'nyhK_< 9zh0[4(qvBBg!z;r.{'˭C4i372|FZpl)~ FWchE7u.>~lenIIJŤ%|>\"Yt T,(opNm^[—`b$j0jg:m&B_*4p]uݮ@H,c348 bԯߎ>s; B4~a%DǤϠxIoݝ jJI!c0$9=W?]1`pNTp7g=dlx#te_xSC g|I_LjrX#{F~{{,YDoA)S-*)FCr"Y $]v޻.(3+%᦬Q}A5(%€e=4!LX)T| y)ΰ|jg]@TpzJ\TQe0'gDU2ZmI(re| '@E\3FF%7`)s_ ({h!?C׾TrCPqgLFN$iKϧ3'@&ixb.Q.:{ЖI՗laM!3Wof-Pʔz0{!_agHۃ؜3Kq@QGS ͽٓǶ ]k~rd^5xvǶ_'sqvM1Ȣ9 q~о]!PX2E ^=^~ƳxؔnhTK־+6#(z<~O}uWTb.``Ĕ{u{0ƑvXyN{>\0|,7m U -{rzWz*!fs55[+5 NoPfH#{_4b aJَ]cr"{:*a֩Vbpl,S}p?pK7` YV5U-rw7Lg»%'?}aX'Ņ5sO &0À}+ϻjf ֓iCYx Ԓ>89|8U$A\&U3EKrL+w,"){LLgf5lW52Z/IN؛hc?B`r|n>+ꭵxb W=,*ȟeC/9$XY{;&++@uvD&k*\ajt5]M-gR v#m b ˸XzSK.Xs 4 ; :d!6s0|sm 7Dΰ'_he.;*TNKzWdz-qw5P[؍ Kg`tn}+:_:0AzkP÷gf2e¦Fd)O/’yG _ ê9²@b#֫.tĴL馁9y&2ʍy|y"{ge`⚷?, ԴxW :bzrw!XX6E 5yRYĩbDpu4}a=UvmGXPg:#a~XTF̕TJƁ]S21T$~~Ew=΃woC/EL{p`;%7=yDOaA(N&tnlINVL7  z NI&p$^T5BIx5p,UxƇgD\Ni?+ˢB ]# qFێ,&h\1$H oH%/B̪"Qd.>I+o/&" $^%K^-T T+wуhzouI7_ x?$t6E XCmwնסK<FK_`NL${ڿF(ƴrح'OJ|1딲[η@/#63P#xӣޥvHQxm};em?lwKey! M~4CIN۸jq{r;Oam7*؛ 3&]0ˁ1Qנ e37~$FJ~;OVN rn v]V+t#^<]!9w^`StƂ_p[vۡŧo-@:zdS7LG)Ö́㟊B"wl3-=̀͞J. dQh(3^5¬qQ=Qu }$?(Y  ⨍K\ZAA]+x(JMP ϫ5rkn")]-ƜٹG XȒL#nL[Qro1^?:32AiN%XQwn!6ƾAx%m)U?k2Xp1+СZc#UE՛>xjl!p@;@[ Ir s@("/̛gp=[52;IMDf@x./! e}/*C[Ȑ2$RML"l tR]4H4zرhH3UO4p3jטsϳG$wHQ=G)k:[NiCao)--Of̯]4Ea8*a/h4[6HC2 'cj 2(Chh~i4Y1~AǑ΃!z||UtC,.xn4, STNRBmvCz (oSFʊ}gjdb[_|<1E+L] E 'ް\踜 keLe$BTȲP MF.8I?T7|F!/B)6  H0VC׈U6=:9wG0ƒ,""QWK`HՕ҄3G'̇sc`HmZٯ@C0= u5P1T> sk='e" y)- UGYuXKpB NdO˥@:mSz p@pRNVK 7"!Qdꗟr zXa7WyﹺoD`zIӰ$cx6Ɩdg[33JE>m<ە`b tIխoBCSžFPAJ7k܈19HU =v!ͻǭ.Y+ 1td?U2L9axCV$:݇Z? j15(TȗElʟ>V%޹0=>Edffb?ԒBJmt_h y;Z0΀ 48JG#s&S=i: _w\Pd3/i7:t"6 :sMv1;QTI^}dde(=5@z VGSxg /W uvƟ 0dEZΌU3U+u6dgn%`~!P.)?(dO^$%o1!{; 0qDڜe\z+g$ $DgMmFgA'fetS߅G: @+Gu|]7{b L ,H\L.K!@JHא@@BX^/ I7/Sxl%ڋG\(I盙kߚY=QaC%TDabR&|"5G(¥Ґe!?h?_ al4,v+tdVM@`['ƢGݧ &I;8D:q-K2xpňtUԲ8q$kِ=ӰR|aԶNCVEHϠ%NE YL G}O/9< e,Ͱտn?|蚼$ پ3hH)2لW'E(.yJszwv]u_X/bn-sa8v=mc~?2,fn(H!. +ļؽ?Tj++0Nbct}6vqģK6ɿtGw$-b&W;̉E pCQ [͗d؟! x% =Y]Fk t+I&&dcǘn~t}|:5=ny9kɋa3Ծ5`3踇lЭ+ͼ UpMKEg FRpWQXU!1׃n"#]&8,aArTsK-]Gz._[EmXB{oNePcZ@9Q NJ 3 1WigH4 U@VoIvxR xFWW"(? rXIASi`k]d03 qc =m{5s`PHb~H2u@.[Bih_wzo<L E\YckLeo|ȴ71 tyH.wV Dh k-,ĉ˫Ps=K|c|6 b1Õ50.,B> 'Zw.p_8kEnQ/D )X&<v ,ᬣ-4#Adtm>mF9^hEUjO7v%&Wl 3P;J+,{ q79diSIm^JFuba~w\ܭfr]r;bxu^#*yGǀ/to Ccm c֤6o%2&y|xA r7^{ܭ84l~UX\ -D֗!V{`cK3X]76&L#/;ߥhػdƽ Kև R .0?`B=%т'vr2]zY2w GY]=GСgL$s˖ɴ;OW"c)s$6g# XO)w58VuBWt EP1l<В1I{VWv۔ fT6H Jtd,v8fxR=\Aezeg$ϏeOg}HHLKZFM#O7s7G_u;9B@It BhWEL&!qCfpnjZ>yDžnAW;W0}\Tt"Y}jP66lA#|53G+=92&xzoXJE+=+Yηo2ؒ 2@֩"ibZx|_61bY OlT4p.87ERG:pCGA8W0* wUGv3[*&@j7ֲЀQyQbCRy++<9a&lQ è/W#Bj@U!v?Q5k!R?eۅnyUFc`!ӞjKrV{=aYJ" hOZOml/fwLmbNΌXnחop/tOW0G^x `%qzT̶]񪑘py*[[Zv<@|Pw'UQ&ுd=Nb"ZEX&q|\vfճFo>3_, }BUfUkKJAZq'f=a{(to-qd-()B21s.bF(\x%]midF4M.Öi($ aa\CoXτIrA'a~ 4 uB5\ d`!E,dz (2.Mm÷Dc* !&ma \B9C t>/GU6HiӮ5O`TZP k2¦zD PDIu'~`F9?"`7l+L@O߰c2]_CjjS͝~ڔϔč 'Xk_1zjjL^7k$M EYE#2GV%)0vkQvn@4z\lLR.za9n8Ba^9:BVs$!B5&Z`mÑfߕ]Vgft'@;# rt#*]7X#B_rdHl5ӃJ/KdSBN1tX=^O[i8 4n* NGsY Um_n>$3_H<팯 +]_,t׮c5D!8(Tmvp`ߵ$͵w6BtK6z©?2?8ft~j> '}4߈ d5âӖ}4)zT,WgM{r:Y|#/.ƵDd0!;(ȇS{-_p#d #_nKx) +UJۆN܆[SdӼڠxj1Xs%&7&;}FEçK7&.B϶Rs $}Kx1א)"GgGهt'_x=ee d̦F'`0M - r[ '_b.,]`py6#[ma{)l|'E7>"%a\U~o^)f2T"QLNV` %OUMF_}.k0*nE<kcz!Y9jl5je8 3XΈ;'[u`Wl܀l] cVH[_1d6-&w% vڲ:~TrTG%^JC|@u[lg^I73cXs*P)0+J}LJ8+Ub ; agn$Xs^kiD[E)Rۭ,MM0`?t,.¨-;KAڻ{ ؜ĪMlϞSdWjb?u!s:r|LƤt XG?e]*l k>ʌ%;~.d>AYuL?|vI [E.]P(@} ^AD 痗f`"_McZ8%SKk=fomAUʦnx&P@婋Q@{`kwސƔ*?.mrk}q ta`k#gV$&0J}JCTM-2NK%W9( D`׆*SL䈋^6V-}=C1aYJ?\,kJGhɸ VWWD)7uW5Of\'ye^+L5ay}0'{w=-jzIo^:IJB*{+_:n5 sflWvJ0<>id8uSxF0}Sa~I`p@b ~ |P n̼my~Z:#ܭ $d~Se5A#X%c w1Y0beWhG:ZU/s0w'j&WEԘN/7,~edG24{hc?Fz4 QȐUMrTI-f変'*_&ZC33 j +&(9>,QнE-M8lI5T:cstNn7W5{,07.q JI*F'k]Půe3$T,]hb`rJAk3I[xe_77GvXRdvɠb1 vڱBDD`Aʸ?_$/IZ6f$5uUYjq綱?'#{fB6~A@<`T5=pF-KJY9 n'Ac!wn)"hܢ=(VBOXN[T뤹YѪ] ~@hFALcZDA+o-{|85ΡMu[`xry>Mf=yqc,톃cDw$訔Q1k*[Z<C *Əorvc,wBhN d6QY,Z6"%xBN*ۡKmonX?|Qu`S6*ChPi `,7e?R"uGx'ozpV~Rbˤc|Gř#|=V 87f^ \CW{ݐ@~tP(EDG;/eg'%hV?4aٛ3tLM%0ond9/KD|N6t&x鉺{.C B;gAӟviVgg'evJJiIԆ^0C܌}e8Xb@OԞBj)'éew-@xy8@2 ʓ}+JWΔ*p@-9 gkk6")%΋s|)Y%JP ,oȝLRMh(B")'oİ i%v S޿g}KD<^8585_2j^\[UZáv%y¨ۏkbkl4S%T ^4Ifp s".{|>/\Jhܵ߀[ O? {,D~hx}S@GM\_ z)E5wǵblG$i\~-AŊF3W |){qȧ} )v7\| 3 &cpB ۄd$M}SЬ +]f=vQ[ MHO7h%W+P"Ji,~{BF1Jc(6j IBrg0 3"-+B+){tjKF剖 [qH˔]wޝ5l /,/@eo'`#EjogLZ? /4iVd]=p#|L 9 B7) ecM>hX q4fKKF\5ʄo1DYYx dvOhh-c_&$SE+r]y8 C==t@*ݧe9MkmEe T %WƢ -#C'mdd/3BI)\M뗵_vc]`Hzjx j9 gh0zX&R Qị]圀3l}jټoeѸt*kj j'՜$kOpʊ?&>!,l%_:̓5>v.au\t롲6XǰeK$3w_!GG9׼qSW-:m,/PfT!Hzgˀ{ PfߨG@D#u yM*=ogaW4!ۅg l3#-րM,/N5Tc5^Ru>㹯Ed_Rb5:Ds Ԃ.y㌂qO'<ӰX,X7 CDŽf՟;ynL2$bcQY YБ̄NcSӏ&S5U N(r&О[,P@; ,CZor.9Ҥ:☋ptG΢f#qwZtĬsUMebyVfYl94Dt ¡H҅Yt͟X=T>}.-E`y Ot"4cWTCK@( OU29D n1Dq[^)R%O$>?J,ь 1_[&G}j-qs#y 3+>#Ckgl6ꠕ_DŽ"Ԧ[I6\Әhv1Χ80.mxjo^Gaƈx뮱zDdi`ι7ggUɏPz bx޵qeh ,loh1(;B%< 9r9 _<.8ӉWПC }NQNsW aR57C=;Ӿbh8nKr%Y}i{=:W߇պ[d:OvQ3 qZvD!"E=8ӫ* rd1V??;QRJ32Ggj(j-y}9<Mi&|mdZ'Go֟^9Yv\|~]|eąt{Z!^,G &v'9OMX@kiKڻu\AT(lbKx7K$mT~ ᜛DOlBL3%$dsC5Lc9d 9OdqBkU39Oz\Și,xΦ=@(>XLOU~XSq>"1f6vQĄEQHր=5kZ{1}a".19AM].,U9+MNeÂvٕe?fyFԪI$` .WoK᎐k셎ݫ=A ڋ$K96Z&ӱS!|ZYo8^nqQgʏߜna݌eqߑ"W_#k"|О5eB[ʺC֕y Cmꦌs%!tW&vXv&Wy|Y'`*Ky(PU (W 1>gu?X1ꚢ\,YNff)ln<8*C?[pvńrf SN1RoeZ擲aj+Yۖ׶/HEy<~zbzA |؈"4UQ^Y<"qYq\\N!o % ~0g^W4ɖjB|It,?=e OADA:MJ6 _h Ʊ%Fi%Pg\&넷6f,ow+Eu3BaRGo&euE컆D#$BOOz˩Ibm0Lb$@U.PcU Ř B;I 8sn%l^ $H7-(wpz'-溾5yǛSkqkM[;y\kޯ}n{p'쏎 @rHC,smQHNSTLe0 7FqmߧzwY &l[FEr!}rw:YԘd'X3ICJ>_=e츯'#/Mv#qIa_s0Q5`2L1Swí{@bnDߖwWEHB:1*2^@',8E&],&ry'n2߀! q f̧@3 `Cg4A{j& t~>XJ\H]^t?Xk$JcRxu==vW|fCpa)qӞЧCF7nQ43y3_-:1Ci;FVS(ks|9UV O6k C<:Д.,b18U$6q7Қvgr"?ۨ}ő/Cה:o B+㺤|=30fm9$R6T.Q~[-1z1N0*J#ܹeLafQc ()1e|VZe唹L!,h,# &Mi$e#eFnx;YT D ^~fuaA|jiw>jt8@]!{NvJrq^DT̚W/A"ܖR9̺FL BV $j5J-Tg=OIX’',2ʒ Stif)Uˇf&~kUOM0q3!.Ŀ5l[ʥGLʋL>˯} 2WxAJV,c" Frm5%*hz4Klğ'7s -HmM=I۴`|A;:lPfr(LN\pqaQp\^itWq7-ݮ݂D#4Tb ц1o?(fwAü+:YrC3k[/;"_ I[eIR Po_Bf?*1QH# ,ecwWɟeR+) фXeDwqb9& ,GX̓jSXQK1?C(D>.7CKMn˦YI-;n< u &uXO%; I̝[o7+xN_>(_4iD댔b#D 9ǻW*zk U4+촱)O{BZt2I滴;x`ZvF!HJBd@{m{v=7.LTtB+ul^4Vp/ZU "eWvκEo:޵F4:|OٲBI <ڔ95(H?b9dTGm($l{׏h ?WXkE )sl,fNL0 kv>[S"umbghZR:CK\h;`[h}ӫʴ.m{tH[O(WLc3nV)UC";E46?>Ez*M_L-E/345L!Pg-Z'TM--Y1۳:R ,1@*ED惶 LھUX?ǐ1󠞑:meUy*ZԿ9I٫'t y{_g ~($4+^ZfA)@3"3~/uuT|ɧkc钛oԭ) f|qb2Rߺ=8Fͳ+#d(j*+_7|5I2Jqo >Aďkb@2N"В7mۼa!&cr' ]̪ g+Ok6_CQҳ%I&<c+9m./\9|GeV~;w1ebY{.9p`îD\ C!~ oF 0l_ZP^Sn7d^el湁5 vq8F}bMwz_5$RhB3Gy7J ĘѮ/ NQ)]\=_ѳwc-G335^y}ͱ̀ *5^渾SMh4jY Յ:2Ȅl CenMT|N|U{Ɯ2j#T;}r|G۔SۥUڑC­tw $z3`(֐E8*1+ڌUGz _Zďm=2,~&XPDq!D!E?^ dxЖz+պimm|I%$oĜ90FٛK3)h${.rTL]Qi4~LZpGq;?@4 qj$el[l0<ؕ 9ăH+y&=Y, wU`s''av\@%~b l<@^nIi^梬E͹f&o'u~t !n"o^sNciMuVHߋj&`*XŜHunj eže_|(FOBSW.VrYS,Vsy1`Ő-̊o9nSUG.fHס2JJ+_v)&"sZfzI? oF1? MIJό?ʸDcFBtChT!$I3-~EuѪϸ罨U)!)~nT-ȷ-^vXݵz &>ba9C! "!\~l23 X;E? S[Ş\k50 p jT`D޽Ie3]fĸ{>$8쎸s ժFe\ᩒ4h7ŽuPF)v#ےn{2E T?|^˩fmT0n3܈ jYV2I:8Sif7SۣYޘ`]ॕk&cu@ۢLOw5O A0k̩=@ ?3!&% 36@|ELYKrx639?+ -Qw#Otޖrx@((i žBA}J9yd*;ˇ INCV/20o_xqf3I}ȺK&ٹD/QY0B!Y, TjzOEQWZlIƳ :c3B g^v֘-p6Qm)n7~dQGʏjqd1)g<\G؂u/n_vzg)ͮEZ7t ׃~ ێ2;Fv.ˬ椼4Z OȰh[ow<^@PKUM T)K|]6ŏs\HaGe'6 j[G8rOhϥR]tMZtQ*Fv/LƔ'}~cESv$!xֱ]҈hwBBT-df<ވQ'[ʼnM/acYnhQRO<,pnQWHT(Љv4q@@ҹ!B:R)l@]jAfLl D3O=C0H?E/[5m+2lDhz'V9Fw6=kkm`d0oT4RRqCBuD?&oZ"CLד5p`8R.&D`բMK ZX^%PDt91}g9}?'4f;tXmyTC@&2R"t٣ >'){@7^aU`m_5Ѳ.E, \ڝIlg#IذX<* iXʖ+q!N2 #i/sz'ZWn8 <Ǟ5R7xOȩzjknDg*&x<`e/,C)b"CoecsS;icżp[Ic|X`98 H9=-Wt!jסx9`!G Rp /=7 |SH]_t Dyb5Z[d- 筟[Q؁[dkR<ݍ[$0a{qǫ<OJW鍹W03ni-0n#NK|гbgQb;=KdbĪ(G:R;ٟnvT{UkoY.\"pI@ =v]Xp@=V Yu'3.?|a^F(* ntSRZ;Uu}jꨰ;҂v6\;ym3Ajzqem#m:*FS`x'1dH$7?&`[xҝT9ӿF"z%|CF0ҭ[ɍuzhm_F"~V~gp˕Esvi:[+ 6I pS3 |7ѸKwc5q5:7케֊<8bfY9xUvWA-Q)E,3eoޥp'cV`0FeOLPv6h{AvmPmAs9]!2p4t m5Ix!$;0ゥ=2MX]Iw06DĤeOwH}@@.N\ j2cr-mIcV_ꊱ%QplhV[@&'9'N#Kqh, D, y)3tjق|Ly|tj_ߚ#UB? t&M⺟O]w xרp2 cCXcF r}&$@VmOϒ?fK#}̆Gr`}5wE$,rǷ£ya#$!0:.gA6t;Rg}߳ yx8Enc9=MؾS:|nAC8:EF#/V[NuoD5w{hs}JZ5:QYj$.nq9z-d#9yBQ@/r3L< L5ZjUZ,M#zŪ/ OR yn&dC(-ܑk!R՝ŔcC` 혮W<ysEw)¾6KLZЕ/9mw1/c'wQւ >l=d >}p@oɼb9M|x(:g.^ ԩo)gV)=3᭯y٩Ʌ+ּɹ%&JY8vΕaԵcmX?.FGeYkZYdh0=}xw`_ۀdwvkiWV7PDR:lӛlt[6vMLLgc`f(FR4~A8B}h(ChB¢وs~9qMwأ^n}ew4g9q0LN t1.AGzE~'! 1i 4䎠ć;+KdpRT∛r3Q ҏ-D~Rou̱iyx:|t$Z5콹b-vc'A"PR'Tpv~[p,6`< g w /!)L#U}&O`Uyܱ@ʳ-y1(Ug rI*B|d=hZͿH7KLJͻ߾]Dž[ aBQ#L8Y-BX'7 ^ @|rw6vZ|hʛaH\-t_/@OQ*WvnUd_;t-L*6l.f6;I' =$#X$ќYP&2b0$s[=Kzr"fգ(? 5i Ê"L|~yELqFb vnf2AӸr-ɶj𣸯·Eqblw n/᩻C$hmaIꌐ8U^d4[4mCOg $Y,w ŀrv6g~FOGDM6Kja#V1V/"5xdަ3.'"㜊O&rgun@!>$D`IKi+4Rl$vCU)Rx/;j| /8gzlbӜVA=0ec5Ruk_TL\q@0VU !"W5?k_."߶{>ϦTF"᫋>T5&yxˡ-ʩ '50Jr< ґphu*z"C*N0^ K<\QpGnzWTPf{\Na*\t\dQTw_$*Xg-Bד)l =i%9tT6;NbPh]oPw!f{z][zɎLp:=i%őƗfi@_%SErww>& |'ݫ;mzᵭD|3]#a8,~ -kD)ѹDʡ^Zha!1&@]L; *c"Vx\P;s<o PijzJ9wKRS%Aj ŪݴAiuG-:[߇ϗ ]j35 3͉K>#a<>])!F~O)/ 5P^:b ^ R͏EIZ{'Sc4]^1Ff7/ \2=ZxBگU%tfamx zkO_6ɟ=/9AF!ӿ8o%oJ̳pv :@|QI}J) e0LU5e7zϥ]^O:q7m^ϝ/+ת ֱ c\KdA}]cK@JבiOph-HlӒ?/rO }lm2;I(P>mv}g5g 6,y&Rm&HEe;TXt#[NhI]6Ӊ1))lIjӱ6(9=&\ \߯ .uxsUm϶9u*P%(c:~78uBpл*x3CvF_78y:1▏yxښEō=Y`aMcFgǬZ[BJoO{">&+069꿿yg6QVQ12hhEsqVj Pp? IRF/YIĝ"fj"HkH4R $7C6T57}q.ǰB7O>m/Jn"i8PcZŨtC,Ң{Pq^=3~-re9C;j!^gq4k 7fUI2z?}t܄#eO)o{UEIH\\#dQKeȃb2{d|ݨ-g2 k.j5&%Ԯn$UnlāaSjN I#^d,͓#kT'b>Ai-r׌e6JoN !n?3h e F8Xh'-YL2q&F$cb{f=ݻmPEI(l6Kec{3 ֓ 0up#Fv Iy6'(X[hk'ׯsV-:|=OEo0g( a8+С*7 0ҘQ_un,BԦks鐦qmS d~)W^| B<\E4}ҟA2gȝp׳<?€ٿ/278`>Tt]WQd䶍IyrB!i I3 3?{dĬI亨fEx0@O< ;W t[ ~4f`t~F晁nvK[\ ڭxÂez0NK# _pPT~4 xV!ֽzq)c~`š[f,YB6^a>79ܮ@`:T]D6),!- ("nSaбN: @_$[jjx1a5w^[dJCרzXb浶@%TѾxgSC`IPk`bL´+3 öI1[gJ}7nUlBX"JIsp #&_:3/֟и%0$J~2k@.+1<)@}B"TH,Lc^E4Dq%w^.`Uq%+њ_Y]>vٖc2q"Q*sۓi%' ȸTQeWVUzrPuڄP,ڶ(04&l-HV_Hq^Ǯ\dXxH7GpL)H`'1>$ER;≄OSbxhZ?ýRE,X#蠀x0NF7}_Ҡ36f=chVSjlvw?R]:E>7x=C F2̌_s-T1 ?,f66ړ8 b*V)< 6GY71-2W25+Q|}1/@ۃ8eH0嘌݇XxO`%8r- J%ñ7ÿQo[f.H-ofႋy}MDr mOm䕂X}\-+ nMAShM 9#acE*s2L nC ;n^xxOA/Mp9p?DyJa2$ YwT_sB < ~O='$^zvjBid;̞]ֳ8}:KѺ VeDzDBhVMbb)b9E5 ":: opS_*(0Ap'pM Ro \\S*fufv7N(\MKzuA ljВ]bIylF1&3[~'ѳA?(|PɈ޸£mU#.}Lb HBHͣLzzƀVF:g%pOECuP9ܞt:71=qMN%aQha=oZYz0<{L #CU,no >](`n6(*[j Q|D%n$/\]^)cU>m Eq)kŏLsŏB6\-!ϱ'?66Y6Jq"AZ%N¯Kz֦x.D7~u%Rs&M?Pk!P<$J NҺ[jF 0 esؐu4m ql_lL)'$ nXͲ{~A;9g*Y+yܣ"e- ͝YF!9-Tf4dABБ;j7-'E/g}N+Z;-`ّ6ӭfnZ]%W~ m|X3Bn?޼#'r Pp^IY!:f &hǟsh2B *_wk&Kpld٫mz݃u0vӦ{=0%j4DE hfj[s劁ACe* eL,Y h4+V(BP:?+RhQڹB%\2<<@j2̓)yr|ucyeQCG ]'GZД"^7a_/"*tP~YV$T*E\1o zjN_>-(cvFalEk/jiΑ;RY nD~:GJ^L&oo+|i[+LrO.sE,(_E3h(9q#&cVkDyZ*]y< +s=x {X0)t*\iQ,/3WmJbotF2}(>ӄ9DEI.OP$szIrK%QDӮm*5%B/+u12U?DjNn`c9Ldr1kݽa /L+LSÿ˙j?ѦC6'RH6UARݒ̪3^I$ 'wBl7Ӆ%o^=Ε H3TfK5i+f̰om3Sl-0[{4Lb7)gu:]*SאEN o qÈRazITl/lW|Kq[jR#&nRV̀z/ FӏS[;:͓uױ)4Z )%ɾ gPLq5̇F=Mjudj5rߓ+Sy( KH{pW߮P0dcgY%#E$&\DoG%y-]"Td F+-ՎB%!MȚhzwN@Д}0I:La{41Rٲ|č;;)oq޳ܱEǤD-?ބ y4YQ;Wy\naaFm1vd.G(ȥZXg(Jl NjLm$7qy7 =R+kj2GUEhHF=.lk+tx1F}@P6rϒȽ_eS0ZMn}m7ml&MN] T";5͇nȉQRƈW#vt*iibҿNQ޲} { Dt}/O rFq.ŗcl[r(q) Fy*%LAS #3,yߐo3רQxP|!+]xwn'F^ld$+(57f hTљbS5.A߱ iᓍmisرemCjurhYj*qLtLJefR<ߦpN vW+z_)}Ebi pq5~Un,,;498KL?0**9{dݪ%GTHc4|kLS/*X3vqRo Y/Xͺd d$mʹXl3MʯjܝZp"E8x|1_r 90~20Pt8ǧ2YpCOZk 4E5u )2*E֔R9o-A#P'KI~~^;\pHar^V&<<xp8R?W8Wb|P1 (s1!ѿ58Ί4M;C*eGק ɑ]9{I^A}Un?(va |z 9NjC@&Ŀە#KVNRgCrT3c[(X7Xz-}o*й;v!m:dZ`NO,ը{RWBkPZ } k‚:y@2%й}_:(ܕ]IҲJߊ}0r;}bMs<   ȺMf5τ"+`WcӢhZ$6µ'#3.DZej%reL`#XYUzt\A,JmdVa:N l+gp_6Ymex )pK# jB;c,W TLΓ P5P-?!Vq_rX8ve#bpz~LrMd(ǺV;U^9OTjbd?3il9>=Si1/&AEOe[{]xy9*^Jܺ*( jCSmuڼdt@AaQpFEAmND0I(MQߗL3DKtj5ՕueIrʇƮºE6,q{% +a*%RR2,TF!N sA#]uRfc`Jl+ g``:6GpzuٱNB^K92"ԢQ8CD~L! 𮂺jJud>zꕚo.=&6G78}{6"w!*k}) Y5s {o`OwȖ=p>T|uPKKzһ8p[PvHu8 ucU&`Lp.ـHx2:& [EU`sԕPl`7̚ o5#KZ!h.7#[T;>Vgul|XR)¿b*Kj/yiNKRi8EXƷ6ru*i^Xs[2jk bo* 8WY&/ɼ1 Fщ} [yYzj2 Y;[sȪןm!5|`G:@!F7p%p|X\ݽX5nC4p BJɀy$K#ګ{z-xWiq 2hWk dXTUhkڸ~ J+Wo1%L K#]~k=@M037S\N*{ dW?T B@Apھ\7NM)K5€isLQ@UD1ݠK+B}M ӂͥECUЀk^ h>4J31|7,!+6ulsU8}TBORlDPג"Kɱ.W{Xl8N<ZG+@w?F=Spb=ISn@Y#]Ⱥp˳T}ޕșvMS0g+jy:UqU-=:u15_ S v@0ޥtz_r %FJ&HfCAGسC?nF! qGF#~؉Y.V|#|`?zuG0hۡ/A Dr[q v-wšR4M٨} tVMqUu鹴5i_HvV@oT\YA+r3oJIYЎRr_g&DP?iS_zsg?J԰N80:Yuk߲.}:ڮ}DBiP|KМay@XO J/-,zp0 of>b]_yP& x)@ Gqo"j PT{ɸDz6ݨuN./{[ ^=\?ew]kib' W H2Z 0Wa{" j{1mOyd4l鑆2g# { ZqJ#ruЩG~ Hc " o4:Jm2ȩvJֵ௴]t UsLAc@UR1sF@$ 2u<|O1?b ѹޡW焽V԰PJ9$O 6~@08}JzITH_z'zȣ(?Hy}K$&SXq G('FJVRpӟWObBzze7-zWn,='e/3qOndx5QIGN$ofh#,k2*ݰԧ6+LJxxس/F)|}FV2Cg{sh ogȔ(4*R8 8fC)|xF=tzvk0rԅyަH¥sbB[# tny)&G6].aL<*VY_(uRHƮlİS"bO~x䁉nDM)q7Tw3gơW6f1^;Yy9|'S\j6F$_9{ rT(A'eDOPL#:&Y7aF3\yM~:I}iA:M#tYYD3c³.yU#$qo 6%YyNUh*{Lo3VZNX\p@Y<Lr9|caf߷nǁ6 7E:e 1x&E,;`֬AذN|# `C?>^$s~1;41ls6恵}W'rz}ܓ04O?\˕(9;#|{:r6Vk8,9>RNjFՔLlD&Ňdky{`,NؽC;3.8fRKjh.ߍ3;7’pf 4._U2L>3:dMߌhkӘ,~0iJM~$lIH%>7Mϔ ")vTOH{;?NkEd[* Btq6!#l{| m:S\.&2F"w$_%"LGotαF7) qq%P3l]<%.Oգ2 !p$O|W+FN|(=g%\{y<smT)e239n/ cY m8[V9)|o&eB{ >s 7+ fknMLvex a\Jq]m5Rۤ/(ݓ;Yߺ\ժї,G{[ \P;,6;'u ^ -~f8#ZW1jSj9F -Z;8zH_Xf)݁q'vs'EqXAY(,tڃAWSOe5&LSV%QdgU BZ. 6Cd]!SЛMߋ=WFjτmlwQJwK+HD"O"#Qf5 TV_})jeO1KkRᆝ6 jgV!ᖱŧU>T Ho'=x1v_D,!!p 8R+Vþ%i)'zE)m5  =ӛ(lrH@ .mkq'?9 ڮ94!6 ;X[D_.%b6w[huWd0C1TbK7 ^O/h xM؛H*A_t[^-RKyk-q%e|9A ?/PL[ݴԳ@*1 bcৱrޟ,wpەnQNcN hx-aE?:3liJ hsmٟX b[qQpX*Iݰૐ}ؤm\<> BHv0Dp>%= ͩGusonjz9jԡ$ޗ`ܤ~1(윿d2gi$wC,Q(Ԭd2;.5yj˿+ҸfHo;z8>@йNmU}y.=YMݖX!BVbU{|ތM\[G᛫ (Z-⮩MZ4HNڟraV(OcPi,l[&Prѯl'=ԇ' =w1)o\z3]J FceB֑;ĔGFcͨ/SNSqgX!/-xH$ Bgu֣\vxh2+pSW!6dmWD UGip=K) 1>g0?Sw_8Otꎸi@Oڃ> #0lxtXń}$ISs,8vƆ8|)Ղ m* ~^VXC" Z$Z:"˼}z#bc]TxTN4!n.lߝnG5C0xt(QP >bIW- 4+q(=&B?Z,Rq!i~)%OES_`6n)6QݏVDB8vJtMwʫ <-+<ǛMu-3iV}[cD'8SX=Uu3|Y5YR00? >b|onO,/jG֯ݺ4q-7]qmdwanB/'iU fy)1°VY7   pDX[γl@!%J=Q0ࢗչ))Yc#Wo!2cSp(qkt=]}BC/1X$5٧P9Rr_KfP'?ɜR5W@5kޢ/k58vP2ΦуŸXiGFJnD\BzW{aˢ)U9`N`CXxpB`PB G썘쓂XH$cUDLh >q1_XDy4Jvw ? )6h(?[%?`ri[Pxt@,iShR̟CräAWSI.1{<(FIV t 9gjÒvjmy:N_uSmL̓ ^/Pn-=YpV\ԞQ0.85/k+'q5PXe8]HI*A#*USk^@F6Gv^[ZNL U/ML19~Uyvod"Q<)kS|mҋO76@[©K}sMtgC~gX|\!?j[g?r)JߝEfӌ [_I~!?sp2jw؉F6]j\̬9_ܗ#jƎԹ3f 6u($r\( =9y 3,0Ḇ֝u~`r}DP.$8A>6oCi[t1ǣ6k'Q9xzDWP]k#xCEhNXJ| %Rth2ǡ0Y`14igKBFkH6C&D]OGaIAE &uVwQ~PE2]@^oK ʹ6/}!ʣӣj12JEQ9Z+M,S$??ϨjݣJĥ&\@˅i7M7A/  ܌aA?4󌷗ĥoY ),~T:FGTdϑ|Ks@$6Dh.m%* -:8 }Ph`M~F WRxxP͈AAP!{gZnLK4n,2[&T$AO`d֠4ŗ-5&/3j(=hHS6*-Y-°#vis j=T.>nP{4|ZQ+u]bV^/f߲aE뜧鬯ɘZxĩ&h9;cԨF= _ac$Bݷ?,,zgRq; \x{ӏ Ģ']/o 8h2D9RZ&T!HĒ_lNJ./jfDZx:`B{ D1;*^2rj]=MϿj ]6Q uMfb JN XO IKgsN s/ݧnWZS $VV,f=8S`%CYuzҭ R8袼mZGB8_gw$6y{IjB{`{aw^!S{V%.k0EL[Xu217yDh0Uk`T ]JMDuТrdhV}JQנ?LmYQܿGE_曍ZA6Z6>{-AY֖h#U͞ʨGi#{Ҙ ɛ-UvF\)cT6Z *b^5HӡKp}Xe 2:#jĉZpv4#ﶈueL2tbr #`qX-,6Ω0oǸ߲ѱe yr0I[n. 8pJ_9\ ӽ̒VZHsg@~;TqOoĜ7*u/ZX+zX}t2S"Eר1Sh]MKĦZJě2q 3?B^SXIL . b5,,'kjýW^)#̡"(,Թqiv: ċi(ЦH1\Kڏ%'0Kt}fDke <É뛥 -mW 685 W%T>tl ug)w_8DGlY.@7G xmVv#RgX~4ȨNJpf4"ѫWME=tAAK7= ʨPBd+ti¹-O ۼt|+h 'a~PedFyM7:9`O_';,YrTZb`dbLRSghͯ[򠂶Ӿ}컍OjE6&3Z^BOJuaǍY/5k-/Ը('܊q_G 5i{!S " y!YF*mVGݬdvPm'ƌƂ+҄گbXs,x BtqvTR(^k(z{b~f\&rgVGC.Z]Am2,wv--g)`^;Mܚ@kyv;f`פ8@4Z8=,,Ѓ|l,6d.&:lѮ\/x 5 "h.")f5f}N^ئu?XtUv3OyRdd{hssh)g*K5}oT&mJg{ΰg˺o&!"|!;m0v@kx-B hhE.КrLvAZ pEoZl`bt!4B o 'H`8Aؐdx,AhSqۉ @t^no:7LR VJ]MrDs%3Ay~iً>{W{F%-cx[CUd2FCUr>7Aw*d%dX *IaLwƘU$ :d<ZAe+4 y8[vWDJ`/bE Z=_1Xm[-!/A{E#}MFrx35nFDS*J_iDb=nkl+%7|iińh$ދѐԓLK'fXzy$"+ M= //҇rtmw>)A=6t,x>ޛm3Km,ǫ$w9#`X&}a9K)%4R8RpsSVGzGVB s@3nh {g1M.a8=""c#GyZ8 ET;(M24%󓜺ׯV1#:Ev.˅by3Os HBn(c1m,xH- D73abJU_:E'TǼ3oe ©C'EWZMGaIOEv.|R({iT k@e5G࢙'rۂλ k&rKh-D~= b| azZ]y}#쵞~%~xm&U`J(}w`(にcu.@ 7`ݑ/ Rj=lwy*Am͢=Nʁ}{0(0۷S"2Py / ' z>vuy~r6-Nw]BK2ro6(ݩv;]:"|{偖v†]jFM"kXdj~W-*ԼM<@bng E I2GeQfL~9lIh4ӓ mi*`&ߪ-vSZM4ݓ>;[2`\)6b/lP cpBGp}h#~!1 _a>r>3jI5\}~ŕn+f]pvpL}66o@*/ Aɷ.hc義P&><.ηp-z`H׮F:Z1]pc(tm|#!6Z HEs"0"=CnuC-CE7at,>Jo Y[L `;G>{A4pH}K$ q֨Aά^-*BSa-Ftaɲ;e\6M[slw]FfR&.)t/^ 稃6cbc ܮ.:[TG]P-fxEF̥:(d3BA]~'=['f1&JnCZCoY9#o Xĝ]sxɳb *ӂ(*4ܮrU 7HX%T(qmȲAōȃrݗZg2G5E_f3̙wHWJ*STE]ݢo|:EX9]uL'/PO`Ы̇mxЃl^=(KwqaZ1G0L8+;$LD߷$kPH1#|»FTS O![Q(,Dv<~Q d|ېquQ#2!r-Du5<&vM6vYs|&J.Mwhv["X߹W'WIET(Jd|rG[霢X67r.hIj'{FX"{5Ⱦ`mɦ!uL;D:k)dW%ީ$q2,eL+|J}4zff4{{2y0p@m_]y{b UnTe[*,5^+ XU8)Ȝ!F4F{%Iukv5L@u%EcYɠ;>?ȕjEaL5j`JuC'^hp@}?b}J}x< dUԸ,_yZuC|Y, }QqUy%PMƎ N0@PdS 9w\Qۖ6S{TcOUNb-&8ۤ'Rۘ9`Tf %V 4ߋ3szeE6H߃m֜Vٸ,pZ\{Ƒ_p z@e mUT7pUH ]rulm6I\dTsm@ <>GPiedGN B*Ku\q(Cօ_Tw83)EOڌ$ƞ`~ 1Ed$0]~Rm%>[z. J8[ yʼ>[S}S"zSA2 +bH~zm:mrbZv95Q)=TzIblk3Xbs8[;IxG#+WϋZRI9 W8`mw!2v,J,j2s$b䆚|Yq>'ךt C > Х~'Vg'v"7:P=片?P1 1 `rwܷMG! (oNHc4K.W+v4bG5/ h2Eu9ef59F1V2XgE)cmMv&)rq{"{ $wY"[{9dpC4OƽzRIg Ya2.,{"{]=P9UB$h0kZ2K /P}PFs12C)K~K(3_t7DrJgUO}!ԍNKnpS&T=~0$#]ɡ˜f>OS`ԔsD{fd:_U uHfƪ=AFXZ!+*zI/1 C'6oG͆xt#Z3"xz4l+ KK@yنHHfƪ gϴsp=b`dWLNbeCKz"*a͙#dJY(A 3vӧq8H}&7|:qpI+);84iO0nH],Oz  6=,~[ڥ'MHOɨ]¡sVBkc6BǜQxMܠUU+Ksw r1ŷ 6)Ɖ_M֘)[0RSo.r1Zv>IeP:h+"d9W[VQJ舛LfWBG\M7exʝ-ړ'ድ;aA1Ո[zLt Dyvi[*JM z3Y[>$W|7ہ?1!0n`-@> ĵ;eW? :;#0"aF!`Pm/UY*Ox:hc-T8C;0>>տNb 3?[YwGLst_&.+^5/RVJ@_RF'vliFz=vKV#{$`6S=**-Px74򨿇 Zd֏IdaR"̞gkʋѷY?BMؽ5uϋH o dWW<>HćԽ)EUJvBM%U@ BlF\+.V~dQ,!D[ M=`2?LkD=4DơyU֙*wEfw4߀'O:xO_Fnuf&@) `fՃ*%DuEG{} _9RL(`+Z''?4ah?5bUf5jrLF纺7]oRE&Cµ'am\olxUK[>֒xO%m6'=W>'#m ?`oFLÇ%}LCc'-(FKpܩp8Hb;O2*Ŭ/Q†8V8ț8I^(=i3zp1gqLqɗJ@m@;sUPζMf\G/1 d`9p,g6$Fƕr?E0DϽm_' !Al)}#a-R/%an%~BmߎP rl#xsCvdָ%6[B: N:D3ϒ09@_scNǟp,|0 Yϟ\Pk'?E5=r GB,!"q}.s+k#)#;ğ"sN+!DaQ,Q&! qu9InQ.f(qF2٘>i#Ws}9 adnA(b(d7N:^mQ- %f>$'N2džWfeu)@lbnģGIѳB=Sc3C`ߩ('H$b>7*ۦPO*u($Ջ#BX0O}qd"ٹ{Ayr[zzH^ހTfebO}lnDS޽Ќ^bVy_h,ԝ~;j-7W\ 8㸳;vmEGrb/*gBxؗmFV0l{v6&O &, o?>,I=&X=lg[Pѡ=x_q'ag6_2K1,< (4:1[q5(=q:Ö/L4Ex$ʗGo\:Υy5Si!/!Vo -Q^y, I^:w n%\%լKm1D'ݫ]sgf|]XS1'Mvp o,Rъ =nB%VQsd $s6CW#I~bLNv?YY-aE4Nn bUTcX޽}^A]2e((~qG-" IT1[MWUNޛÁwõYK}٠|XTe[cr-CT*KŞ)Iт NR|ED~o(zi2tnnbkf#T}YEwPeGު+1dI ⼵Nqk4d!o);olDe%HAhv }^YSbd9..wd*|.Hd W_4%γQص!pi ASރQ}M`dQ1>]yď0Wi<%o4G4v ܄}vKß'UT9t}ܩ(# !uvm){dy+sh\;tEdci1=UzxG5qL Y^ }n&=I36b.Ʀ&n:s)+u78aM7š~@ko_ϗs`%,lz1ߘS } l(ifu/6+ŤrBͅ-dZR6^EA^KJ4 6)Ds'в]ip/*gpZ 9TuRp!,jgJ5H;៲P"#ӻ8 iWbF.)%9^ie ZXٚ*Ѻkf 8p @Lj,?TTzrbI翻^t3k~RYu절Lܓ3T$f]Ȼ㌶e9IJ?^mtڐ!#p$*3IwͭV.R ي!qukFlNGvuv1՞kUɂ1x^4^ZKp&ƭ8ά*uy+d5⢂30΁8&9>|8nTO]ݵ kC|#dhq(i&s\7cJc$T߃O#2ǃ]"yPI)2}'NN?Q0CGn:h4Qˎc[Mfyf<~(r#jz۴;} 'ڙSa2^(aK]2"|6t_3xU3eֽe*{`R;=ʶn6wk ? ffXi=50t+DH)1Z\W2J6zmT"$u$'7f1#ƕ.&1⯔+LVM FW@IQdOzţP =juT\)w *) U$}^Ahe\}l-ے@5?N)$×YOj9.=U< %c~ -h fc(z:F7A휛Y BM7T,ڿ/::6WVB%#nGV0c/`ٟ}Kĩϫ{y8rU'Zθ)0apZ!G>CS79Y1 . Sr~dx]$GQ%AŊX]< 8ŅJr豟[\[EfD6b [ •yz&Mi25*bGQeZf3J|sx0U`$aӅy*BJR|y |ʼ=څa8%RL%mydRBڲL^6D] lW?e-y?7FɇHʥnܦUhCB&[uZ%Ͱ2d4T6F]k ڞ}0S^P[Br"I{!>#K bIQ*q&V7n J$4r86Q*]RkZj>d(YҞ(|vhrXH4-ͣʼr2>-3'{r@-E& ~=}[?D5naTkD{RQ 6rs ܕAcyw9 LqLT7x15 WM+X?ps0Of#y BF`H&4bU=:_=+v2̳7L~ždTXgn!:P͒e('Y6qc+Û^)Wsc6Z0ÐO k(./gJ\wbgܯ;匲"RP<{lmD1N\:GM\aт-Wq|JNߵ lz}51@GI4!wv\_6c91Ef=U=9Р)~|SD Pr61HZޮ.i\)]H/3ծe k٘pYTQ427$KV>aޱ~G(&*pfU$.K=R,_YÔ6 -OKw}CYq)zݰcZ;R: f/wdĥy> ^ł䑨i@h4H>3Q29sHS,g[7]`KB cr ̺hv-7~4ɺ*x5y̅_uΓA!:͵g$y!2 3'2N2?MW\8V rfm$%* &9>_܈XQʹ0Y},ǹp;(X-9,IǑdgy,4a*ٯ]!cUbRR<_T\JC84m`jrâVMX(?2p7Ό yg<hgPИzJg=<=QEK2D7Om2 `g^+aZtg2[6<\vj»!Y7LyOU#222TWEzz!̊ñ^꫱}6=fCA啦9} Gz[(G@ :SQmpkx劵>*5([^pv >Î8i+{+ YYzTA[ F>l|{n MmƝ稰 OE!kf/Rdg{oLgz(2)wũIio9hFjZ}I樓h!|gr]t7|,u q%7^cW;YuFUgdD@# ( 3H}=k'd m&4v>!hrbpevYqCɯg,  &ScaBkzEf[6ȡu}26~9[d) qi崪>~,6;;YIɆ=Z@k<>];JSb[+C WQ<)}DQ빣M]BNf*x7k; nƸ+XpqŀRP~\1Uy_WSMTHS[֗,K_jV ෛQZRe ]b@,kxR 7jr9'A:H|d٦ﭸ gTa3İ{5dvG܈٨$O'!fCCݚ%B]K;\uA֌Y/l n]Y:Htv]!1Ŗ-kvK!k?H{|įž C+{W R1"dF`ˬ߲ "yKT^F/ӓ3l9sL*{<_IȝxK>=@abtuA^b ;>U(pW|3"By'lLZ3jhp܃͈ǒڴ-?2!"g*bC`^d @'1J_Z+96) H/'(;k vʙӹdM|6:nr3r(ШPkx^.`d%3L`Ne辸n{!`õ'+7bXGG[p7[`{t*u@v|԰̙rCбg.kU/Z?&iÂf˳$e;#~'B-F7و0DVr7E~͂Ig " "K/ ! ]k'=/rn6z_C%]& J95YV~@r hTLJ|be6=UNXߏ  vK.ok(WX"SVI߂@V&ًL3 ]a`I&XDcYWhkpe_;#k}r%)a(Yr?_3I k쵙6o=/ 4K,2-ML 5VԸc#n1a4ٽ۔@+GMz# sN[93-uEMO ^~<|jGU?̐!LqO εB,v[ IpA3%@f*7^!:paIRPʃ}4 FE)lwbʑݦY'nn]e؆ m( @ /y"G'4YeG?%NR f8?I-iv`vBrtio@:E&ԣ,xN&E\Iy=橘jY>?qXˑFTJ,| Nvz2Pk;o&)9IvOxmITl;NmBTUo Y5It+;L zbRm( Ը^GlL(TLlf-EL wg:QZDh>CF`KrU7 fu  lQNFU,Ƶ&19]=eW}MYl4n<]XHw*b۠ *./lAV|;"TR n _ѵ}7"`}y蒭URVHf蛽:HjA^!1D5Yl躡5as~GVŏ1 Ssvw4]V!h&"j4+3'ߨ,)'WuI: vi*{qSD3nx4%n>7blVI.K z{W'vQC$+} 8e$BSY*S!աUgj.C]%C70_ޫ m῍?h' Pi)7;G_(X7-C50}{$? )4Qτ% =mw;qKSSjhgnLxx{6DxOFdQ%Hxߦ"}Cy{ S2(EmN9EPd ˇB]^p+]@RB\AK .3TB{Pp7"6pu[ܻ4Pn.PZ?/d9ؓ`wfЕ:dSe=0oÚz..ȝps(Uu F0GmЮA:\jir'JgݞHo{o6Л T3I41-E*xlxr{W"Džw8…?;%Jk"CeYuwY!`ʗ Hğwrmf'GOĖdمϬ1+›v^< a)W-q^zb!FfO+a v k"[ڼ;#^тS92@qۊ (Q3̋ )GN%BytXEfF,u ҾUJoHaHK _xo-lT?5MB QDe,RR[BcYqTlW}[ hz^DXMk>.۹e!% M;LO&):GrCHp[ڢBm)yN;8!?Ws_kܻP ̱%e6^f𬝲 ,]ɫY8)eUi|Nm wb` T0yۜ.I|lZ};Akowr^(2\u=/%V: ^Rf0 5 E"F{|z:btIry.Mw:nJ~Ĉ"'k夝hD^4"o~탂+u],pIϝL7whCh!<ڍ+Bhq^f4RH%U \73=,sM\OrN ЉiMOjcB@t΋(C@X+uև/T X64Z ?J  JY: f4̒uJn9UI>jP>U.8^wdxwbQ«=;Rq(]AKOV Mz3] Ҏr)zl^2:mN&p}S-ї-^zU>˗'jw)6ۣfE'IA`]9 !R;v`kݶi ҐWvpkB3:^8 sPl :c?nkFEzy8q!_ 8o # Ѿ\&+K8zU-9"ęd1Jy-`pch؛wlssu{[5Lozы$LjqdE* s2w7Zb^qJNq][mI}J_]U[QVRM3/7ߓrOk|!!Ӹj|v"o-9 ?/bWl<׹=+ u^#a0*r rKwy$hhE@\MbH" I Lfad8V`'Ds|N 12Y*{sU4V9?}an"Z:S Iqu_!vꪱnt}BŨ4[{)6Z;]07BaPp> =,ɤl~cBHZLw#Q]807hq{]Ԅ8fNÌ)&%EQJH7:* r< H3+Aa!r[J)CK1~R`'ܹa:LeRߞf)d6YCYRX颍]n,myIN5H7M>eHp38`35gP$' RV>hivQQ1wFwy\LQM[ /D,`cy͉%]wMc_ ێ^Kaefg1!. ҵC%#6O͐s\r6{!˧DcZKȆcI ꖌYI)yKY.5 r?|X93ZVVwu jŕ3ݻV,4RhNLGC} "BP֔<Ş+N>#![h;W9>q #KхVF~27[e ^Fšѿ&.4]"mtXޛkAh0#W\lbzjnvKI,Q/ ^f(c (RԻ/OYF{ʁӉF~OR r -GԴ Q$X 84"34f4H ^T5}|gB5i[8UN2/=&#Vμn<;-me{e_JkqN}]y9lqز~]5+dNUф޲i|9+l_zq1n#F~# };UcSLaÎnk mAd2uHD푉zh1yi 7!p a*p2ɸn4=R9f\Gati,㔱y5y.ardO>х{-`[GIl D*=8- _zZvт^_ZکĿƑJ/|\:%*s} dRKڹڡtʛBc(pXe6Չla/޳ԈY\M-zᾋK&]hoK4d-.͒&̉^=:wDѭ3XpjW~Y5 kfJ6*sD.'ו$u?'`#G0 ]~c٩+>x2gk?# f ^]*iXSh, Mz`r$ MuFX*0;}I7Sdn:e B8ӌ,wWW|yJF52 V ޏ"c dV\Ǧh:D$`7,m|ԻϬo`h5ItЂ3Tm/S!::7kyXX*7E Ēc7V&uz-܆]xK|vy/[C6Asɵ3!%"K6f(9?)vy0ZӲ^,22XK"dfw,[;((gZ,=}ÁzP iwK.兾W U˥ś&{$:bbfiۿ!YB[D?‡jnt8@]c 2*HEpKzSN\@.n`uA3,/$Ox{XpL_t#/k_dGAr'(6BV&wVD.!LB׋Z Yv1$(c9$5ߒ"*Vagg̶IyR{k_`i}J/Ŕ !v1~G.ܽ_8^ۡC?x<\A>Kv>A+ }8cO1+ꍓJ˹Y`O< ]HRG07 X=#OQWT+@y.)^l]4Y[\u^MM#],Ttܔk a E-3= {\=CrnGc 5QEg ĢYoaF1t+["9>ю2܍y򰱽O?"(L~ڣ] Ptot|"a3\k];n|$BN+:bfH @۲fO^!KS0}i 9dw=AlL{7ʲ~ G9O'\7T%x"uHh렯gul.rF} N?u;"),D7r 䄨6K-`0ILw8^cBIJ^UK)ajJ30S%uXΩDĐv>h,];o]nnrfK. 3yYxsPhiPe2ZW,텯?| 0bbx6ëSqCQ9柳ɟ7_3<0Sn4R>yu"nʲ TKԈ/7o b|0npթ}j gYK;lJͯ t ]xpo  j}"l,{/EaJ$GV#òv.ܶNK~in1.!rCk)j3$I(K QPmi6P9 1 e=.!A zt8Z-,NR~^24@f xef,;`P#Rsn5I 0 %mu\{BW!Wi $+H,6/;`*Z?%z< Bgzـ i2F{ K\xְ3z~CMak5,rJMPOC/jN\^N2{kPY&2qb]$).Wڊt}XLzJ…CO^nUͅ(2yyZCOn[G.boT&F& ) $?2i^M1@rvdxlZ ķٖ$HiD>"蠞`WI6]^Fxi[ՅZ1YfYC{t6Z[ ažDQ2wv!ĺ#\F\ ̐3 {Jvu ;Lų~=ٌI;֠Jd,h[':|sBTr5ב'YNl;Sדh>g Ns"&{Y)_erkVZA/I`yV9u[BUEi&~CIA C\*ħbPɆ2tU&6xnl"5&9yTTRV`eRr/.(,р>UFAA6go*!PJtB:ywtnGT:b!\D[m'QFGv=+CA!)g\@XL/vp~vw%:+ fK鳞Y ;f OQ!B"-X#O4YN>4-%N%^ܟl:Ƅʘvom4p:mf2V 2RQMS40RS\{$M/yU%rzn1t5V;QL&ܠG?bkĒ,Gc.ڼV yG9(-v^z{a6G+_}8t?vDKO"GŋO彆Կ1G}n'4 8zw-@@c$FDt:JB=`];PmeITޠtޮ1/we0ÔA߹1cC{ja g: [_CQ^y;Bf 2vc& V͹f3XN[ug.%xtyvU„١s2{ޖeKcи9Wᤐ[ҿjU**8[SSiŽ#,`v!NOBC76$v4-0 FoLX0\ fU~1דn<HOhLA hݽ>_vHyK ٥^q(nϢ*?ʢ61>hD%}^CAuk3 F~UNXZb;Jq˶@z6a:9=b0n)J%$P"Ik+mV=tZ.gtM:p rblkL %C b6q\4 6  ;BВHAԈ빽K"K[W<b7%NoBvyKtO+lԘ7RvAG5 % H3?`82.H4E)&ç gHc`>#30Z~7VdrT(m ,JN&Go5V 6{Xk>x_]A6us]$Ae6b~ԎϗWx& %coJy{o3ݑ<"gnT;5j!@swJɋ() P<_vaT: ur"6)M#5QԞpN|g* >_6(ӏޖݭ~S|%|*+C)8̗ȯĜ@y٥Ar2@ݥ\3Sf$UD `zB[b&{*w|KJ!)\0GPkUAVЖj^>=@pyAS;>`)FdJb|nu2N>ht%Ғi/zM@2/r zo^2'媅L >\xjl-YzMЦo/\Y7 _QD6hy+ uLڇ5f;M9DA$H&/5cX+"W|O&ˊN4u*xDY8o.$5FQNGbk)n 'B D09Fpqid?$͐l ^V<U|4ϥ;ejTiCVeݯA<s\I1`GUcLЯfDrV{;(c7>t{7O$BD \ier <=hvʦo(zYr .jK`6†d0 4[DB!sjXlڬTӣx]FMWʻy,? jïw#y|+}y^#yU$6şuM?I%6Bs1Ab Df%%Jrm.Pf@7 ]9!Pz7 Ƒ{~D5{E|R·r7b0_1sƥ;xWIi:VߣX|md덗M{paEyr@d ;۴R斂d{Jd+k1׼F=;MP P.eE ЃzKS>VKLT}Vr]i ۇ1 Fl-!,qki|[H`7p~x6]^C4nnw2if L^^iO@ lx$2x;h {+xtW]d.[SV zӉ,[Kkƒ?զā=rO1E mՓcOsމ5j`b:yQfDݺ^ #jw *z6Œ&*f XcÊ!mrlKl"i69"FheQC2=/>o|_X=:˝*0(ēTY0enuj7]'Dh#ɣYԍ;?5 iYՇm0Saup#q7n_a\{OL1z2Im]k/4YYkyoXÒi^7DTΞ'6~G&^ 70+2pIrv'o}*yCti:7f#F4st!8Ι!,?Y|&?6;`+l'lU HG%5{]\\WRuЁ=moF%BKe7K<x" Ot 6p1;*ꟹE޼d'⇧{Ff)5L؍w 2ı+Q_ɚI^ \WGbwrW6966 e+%x үfe [G0"Cs*סWLY"ɅR )BJͪ N;4AH*`0^kiv-WK0>z;"xD5f\ :k{7jdt*v)Rv9e_;E#FVu3˕ ,F6m%cd}N:htPCX < #)<o%a&RVvyCL-p+aS!,&ƈ$1u!W)7-ԃ#CKj"YPj jWϵѭPS hΡ,kw CeKo[;(cz!{ɂ1<[;Ub^{Lg­ n8S/ȷ;Z;o|}5]΂vqu&گ+סx"Bйo〱5; gsxn"!)M'waB %gOdIy8'T{CS_"@O5& 较,v9eX6 B?s"y- n%IX F' G〣Ռ:󘼱H-}㑷ϗDv,ٙSײ[Fپ3M]Or_*Pxq:MKJ˧o,Jxa22[Si_ʕy˘Y̹i`6@aO+r?K[D!8A Ǿ!%oL/#&^7,Io!e_.BԚc"l|P )x}*D(lw5Lʂ:kӰeuIoi,KM|v yRjd[uqfNmcG喃71$@f+d"ᡷ!~5b6]B1֋+l'|g~) FtTb=\3:FCQt.C,4Z=LK˓03:RtBZk pݥrs7+ܧ;O =pËc,hS\MRǻ!N]7 S5vlx}|BZSQ'v,(GRrs37sOE3yb18:1Ŀ;oA(?~f/?Q-~&l0yyQvspŚBTVw]J3Y&,kWx&Wې:FsU9 iRc"E0bja $x[B ŅX4DUEHAÊM{ʔ1pw#&_`ҧ#LχXb{EgTlu.cE"6(adyNb%c¶4YJ LV5ȉ8eӳ rf4}&ttҵn~}Or&YԖГ@^``'qL 7/z}F vK@v{TN1]jy1-=̓?l*%(Z &vȏājz_K'k @dLQ_ M55CFe?+U :WBuȖk4l~:zuG54xFTH{s[/o 8 J}gS-E/ZKV4hOe׏T4m׈]Hp ]%S/10>[S^ ܴe5&s-L`??f"4_Hp͘ՉY6T#ܰ%+}l4TZY9"h[-kdw?XJy¤vw"!!&KE{&#БGFH; Um@@}֝l0m˳eU\K8qQX\ r"K5tE*ٶ'L%DoL.j0mt;wN6Ϯ߄z*{^e#!FF-E%FP5$掃a~BܰޱrKw",|CzŃ^{=&+#ˮC 1;ND3e43 8NϪ '~PگdQ!˜F߯7́{^}@o]6e•,E|ߔ[AغJQ4P|/Vnfs(~?Y'aBD8S0>6wqZ)bզs!G]tfr⦕a!O W.a^ #82pŷZ`5$xŴ2-khcfOwRek9_yֆ6$h3n=s0yXfrjI)XL sI }BwyJ qQ|ݏ!n21TCAK4Ӡx9ZB,xZ=~Om3r,|{.f-\ͪgچBq x=~e%=ťY- jsF:4ܹdoQ `Ga݄lŸH(}=ǧxj-\)im)y1(ѪLIP U<#+ܜrXf&!aGp2۬{ۚcq%1xNd:p/4{ii3O9 θ-hf|g''ҿq>rWڽcKV `.{UВpCE Wt9WNi_4 QHv6oGjS"gn*$+98gؾhŋ@['wǩL?1b5E0slDIAsNep| X0!&O!R$}iO;==]GqqS2mjK uŦSs~ocfڼ.kL+?Y8m죽|3z'2u=IqyX̪|Ax~/%GSK I0EKɰ;"GkV #V>,uۊ{9ԙR^Cކg9# ` IxfPi}}e x ߣ$~? vĵ4v [KJթ 8cY\žF.JRfΚYW `/g^%2·)lIq4_K.Kpw83$Rg*J { "NW{5I>9z6m2f4k4jy߹86yČ݈i?%v $NfaBlMq*pZX`fvFM]6.#M p(A)Y'CtD%JFVO?]GjYaNue.ڀ)k^вLH{R&F0.jТ@:`' 6GңH[s1Xj!|At\S1ͯ].*clw^lՖ2n-{XD;ї[?ھ?Zr;ZX:x=@6ָSl%ECZ'琶7^lj[,fU^x_)*o NC.t|;=ט'.nPRk+]>) 4P{16_w{a՛~QSDt?fߙ]cxsbdi*ztFzcIs'  -5n$,̮wIH"^20]943tQ] 9ٕ0ċE MWdEz27fJ$sQ$\vYwAc6ƸeH~V[Qq>YPQ V^7^J>*@x(Ep5yv$מ! ?EuhuBJB9&ur 5y>N/9_ 򿃋եElNPKG%qV?9=&hG0BӍj8r: 7pٞGCd{N/@]Q+EFN%SAcVc >[4Gy:0vou eߥbU_ < qr E`[56gZ/[js'igs ƈ4asNFs{gOB-軶?ˡ^=7bH_'Oqv|+n{e(.?Di5دss)FGۻBnhJ9M"iAby}0IdQ8\"xIIdokߑL O0m Ok$[iX&nq g~Ѹv:E$]R1[&#FN&mkO*Mt 9Z$ŹV7*+ԯzubeP?i2֕^`,"ihq; DEPEj޲i(B o *"HVZ"d.9'-  |Y(M47ՌzKǍlYY$X4ǥ97-В ֽS?B|@X"U~om޺0DOt/Z˳!HCˎrJA?>ٍHrQ| #3ئlYeñ6Cv!oT"p-:bS"6mɻؗ:n&ۨP](aƩp-uJḤH YE B4dZWJ%>9|ϟ+ O},' NG9)5_2l]b-~(y=Dq@kvqח ]<|0> :tkkfÞI vz[#(`~ Y߹e2ѿ\^+4sôص*nT")wX5qsQ.`i8C"!żV{0}K5^MvljJ+lX%~]crGsiGg;I7|a!*)Pj͍ 0v?gM$h^`iuØ,[ϓ(ݞDҊ'^ 3W|T?zה*,%d ?,Z| tt8"|傐O,7ӘL^m^rK2^7Rq"+M'6AH+gl\%7lY%79 a23 <=ks-]ǁ(KeE6oY"F;[qDiŵ gol*r-Hڨ~ 匆, &`~qf]d`TGί^v݆H(kRcc@F@5*2š E )[ג~V$HvH%pR"/3^׉k>QwjG^&%>-ѽ>@럸Z$e>>)֐Qf6! hկn12/ zt9#^Qz$ i+ZCeZ«a\200i Ep>d#ef]6p-?[a`]r}OGW8hW3"fqhti+^[m?eCÔM\\-q^ܙ]~n=520즖%s 6x%ӫQbtӋPQ ]J`n APJ4cunu f:(&D7?*'auf0j'NbK&ȵRh.\8O~HRz~ٟ PHfQmX1n-;1 H,B4x>4׵?xHhN{ocN25GP0* Wn_AUݬ-/TŐ¬1|NJxt,b{BBaԿL cF}n6z[J:;\t'scU UHi k1{j؉&:z3-oe 0t΢YUr9ĔXRw!5¢Fr973w kL{2ܫ'3%uTlX)&.Kgi3OX'=L  @ V"* QD9[G/S>6t:⼔tӤr Io$ZSrQB<]4|־,ӊLïP?XG^ EEO՟h|kǶ+pm((8{EeVi^PNv{)]YTҭ/B9ty_FIv!~ w4l&v=~_ʱXO$bϟ>e#A+Oz&Y}l' %H5;a]pSݩn܀ Ii!C A7! 1; ?1&70d$ʴ{JG=!=$9z$* /B6Rk[ˎq0BDX# a8jSɲiZ >#G[AQP˻ۻښ=Wް{➴Όg= ZrƁc񃢽YUx@ ىuZ˪ L(j!pꍏO# jk,Hn4 DZ wqr[qHf!ĦzܓQ,Rz*AB .f%03\#)yDY1!TWtŭ͵0,;1l%ֻ9~1?`jyTmϻf:4Țz'jTj+]c$!P ɴ.4䫾 ]-^s6b^ЫjJyfg1@"kސ#n;+kٛ$mC@ZܺJk=`q3i4>;>xB$:&z'7#A㑘?#r HHDp~+bP !, f5\r͎&0!Ó=1JBFn-*UL$<ȩ1bۮSCF~`YTbF~0 N1*glB~k/g |·eP m@5\ǖR>LNeJ61WХ$oxѤn>Kf*L+(`[.-Emqls!ro^nTKxf*H (l#ݺLʵ{iM2>ͩCطN8^/ *mҭ0ftsB0)q=$W[!%2A6ȽqKVl&*ubK?}w_ w~"ɩ)^wN٭fF>W=U^#?r)r!2p3պ3crp:nM0_k%7qad(r6>y{A}~Lt57PܺJb.Ƞsɀ"Ƭ`Zr>xUX o*jKfz3sw-m{M4*T`zcut) 6F}Jg@v1Eu)3=I/@G3(nLcLy匣Mafv^u!ӜYA]e(NԨQ"x_XG F/y=Ow iEm🱨+c'5f1 &=dw]8X5%KY]]Ẇ$[] 2E y,h_( qY d0lI;kiAne!]}Yy"/<ۥ#-dU|uTi*}}I0@BdEfJx2lvz*pX=ƆAKi[|(q&R\]IbTg@d/ 4ॶ%gOVN bfUU~G\׵Nk/']E8 r%wSBLڼ_4O r>T"7z2L4,$0w%XNԅGV޷C$hg8>:Cjsht0BHKXs= ۊ*6C9`kӖmY ˤ+#Ԯ 1忍}%/`mk5[׺]0:okqZϗ!(0Tb1R1jCV4iq=/s%([W E]a`MK7*_}nb3SA[ڊ~7zۗ!_ Y_3,eoazr~d8OhROe] /)= r;b*Փo7hcƙVvo)t$mG2EǢND6/  s ǀ{eAlWi!B =Gj Ryۙ- S{+fkёiRr## %]c &x $kt$ր/= b+L?s*;2}ٵr|$ g܈":1cZɄ+cMHxߥW!gAMB&-nV?*b,dpBzӯ cVm 8->_bNn= ė4EIj*oȖ]{}7|6eneN1!ԴK̦Ak(mCSJpddjδ2)[,aRUN)̀ AR-M6Ƈn} pLfP[ ?'hHn> W<ց%AռIH};5T3~3JХ2][}d=FsG7Hp<*ȅߜC70I {!#[z@}_DpeT{ioKȄZ}p Z^f853q>"łJc~Fߩgw( c*W] >M+m_P2\*bhMTCcW@#Գ) x`T;˩ǩcmu.3^|nJcV1'I٠r=u)R GNUh"$f>12`5)G* '4e7W#Iͯр1Amj#}R,<@:CAsOXc+Bv Hh6^;6e ~Mhu {-NYm)k *!aQ_7/ؽa<6v ㌞{ Hsaځݻ^]' ~K+i.' Qq?g7E~*rlnm)Lϣ`u0S)SH'?Z}|ysoԱ&>LN R_$m*FݒѮDO"yMn8?5c:Thm|ZE0^?ﺌ'y(8c WE`>$@'S\qɍbZ=&cZVۧe%prAp5 K* |5dV Yvg3[Ez4NM!OG5GbL(n4QyaPR1u*)̾ `Tlf"S>CdmX#.> @U# O[`cDlQP1h))haȐ8k7y U'OL 7y{H~sYyB,vlR4S>Ie ,/ϸC5~-hhӲ!(,>=<^$w~eq: {z[H3:?k?2_}lR_el%Hgh(48Az*] P7c"LC<Yj*AcB}Zh+ @M5n r~/Z}ɰPRa߼ONfgwftsƦ('T~FZ$LWx,~sQCBܳ=pI[)Y ml]LJO>:٬p!R_RZ ծȑвI[I )Vm4[2PFL}ρx\45^⿋ezU{TrE-h ߽{׸̢,?sT$8xxwKKXWѬwwt \= ᱶikD%PiE\ A6Lq%הlb7^]υIwXCTK'$CpTߧOqMc=sU<%Ƭә 6yٛdL6e2`sѴF.:bL gB3Se}18HUcޒ" '՛IVA}ƒ'L{`H hKƛtߟn%v)Ƶ1w2gβzH_\oUӎ:Z3J)悦hIwj kc_]?}򨒻!0!^Ҍ wkj؛V&U8udvϟcSۼڞv)F1Wnjo#)33AK;7R#-P̈́-sG&7i]aϸ@Oy&`qڒN q̪b`x%/47Kr|A P8`'IQ9̕m8gWlE`qiy35incrWȹ(~t*\ OYJ< coINÓ_ "btnnk1zi-^]%7pdߒxX=LǕ3*Hx)j-!yŨGܸ3Z!ُ0}amJ&k{|S k'p?`*ھ0hM<=cxaN30F^!(Aؖi,0(Gs"y/T]:qTO_r #x'&]^ԅ" /R8uaXTc49MSS2̉l{e*>x'sy-y9g`p?y VyM"S+-㵞[ilѭȨXš®D<^rܸ%<3~ ]Φ" [1ϦRWb w{NI3C" ƶ-W_E+[ dqx1v٘)R W5o9\ ~NW;b&i?Mco7y>C@4&PKVRмо5@Ɩ2fަnC5hx2$\!¤"P-n}?iK!2+ONGŰl0!Rnȡͭ=xܸ^,גL%sdN0Ad́m$IH'Tjd90{qk%oB0F4PF_cF *ϼ# ؁YўBs&GFQ'uEbÇ3x<{JBf'MX榦 5F,s h|=`ŲF #upLD+mph@*1=d %PrmI*MƹjsHt1Xҝ76R["%-a#%aӅ Tm_KXfϛ'6/[mS?d%IʹRO!$ea)LɗL=lF4|vr_ob) WK|[+tBսdl1x_^= &vsoqtpfwB\yQ7HkfUDBh]dP)9j6s2Z_~"1re$T w N4YU.]{(kpJjWKƇa=o":r>%::(|]yͶwPbl 3[=ےq&<1bkBQD Z2O>_wMO`@eW̧|f~TFUi'oՑ|*!ޒn,Ejl;WϬ1SљOpADkl1]﬋cDE5jx]?=/M6<.jQF_À/2ضGP֘1b;aAq)ũz_d ≭̨:.tWڕ#NAFƗf9 Q7dP^4,(ol)J O6@o$0E-8-bl94vC p|t}ꊩx)o6wJ>.#re].g] ?" Yyӧ鯖iaCLnc5+Йv,ִWze[MǁN[ea^'M @=]:Op(e߃ͺ"ëCnk'0 HD#V<tYx[I>kP=/Jpe^qnVay.Q^7p~HU$\Y,c!ה#Z5!NԄ|SFYLeV6ȹ@Ӄ O,H( f;U;IdLcG] ã`0A/L \\Ћּyn)0MVtl}[6`UV@5mL ʡd7TJ"JxX(PY9k?naaz$7#ѱ6kg}.qN1T<`}r743BHM57#"dlhVgayPY 1=u EE8*Dg]QTEua{%DJ~qAAF4"Vk7&ޅFi8fB?=7ͯ,[v tI: Ee͢=QZ:2[4XWKUqfGK5^p{Jr" }^VZFez#MUΜ9m hG3^P)X D{q-kf1z(ܛ./_ŕO;? a'بcmD$BԤE1KV3Jv,<6;[R=@r;α2V2կԬti@|(+g*zhBV2+Ɋ? `j$5= Jcw F#YCe{t $)J@6;{  Pt D1JףM&@♒b)]\j_3r.DҐצrsn&9sDj '3oAm0nnz1B.BFnC&xd@5:snbv%^:-^õmSԒU6 /kJ>(Sۑު{#Y$`H37KES!"'7OZld ){i;@a`' v듄KU%nuIZsgw))rZf_Ӻ[ٞrer5&˄ Bd)%#ڰV7;{ QjߦO8ވ-CD;KZcC@JS9pWbfYE0 ȘxyN4 ~БW\ڗ"H}&c!@d?]ZÅMۯ&匌yuX:f!Z,ף94 *JzdU53Ccnk=zP3s]Bz.ț+I޹?QS&P0+=zRYY,L%e(]?ځ֎jm}||*2Q]Xc nOdjl3_(MiEL#RVV@z47Z 8JJ~MPgJ(83O7l;_{Uy҅,^=3rBɕ^;ҹW]USAoK͟VX;&Qw˲d:̢2SUkmbeZyaTi Pb%r 灉{P: c@J΅xK"ˇ c-Kyg#7{wBd{gNTFx~lļEB1#ӺWyLrnf..`{:aH{+x:?_Vc<9N+t ;c蓝 #W&K-Y(^'d5Q]ld9g(*MC3}$ L/` dĹlD i;Od}:agM|?Ws 3=3=V;ai+%̥;L.^:<^/2Qsv 0~M.xo]#tn,FEXu%W=vN'iK HqQ D̿>>ʕ9hV˞ nI~j |Y#qr_^i Saꩡ[8{U4f926d'q1"|TXg%dt ½AohXO3ڹ`*[R 7-4J'W c $9eY橲16BϫܭgI#|k)4=бq3_t&|cbeu]|oMx8 )ߣٹh~] F!Q;o͂$f+ęJtޒ0ؗ [̸'m _) `=@g=3Mf+4?F]Kx`ķ=~=I/R/N@LNW3'EvjqJjCWC~Lݵ@ltzV@|"#Zl,m*{BŦIlEmǧ9O'Ӛ@iEG*8ߡ\t'-  $Iˈ!bA vD¿ަGdh"mRbA \ƳzШ`!FD88s%n^B >{NO|{9EMns֗Uª&N %| J3_HCsxiNјRSvقA*+0vmxqMgiR zYRqm.q8W%k$Խ.lf@Ov\aؑߢh[* B=F+q<#+D^6iÈZ8Ȟb#Gs.]I̶ Q;JCpe+1Prr$MUBBb+u^yEd[/e>U)&MevUCm&xpCS[֫Cj]1׻Ybz^rg\XckUPwXrs<r}OhIz(L(l{esq9'(<|utbr &ZD4L^0]S12_B+k+Xw3nS?<߇ V# -M~ >De+mPZڌg,w .Q(8?~~1 ,Vs/us241@Vyfmu"#ŀr!LGsOJ(em̴2;󭴱VUBH ެNgSᧂڹ &YdJOt"SdKWFfު Y;xTx|ɈMGx39P*ٌS+,~u.;d$a GzOE'[| ZRT@Ik pn?P$ !g6T=ɇ}՛Yk~PၙM4 */Zx5`AHU[1J&g|w"{dzx"D./-KHIҍXxf,n*:Ydd\Qwh2s В}d/𳮘=zleg#p]s9%nwC'/~'P{HJ}jW'dT5-s \ '>:좯L}ݎ9>~;$YqStAy*~Nd nb6"]}iRW'CP&NvjicTY'Admc_n,NܜQqKNI6*` +5wB KБȆ.Eʷ\N8P0wB+æj'DHƈ*Ѳɖ&]GI[:) RA^yAX @03B~K `PE$>ohiQQFAqw,!AO#.ٟI6ޕl|o*傊4"eۚ>l*$[d!}YJhF7ѥZSF6 ^\zu(o-J9!IK&Vc@5n*rQ8UF&" 幯F[4MW$҇TJm6Oހ..CQ3Hr,sq%oƵXn$n4ux~vkMQ|-˜ gKL)I ^PY%_.) CBuۏ%g6\nܸ|*hd.$\|FNg' YQ5]+@OȥkZy!B)}}@}υC:`'_8t캏5m5_h&<8̲҅ K=J±ɔB[{'Pq~*EH~#2lk;&|atu[`ͥXfWM0]@X:;'eh]2|X%d= S wCr 4|=GlN7rӖ4e4I8Ftx`F9l\txm '*͹#exCyO[F0,.|ĊѦ??'!L^">:L#T`L*tq":3jKנx늕02yZECsʨEppDk+l> =~F@4x~Eڥ,hѰ}_~Et1U,$̳3}8v$Zӗ? 3ϙ5GPq޺BK$?stڥu ^#ݺ8Sn,ĄN G,Ӄ"\pM]ξd`Cvh1Ă!Zb qwK.`gV67j)"kĢІ|#~eHoP/6ygh%S+T+'e,3,3o]Y\<i+?<Y@nn|*/M7+ʰΤ)mi /6:Zq ĒR ԝo9D4](v Һe5LYTz=d #Tsrl]ҷ⼀>=I4\(Z& QKHckͤ[h<{$zxư }N*25F y̢h}-\~cv{drfC]{rfqV^C'X*LLgD(2TLтv^F[I4 UQ[)9uח~OL~}Sh\b} :^'PZ]ux@`= ANрk@jH:?yz8^S]\mPApBh k~qS0 44u1xKW5(0T_µ\/4^Q&xolc}eO(Y (kߵ)-|M+p/3-[#0N2>* -G~9$h$>gQ1/B\?;;S3TRqvU>dWJWXdus:]7GI=ͨJI|˯?sIR셉Hm*V?IN Ll䀌XpN, ]y'3?*ՔD"A+c>#6ٹq%!"s%uaF (<`C1dWEsW⪭3 |]q+ޏ Ldq&DܠM_fۃ|ràdQmʑ܈u r; hwO|k$!5Rζ}N7b%1eZe|Yh1ROk 76'SShg !3Uya庻G/8oW+8Й!\D{rtlF~gdTT]8`aC$3 o#nŧnX8>UQ~Ϥ&pd} #,9]\_ 7+l_Z19e$> :6\<þ͙zHbCVKf-qӾ]M8>K,2 Xsx&7]e'W~,Βp(mp㕲ԡM#&nTJz1\HRc mۺbAT W@^yPlݎ\Xwsz |ܞ+^AqEf**F ?JE'd/^2bDON23k&AdkS{9%yxHKa}NDC_6婏զdfWSyzΏG 4 \0Z%8L/Ŕ7 bв#$$k:b~5ۀ>C:R ܘ  ??%Ʈq=uLR2#e! ~ 9@ 2ΨT/eMcج(X9 ػ1 '.TyF(^Eh snfpB(ƴ}Ķ?!p8X%]@%-P$c@C]g^>/7G ćvO[lS:[߄a ȹt r}ov!oɵw0EOvD|6_Ul~6_XTFĿRdY&o1|i. `/Yk!Ut32W;ȶN;ʁSĮ]"^Qc`RuL;b$(Q 0“5z0iu^i],P Pg>͘:D$=Ȼ| .|IʬFquI9XB}cO^izDЛ_2u6K0FfgZ{z:kvWQűVϭ(E׳M5$XՆkp Tȴw` Y+>gYFt˿E@n(pu&+u.N(~ % 2$\E;8&ϊy=5xa{1/w%K  5*cH,2p^)JB]J M6ntw?px>6EV/ <8կk#$/G\u,JLʙK1|>LQSY bVu6 lx8)Ւ9☰rܕ,g!-eu W6eX]]dܠ[ 9f,, k^tRʾFZ/oP]8|&XJϔTKܴ=Do:{*hCJomfl/q > C&ZK9 jF~SRp/%B!E#:U "xiPjMD>s}9Q Yl]2:ByBW8 hj͜P93[ǐ]b u( rPB=AFqcեpb utCnRŻEͱ~ZiIoh.mrgi6ңI7VHzgR:j ؝\ bZ5 7Ǧ٥)iTI$1:!l%)X,Z!YUǢ%~eFi ÷h09Va,H2  byϘ(ICuY.ǝdž8JKnd]_5 *JMz25_|5V]:*HDP򧱨 4}mY_͹)϶o<93(F4vf'sQ@[Ϸ ͛?|QPvY#hR۱D'oʩJp!V-xsi.0%G0gJ^0ߑn YV֥Ը(u\R OHl7[2JYsEWy K"jYgT]^Kd1dCU*h4A%6ȆL^%+7o*#>⟼m \fC7QG~)LW!Z!n+ .B@ q3j",:)d!xe<փ;j{y3|79ˠl1O#S>٭ƚUp_'u >^l@P@E0l$$_Ga* (Z . U;XW,j: lTw*&wzT#Fu `pbG0i%We,;l& 7`# W֓ĭ@}*-O̺cl-]cGkb%Ekwo=[»u 4Rؑ5M 9z;woVxI'7)r8uWDc~NoC+91Hɮ']"W@͏:GTJIaA.h9< #NR*%`5ǑH'}\A*4^ nC5HAy/ I[)[DfT9\AA `Hd}FVF//rr[%zLX/1ܽR*:&T0UlQz2B vcI.m>PH70--N4{$Q|{'C7lW)}WMWKف4^6̤"u2߶Ao= ab:u fޞH~I Qcq(T˦〕 h#`]3#+=m ׈YMO\]-3K7`I,,NT9mH|ju}&܅'BB'L"UCe (AONy( hE@\4w0yQ>!A2ߏ}7 ؿoM$ZҰzz+`oj@|Ĉ䪫HcF8TSxGʬ.2E-^PcPJsC$cHl?sdpJHܔ;7]Ped &|Y`WgRuh.3ٸ)(7 ťٝw5ɤGey.F`UYf%x$6a7lu@ {*Yf.}*L>1k9Ϊ$PL*Q%h؁GoiW KPNuɮe)݈8"QDA޹8{D⏢@;OīzI)y cZiW9IkZMCSG^|'Egʞr+C־AHp/j̼v{fGmCo{hja6X"%v|4|6u6/I(5g4,dل@ D|<4I>y,z?` N4NfqϣEd>d }*d݅L⪈f\m3aijZx3ZhXIm¼y`k0>jI6 ׻/a׵Q؃Ln3/'(ݬqM,ƤL$\=9u>PX( pa%Bzy%?Z\w-8 ,8gK-m BXmdS8  C+ˆ,e+b-kRa9+\PCl)H١Y||12-%,n G\xXUEJ8'PdK ɏ;WsvSC(Ȃ=X>9*THS5>.8τdUƘQe93P@/FvϺzaDa\[Qb G1< B}FY3<@^h oOv'qR&<z{ի 0VmGt#*]Y=R31/b2Bp~5%!a5$FsMWzDȲFDFw*Em{EW¼~wEq.xMfE2+-vQI#ŽvwN*' ›G7@3*dp ?RP*1Q^%Yf2+~nk {LU!ȡ7fD5=IPjlP2simqUBvR0   V oƇPO  sEs-]0j"$.*QײߘeR~ r9^JeD`k/oxlN]^X'a}Ok4%:уbSIIl\|{Yll^ 5ү qFk>7Td-l0UMY EFfWJEl[i. 耼 \.\@Pw[dGy1g1QmCӵ꒭1SKFjVgn*$SH e<&nL`5tq~ax<rf~>9?&=df ,Hg(' l ٬;-5g HJԻ|V[QhDZQ엣U-G¬X•jC[?ZO/|,ӥOJ^5Tę5Q"P"߱ m9@}*z \]P0X)v8'7OكDbwy*.tQqX9,Ե#\-߾MH`|6C;ndC Xͪ 'PdtX ]JH>;(R6L=CetPhh989,@U-Ag.E=cN"r![<㸄֮* 53)0#Jȃ|ѹ8(v8)B-l q{+}կ%*G9₞Z.{|)Ww~ BH7WZ7kbY/IvQGT>/"- D>WQZKk_vrkk;f)hlV߹VDr,Moؽij*oTiy,i3|Gͱ I4mƸ5}8S^V RF0<#y^o[ß[qEfkXSK| Hrh2f%DKx*$wAh^E]P/TV>ANlu&S19+{Yib&HS4R%\ތsBF;k>PRN3K>ń[2qڋ#͞je—yUG1!z+% {]4 CYf2Kύ|V;e}aQfgFE=(i3땹J^婭}֟_?EƶA-@_2Cd7'f+rI?͎ea[25KGaű ٛLp< ew3?eQ ^"f1>jV;n~F/׳ItMa0}#H0]e'bU[{̾1GqO6P>|/]uLNΆ3*Y丏=mrU=PA *i8sJw7R^lǟ:Ir-B Pb¡>H* r:5nmI>[&;WV 8`$Q&5.5 sSR}8A@hLEXihC(]2tLtb]x=kwWnF#RFL$߄(zꪭ [ _|#﯑0*AOrB؊Éu !괮*J:1Iv__/ǙF+`[+Н`͠=iIw2aFwCVWX\YmgRɨ΅2Jm|!xY3iK냂C5O6՝jMuD.r;׎WKu$2\h_@m!CGF/uLc)t` njl@f&:cV(^~A :M놛ZeKc*P6z6 7v7Ov_uჰmGK.Nw4%Rg#cU8Jæz=nk%P澌 0nccƅW !j9m,3SmБ?6>mE-4qnHP}ĸ8eny@8qoE;C>>.1V{|upԠ)+Ηܻ(kX 1]'H=p 1u*bpxmza]ÕfmoΚf8N"P[忼׌IFAq91-oG#Rg3Kʉb>] vނH {ؑ.u Mgww}\ OR7qB2#; }h jHb[o9⫳.r,P2yah]3m1 حVT鹲##k2M#7x 23h^P˪(:89o\)kBp|acźqTs'&C*nLo7\=,ϺlWpF<ޘy8%Veڧ}#TCiG3]Ti@O(.bO$ͧKBT~"0u`:S&^- _מpVtnY[=CNKyglAAͤ|LѦ9`;EmC7N!3EA8{1rCc~970Y$[ucWtuqK$a\&h9^[RjVzZebm+9tr*\me f۬h)_0=" W z,~f-Z~Po#:wڎiWFQ =9E *>֗f_Ա"=!#/V`xgf7b̈utv|-PIְՀ8C[ҧz@@ɰd]e5 }'褈5ݘ$Î7+0F B:_a:n5a K[rx^/= oʔش{ ҋb 54 qH#9!<*,7u/eUX68 :5oItMl6C fr$Z߱^8kӽ>WkG7JmiL0+uZwS`Σc6|-zUV-<@4rITC:=t.~ҔByjaܒb’)3,vz߱W@A IFb6,Pc 'yEI4U > h$_X6až C;[4yFa÷\~:aY;G/fcB'V]Ah9ţ)PM |,>VG6c% 4~]Lzk{16(i"G &63JTt1\I=n=~G $U H>]ߤ+$ObdzY6grUƖ tk׍>NYl_C|ϙe6+R`}{d`̡ =1W2v)jj~5nJ,Ѿ(fV9_yc 9#g5^pUKaH,l1qWs#Ozo9$S{s^bM,|EDs M8>dL"I-^KjlVx#>L}C:U[jiH1nմ(U;FRs 88()&= LeUu3I{ioUw֝u\ώ=jI(dAd=K4)~ [v2jz:cY`D6q u1mAlI(!SuLd֣`"C+WfA yGiKXi,H`CJ"I7 91b4,y:'Lt:N<֕Ҩ;:axw3{Z4KF0C9=&!gOUZV_^I=FK^,(E+A"fL;<9sseF|a47O JM|^}$1δ18a_q YC.#yC FG<7Ze[ Tr+^;4NG6nl(`-T?Q*ύ!൴|֤% 9SLhzFݐmYS*` |lg;2J¶ÀʮTr.[z|mm28M'm@Rve&wL;qq9Z3ľLi>1VW3m-h5&u)xOlA!fKcpz6X%L .Xw {=99ߑSD,cL/R<җ-<x!dHm"E䱟+P q,pc)y"P ! >U`+…p~SM '.Z T#j4')p($R*/+fѮyOL@vl 8W#5PX=6|OHF {\XJ7 KCLD_|Zz1kC$Kx.=`#uy, WieWinҚgX6<3ix맦*iEDuQ BqQu*IΨ읷b,C y#˝2(#)9 pO쟝EP`lHq2c\h>4׭n(Lq+V%.S*b Sք7":h͙|;R]9L&pK'=A mq<pAsѢ M֩M9 s ʹE;eU$b[ࡈQe Ũ'OٟV^ ~ldOL;枋0\ͮL;wES?]~r;L#wu!>Գ<R"?-1^T6$+[:O3l`č}$[WL(C/y+ُwHm0?$v~8fi3b{u/@1b9 nBRjnVx7SﻔGna[iRaހ m>,Ҹ> OB*/@&IZz ~mUM`鎨TgsW=ީ^ն0D.&L?pϨ`"+Ի/Mi@sP1iºLHgZ!D]cwI^G:z];ъl6,tɠ a@֓'Uy Qjo}jUW6B_;C@KyԵ$Tu-#YF$'-oG}y,j@%L\:\qy,!$"=% em5A?dKu8.E"t"M6q7^!l6❭jKD5T2OH](?*TynҰJW=!>`r ~ŵ׈,۹kX18ţ]@2iQ3кZrZ=NDhչMD>1R&'`iˤԚt b?ArTQ܇ό__ W O!o+_ZP0kF_+r7} 6vcGsHcJ!KrzJ*"N/IE[4~47>B_DŽN/HV?c|Кe3-3J~ԕZ|x.)ӂ]\Lem̯$8Ǹ9/&宙=v7S:-cnw:+"PCaD(4t3G܁+RD Q|Kܒj %Jm >"C4z/o3N:*d~Ѻ$랿}vҦ=wκqѡ=NPoZVk'F+RfX]ư|N@-Q;T@}-o#8neOjg n.+%3NMӢgfs0_ˆM*)EZgX W#V&Anh)hi,kpA"jS`}ǜF%H]yVLj =fɕGuJ?/JItt32t Z ,q{w !_nr\WBG9 A 俣*Ph9ݶ&UTjl{}|ꑓ5%$[#9DFt"kawL pPZK#Ge_xxi{.Dli4˯̄&/ִ;ң/qR_P\ԧץxZ~GbӨ.˱W6 Բi܅lf (,aʬ,fXre41߼PL0F'-@May/Fg&EPKi藉=!-kǰxroM|s°ᆷK#lk`h /W9i,EDSoK%kju=i' 1R{c@p ֹ27Y E&8S/v>B~Hgn3o LO֊{Bh ^O -yd`Nsθ'Epn Hm hUܲIR}qwF|^RjPX'q:Ҋzq+KmvRگ3 ^Dh¾6bov qr?W4x0EZ@Ӡ W 6`3Q^wES@`K e" Jmw6]T3ts$~&`z-L0ӳ>k(&c!o ^mm?}-̺U6Z:<8j+DS\{k=\suUBTg<${"g,H^ My## ZP!oa/4h7}rGH 1v/ضdN\ 5KE Whғj\3 ,E6e7{&9ɧЖ91Z!Z;46oΉ:.iq ڷIGP"fM*ȏ9& !'G چ $) p{3c/ 8[v-DF*_Jt`KY|鯄u.' VhC}:!)^_,.h#Vkkmuͭm#όS!2*h)pa~;,2x [mI["|hi\Xs-u.J6ޱ(܋W5=Eh9 {6}bĢ,SЗ;[ oSH-V_zwO hˇ 7e{迿0|Ah٬Jxx|0qRhB\5x@VR]-aO< RaR(LfC.fy-3 (@5[opGmn2.иEBuм`S l𵸹W9b]6:R[mޅ/N:u2+ bq{3+,4Hŷ'U[~^oN!MA%Z1А x9b*#Ι]646Z1S'h]gDJ5A'ͅ*Z[EcvK9{DY&_ZeB;pY{{*r*KŵD]"K$ieR\*]tYvQHEsyB 0Ֆ3=X7jGeɻtwT`]{x=Ff~n(VUON\s֘˫U 1p$#N:N upj??KtfZU-dbe iSrXaCPS=qS-c{Si ?myl")Xm{0 (z8?'a~kG}38PYj-24DMU| }xNޔ5ii)T0j6t$ߏePr T/ap4Idr% b:C^W[g' M%աharq8&aI:{LQo d}灨 NǙ~Ά?]jPM/EtiHS\1d)frS.i~`.ߍISVLBؼ jmc!Ow¤-ѷ1;ZGbBDz@=ݣp^r4=f;NBK':J꓾+4MNT iRS+D LѝSqJ~LDv J6aE9;hxK#V~^YGK*C#1O*gI㋱q[{!~uFG"WR-*)WZBesT%Rxf.^lG;Y2wnx *wA @`'Ub BݺjKHv۰|L&yϛ1Oݸu"v޵.\ɬ^>]Q g֡ڐq9*hfsF5G<3&lx+?C+ [xE` {h4H\P HݒxJi*^C#hZҰR :ȵ _v4d likЮ+<+<-.4:vMf̠݋J hGA;vԕrwz7fٞ?,sle"ad2r*^Zن')3L-l.xY$'r.v v{Xpd| oV;o `}&8Γ 2k6 PW;DY|(Spn8O!Oh;,j33H>Kp2Ѿ,-3+@_[x?TӪT9AVR֊/<8<>dA#_j{b@(>TJ& ')80we~3Ghs7yƊ>iݞZdQ&R,'ZpU1K A8=JBnCDX&c7L܆]$%5+$*GN:%%%G@fߋ ⳥z~yQuij=_3k#򕔃f+ƆV앑7{<ɱ=`rUp%Fq-  N xx.K(:El3ݼ0wЃigynşy}P#yPO#C"o!b.\eq=~ t$ _Go8}aIJ2iC:`P<2 S/055ގv4WDH_? 8fGx+VNiZaciXt jax5m8E32OWZt& v%c,WvTrzUѲj@%6X%{^"=Yl>xi-Q(:MSy]@qf/UC+ N4#ߓQS{o{tfJ1)#gf+;s~sdR`9CLY/eUp  ˅%人ZF.nARSb14`Z_4UW&m7<2_| Wl L j^DWXcJةIp]͵Zdp y(ltC6?:x=Tqfɂ×tWaFɦ:@)l)_KQ^~Jv@liʵ]=r3gU yr#:1 Z#4%7<&[+FM'sqYRivU, l YQ]|{Z} S:}A+ɗa$je\Ʒc1Z=5ks`wև+i]5dG8*YVE\0 AkT_}Yɖ3RMYx]Wcjr_{1Yc#?XZ4TNɓ3N#;{F@!I+UH7voǎ>t";G+OF2J=V*,={wWlv Sw09hrv5F~1XLIı*; )JGxvb)},)vv8o֍^9'P &5bP˩߯'+3.oڔw0c%kNH9_#^6[_:%Oi(~E[Ϙ Hsxb9bbuH VlAPJxs#waPwqLXh%x蠌>ϻ5i\9䰲`^-i9g;0h7'6~.YahD,3qe6"W~M-9ik ,\=h rb:^֖v |IV*IJof:R ~$%>v.ٲE\4T noh4&7D{]whrp+ZC=)VGgFlShtwmOsm%BڜXt$hdΝz. ;Ta+.܇sN]\sU"=?q{_"@㉕ORâX8mamDltid_$raW2HcXDC1[rO,O[,v/ZT>#Z ;6S3Bar\kh'͗3Gppa6&M"z*I2nDnU94>~4^Z'0pZu˃ A<QuӍh] oWMhIhO{cbGSi T~[{xղc݄F FC;:B*wÐc4] Phs;%`5 W]PGg)3Z[Џ x7rhNdg-,NpS^pD`Բe45#Z׉{Pډ,9DaInEʗ, ې~ b%:/w-aC<ԍ;X>SrpX 7/ЃwHo &ZX ܯ3i*f)t~,[LX82 MЯdL'ֶGS ɱ~|\W ۾ 돢ě? c߽e aQfoALfC vDh:| 퓔~c#ԎwVAcI(&)ӑ^IN[+U!LZ8X{$&ZAb}cna"΂HBxFEwӿx0kRBlﺽG22/w($psRž͋up_ʻN/yO_&oPկav:"ݫ ,SAȈp B+4O>HlH|:n/M|۵p˰2"ZȂ E s4b~EjӬf6v1թ$vHCZ Gn8j6|ӢfA:z=L>'-2篯6#Boj^ijY2V͑RÓCRYqȢp̓x<$n[~گu>g|ӾE]әBNt7,5ƞ ?3Ȕeh@ +eaV5N:#z7ָo#%SsCҹ̜jPȅa2e-/ȼ:B5Ӣ΄C?j+m|   !xΡ]g$ۜ&꫼mKTqTBȳ];ؓt,p\% 6 X< M`׭{: -{䨪xc`έ8W7. 4˿a pd-yc}w1ȸ'{s2b+ XGD+@z`,|yn<;);.9$jC 8u7\CbUN r*`ܞa *@EpSqz鲵2LF 3OҞwlA f `awjd YW.=vUDQBLQ!Zs&Wql-|oq @BئUקw q~ެ\M%C>{Y(q<'*i Ku{ 1-2}t͏3qf}I`iMW;wŌ O}y=Lovu&5PҪǺWbԝ9}UsՕgٔ.=X-b/rK<=6f hsr=TOER0x$P g%*lه> >!zm0\k=6kף=3l&(DJ@g]4ҊSGO>GӁ8 [Z4gо2}P\Wcuir \tu@,G'V/jPQ;f̃ಣ55vDy^=HN< ٥[W` R90D 2?zwC0~T?1Blg+aEe*aMz z_;#Ez*%$LaBT&f_-zBW멺}W:Ơj4,_Yh֊ni!UnNWZ`?@^:;8`.[ߎ$x dx/i&JGD8FI ~/íUJss;"( 屹`ќAۓ욛;PsLv .j(,hfU*:!}{t <!L8PjC}3|:WUoQx@7."+5,}{ q B]՘."Oq`UeOTKkGt1/0]O4Vc\`^?d-}pby}1*(ՃBtVF[X[=ՑMHi ̥w+G=Wj\~ +!GO_ wzGy $USّŻŲ#DjK;Hڎ/sE z+_%J;*EZ*}SSᒗq, &Q6j2܄ȁ0? wft8ud/l:,' ;J-l||:{HV(jHrtldrKwnh rqp4n-ho\"y?q!INPID@ANk9t&ݍ40/0fwfd7;%ne7 Sੴ|1>r'ϏOkЭ7bg.p#~#Pgǎ%v,*ړ.gYQ_*!>Lވ.eʐqVPCCH c*cOyh ?NTs2 G1Rqan &7S'|(T8N7ihWs )z[7&l-2D1*q. e C1SXE>k0EаOj4Y8?갵FiŔ)\m׭RYVczn}IIX|w=Q.2_M.u^ UK2dۦlf3,}b}CqGREB2&jP/OQho~1hmܯtz$s3oyb~O;Q̺7> ﯷHf 3e aiz5LEB&Vz-\!D铗B_CGB% Ԑ7. |FM#H 6Px.}WOo[EfDEVGsu G%Ny 6O*GK>QH|k Em[ ~RiLV)9ZLny 2vGy4-V?lU%:8]Ч4,wR9#8c,QrE!I k=R(,Q嬦2$kɾ5)ǍFȼԟ/KˬK^.&j-DB7o,ʧDvɖ5J[Sqi,k$jF/yIQYN|ֳXmnޖkLE ~ܦ`|s9p8Ł3c!|ڠQL1J_ZCzBZ0mk`òwۋV,0qIi;rT$0aX~}%Nm,F1:bhe56DN*С|2t .fLI>u@Sh-UaQcv?pbh奂KZTXs+3Y!ަ g˪ݤ'%7:AXv$ښJ=pq6|G7 VCT[)m}khA^Q8:z6 4 u $sQ|7$c`Iָ:}?cyjEEr"$l83w<{T`= t~Eh6( ;IHF"wl!\#W7 F'"CQ鶫5o CCxi(&rBVߩI' Vr,"T ?i9ILe *.[VPɪV %=gs ]+8u4YYk2ТP^K=招iCPeyndwM4I?}XSU ,n;?W|#-mYH`4>xa_,ƕp[tD8O")k 4`AFjŒbCƝzB i=YD4} 0/;~GurтJG'D(W{MT:i+p*_D~wUS9sVx?زfh ^lr(VV^yKT~%om"vu:PLj{2y`"&v`VSq0F͞ Yp& . qF^tLt?(f}x~)>$"\`n1 =jo%RrɵR 'ݓ/$Aa3-k`p0 N+I:o̓\:Yo4ʛ+jQ#y;&BAcLmĚmFOq7y ]i? W%Rʋ_ߚ,EWgiM!L6PBE{T-qCD{t]:] {,P˶f iX n5h!r|~_ksltBa"Z=ըxAuȽ&3S[ ۾e8Y:6@vGmE˨/r2nc_K_9pU<5n K'LyhdZ;c%ڭ(mNx٪Q6)a QiocH5jW$~1Zg8Y䞿l 軌g6b@4c|LPO'Tu:uUvI;d0"nuGWL!ZK0~54RGI`ruO~)?܋Xo0cLx[F3ϰxefT+[PC8z:޾Q/:c,CݤĎ;,'E"@`qy<14h=;kFa0 ޾30Niy4{ceDNh.OZO4q}Lރ`V+jo,pCNsc]Q '= fK%Ycj4eK6Zd*\t O猰JC"VŴ O 75_7#EL~,!`wc4yc|^1m8ANzknvvòtb R:B҈O huvbr@3X8\p YQ iS"k4S\Z74`ȗtz9$ㅁww AӦ?9t Y.+~]Gy6urQZ9Շg$z ЪBHJnR9%LN߽c7] ]#A>O (B^ jG;>' B"BUmRmzҰ8N~vi׺i >ғJ=&qӥ8>ͭF2>Rzj]fjN taHSR$F;ff:z*pQ4 W8>#U"w23%-6mGވ!5e#-:Vf!J0LFLNI!Xml$/ 2p} FR728+69tHby5M+Voc`qc5{G@IP4ϒ :I1W/}lǥ$9MճˉuR&.SMyCFhXxpL@?h &ZAhGWWfNz@upk}"(|nBBʢ뽴.LC8bjgDå#rldWcWu"VbU|a!aRٌbFLo* IwkǍNqaO{<܉_]sVӱd|4 >o(C7Fe g eؗ`<m.a_9C(ƗU}R i-|sD;FIez6ߥdir;~yFJ3~<eBm - L}I):'!1+E]7qybuHF<@*| qƌOHt|mFᙣ@ȦhExewOO-'m#gOE =Rq4]U* 9"|𵠑TzEc&lÌ=۝n{ev:[<%Bvm+UƉy"-G[>mKT'(,i8-WvT%nj&eLاIW,6л%7 ؒmF g:WWÜߔwiV޲&ϱ절˕<+M\Cj# M ΂A6By}Zw&|)j~Su:ZvL9k]%܈^h3O=8!.9ƕtF7z{sr $c%#/+1?]?u|1蒟QKmPHUN\lE @r+H8b&UV`iܻ9BxuԬb=SfD~g9`&o~qXQ-1apg7+PͷDUGP[-?;Ojͨ?㥛JIi"[?TP-kQ='mX}LHb,;( R;7KFBu`=: V p4 S)ciTcDdһ '-VݗnMw "kj^rBd%xsRbQ<23AM!QPǵȦt:2SBZmV?o@j+kOt9 ӕ+x(j`ަ)t 鼦ð<;)NR9:G8VuXX1( wKBq'mhul 2<4S:k] @@Fxݶԧ,+R' ͛@ #1f^;Ɏu7G8Aܽkk'Рy?78 /H6IǏi-,)'n*%b)>|6.ӧ72ʖyǼR *Qs|j?q(]DAE,#:cA?+\UךY,h}G3HִUz Ę0?d&VY8)ұ7K66)AEavif7hm T66*Gq䯜#>nhOV"w|{6-HT] d-q,>3i: 2-}z:zĭtVA:H:'+9#P8~ϴY}ο6Pʾc=wBQKV+ (S@C]'7%8U1{D!zz9Wz~l,W缍mUiw;'s\J %2qß#eQQT}F3¡d4_A=q~7r"aS~/#F\pP;;ǼC6{\*Khy87lX,1}:`{5̐v~oH*f}PTBx~&_x`ظ A37Y G:;-o`e1cy櫹Tgb(,5L"'F"ixX>@w*LMס*OAStςbܕnH#iN~Ez6N۸ F# rחz M1t_okBjoɢ2QK V1s>:?fjVIF"dt+]b5UVQn /O/7p~Kʲ꨽g[J(KHc&-!K)_ n9]h%ʎ>}be`V.r#'vr9nKԖ{Q3#s~S;2 }VuWF0Vu>G^MS\]ݑon%ǐ|h4yʋLjo/t*=Xb,wy-@+JWA: Uyٶ`Kxj@ofa] ((!j۶&Z:ύ8i`#4]nFvJsVi7*u~+ S LхQmcWA Ueځ'Y~VM8(ڮx1\GQ7z`bӋ?4RlhOs~CآD|d 'gzGfԊ`0IȤQ,=ZE -X=gU>C0Hgٔr&HJj 1oK 7⎫o OD\Ŀ7}Xx~=gO8g.Rxuw iiA;7k7[ N: %xAb.)<Ƃ~ s)_ &"Q+4nX9Η>c`-:*(dfHmfUy+TZ=}ia! k84am6}Z XŃ}372a(iNA }:puqR}s[門>PiZ"l/^Uٔ`f7+y Raj$W9nJ[7*<qjr:Qصg WEN{ad,~q= !)͇=+cXT_joǜ&뻂S)eb|YD/o䥟 eA}~|SOj%!.-ЋX[rĽ,6i販bVff1u%(CG \oO#zs-tܔVS~yaZwRe/y#yE>kVI]7mnJoj6?ZcjxO$-!ƯKSWGvIP XOtES[X[zM Iq5u[z\K<[9_7_8曍E" DjNa7@/akqBa]e%bv4Sez>2Ma]9]y$={N,siº*޹ iq H3|Hwِp&E̓}/CP%Q"PBG^JwK'ӜkHWH4ڨ8.՘ΟY ;;s'hE ~r,F]mo*B٠{$r_a%V.n~pٳ/>rw{=Y?;nlN瓉&խ׭əZK Θ_nkR?JK#K*.3UM8{hu?V(v=ϕ/{⡓xɳXc [3/w5a@q-1y&&mF<3MM͉pUkr)(=y,/MG$4lyY">vUր k=F$D܋I+Y/ˏЫH)(ҧWu2F<ȩm+42}>H<{`!0(zEbb-^=Z-|R<H@nYQžL`K.<4zq&gE6VpjgNT ߚ:֠AtbHuxe=z[N@OK|m1;52w.X,ْ2ݴ?]uM~CR{xxFNHjU@WSn+`vɟc~a໒%ȘjP۾\a^m({k&"[r#A}Fj.9*x "Rn :0W/_gRIaóBplnatu׈;TP*aW 75.v&3/F86ɬF6T߹%B}S uW6 ̩3Vh-ge*ʳ= b42ViS+-DTqNiOK.)4Oh,PUmW -:%6f$*I&Ά"4ʖCso4Dw= n,I.О@,_0P~9j^Xm[>eLJ%)1}$ڈY a2^*"^tI}? |QwȦ#gy`x!(D3ye|S$9m\iY[d^d,Mvb72/gscQxM9Ǝ?qOt_'fډb|4G:w7!T8Bk{,qTgSveT]k[aj}l\ ouWj1"&۩'rh $8!-HXNH*Ȧ qc<{"n!mw J[ʺBPM+LvAݳ!:^,ɋ7Vڴb @20.sKrc]vf%ua\{Hm[MoRߵO[7E*#uZ Z)}I#! ĚD E#+eNUdvwU@+]UE sC 7n>nB6L,K-0jBvP:oYÂvnkxvC)vhWUpռ'_VQ؁dSlTcP1l#+pbj֌ss!8"4 pi+MI{| Rib˽i7:iX2Em2REx#%~(,&01ڍ#b%̈6kH-ԕJD9$MkpM FlzJo>:Y[:@94;aRWHGgQ(Y4NØ;428h4Sqm{# %?!LxbBdfKKkkd-e`۔:>=m>ٜ=Ա 7eMF_ pQzt5w*6*MZ=wh\ԝEA;9*e4X!a</ð3Jn5aM]"--O@)bhNBu!%* < [a^9I_=5r|Q:?悤Ȼ-_.XbS{yl-2Fчڱ:]>NtJ\rJg6 ZIcE&8e g}W;V.9b.I0avlIvd 1q>ѵߦ񰗹qZ̾hMTmT8?B%M" B& wAuơhVqQ :D ѰIi_O:/%:xPY* B͋IR ΆOwmH5Աwx8/GbKնZK1 ]<05][ԧҁuaCtc Z@/ &* .5PLp0M15%@)۷ QNzIgw{pM14Xyћͣ`L sÞSr$9T x1k]>b.J)uV 8PzkeJ~'r)M9JZZdr|H{T>ۛZ˹|a{"zbM*o8T=LOsbjK 24- hn=OyKήF0=m3[t#>µ8/[<^12΃>{ZG|ΏAU$Hq'e6 OrjbLLT) .fiGKXʢc_JLhBhǘ( 4EndY.0u +kbrD=[!tA 8Y;d;VWoʜy MO6Z|TY-',^|tE-` -XP1 _n2@@hgmHv' xځETXj1(,*/d&im@oWxfx;)QDF軌2\Fs*_3 qQ] hZHDU## e (/Ϭ%H,89# fِ/SA\gb1PA/6{3K% \lNL>9xYV m7tֳ@uNx尶5 -k Wu$ay1-1l+\ @GGeƼLrHąϤK.Lz~Uޞ0Yie{|]/)!L8@~f'dvN]MXk8C`.XrSW)bGMx|8Iљ⣷$ĽoD6[q+sPsY9yMO C< T.אnEs`5dkiSMNlc%w$[c@quҾ X]C-W{xTṾٲQw*767mCR%=D>EISOH Lˌ%2foۓ*oVɄSٵ䌁@@0pLּ%B3x 'Oq$]#&Ɯ1]MNm! BP ""LkO13! ?1]ۚY%l 戝Br%B!F=h?J 6uI D>g[]{!';1ݛC Z[JrQ)=aOb;#to]2N[Y/!cSHlfxm50d9`uMtHCx0fi)crs|r啡,0̕G7L'4GK&s@naC(UkvyRKȧΩ4N2Jdo^,V`dS#O =VY脥TZ&5+g |옵7\Q[8F5v{XS>mM/ᑐғE[D ߼Ttȼ;TjX~ϭ}Fbt(YkQ`#^fם֒rsz"wzV·@A=:[$SHVuT$)rg_ qbJ@L G :}돉c d2L\*2,Ǯa'6%i2iK4$9rX=(/yq$5\i_ݭ }Z|)pp*X)vb;xy$07zQD;̻=jKpVg ;F^%ːt?*GI^N;KU~M'*wcbZOsE \k*1$nzs*%`@mˑ85j4<d~sRRc9w? 8pd^Q4>|`d2rؐi,n*r_Tr- [?nzvOJnpd|-r{]cxEwB@C NU^I6Kw$dQ?`c+&- (2(J0RԬaBP5 %~Ezq)uG7-j2}zӺ?k\,K|隝>Xq)kB+132wb\RZS9DLE'3u98,~(4LnAg{G^#pFUT ,vrVkLpC4^AJ/ͤģ0$)F(VA)EB>58E_ :ѫ"(a-AyY@jgWxIj7IfZaA叽c W^==҇ h}~/rH֐l|RޘNJ_QoL{E@lY6~Co8U8< 铳y/ɴ~,3m*.9 :<%j|һ=K(.#8݋Pvg8PbWftɉfTYb wηX;P:IߏѠ:)ȐώPc3T"t+e]"#WBWVYbINgl;*&9Oq_B>^J".haW=?ʋCFct諾6˥pb c#mlbCk rDVXϤ[]a = f),0/ˈ ? ]NvrK^r_PFQ@fjaNe:9ff) $E[qry֭ʖ?QkNuX}(:Юwh@f;Dzn=UF; 3ހ~-sURbV1[X/^@ $!)u͂:H$ہ$wLnIa[_/혨q+~e!z>H*UF,x[E`FD)ezO_,L2aM`%ҰۍH ({)%vk-Y;?ޢ ESLrv 3æmb6m'X]|n`3vp92l]Il6lY*L A 4w.b ڲYfܲY=ϳuL*[Jvp|t H;5a _2 8/gԦ)gs&hIDF֓`#~oSWTN[Etgk|lw:uv zO`7w,W;L;㣾DF>뿳Y6KKD`.tџH6zxHX_ҡX4bowXvfAEË]\ŹвLRF\ǣ P6q4"BRSs#7S|x >#ʌul`Pc>HJ{_cva3$7lSJɸ5̢D,|24}eD+Lw!ض0SElQ;Mp.A=\zw$-e _=g@+BnsY!ݚ@w/' 5iT׊NNI\ ĨVW8z_MKbw\?Pv-^3lj.&X^ׄGs HڻΏX[ǿp3G}UY(/,[|;^i@@)՜(g!Nj|dQplz11Ҳ#=G$Eu-zO~)_8Ll,P8PaE!.)Ģ6v82S_Cl!\khs}k蚆:o8wi>27HS_pr&/i#ڣ*_.z169g5`|uH6 E$|8&VOBr|t'gIIQT\fbNWwsQ-,'9M&EK4" LNRrAY-O5|x͝Ҍ 1XI+&`lH\relx3lPX1]&KDXbD Xf=Jg%e;FCKt0@Itg<6ݙ")fw40–/*cHWTT8!& 96`n"|4Gx5z-BZ"qgua*3lR,Y7xM5Erfm~yw7Dh 8%,[YIoeА2:/F`\'Lt乓@Lv-v+;Eqd-Asr.jGPV#G+"}KAW>2wOV㾷ktPϝ [ bKF:c譧" Houڐ=Q52ɨVIp >*2'NB"M8ƠHTF45Re>e@ngBŪ~9hMܘ+J_@Z"w\tX K(_UsndZoY^pK5-F#V*CP`B.xqEFY-j(JԊ|@o( //߇{}*eV {bbaǮi˗e0ZgEO" ~'Mؖ tV&ty_1~kR9Df >ƿLseZtp&Uƨ.9^K# x뼂B9QRQd.p 7Hwǘb1P<5[S26=frE+f NGΙPDI1 6S=Q3Jv Fc0;jfvqiޘzd7h& n+ꉰG>o ʉN;[!"{S;#\FoN`Xӟ=5oY]tU{qH0,uVM&!f*Q}%+IwGalJ YZk Eq׋3'RTv)kb`@U貸S67ÿ0=%rQvZ>=?nlj1Xz}~Zd uB&X"u%nN6a[Dk>rNV:{Hlc VưŔ\eLS+76OJ]g2Ga7] @{9Vjt1ͷ_G:ubz>:Hz }$;WԄ { _yN+cj;OVa>-mz4`I n[uW{~rE5h{ų; mbrْ` dhΓ8F"b:]+%!.8 Hň:1[1 QoT7t]KjL=$Et7 N> -UX?0٘ S8_9kp_Y)" #e鹷M*JnγK'oVQD6ze]۰v8sD@X`/glYk3uB[s\w[@3;m; 훯Cz9ixO*\}~/ mLDhPN/i۩K F>S ]cJ]7`G< PqIR?^*wɧYaz w%!]*R&aUCDeW3!S _iple$A :Sܲ?A@v0BOM#w#2s_)Bf۲OX2*+O-:Xnx 2"1D1Dq<&g}[ņo7wr!Ē)N(= -ByŞ!lOQ:Zun-kM3)׍alES7ɴL4+vNF-ۘ,.eLeR,yĿA`ӡRs `y,zi~3?l9pHybB_4ja'Y+: ~꜍%LID~0uB>* f &W.DS6Q F/?@Ѻ_#bsۯ #.D6bZG" Rr~XT2Yk^1ZAsty$_ȇ}e9ڻ̚-W;:7YRl̕\b:X9 Wch܏{s")1A WzF:LTL]8$[8|q/;2qߪZ ʜg -%JK[t)HϳG;4١[C#p m:&l:3;6tSK/QV>@ka<2S!ve)lxNҮƋހT6*x 'J`nve@8бQSu<ok&y(MfBj(s863*eGĂWU‡J )m7j`ATzM^,9Ӳol*=mq^{ ,2*{Of+DUBM*VFsٸҷl?L>JpTx+~aJCZԵ p3 fL̂T2m^[o?q̿HH]v]-E71dռHc,)|=я*^g}ƨD>ee˼ YyG ΄.]c!d9kx02UC O섚XtEOőe PƚV"G{Xy;iID>M& ۭyjps^!e8Į-ҹh5m(Lv5j`=WKyf59f<8;wy .1R84MW#&CS-~P%=)e%4RG(82!= J~N6"`\I ay-SDJ6gSid #~g)PC7j hW;d$)Qw~KpzNЛ!(IM&PP}(6ßxO&=Ksެ|:k0C[d?>HŢV1n0v- #eٲ'dggz7Bb*l@vS6~oY7e{ZpM5M28B?O6Vk-ry>!H\Bn`~ׄIU.S{XɆY?o3%QeaL&N yX\#a{M/ L2PzA栺\UnǶ1*zѠhMo`I y>З@ۍYgX) :[~I'hZfu5{G@1 W <7[m{y9.B-Б\qa\}W4DjO-c|4\##!l\VG; Ws"_Mν:,N,h7I&ỲQ2hXʀ~uAܔ {-æM;?qzϑ')#ɱ $8D4fi [8A,W`ꓺO&A^"n,RzCPEBzz]ڸ=E? !I]YqUU2bsDK)Qk])5IbC.xor=W`~>\} ߌ]_V'CH}Hlr\-qq*e3Ad0{|Ŷŷ·"EMy#L謾AvcEަ=3p XnS9k Wq' ;Boke=nl%_oZ p"*CPI93 a0팥,xQ+F%WHc(']Z+}3KCƹ{ť`Sw hO 08-l<lnkͿ־j}LP'{Dk|8@\zxRE,#4ZRVϔ3H°| S6}@R7TZ>lvj\lfr0}qU lz'?.w [(FuA!)L5a=y?A~B1 'eQ(8{SxVu DhKU,&tk,5@i> 1  SݫwNu44OO)qpF9w e J1ToUe&S歧g5߶`o5ɴqa.+!UyY~ķ3an.ۭ%&#Lf7{K'IumrD!ǪbLVVa qͣ:~%8.x^KŤzt &>ǣ`vy]HM:ƕf>sTbU7$mSvSkqI(~gDk-͑^(̫n,EHhYvk!n(#uX_KDIBn͍aY=}^J[rF`FLv~B0XY8#:W"gwM?rw 7PkEG8e<-g Z8b+e梻BB 0('(Jمy%܀ZW(>NKH@&/aOR.)r޳uPN ewAӇӗ}JA `deMBZ]OmS8mG ,jg藜#QYiPe~j4Z0B+8&Ŋ)izV~QȪ3 ׳N^TŔYY5ݜeP*޸pd1l{K)ͯ `EnB8?>D0./XRpNJI%\RIU `GT_ru(C:o%$aw;y'y7P4r/^_x7NnG~Dϵ=[en*=C]8cɱ/sY=u._KY]VhR%)N`Rw74192.r:Cߵ KrdD֡s/s'a $Iod"Vf^-]_y(ڕw(s2"AܩS?{AN}]&v>>IǞ.뫚@h!`MƔ8|#-$?}OZ|2ĸK6odxШTJȝ~˰1i:w˽x-?O{DmOIt\H3_u 䦖k$%G4Gr!zX\F[ xۜڋ9>8+hiP6=wn,~ .W|$|o$~65aӍ oe,Ag: i,+^ZiS^! T jPs0X>/FΏ<4'\C34OU5xF줪䬌 zACBKK69g^]hkbr| >b_Dmތ"Kٱ`~X*YKimU𔑩7!Q d Û2$]`4hrSۥ[E5q$V!NCAwng7bI>_b ڎ}<%ٌ7~ J9' 9)@栽U/6 R'Q5<5CHceF- >Y#h}MU%̪ y:,b. Vg2<"#AFEKPkS߯0<( JiN7@ktrc#nD,rRdVo72݋(zkӛVٛIo_k݋0dWMR {]=W #3{.Od):ĵ@ P<0RINIG|'b1)*4YDf{NnȅIveqd&ϚW3ĕ 9a> \ת+Fq@)\rmes =㻨ؖz^?;mZt5}Ý|y)mod/t&jpWv2)5?*Owpaa\ 2TѤ@w6K"odEeLrH ><У+,} qy$Wq.y o+Ufek)Ox8VD܇sZ΅i-CwhY]Y攧?[㱭Dk0oBX-`^AYG@W.\x]-ֺ_evU'*!3n[s\51?ǑM)Ǘ/{ y8cb4IS9C "IZQXbtW)p)=_`T$8g f^ $)B-(z Τ ?MpJ^=yFeqt I*j%sUKufE2 @׮)3dbb*4޳Ԏ!W0oA{p C^ڇQ. gxbq43H |5* k78(T|"mceGBh5OA2\L\堧pM CX{ZԌDJt E. ;u.sD" AQ=; KCEE N0qR~*=r2Zk{8d͓P01\1JS+n Š0ǤYp_4Ygƅft_L&޺N~P@x#`6$PR3=\IK$@O#,y~u -+&]ѺV7|Մ9IG~رFl#Xؿ+.Ҏmi! ֵͯvB8-E #*"70T.E]WdKC)k/"MŨ4kr~MCBT;X%kbY̰_ZLw/|f^Rv]̀;Ī$KSqwh=.gY껇۴R,vTPbܕTd[l㸋犾-z^2xW&u$5źA))q~w!r2ؿ]vi&I\ 1KQ1Ӥ|x8<;k>.cBu@JpLmkڐI}"`arL#_a6LR=WnrHCWkY`+U)yLBj`G-Q?m[=d羒WQ|L]qd—ᄇ)6p|@C%k驪2bj/Ƕ/E%t\1^n=W78r5 | X%nS:˥'A]l夫  ~a>zUW*_buJGvCW!цy_U]f6s[c^Po_C0Շr $Y*r@=1 %L 䨘5n&, ,]1+1ρj{$EZ2v-$V!j5SRnۆ]}\P$jo,j[÷3)VL/H)hWե3UiH`Ovd6)bjbiqwgɺn6NY_bnkDHVبOSL8xN<'x=Nʿ|Hy_=ɇ)dXZ%äUNThF"zDwޛhr;g!Oւ pkF$['U`4xɈCC2ef}$g䡌EuTNsm" +X|H@ǢW냪3akϟ]Bĥ|MexBop|+ ;CDTFwbUTI s;oˠi3lbHݬ4ӟñOZEngr8CZ&K,,AКBRDu.[/dVr> 9YBYY}0e7"&w:!ŀ\VeP l7T\@1 0?fND#q]WMl3-Ӊ^ EL4aDQx|XFD-Vg^`% ќ-ȏL$ntQAKl1=Ǔr(c7,<97y:dg">nni{0mJjR9g!{)Z@DIIoݿC~l+>;Szo"18b8ma, ΏeI Wk% @!x$a"tj 5G 4|NA.N F5[i0h3A54(|+x`1E1H@oŏ F1aOensGTkot[.);ngWж 3qn -Ա)T$o̥s_2n ,!0L۴ (z! ߮.i_Z#mk-InfP¤s6FKMA՞"/!O31Rg?+nȰv?`*qy8GQ+JNYs=  fQ@Qc8O} ؘs:҅S|r^eT(<&|pJ6 Ъb|#P~mhX=sUWOPmOQ|r[a"1 ~D_Cڅ/"o~|+n PurI1KӧCS1 UFœAJ疾܉huز%{>X*~sa5=zaI~Q-y0⺅s'}]d./4m:2@+ O}o@6_6DJ?.{%(wne:6wn2B4Nn"F(ku|Y7]X|Dc:J7H`p*JDo蛌tlA+ #Ju'J<K!EUpkk$lÒRqٮC ΘݎQg@ĩBhjVf ]/}U7sh\ VBeP0Xײ"(˞p@3-%7y9*Mb/-ha|_uK|eɳ˺ߔ0U󁵮=B q0RP[uhvYl#r—YTZc ,eO>pE`XLzq$U6-c_<3։ mD)R_%hkIQ-A)5d1jF0G ٮO0Zxx@3."]d8Zaa%v \e'MmY[r0~L6I vhZ@X Qf / Q}" (,Jȿ´1!QG; 6ǖ:7okApe8zMX̽7/?(dpzw>؊dTS#{w˭$7d ?yU2'DžTȐfuvӊ7{JHS>;w G1cqViboG:^2?#1[_HH<}Ȋ9[zk7Y™49!ך<d~4".7yX`[58ڝ?F/(ק?]N|qLd#m#'L15Appyp?AaB3"d$)-V~ {ϸ.r~>~mBcKid|)'LMhH#rQ/źۯʎ^zNΥb(u_(-oV!0 Naa`ƯA;<)x`}|ˈAE$yNDsiX@+ރ][:ːdrpIzVbۤ5}p/&vr+L0\&'5K}z{w)I0N>TT#(痈X`#n3t T9M>(}\r"$L؃_R,)^sד)% %=lmQó^} e%CBʼx怒dUpGkfU00g/CM\ ؚomNQ;6n ~[8RZboHn^c}eMMk 5֩cE`%0bzV=肠䔴k; sO:+}\O3";jp:~ß$~"\?ATzm9 یeꈖ!K-aq'ޑH_l1YgՏg?XeĦo\u>|Pk1.A!eJ׺NΙm` XD1D#o\O=h$0qPpה77uҌШ[W F<4Cs8wmL#4FX4@f=L45 9ԎLي~Ա6oUXFZCϘZı*穹R5ހnExo&R3VjH6-R42sxO\Qv7a4;ϖ4I`adؤYBlѦY]uP 0@ڷ W"T& 4S?[䴦'p8<-SOSLW}J@}Đ?  gQ: MU[IwfO"#&ҔckLXJ7٥L0S_}'V3BfJ:ale6۽gйKfq47Mz_ T/2 Aۑ'c?@:lj4ɒIRb?6;c8Ԭ!ӼS@-ޡ-A>` yO1CX."BAs(B 4O}CKanS)bvEM~VM՜ycaщ}u@`&bݛ( 62D:) mLy wU,?E6'9/pk}(/%813t3gJvN8 6I%Pɀp87aBg-?,PM-gQ ^s(]!L '`v+zW:al*g!0PnsEeTXBC>[wtimZ%ye)tWtb@ɀSzJ8ig7Hz{I*;v@+Ue^2 j+#ƽwUPHM7ז/6'p=Nr2@D\Vijtӳr-Bx7/p+7;=$*"v%$.G+M_3pj==K%no΅ ּPDZ1YIExGEWPy u{rc"́AH}ێ 1 ZSHp?qSɸUsTJ}?`PGQ&瞬(:ZQ}qL9vRBr0"kZP6eP@h?S0^VHK1%'P}9~DS-r'ad:TI!/-Umh|faREfyFll$l.({gF&b ?CQ{7r`i"O9_Z'>/ \~NQ9]+IBGoaSGr$rsNj6KA嵀oxqn#;ѹ &6YC'4В)z(ZB)<6۸>#9{*3BXc?H-,Z/-@mk_ȏ88LHnsURWkV^'O[D/L6kHzgLrѤ*jg6ܴ)leq8[GI}d$@[lr9iϷj4p+mz6F? sCQyŅw6O ЀΣNu:ѓUR &=]a]rIJLlw"hFhofr(Q3NapY 4]ثw{YFO2Kw?@ݺ7 B+< M™2o+ؐjSYލߛt:ӵRgߢ:P*"HJ'L*j 5uA&r~ې i(+ oXmԘB*? ֬Hץdq銪֞Vע(k?q5Фs"urix8٨W:!MI { :^"^9=Y'{"q$sǰZ:m Wi+lǝȰ"/eH׷ǸRP2Jno+sC,~$5 ja7֪7H/ZDv ˺Gd~Ʋ/k&m xݔ߈Iħn8ȁ4l9pؙ7]=ζS> 3ÃAlYtHDU6)}kHEM__sw&e!8A^r;\WSr0 qD8Gakzi:'}D2 c`*!ƛvXaI-O楆ز2=,6 v0˟-Z2'C|IV|{Q]t@WB_jFɕHE yID6+s˰uGRACg]Aʊ0(㱪CZ0"ƥhF íA $T<"EsE<-xF7/U osݯ>J{εцVF6IT2e38c}yn vyLIĶ7f_p9< [쁑Ʈua; {mnt* ?x^#8M^Lhxcw_Sav=Ôp|Jeii{s ~ Do&h]-7Ȉ^#d±Z6gXMM¿RMp|ȡ xM2ޫZYilJ0.]ZkYh0sCb.4g{V=Lwcʏ|) )Z$ IXik" "|͞%}TmR͘%eMFHBBeO遹xet}]3R({X@$ih鷺+QĐN= )ۊ ʿ;*S yN3ƪ63g(@ыΒl@"Y|yX.7(*k)(pWxjK׶SEڳ5T PU:VI>27gLv8Xis=%΍Nv<Ӷ"Bnztse3E ۚcd-ld)AZ@O7~$@vA)+Ŝv-nE~Ap37S*= .n){W_l}/ zJ$2v!9|Fb A1 zYHH(|C\ϼ.x>O`Q P6 nKfb>Ekʚ$ݯ+?)XV!bg KBz^b&zxyk+{F?HUUEMm`:EdKfC&0F,p5?`0+SQ+ә,䭡J2t %[nEC}Rv[U8Q+뤥V/Ե2q5eYapp뀋ŶYo(D`3L ~X[?Z,'$! p&^~3)"JƗHn`R'e_# MD$TGuBH"ٟ+0rv*^@.vA\wو}+u{<W ܃} \,:>cD48.|U9쩊.i a <&O 2J͢ ,SKZw)\ zlb$W@jo< ծS^Y5},ity{AE@Fۿѽp*j;m,S9W!{rPGod kqmYʞ뿠~@-*`hXVY REJl΅"6"t@R;uf"`̼/МǡE^[F;@;ّ *vUo+ dK>,߉)s^eXtvAI%)~o,gmt숱I>[Re 7xk[`*KhA'b)s14g>J7G*(dl.f#'D8TX6 ّvZ,<5Ng}귫DӲ7bh?$ˌ-:ƙRa!i!R 2g([',5%V7Mh$s~6Yr I@zXkZBڿjy*!yý,- ׾󕾦 T5GM R5q+t'Vޭ?_Q,F(P @V"G5> 1z <"uOzfuL8Q[?J*=XK 5,+9LֻϜVtNu`}~HTB׻qk:\7HKP{uQ|ix00$oonJ#˲5rz ]kGĢIe #8̾~MXAu0I8ô/I4&}JxiWFV&R $O|&]UD*t{7j0ڬkwFZ)/`d\$$&겸$[&%#"A"e5׈s6k+PrQhtɍ5GiYp{\1U4uhl+E=4(}\f/R鱻s}0+WA(h,P/Z/˭PJ~ޯܧt/=M׊ 3L'(N"6Xɘ;#|:W㸦Fq LssBn.ڱ^a }kr^<5 vGEC>zI7H|Ut4Mύi>COu0dy'UX1uƙ`|` Z c|R#&^J$.ďЊڍ);Cr3h559̓ ?z|s=~wПnR h-Rr* !H1u>=FNT O)@#DI7-zώgADﯣ.mŌk`2޻'e\odb}+E>4} ;^klЭ ܴ:DL#],m7埃 >.アwS9xAޱl>|Kݦ{(AS\o:ȄxnL)w~.Ӱ*|Gl< y޲ d2v:5u䱿 1ϗ꒷9wcuD bJ~2towh%iZ*Qᇞ'xBeHmYt׌5X5 Ҙ1Ѯ(*O7:t7~r)5f,ɩ m[zGD=;,ވ#M]f>g)̟bfl'Ob](HLvS:~L 6k ru!S+yhJhuR\g9}jxVl4e^6HYԞ&-?Zl+[} )z/}!U? G5<ʩX^<*q"]m̷@|3ךEďa7/쭗)t:G['@oF)oBnn_jhe2g*O*V{Q{" T#Di@p4]npeƱ IqFaz?>A=pnD9fnv7jھ<}َzb2evN}|6f肷f؎dRPkI*W oIYX$`f zT6ޗ?@+ZZ<ǵR-G #ӄ~".>QDZ h1  NJU,e_9j[H}-s_0"uZ5  W߫8K" gE - z e2~ǸY~&AQz/vnHJ)Mr2`)']pzcjvdun 6ĞbcSe#?.BM"Qfn[!ƛ F+EHEjeI8Lg= .űVwdxH}$7#ôHaàHUtT&J wNEnh=@5>XeɞtkP'~3N]oe "6MKjg14P/!+*~D!'3OJ O?Qva\c)Yۉ_.HH*ė-(m@Dh6+ Vpw &wUS%r֭:fyo@B/%iytH1)/s?v,ͤSM/Xk\lgfQܡV3kNnȉ'57Z<}#]*<2c8˞!L1rZ0p '"j4w@jLNFjPٹR~~nM}{Z9CLĸnŅ-9{:ۂ:'a~N=Jf.cD:̈́|hL**R1-l9vB\RֽeZJ+x,)MGiml; vI;s%uYcDhQ"J,頗ncv;¿\Q&CF\c7V.ܪEN!`5|8ZtzR$Ft]1͜hNE% hbbĬf$gb9\6FeJ=&r/`4?F?,)-*[izڐqg1W[?Flv R$7Z\2!aGA9X2%gW*nj?2,ɑCyqPhzlN@pb$sĶ}y:x*.J(&DSH#`8l$͚ш<x?I+&ӷgkLhFbtȻk} Bg]m|,E[լz~. n*#&=OGTQ6tmhαa4 WFr`xdƌ2(NTgkKʅsF[~87s_22_ɓmΗ# *+վ'_:(NC*yu@D(id^ُMǤ9 kۋGr( fOD_'mHB$7weѱ vǑjW5_$A_hb4~^ۍ(Kvs/7Zc3Lϩ) qdS,h,r!Ь"1f0D4q=;]n NHN,@4dOBЦ;slrgf择z6.Ewj[<Pұ} Z<[uW(:_SUrӓ5Ѿn7-Cఉ<(FuU8NA57HZdBО4>0^`u?rȚ#Q,HU놭%胕4m71w8%ʷh KXCWeG.^3"宝XO_5crk''R}Zu-c^nOn ^7z׌p$8wO^ȅMCt[\)6;SeqzW7`j,{T*)]xFȁ<{AdLi q+4 vP(gk[ Lo3Jz;I:E,;UA{l.I1+n\gLOF~OdwW0 H|l~Z(-\vÁTYf,5;؎ ԺЮDS~\r̄NZ=MS~ Q{ŠBZqD2pZz| @XsaVɡ.ooYL~4J0ɩ2+{]1_qWf Q)wl9ymGIU{_?HpFDL5h&`q@&4iw.MQ W-kڋfX`!2U7$ :=L&%xpE3BKStgQIYyD t(eRoOJ`9TPBƗ(Lw8}$Bc `PeB WaQ?+Ayf=yB'}g+ CE|7OJZTuziԗM>z=qz']5? lshEvէ w ^c@J 4`2)4/ y(10{~>[i²l+ɍjt)xUCi5+ Pu~˲I׮ Z{eN F)?ϡC#8<@Yս#ǖA9zPKBM9R#~:K<(S>۳=H &5ʥtMe8UD*8ÙDNi׷޼C0lN~YQ8&'Ds0%aS7`N!@=*``BOM# Hkf.YEo6/E3yI4׾k=si&s8!Վ:MAl}iZ朮=뿓2Jk[ 'oq1UDuؑ'DU*&d !D.f1>X\1x%iU6ņt84Ď(PWr٩XT1hW"YankD`m|(_ 4. ^wj !~bZpg}CF}k{45аoBXa*mhMw7,^J\'P~]'/&Uݫ;"~͒:ti*="@qF@ޔMM 2$JshAe aNP8'fx/q{/Ma*xMW9JN@q\hK!ʹrȅ/GlR6% D {.c$ʛKNf0T|v0b޵4yΌ3|-}ai+jVԾYyuRþJc'pՠw)عl@<*PJc?YZM&#[qiYn9l lhSHMoM =&zNԳ CX-5⥺|I0|z0Ԕ>^\Fw_&;K'9V( D<ܬC6Z*aW_k1~W(ǡmw_ɅLg( X. -1G_A{PcnE %1#^z@JoKw;} ,:$5#ǭsv>vU_ O]W;)wmxڽ 3T4YDZM>C+3+d^ZMܳUl4f.W;Yħ_3Jdfxk) BNz PɁphVO!EY" sB**b#sjO4|{M@]_iuM*gٓ+)Lg 0Y16)ƒay@הc"Y4s" 533%cDz$G@ʮk^^Qc!ERe+=Ƥos7Oª]{M֒W)( *f J}@x/.,f4Cw!0e(˵X=~*VX=PT ⷱ%-rQG)MXRV䬑_~\]Qͷ&B)q%_M_E UҺO{hhgls%ý>T݄nBvn+N> 5펭#F ljҽVGTZnp~y&Zo&CT.E\c!&#Q@%^`1[/Qɶ̬+Hi ydҌػfG]dy"SWH5n %_ ӡЌbd-אfy1~ cNi32Zjybѻp'jEE=zjڵ3-ld-x@| P$,L@qgo Nۚ%n7|QyF >R=ʉxGƥ4ʍcaN)B*si Nѷ<@Yo+ʩK0ͭ_YeZuK@^!,>^&O=o#aJ; B$1 (9=%$9U B7__b'Gm`bK„CwYX:Pw RoUOR5t v|җ)crD  {eЁ'lL=\ȏI5Z0MR^Qo5T{ NfQyE7&bT\ Pj^h '}L.0Þ^lc:Xx#Tù5[84w*~*`n#o=M4ʗ$%^)vTL׍)2լ+hm .uNC&a6ܦ,寞Hpa^H+~lsӟ]mW j7H \ћ`WA:NeOw nȺLVX;F :XwH[ƟǁW"&_V\]]{OJ {=+F#y3\şEWl@XLT[TRv Saj =B 7ŏbD M μ1G\8e0 ϡs#^Zɓ,x֮GiÎ)t\8-j#Bd8xtjѯ!-G8.EO~2!Bd.q%aQ__R 1vYĎ_u&k0V 3 z G/dBS g‘:m=@ZcحGI5؜;i_<\ӿ;B^e&aLɨ-ݧY NJ6nO#^[CXAW*U)fA?ok)|\Sg^(޾ܕ seq3'/ (59Km<\PgMknX OSK۞1dgmQ5ֽir^|7=[pFz  8Xmk-QpthH /J XLDKŖ&T#Erv_ĴM4l\%,,5]?$\˅dZj ָ.]]~ad 7 'W:jdP`=ݽY3bp9suMZsƿel42nNT=mƑWNhQ~ݵx]Tj%# w2 kna94HDNTKd_N'ҹLғE&XRBGi-BZgDdU/:k͜2%*߃9/dmlpmH$+M )p_AX;.JK/qX`Y֏`0'84JDe3Z&x\yѧmVu`TGg>W9L?+HhfMG ggW}ȥXƕPc+  jH:!}Ta"}k!%ۜn} ɝiwHxYLC=uӼi,6e@6WՕ'yErāȟa,I?w^fLzhcWX *$$K[Ơ~ݸs𢭩,(V֯j/%7kaS&^MX˂^7+kyF:pߥJ·Gp!<סSUh^,<%+CYO!;R9oyO]fOE.H{!BHj/Yir.b| ƻjQC HS zg>Oub_E""X ~jmhބ dW e\<fT=G'P<8+ jj_`Өkfyˌ%@?ݑ.(1=NwyW8b]N´h`V&,68xˢFDءvQC6+vЌ{-ZnTy0$U`VmqkI1 |]`D]Toq[o9hs+`P7JF\ 哴Ѭ>ц#6*w;Ό–Un:ī<'FlB05&^[*V79S}䃚2S#)M?=Nu*/aVcFUUn~d8XT7\K¿ilw*4@:0;G!_,kskZb i} #fΨty͒*7Z} F?+狻+1q썼'׉9[Ll%`&7㜆^RHo:>Bi2YfG4*sdH!p8^h-8"߾ئSv)?My!^S q$x UESN¥MgVGE#d^,6A8=.̾Cfz1p˽L8Rha"VÅ[JPw緜d4M FL:jj R@nx^$AChqʑ<ي~ .e?[a6#*ތD7 1h2Qfy=);eGL|% i7v1Fa s?gs[x[ ŧ-Vr ݞ/VMfUˋZn93#4ŕYpzf!̀;wATFLw4jD {2؋ơ3c B@W|RjQ[Dpv0e,s%| _xl#|R-k-sTDT*Y径'"2zBj+eMMOD\v~SوZRL1(q|2m+Ʒw.!oU;3 '[ Qx[ݶX"Rdsəm n>4 G{"^WQQm,;Hz|*f`0[i-uJwg4_>K>ɂΥ rPؙj%'Ջ&:PΒ6GpTH+FnkإJ7D M9*r2u.^"8^8I"Dvx@0Bsb}x+A)Ǒ:Ի[>Վ5fŗ()l0#!M+VoN u _5pHLۤv)Dï`V.Ō|P58F& `--4(w{mKsv%LoW@S 3I6W_E3&n@bCvNn+% ԼΜ3?7'߰ k'#n:^zѯa[?_]Qj%1%LޯZVVmg/iq ޤVUp~x 27ټ8a@J@5/,u>Ca`ez*}E`AGC@xͮSgb(_Vef1VH5ޗ<)/lz)Q-A" $ F}oCԜ0(w9۲=Y&:=@H0j3G(컸qrL1ua7p>AE7ibmf6>5HBTOHt1w=)D&^+wEm|\k 30r ]mIkx Ԉ% tyK¶o![0d!A创(>eHd JG _ VZץ9bBH`,HΣ}zί8fp݀4I\_IO|s9b˶@g#'5!nSC!*"u ͛9<<"<-Uݥ]QC8Pr";73k3 H/j\i~I(]z~k @HY{ק*mF(]F-i"Ljk@SCA <POxjڅ L.[.Ae<"2Zzx?8mOrm˺cd؆^mR%wZh3ˮ޾O$0t\p֤D39&c޹Bѣ _є`v=ՉХq%slQ<,FVaLJK^EX",^YTǑ8R5 (;/;\yg| ջAeL9^l1(DH6ߓGmwkGdò BÕ$7_z93"S{zok!`HFY}2ՒɈé$YmH%ΣKtK.6,HPWb&}{c&WEfTϗJr hcA]󿙼L X!bU3lTy^ ߿ozd}{:Xh~PQH!8^t|z32:> a`(N \{R}Ae92Ϻ5RV֪ eZbzX+hE!X@ ^k@NP?I=SJ}=~cn$7pcud >@~~MbJ!<wmG.0c?& SܮiTYX!:O5`PWYG}̑1c5:NrD k[§??vM* <$j#p?Z&_\lSm/GV|XmmsZ_ :U.3aguKICxG9u>o_@ l7'M7s+g#־ǧںb~/k '9UAAê^K ve2,DO`*M'UY:wnjV/S(Eu-T1kL~2:ovGy;mk6!N5KPŘh!&V&p݈Z@|D0ypuXaAwHty-#-=|vy,EbތvDIV.퀸=piEu.f`nh6qfOjTu`BC3Oc'cC ̪ h l7 ۡԖ̾xEXNTǁ%G5~x1Oo/!Ehi&$W.#c]ZMݮ2#˨=r˦|kH I2{49d򩦑A\̼.)<۔$.YDOۜdaZIJ?H-?JbktN%&}_MDַd]a5gC439Z"]ScT* !WsIT벓8XXy8H#쵊ũady@  <ߦL`N؎aפ>YqNY9m7*vg?ai gM/N,R1dS_fj]ȿ"48{q>M5n4̮`]f'\qܮtG;Ƃ\X33VaBj*T?=f#@ x2k.=45pG|ex#-~Mٕed0AYЙY%1* YiHr׌257Y@~K9?yEǵڡA^`QBSa[IOU':=H'S BITQRbphtˌr7gќ' D`>ERC ,I> -:@l8 *˅/ <8eo:9h|fI#IֻQ)`g")`VUD.Ѹ: v&&;\J?܇h(l:gb9{&,Ë kH֬ ~Ct+fC>s6n^˳cJV4G0[9gE-!-m jWAȡsxhV^K?:Ϛxvfc1$X}mIQdKJ8=ԇnׁрc%m'Kj}<8ۼyv䂑QKB {#HjzSHI~uLDr8bwqݑdȱ#U|\Pq8cdD~KD"@]ݟ&4I<{b5ECÕR]bd1dD~;x *㲴\ L"b߳4 Og` 64>rdW0;f H D": ͂v_3,.٭\(E{@Hww?*& ~na c6Q% 91HTOb/b*-mBIu 8L3K^+תgKfI=e?Љ. `@Mރ]=3s| tDܧI)21 4qkބC[A3`F:,t=QC5E })X+C )I}EJ4c{Joe"42'C碷_$خi)ShT#}nQ}uDp'spY؍N1ur S&KS5~W7hGmѩ] Ν?RAZ|&ǘ|?;$jW'wlK-#oOv\F~X@G:/>{}Cqj/9}H3h"Wbƌo1 lkF2a;%ȣiBJu4*#!nEɣaFt2KL'[8Qqp.#`]qO{aW4 Ur5Xrj{={/frD'r3t3?e;t.-ޘ.qQ.:4@_z?u4qR[*I kJ~US'Y~љ9ƼХWا}¢B2Ҁ24 qڭ{}:|96D$ӄbUR*td3߹#zQ*IN8ir2[]M7,^iI8Z^,8j>;gJ4>C=S,o̲5]K{LT]x1nk|DpcDzZ6d, P K' h#vZ׊ z2MhzSBV⒙*yy}טg; 3xEL7Skݘ^ilbt;g߿F**i(EiTv+&-tctmX"A 2Sm88EE#ژ- ɛ ΃ak?nSyi[~+b)vDr@[M  > Ӊ 5 T)HøܽVN zp/Y0KYs$U_v9b+lcy7qòR$[hZ&ybx#{xa Ea+ ǘt#82@% O;l{,:~yO0bTC1n/W,=vfll<3>t`FuylWaח-iU.lFT{<6F*Gd1~t45I{LWP f#c.}zJqŁ9M.1}tU7U iV aHa&qM6Öࠒ9̊~SAf!jOiB GRnՉT>Bq!ҁeΞ]6enJ 1 Ykpd)6(`8ɺL Y2QuRy<&"ri;m}c!WCew }Lc-a@.puV}@JS> >*feb= E3K!JVN!D]Yf~W/gFRw4u^.|MRaj$ fgfWVmX v .ogʶ FDOhjesʡ}YI5^)\ єCwM͑gG{\ЁX&t1uƁn]f 1ꬹWPA6+3G$3+(F {Uf\CLi`B^AQ+ajkK" \"_<~_k-[&:fW? & dI8ra q x-g67%SƁJ4}K`H0jddǑD$e P(OܛKcb,IPIgs(mJ=d'V(Ř<.7`A9}'q8`ȳRC=IJz_*!"iGLA2%c)l]Ζ UeZ%f[qh% 0вlP@;.{.kxG9pгФe)j3W+klPJ>+%JBj!Ta%p;Q LBǎpJ JA"q"bSZGb;{C8U--Ks >mƉ6DYP@!H 1v@^wQo%.6V8v7* )ϖSD쟰%82e0qz?ڏsߙO]/y:_&a\{ئ>|.+ۙTWX7 v EFCn1Yi zq&HƧ,G:egX/KS3T?\ArNAHsZ6-0ݵ֏si ڙ0RL!;VN?hnWJ84G5Xb$07?l I8P.˙}IzIڋ&?ùKgۻ#u`#z-i=FP2lcӷy6 ϩm `.W7 5NB3?G̎5 M75QB"ZsiUv}ǧaONNh~񢌘HjV첔ӳsڦSmTõ]5}n&T|o2kf`3ݘ*t0I PWǫ#dvs7!٧!hNBh<%"$zx &I8G =Zr2g 5xV36uZPx#ÚTBh2R}yZ:;@ &ڵ速nrbq}.o{yN1%\]#ώNb^E |fup=I, ]#FG܋vY6"'PN'|ǯ͂ɤyG-"@fB@>Fƀ){6LI#؍,źlāH̑uϯaQ[?:(xUuCRD"ΞڶQ!"eB'Pt|%?$mעҲĘz+Y}3@  QHct-4xrϑ:A/GQr"aZSF:蠐AЎ7p%ySmaw3xkO;mM`AEUᤡIe%]i 5o 05 +wbl3t(JtZ6_O }?wbjC_[]<@\D@dgyMٗ舘x}a%dK?h2d dr ,]1m3Fu@YX)å+LM彀nk󛕙ªL`OOle1XKqd`d|ƒX~uX"'6^f/m&2g/Ieqӆʰn)+[;2qS~P:c'~ROKlRk |S[QqQN.'>֓'Dc!e55|y$ L6˅G˜\+w:1Iz~(Cd YOr 8Lޡg'L50"S9zfsAPX] \7S"zA[_/~8L*5+uR~@?iwc":ف 5_0bn[J:~C泝ŕ LT#2{>d'N0dYˆipfY4ʻ6!!#h[BcCz_LD~&pl g)E̹f.iu*a:*%gfY"ڣrmz#>P)bDz5n`OiXb a}6x]VhI02mP m9ߵC2ƠST ( Z!숙_ݞW}-gHD8s]R.>ez YgC@Ճ# i3|_A/)NN^GG3pϚw6ӓ {.'RD<b׏mnDsa\D9gޝF>'!rm_7d\=BP;IƚXBJ / g-sXpy1m Ȏߟz`^f;x&v"?Y :7014sZ#c3,/pTQ_)'=R([/ 33w m%Bqoni*6^l2=]Cg?7>xk\*`6-+w5(&P./[SEN/:GZ) q1[Cl)oX٨S)3^NmqPJҜ9?G'JCqK|mFwy2fb>Hm{o"DyWAǾ1/? hO~@E6&]S;(+vw 5{{r d|mq)=s%MKOluZ޹zB5s{?Z yy(&h2%b,@qY57D͖B(f8}S΃OKlj^:t'y66lk^ibϡCowثN*yk\    {rRd ̠a9wHRzs5C:)*wCL_= m=XӺӨ9VX LDfnʒ6#L߸2!7bKW4} ݄WS|@06)p:2BVSۧRȩ]3k$=[E k"#FҾ9fhr1 h)cԆDc[ eyl #E^+:;KL\pt-Vy E\O%a(0knoJI%2W< dd5Uvhˣ!W:a 5c+NQ83z-($h_- F9יX f~- A>fgeO,93~x|}TH<u?0Z3oYo Yʶ[,>4,17^A`MwDΰzoce>ΩN6,vG>/>><;R4h䲌~48cO^&Møi G+dO!AW1K%j ނ%~LuuW3uZ¢ Flޘ MIq޲LV40y䍡$/[ٓNʷ*+5"ƭ=Vxd\o&u1aqܧNcGrEvPE\!mW> .]p3fz{\h(t3Ly:_2D-X9ז?EQ@"PU.$ˠ0sX# TCAӬֻxbM3L- )cYWs*ejasۢ6Zk.H/riG.C#H摲aꦻ}@qc9Ϳ [* 9}( wyZD r5 ^WpR~cuՠY#p2D4p;\dYaE5ThXQ1 T1]ؖf,RvvIIg$?#}`u&MW,9d>2QжΤ.W}ΛfR%?l._`3#+lš]V21 [