mbedtls-devel-2.16.5-lp152.1.2 >  A ^/=„.9"XKkpTam~d!fFs9}`LaI풀lSM|a6¾2?_x|`)9Ӣ3Y量q(I(M)/xjм#UYٙ ln a !Xpi;xus6 (J/D%_~]Y 0vp mZTƫӇHv-C 0i݇& dES[!U603b592eb75d0857dd15880296f8e8eed710bfd87fd6b23a89a42e083cff8cf2d07b70244263d87b5dd22c172589f310419154ca^/=„3 ZKi1%:G(x̂X?ہRv]ʻNOcltȹpev\lkD$VZ Ej=}~ iy>׋?1 :p˱;oY4_U(CpƕqKYwӣmEYCҰ5$m7eߛ2DIbP˕=:*6P!su ËKȊ(x#a*0b BZōzڝ`[Î-x+%c*ȿ.tp9#ŋ|j>p;?d ! R  1QfltWW ~W ,W W W WWWjW ! !(!(!8!!9"t!:%N!FGWHWI\WXY\W] <W^ b Wcd^ecfflhu|Wvz\lpvCmbedtls-devel2.16.5lp152.1.2Development files for mbedtls, a SSL/TLS libraryThis subpackage contains the development files for mbedtls, a suite of libraries for cryptographic functions and the SSL/TLS protocol suite.^lamb69րopenSUSE Leap 15.2openSUSEApache-2.0https://bugs.opensuse.orgDevelopment/Libraries/C and C++https://tls.mbed.orglinuxx86_64r!?/4 1C7 6$"p?BlK: SD',aHjn,@)% 6\lBIFx$Q%8%> *}d$rSB 2Jl6M#)2R+J+Re xJlZ ?Martin Pluskal Martin Pluskal Martin Pluskal Pedro Monreal Gonzalez Pedro Monreal Gonzalez mpluskal@suse.commpluskal@suse.commpluskal@suse.commpluskal@suse.comkbabioch@suse.comfisiu@opensuse.orgmpluskal@suse.commpluskal@suse.commpluskal@suse.commpluskal@suse.comjengelh@inai.dempluskal@suse.comastieger@suse.commpluskal@suse.commpluskal@suse.commpluskal@suse.commpluskal@suse.comdimstar@opensuse.orgfisiu@opensuse.orgschwab@suse.dempluskal@suse.commpluskal@suse.commpluskal@suse.commpluskal@suse.commpluskal@suse.comfisiu@opensuse.orgfisiu@opensuse.org- Update to version 2.16.5: * Security improvements and bugfixes- Update to version 2.16.3: * Security improvements and bugfixes- Update to version 2.16.2: * Security improvements and bugfixes - Use ninja to for build- Update to version 2.16.0: Features * Add a new config.h option of MBEDTLS_CHECK_PARAMS that enables validation of parameters in the API. This allows detection of obvious misuses of the API, such as passing NULL pointers. The API of existing functions hasn't changed, but requirements on parameters have been made more explicit in the documentation. See the corresponding API documentation for each function to see for which parameter values it is defined. This feature is disabled by default. See its API documentation in config.h for additional steps you have to take when enabling it. API Changes * The following functions in the random generator modules have been deprecated and replaced as shown below. The new functions change the return type from void to int to allow returning error codes when using MBEDTLS__ALT for the underlying AES or message digest primitive. Fixes #1798. mbedtls_ctr_drbg_update() -> mbedtls_ctr_drbg_update_ret() mbedtls_hmac_drbg_update() -> mbedtls_hmac_drbg_update_ret() * Extend ECDH interface to enable alternative implementations. * Deprecate error codes of the form MBEDTLS_ERR_xxx_INVALID_KEY_LENGTH for ARIA, CAMELLIA and Blowfish. These error codes will be replaced by the more generic per-module error codes MBEDTLS_ERR_xxx_BAD_INPUT_DATA. * Additional parameter validation checks have been added for the following modules - AES, ARIA, Blowfish, CAMELLIA, CCM, GCM, DHM, ECP, ECDSA, ECDH, ECJPAKE, SHA, Chacha20 and Poly1305, cipher, pk, RSA, and MPI. Where modules have had parameter validation added, existing parameter checks may have changed. Some modules, such as Chacha20 had existing parameter validation whereas other modules had little. This has now been changed so that the same level of validation is present in all modules, and that it is now optional with the MBEDTLS_CHECK_PARAMS flag which by default is off. That means that checks which were previously present by default will no longer be. New deprecations * Deprecate mbedtls_ctr_drbg_update() and mbedtls_hmac_drbg_update() in favor of functions that can return an error code. Bugfix * Fix for Clang, which was reporting a warning for the bignum.c inline assembly for AMD64 targets creating string literals greater than those permitted by the ISO C99 standard. Found by Aaron Jones. Fixes #482. * Fix runtime error in mbedtls_platform_entropy_poll() when run through qemu user emulation. Reported and fix suggested by randombit. Fixes #1212. * Fix an unsafe bounds check when restoring an SSL session from a ticket. This could lead to a buffer overflow, but only in case ticket authentication was broken. Reported and fix suggested by Guido Vranken in #659. * Add explicit integer to enumeration type casts to example program programs/pkey/gen_key which previously led to compilation failure on some toolchains. Reported by phoenixmcallister. Fixes #2170. * Clarify documentation of mbedtls_ssl_set_own_cert() regarding the absence of check for certificate/key matching. Reported by Attila Molnar, #507. * Fix double initialization of ECC hardware that made some accelerators hang.- Library package version bumped to libmbedtls12- Update to version 2.14.1: [bsc#1118727, CVE-2018-19608] Security * Fix timing variations and memory access variations in RSA PKCS#1 v1.5 decryption that could lead to a Bleichenbacher-style padding oracle attack. In TLS, this affects servers that accept ciphersuites based on RSA decryption (i.e. ciphersuites whose name contains RSA but not (EC)DH(E)). Discovered by Eyal Ronen (Weizmann Institute), Robert Gillham (University of Adelaide), Daniel Genkin (University of Michigan), Adi Shamir (Weizmann Institute), David Wong (NCC Group), and Yuval Yarom (University of Adelaide, Data61). The attack is described in more detail in the paper available here: http://cat.eyalro.net/cat.pdf CVE-2018-19608 * In mbedtls_mpi_write_binary(), don't leak the exact size of the number via branching and memory access patterns. An attacker who could submit a plaintext for RSA PKCS#1 v1.5 decryption but only observe the timing of the decryption and not its result could nonetheless decrypt RSA plaintexts and forge RSA signatures. Other asymmetric algorithms may have been similarly vulnerable. Reported by Eyal Ronen, Robert Gillham, Daniel Genkin, Adi Shamir, David Wong and Yuval Yarom. * Wipe sensitive buffers on the stack in the CTR_DRBG and HMAC_DRBG modules. API Changes * The new functions mbedtls_ctr_drbg_update_ret() and mbedtls_hmac_drbg_update_ret() are similar to mbedtls_ctr_drbg_update() and mbedtls_hmac_drbg_update() respectively, but the new functions report errors whereas the old functions return void. We recommend that applications use the new functions. - Version 2.14.0: Security * Fix overly strict DN comparison when looking for CRLs belonging to a particular CA. This previously led to ignoring CRLs when the CRL's issuer name and the CA's subject name differed in their string encoding (e.g., one using PrintableString and the other UTF8String) or in the choice of upper and lower case. Reported by Henrik Andersson of Bosch GmbH in issue [#1784]. * Fix a flawed bounds check in server PSK hint parsing. In case the incoming message buffer was placed within the first 64KiB of address space and a PSK-(EC)DHE ciphersuite was used, this allowed an attacker to trigger a memory access up to 64KiB beyond the incoming message buffer, potentially leading to an application crash or information disclosure. * Fix mbedtls_mpi_is_prime() to use more rounds of probabilistic testing. The previous settings for the number of rounds made it practical for an adversary to construct non-primes that would be erroneously accepted as primes with high probability. This does not have an impact on the security of TLS, but can matter in other contexts with numbers chosen potentially by an adversary that should be prime and can be validated. For example, the number of rounds was enough to securely generate RSA key pairs or Diffie-Hellman parameters, but was insufficient to validate Diffie-Hellman parameters properly. See "Prime and Prejudice" by by Martin R. Albrecht and Jake Massimo and Kenneth G. Paterson and Juraj Somorovsky. Features * Add support for temporarily suspending expensive ECC computations after some configurable amount of operations. This is intended to be used in constrained, single-threaded systems where ECC is time consuming and can block other operations until they complete. This is disabled by default, but can be enabled by MBEDTLS_ECP_RESTARTABLE at compile time and configured by mbedtls_ecp_set_max_ops() at runtime. It applies to the new xxx_restartable functions in ECP, ECDSA, PK and X.509 (CRL not supported yet), and to existing functions in ECDH and SSL (currently only implemented client-side, for ECDHE-ECDSA ciphersuites in TLS 1.2, including client authentication). * Add support for Arm CPU DSP extensions to accelerate asymmetric key operations. On CPUs where the extensions are available, they can accelerate MPI multiplications used in ECC and RSA cryptography. Contributed by Aurelien Jarno. * Extend RSASSA-PSS signature to allow a smaller salt size. Previously, PSS signature always used a salt with the same length as the hash, and returned an error if this was not possible. Now the salt size may be up to two bytes shorter. This allows the library to support all hash and signature sizes that comply with FIPS 186-4, including SHA-512 with a 1024-bit key. * Add support for 128-bit keys in CTR_DRBG. Note that using keys shorter than 256 bits limits the security of generated material to 128 bits. API Changes * Add a common error code of `MBEDTLS_ERR_PLATFORM_FEATURE_UNSUPPORTED` for a feature that is not supported by underlying alternative implementations implementing cryptographic primitives. This is useful for hardware accelerators that don't implement all options or features. New deprecations * All module specific errors following the form MBEDTLS_ERR_XXX_FEATURE_UNAVAILABLE that indicate a feature is not supported are deprecated and are now replaced by the new equivalent platform error. * All module specific generic hardware acceleration errors following the form MBEDTLS_ERR_XXX_HW_ACCEL_FAILED that are deprecated and are replaced by the equivalent plaform error. * Deprecate the function mbedtls_mpi_is_prime() in favor of mbedtls_mpi_is_prime_ext() which allows specifying the number of Miller-Rabin rounds. Bugfix * Fix wrong order of freeing in programs/ssl/ssl_server2 example application leading to a memory leak in case both MBEDTLS_MEMORY_BUFFER_ALLOC_C and MBEDTLS_MEMORY_BACKTRACE are set. Fixes #2069. * Fix a bug in the update function for SSL ticket keys which previously invalidated keys of a lifetime of less than a 1s. Fixes #1968. * Fix failure in hmac_drbg in the benchmark sample application, when MBEDTLS_THREADING_C is defined. Found by TrinityTonic, #1095 * Fix a bug in the record decryption routine ssl_decrypt_buf() which lead to accepting properly authenticated but improperly padded records in case of CBC ciphersuites using Encrypt-then-MAC. * Fix memory leak and freeing without initialization in the example program programs/x509/cert_write. Fixes #1422. * Ignore IV in mbedtls_cipher_set_iv() when the cipher mode is MBEDTLS_MODE_ECB. Found by ezdevelop. Fixes #1091. * Zeroize memory used for buffering or reassembling handshake messages after use. * Use `mbedtls_platform_zeroize()` instead of `memset()` for zeroization of sensitive data in the example programs aescrypt2 and crypt_and_hash. * Change the default string format used for various X.509 DN attributes to UTF8String. Previously, the use of the PrintableString format led to wildcards and non-ASCII characters being unusable in some DN attributes. Reported by raprepo in #1860 and by kevinpt in #468. Fix contributed by Thomas-Dee. * Fix compilation failure for configurations which use compile time replacements of standard calloc/free functions through the macros MBEDTLS_PLATFORM_CALLOC_MACRO and MBEDTLS_PLATFORM_FREE_MACRO. Reported by ole-de and ddhome2006. Fixes #882, #1642 and #1706. Changes * Removed support for Yotta as a build tool. * Add tests for session resumption in DTLS. * Close a test gap in (D)TLS between the client side and the server side: test the handling of large packets and small packets on the client side in the same way as on the server side. * Change the dtls_client and dtls_server samples to work by default over IPv6 and optionally by a build option over IPv4. * Change the use of Windows threading to use Microsoft Visual C++ runtime calls, rather than Win32 API calls directly. This is necessary to avoid conflict with C runtime usage. Found and fixed by irwir. * Remember the string format of X.509 DN attributes when replicating X.509 DNs. Previously, DN attributes were always written in their default string format (mostly PrintableString), which could lead to CRTs being created which used PrintableStrings in the issuer field even though the signing CA used UTF8Strings in its subject field; while X.509 compliant, such CRTs were rejected in some applications, e.g. some versions of Firefox, curl and GnuTLS. Reported in #1033 by Moschn. Fix contributed by Thomas-Dee. * Improve documentation of mbedtls_ssl_get_verify_result(). Fixes #517 reported by github-monoculture. * Add MBEDTLS_MPI_GEN_PRIME_FLAG_LOW_ERR flag to mbedtls_mpi_gen_prime() and use it to reduce error probability in RSA key generation to levels mandated by FIPS-186-4. - Version 2.13.1 API Changes * Extend the platform module with an abstraction mbedtls_platform_gmtime_r() whose implementation should behave as a thread-safe version of gmtime(). This allows users to configure such an implementation at compile time when the target system cannot be deduced automatically, by setting the option MBEDTLS_PLATFORM_GMTIME_R_ALT. At this stage Mbed TLS is only able to automatically select implementations for Windows and POSIX C libraries. Bugfix * Fix build failures on platforms where only gmtime() is available but neither gmtime_r() nor gmtime_s() are present. Fixes #1907. - Version 2.13.0 Security * Fix an issue in the X.509 module which could lead to a buffer overread during certificate extensions parsing. In case of receiving malformed input (extensions length field equal to 0), an illegal read of one byte beyond the input buffer is made. Found and analyzed by Nathan Crandall. Features * Add support for fragmentation of outgoing DTLS handshake messages. This is controlled by the maximum fragment length as set locally or negotiated with the peer, as well as by a new per-connection MTU option, set using mbedtls_ssl_set_mtu(). * Add support for auto-adjustment of MTU to a safe value during the handshake when flights do not get through (RFC 6347, section 4.1.1.1, last paragraph). * Add support for packing multiple records within a single datagram, enabled by default. * Add support for buffering out-of-order handshake messages in DTLS. The maximum amount of RAM used for this can be controlled by the compile-time constant MBEDTLS_SSL_DTLS_MAX_BUFFERING defined in mbedtls/config.h. API Changes * Add function mbedtls_ssl_set_datagram_packing() to configure the use of datagram packing (enabled by default). Bugfix * Fix a potential memory leak in mbedtls_ssl_setup() function. An allocation failure in the function could lead to other buffers being leaked. * Fixes an issue with MBEDTLS_CHACHAPOLY_C which would not compile if MBEDTLS_ARC4_C and MBEDTLS_CIPHER_NULL_CIPHER weren't also defined. #1890 * Fix a memory leak in ecp_mul_comb() if ecp_precompute_comb() fails. Fix contributed by Espressif Systems. * Add ecc extensions only if an ecc based ciphersuite is used. This improves compliance to RFC 4492, and as a result, solves interoperability issues with BouncyCastle. Raised by milenamil in #1157. * Replace printf with mbedtls_printf in the ARIA module. Found by TrinityTonic in #1908. * Fix potential use-after-free in mbedtls_ssl_get_max_frag_len() and mbedtls_ssl_get_record_expansion() after a session reset. Fixes #1941. * Fix a bug that caused SSL/TLS clients to incorrectly abort the handshake with TLS versions 1.1 and earlier when the server requested authentication without providing a list of CAs. This was due to an overly strict bounds check in parsing the CertificateRequest message, introduced in Mbed TLS 2.12.0. Fixes #1954. * Fix a miscalculation of the maximum record expansion in mbedtls_ssl_get_record_expansion() in case of ChachaPoly ciphersuites, or CBC ciphersuites in (D)TLS versions 1.1 or higher. Fixes #1913, #1914. * Fix undefined shifts with negative values in certificates parsing (found by Catena cyber using oss-fuzz) * Fix memory leak and free without initialization in pk_encrypt and pk_decrypt example programs. Reported by Brace Stout. Fixes #1128. * Remove redundant else statement. Raised by irwir. Fixes #1776. Changes * Copy headers preserving timestamps when doing a "make install". Contributed by xueruini. * Allow the forward declaration of public structs. Contributed by Dawid Drozd. Fixes #1215 raised by randombit. * Improve compatibility with some alternative CCM implementations by using CCM test vectors from RAM. * Add support for buffering of out-of-order handshake messages. * Add warnings to the documentation of the HKDF module to reduce the risk of misusing the mbedtls_hkdf_extract() and mbedtls_hkdf_expand() functions. Fixes #1775. Reported by Brian J. Murray.- Update to version 2.12.0: * Security + Fixed a vulnerability in the TLS ciphersuites based on use of CBC and SHA-384 in DTLS/TLS 1.0 to 1.2, that allowed an active network attacker to partially recover the plaintext of messages under certains conditions by exploiting timing side-channels. + Fixed a vulnerability in TLS ciphersuites based on CBC, in DTLS/TLS 1.0 to 1.2, that allowed a local attacker, with the ability to execute code on the local machine as well as to manipulate network packets, to partially recover the plaintext of messages under certain conditions by using a cache attack targetting an internal MD/SHA buffer. + Added a counter-measure against a vulnerability in TLS ciphersuites based on CBC, in DTLS/TLS 1.0 to 1.2, that allowed a local attacker with the ability to execute code on the local machine as well as manipulate network packets, to partially recover the plaintext of messages certain conditions (see previous entry) by using a cache attack targeting the SSL input record buffer. * Features + Added new cryptographic primitives, the stream cipher Chacha20, one-time authenticator Poly1305 and AEAD construct Chacha20-Poly1305, as defined in RFC 7539. Contributed by Daniel King. + Added support for the CHACHA20-POLY1305 ciphersuites from RFC 7905. + Made the receive and transmit buffers independently configurable in size, for situations where the outgoing buffer can be fixed at a smaller size than the incoming buffer + Added support for the AES based key wrapping modes defined by NIST SP 800-38F algorithms KW and KWP and by RFC's 3394 and 5649. + Added platform support for the Haiku OS. * Bugfix + Fixed the key_app_writer example which was creating an invalid ASN.1 tag by writing an additional leading zero byte. Found by Aryeh R. #1257. + Fixed a C++ compilation error, caused by a variable named new. Found and fixed by Hirotaka Niisato. #1783. + Fixed the "no symbols" warning issued by ranlib when building on Mac OS X. Fix contributed by tabascoeye. + Clarified documentation for mbedtls_ssl_write() to include 0 as a valid return value. Found by @davidwu2000. #839. + Fixed a memory leak in mbedtls_x509_csr_parse(). Found and fixed by catenacyber, Philippe Antoine. #1623. + Added length checks to some TLS parsing functions. Found and fixed by Philippe Antoine from Catena cyber. #1663. + Remove unused headers included in x509.c. Found by Chris Hanson and fixed by Brendan Shanks. #992. + Fixed compilation error when MBEDTLS_ARC4_C is disabled and MBEDTLS_CIPHER_NULL_CIPHER is enabled. Found by TrinityTonic in #1719. + Fixed the inline assembly for the MPI multiply helper function for i386 and i386 with SSE2. Found by László Langó. #1550. + Fixed the namespacing in header files. Remove the mbedtls namespacing in the #include in the header files. #857. + Fixed a compiler warning of 'use before initialisation' in mbedtls_pk_parse_key(). Found by Martin Boye Petersen and fixed by Dawid Drozd.#1098. + Fixed decryption of zero length messages (which contain all padding) when a CBC based ciphersuite was used together with Encrypt-then-MAC. + Fixed the ssl_client2 example to send application data with 0-length content when the request_size argument is set to 0 as stated in the documentation. #1833. + Corrected the documentation for mbedtls_ssl_get_session(). This API has deep copy of the session, and the peer certificate is not lost. #926. + Fixed issues when building to the C99 standard, using -std=c99. Fixed by Nick Wilson. * Changes + Fails when receiving a TLS alert message with an invalid length, or invalid zero-length messages when using TLS 1.2. Contributed by Espressif Systems. + Changed the default behaviour of mbedtls_hkdf_extract() to return an error when calling with a NULL salt and non-zero salt length. Contributed by Brian J Murray + Change the shebang line in Perl scripts to look up perl in the PATH. Contributed by fbrosson. + Allow overriding the time on Windows via the platform-time abstraction. Fixed by Nick Wilson. + Use gmtime_r/gmtime_s for thread-safety. Fixed by Nick Wilson.- Update to version 2.11.0: * Features + Added support for the XTS block cipher mode with AES (AES-XTS). Contributed by Aorimn in pull request #414. + Implemented the HMAC-based extract-and-expand key derivation function (HKDF) per RFC 5869. Contributed by Thomas Fossati. + For TLS servers, added support for offloading private key operations to an external cryptoprocessor. Private key operations can be asynchronous to allow non-blocking operation of the TLS server stack. + Added support for ARIA cipher (RFC 5794) and associated TLS ciphersuites (RFC 6209). ARIA is disabled by default. To enable, see MBEDTLS_ARIA_C in config.h. + Added support for the CCM* block cipher mode as defined in IEEE Std 802.15.4. + Added an additional block mode, OFB (Output Feedback) per NIST SP 800-38a, to the AES module and cipher abstraction module. * API Changes + Mbed TLS 2.11.0 maintains source code compatibility with the last minor version, Mbed TLS 2.9.0, but extends the interface with additional capabilities. Mbed TLS 2.11.0 modifies the ABI and increases the SOVERSION. * Bugfix + Fixed the cert_write example to handle certificates signed with elliptic curves as well as RSA. Fixes #777 found by dbedev. + Fixed the redefinition of _WIN32_WINNT, to avoid overriding a definition used by user applications. Found and fixed by Fabio Alessandrelli. + Fixed compilation warnings with the IAR toolchain on 32-bit platforms. Reported by rahmanih in #683. + Fixed an issue with MicroBlaze support in bn_mul.h which was causing the build to fail. Found by zv-io. Fixes #1651. + Fixed braces in mbedtls_memory_buffer_alloc_status(). Found by sbranden in #552. + Added the macro MBEDTLS_X509_MAX_FILE_PATH_LEN that enables the user to configure the maximum length of a file path that can be buffered when calling mbedtls_x509_crt_parse_path(). Fixes #492. + Fixed redundant declaration of mbedtls_ssl_list_ciphersuites. Raised by TrinityTonic in #1359. - Changes for version 2.9.0: + Security + Fixed an issue in the X.509 module which could lead to a buffer overread during certificate validation. Additionally, the issue could also lead to unnecessary callback checks being made or to some validation checks to be omitted. The overread could be triggered remotely, while the other issues would require a non DER-compliant certificate to be correctly signed by a trusted CA, or a trusted CA with a non DER-compliant certificate. Found by luocm. Fixes #825. + Fixed the buffer length assertion in the ssl_parse_certificate_request() function which could lead to an arbitrary overread of the message buffer. The overreads could be caused by receiving a malformed algorithms section which was too short. In builds with debug output, this overread data was output with the debug data. + Fixed a client-side bug in the validation of the server's ciphersuite choice which could potentially lead to the client accepting a ciphersuite it didn't offer or a ciphersuite that could not be used with the TLS or DTLS version chosen by the server. This could lead to corruption of internal data structures for some configurations. * Features + Added an option of MBEDTLS_AES_FEWER_TABLES, to dynamically compute smaller AES tables during runtime, thereby reducing the RAM/ROM footprint by ~6KiB. Suggested and contributed by jkivilin. + Added initial support for Curve448 (RFC 7748). So far only mbedtls_ecp_mul() and ECDH primitive functions (mbedtls_ecdh_gen_public(), mbedtls_ecdh_compute_shared()) are supported for now. Contributed by Nicholas Wilson. * API Changes + Mbed TLS 2.9.0 maintains source code and binary compatibility with the last minor version, Mbed TLS 2.8.0, but extends the interface with additional capabilities. + Extended the API with the function of mbedtls_net_poll() to allow user applications to wait for a network context to become ready before reading or writing. + Added the function mbedtls_ssl_check_pending() to the public API to allow a check for whether more more data is pending to be processed in the internal message buffers. This function is necessary to determine the underlying transport when event-driven IO is used. * Bugfix + Fixed a spurious uninitialized variable warning in cmac.c. Fix independently contributed by Brian J Murray and David Brown. + Added missing dependencies in test suites that led to build failures in configurations that omit certain hashes or public-key algorithms. Fixes #1040. + Fixed a C89 incompatibility issue in benchmark.c. Contributed by Brendan Shanks. Fixes #1353. + Added missing dependencies for MBEDTLS_HAVE_TIME_DATE and MBEDTLS_VERSION_FEATURES in some test suites. Contributed by Deomid Ryabkov. Fixes #1299, #1475. + Fixed the Makefile build process for building shared libraries on Mac OS X. Fixed by mnacamura. + Fixed parsing of PKCS#8 encoded Elliptic Curve keys. Previously Mbed TLS was unable to parse keys which had only the optional parameters field of the ECPrivateKey structure. Found by Jethro Beekman, fixed in #1379. + Added an optimisation to return the plaintext data more quickly on unpadded CBC decryption, as stated in the mbedtls_cipher_update() documentation. Contributed by Andy Leiserson. + Fixed the overriding and ignoring of return values when parsing and writing to a file in the pk_sign program. Found by kevlut in #1142. + Added restrictions to the usage of the error code MBEDTLS_ERR_SSL_WANT_READ to situations where data needs to be fetched from the underlying transport in order to make progress. Previously, this error code was also occasionally returned when unexpected messages were being discarded, ignoring that further messages could potentially already be pending to be processed in the internal buffers; these cases led to deadlocks when event-driven I/O was used. Found and reported by Hubert Mis in #772. + Fixed buffer length assertions in the ssl_parse_certificate_request() function which led to a potential one byte overread of the message buffer. + Fixed invalid buffer sizes being passed to zlib during record compression and decompression. + Raised the soversion of libmbedcrypto to match the soversion of the maintained 2.7 branch. The soversion was increased in Mbed TLS version 2.7.1 to reflect breaking changes in that release, but the increment was missed in 2.8.0 and later releases outside of the 2.7 branch.- Update to version 2.8.0: * Security: + Defend against Bellcore glitch attacks by verifying the results of RSA private key operations. + Fix implementation of the truncated HMAC extension. The previous implementation allowed an offline 2^80 brute force attack on the HMAC key of a single, uninterrupted connection (with no resumption of the session). + Reject CRLs containing unsupported critical extensions. Found by Falko Strenzke and Evangelos Karatsiolis. + Fix a buffer overread in ssl_parse_server_key_exchange() that could cause a crash on invalid input. + Fix a buffer overread in ssl_parse_server_psk_hint() that could cause a crash on invalid input. * Features: + Enable reading encrypted PEM files produced by software that uses PBKDF2-SHA2, such as OpenSSL 1.1. Submitted by Antonio Quartulli, OpenVPN Inc. Fixes #1339 + Support public keys encoded in PKCS#1 format. #1122 * New deprecations: + Compression and crypto don't mix. We don't recommend using compression and cryptography, and have deprecated support for record compression (configuration option MBEDTLS_ZLIB_SUPPORT). * Bugfix: + Fix mbedtls_x509_crt_profile_suiteb, which used to reject all certificates with flag MBEDTLS_X509_BADCERT_BAD_PK even when the key type was correct. In the context of SSL, this resulted in handshake failure. Reported by daniel in the Mbed TLS forum. #1351 + Fix setting version TLSv1 as minimal version, even if TLS 1 is not enabled. Set MBEDTLS_SSL_MIN_MAJOR_VERSION and MBEDTLS_SSL_MIN_MINOR_VERSION instead of MBEDTLS_SSL_MAJOR_VERSION_3 and MBEDTLS_SSL_MINOR_VERSION_1. #664 + Fix compilation error on Mingw32 when _TRUNCATE is defined. Use _TRUNCATE only if __MINGW32__ is not defined. Fix suggested by Thomas Glanzmann and Nick Wilson on issue #355 + Fix memory allocation corner cases in memory_buffer_alloc.c module. Found by Guido Vranken. #639 + Don't accept an invalid tag when parsing X.509 subject alternative names in some circumstances. + Fix a possible arithmetic overflow in ssl_parse_server_key_exchange() that could cause a key exchange to fail on valid data. + Fix a possible arithmetic overflow in ssl_parse_server_psk_hint() that could cause a key exchange to fail on valid data. + Fix a 1-byte heap buffer overflow (read-only) during private key parsing. Found through fuzz testing. * Changes + Fix tag lengths and value ranges in the documentation of CCM encryption. Contributed by Mathieu Briand. + Fix a typo in a comment in ctr_drbg.c. Contributed by Paul Sokolovsky. + Remove support for the library reference configuration for picocoin. + MD functions deprecated in 2.7.0 are no longer inline, to provide a migration path for those depending on the library's ABI. + Use (void) when defining functions with no parameters. Contributed by Joris Aerts. #678- Use more cmake macros - Update spec file using spec-cleaner- Update to version 2.7.0: - Security * Fix a heap corruption issue in the implementation of the truncated HMAC extension. When the truncated HMAC extension is enabled and CBC is used, sending a malicious application packet could be used to selectively corrupt 6 bytes on the peer's heap, which could potentially lead to crash or remote code execution. The issue could be triggered remotely from either side in both TLS and DTLS. (CVE-2018-0488 boo#1080828) * Fix a buffer overflow in RSA-PSS verification when the hash was too large for the key size, which could potentially lead to crash or remote code execution. Found by Seth Terashima, Qualcomm Product Security Initiative, Qualcomm Technologies Inc. (CVE-2018-0487 boo#1080826) * Fix buffer overflow in RSA-PSS verification when the unmasked data is all zeros. * Fix an unsafe bounds check in ssl_parse_client_psk_identity() when adding 64 KiB to the address of the SSL buffer and causing a wrap around. * Fix a potential heap buffer overflow in mbedtls_ssl_write(). When the (by default enabled) maximum fragment length extension is disabled in the config and the application data buffer passed to mbedtls_ssl_write is larger than the internal message buffer (16384 bytes by default), the latter overflows. * Add a provision to prevent compiler optimizations breaking the time constancy of mbedtls_ssl_safer_memcmp(). * Ensure that buffers are cleared after use if they contain sensitive data. Changes were introduced in multiple places in the library. * Set PEM buffer to zero before freeing it, to avoid decoded private keys being leaked to memory after release. * Fix dhm_check_range() failing to detect trivial subgroups and potentially leaking 1 bit of the private key. Reported by prashantkspatil. * Make mbedtls_mpi_read_binary() constant-time with respect to the input data. Previously, trailing zero bytes were detected and omitted for the sake of saving memory, but potentially leading to slight timing differences. Reported by Marco Macchetti, Kudelski Group. * Wipe stack buffer temporarily holding EC private exponent after keypair generation. * Fix a potential heap buffer over-read in ALPN extension parsing (server-side). Could result in application crash, but only if an ALPN name larger than 16 bytes had been configured on the server. * Change default choice of DHE parameters from untrustworthy RFC 5114 to RFC 3526 containing parameters generated in a nothing-up-my-sleeve manner. - Features * Add alternative implementation support for CCM and CMAC (MBEDTLS_CCM_ALT, MBEDTLS_CMAC_ALT). Submitted by Steven Cooreman, Silicon Labs. * Add support for alternative implementations of GCM, selected by the configuration flag MBEDTLS_GCM_ALT. * Add support for alternative implementations for ECDSA, controlled by new configuration flags MBEDTLS_ECDSA_SIGN_ALT, MBEDTLS_ECDSA_VERIFY_ALT and MBEDTLS_ECDSDA_GENKEY_AT in config.h. The following functions from the ECDSA module can be replaced with alternative implementation: mbedtls_ecdsa_sign(), mbedtls_ecdsa_verify() and mbedtls_ecdsa_genkey(). * Add support for alternative implementation of ECDH, controlled by the new configuration flags MBEDTLS_ECDH_COMPUTE_SHARED_ALT and MBEDTLS_ECDH_GEN_PUBLIC_ALT in config.h. The following functions from the ECDH module can be replaced with an alternative implementation: mbedtls_ecdh_gen_public() and mbedtls_ecdh_compute_shared(). * Add support for alternative implementation of ECJPAKE, controlled by the new configuration flag MBEDTLS_ECJPAKE_ALT. * Add mechanism to provide alternative implementation of the DHM module. - API changes * Extend RSA interface by multiple functions allowing structure- independent setup and export of RSA contexts. Most notably, mbedtls_rsa_import() and mbedtls_rsa_complete() are introduced for setting up RSA contexts from partial key material and having them completed to the needs of the implementation automatically. This allows to setup private RSA contexts from keys consisting of N,D,E only, even if P,Q are needed for the purpose or CRT and/or blinding. * The configuration option MBEDTLS_RSA_ALT can be used to define alternative implementations of the RSA interface declared in rsa.h. * The following functions in the message digest modules (MD2, MD4, MD5, SHA1, SHA256, SHA512) have been deprecated and replaced as shown below. The new functions change the return type from void to int to allow returning error codes when using MBEDTLS__ALT. mbedtls__starts() -> mbedtls__starts_ret() mbedtls__update() -> mbedtls__update_ret() mbedtls__finish() -> mbedtls__finish_ret() mbedtls__process() -> mbedtls_internal__process() - Deprecations * Deprecate usage of RSA primitives with non-matching key-type (e.g. signing with a public key). * Direct manipulation of structure fields of RSA contexts is deprecated. Users are advised to use the extended RSA API instead. * Deprecate usage of message digest functions that return void (mbedtls__starts, mbedtls__update, mbedtls__finish and mbedtls__process where is any of MD2, MD4, MD5, SHA1, SHA256, SHA512) in favor of functions that can return an error code. * Deprecate untrustworthy DHE parameters from RFC 5114. Superseded by parameters from RFC 3526 or the newly added parameters from RFC 7919. * Deprecate hex string DHE constants MBEDTLS_DHM_RFC3526_MODP_2048_P etc. Supserseded by binary encoded constants MBEDTLS_DHM_RFC3526_MODP_2048_P_BIN etc. * Deprecate mbedtls_ssl_conf_dh_param() for setting default DHE parameters from hex strings. Superseded by mbedtls_ssl_conf_dh_param_bin() accepting DHM parameters in binary form, matching the new constants. - Several bug fixes- Update to version 2.6.0: * Add the functions mbedtls_platform_setup() and mbedtls_platform_teardown() and the context struct mbedtls_platform_context to perform platform-specific setup and teardown operations. The macro MBEDTLS_PLATFORM_SETUP_TEARDOWN_ALT allows the functions to be overridden by the user in a platform_alt.h file. These new functions are required in some embedded environments to provide a means of initialising underlying cryptographic acceleration hardware. * Reverted API/ABI breaking changes introduced in mbed TLS 2.5.1, to make the API consistent with mbed TLS 2.5.0. Specifically removed the inline qualifier from the functions mbedtls_aes_decrypt, mbedtls_aes_encrypt, mbedtls_ssl_ciphersuite_uses_ec and mbedtls_ssl_ciphersuite_uses_psk. Found by James Cowgill. #978 * Certificate verification functions now set flags to -1 in case the full chain was not verified due to an internal error (including in the verify callback) or chain length limitations. * With authmode set to optional, the TLS handshake is now aborted if the verification of the peer's certificate failed due to an overlong chain or a fatal error in the verify callback. * Fix authentication bypass in SSL/TLS: when authmode is set to optional, mbedtls_ssl_get_verify_result() would incorrectly return 0 when the peer's X.509 certificate chain had more than MBEDTLS_X509_MAX_INTERMEDIATE_CA (default: 8) intermediates, even when it was not trusted. This could be triggered remotely from either side. (With authmode set to 'required' (the default), the handshake was correctly aborted). Fix for CVE-2017-14032 and boo#1056544. * Reliably wipe sensitive data after use in the AES example applications programs/aes/aescrypt2 and programs/aes/crypt_and_hash. Found by Laurent Simon.- Update to version 2.5.1: * Adds hardware acceleration support for the Elliptic Curve Point module. This has involved exposing parts of the internal interface to enable replacing the core functions and adding an alternative, module level replacement to support for enabling the extension of the interface. * Adds a new configuration option to mbedtls_ssl_config() to enable suppressing the CA list in Certificate Request messages. The default behaviour has not changed, namely every configured CA's name is included. * Fixes an unlimited overread of heap-based buffers in mbedtls_ssl_read(). The issue could only happen client-side with renegotiation enabled. This could result in a Denial of Service (such as crashing the application) or information leak. * Adds exponent blinding to RSA private operations as a countermeasure against side-channel attacks like the cache attack described in https://arxiv.org/abs/1702.08719v2. * Wipes stack buffers in RSA private key operations (rsa_rsaes_pkcs1_v15_decrypt(), rsa_rsaes_oaep_decrypt()). * Removes SHA-1 and RIPEMD-160 from the default hash algorithms for certificate verification. SHA-1 can be turned back on with a compile-time option if needed. * Fixes offset in FALLBACK_SCSV parsing that caused TLS server to fail to detect it sometimes. Reported by Hugo Leisink. * Tighten parsing of RSA PKCS#1 v1.5 signatures, to avoid a potential Bleichenbacher/BERserk-style attack.- Update to version 2.4.2: * Add checks to prevent signature forgeries for very large messages while using RSA through the PK module in 64-bit systems. The issue was caused by some data loss when casting a size_t to an unsigned int value in the functions rsa_verify_wrap(), rsa_sign_wrap(), rsa_alt_sign_wrap() and mbedtls_pk_sign(). Found by Jean-Philippe Aumasson. * Fixed potential livelock during the parsing of a CRL in PEM format in mbedtls_x509_crl_parse(). A string containing a CRL followed by trailing characters after the footer could result in the execution of an infinite loop. The issue can be triggered remotely. Found by Greg Zaverucha, Microsoft. * Removed MD5 from the allowed hash algorithms for CertificateRequest and CertificateVerify messages, to prevent SLOTH attacks against TLS 1.2. Introduced by interoperability fix for #513. * Fixed a bug that caused freeing a buffer that was allocated on the stack, when verifying the validity of a key on secp224k1. This could be triggered remotely for example with a maliciously constructed certificate and potentially could lead to remote code execution on some platforms. Reported independently by rongsaws and Aleksandar Nikolic, Cisco Talos team. #569 CVE-2017-2784 (boo#1029017)- Update to version 2.4.0: * Removes the MBEDTLS_SSL_AEAD_RANDOM_IV configuration option, because it was not compliant with RFC-5116 and could lead to session key recovery in very long TLS sessions. * Fixes potential stack corruption in mbedtls_x509write_crt_der() and mbedtls_x509write_csr_der() when the signature is copied to the buffer without checking whether there is enough space in the destination. The issue cannot be triggered remotely. * Added support for CMAC for AES and 3DES and AES-CMAC-PRF-128, as defined by NIST SP 800-38B, RFC-4493 and RFC-4615. * Added hardware entropy self-test to verify that the hardware entropy source is functioning correctly. * Added a script to print build environment information for diagnostic use in test scripts, which is also now called by all.sh verification script. * Added the macro MBEDTLS_X509_MAX_FILE_PATH_LEN that enables the user to configure the maximum length of a file path that can be buffered when calling mbedtls_x509_crt_parse_path(). * Added a configuration file config-no-entropy.h that configures the subset of library features that do not require an entropy source. * Added the macro MBEDTLS_ENTROPY_MIN_HARDWARE in config.h. This allows users to configure the minimum number of bytes for entropy sources using the mbedtls_hardware_poll() function. * Miscelanous bugfixes - Drop no longer needed mbedtls_fix522.patch- Merge changes from home:X0F:HSF - Add mbedtls_fix522.patch which fixes building of dpendant libraries- Update description- Split shared libraries to subpackages- update to 2.3.0: * adding libmbedcrypto, libmbedx509 * headers moved to /usr/include/mbedtls * remove compatibility symlink * source compatibility header /usr/include/mbedtls/compat-1.3.h * Use primary upstream license (Apache-2.0)- Update to version 1.3.17 (boo#988956): * Security + Fix missing padding length check in mbedtls_rsa_rsaes_pkcs1_v15_decrypt required by PKCS1 v2.2 + Fix a potential integer underflow to buffer overread in mbedtls_rsa_rsaes_oaep_decrypt. It is not triggerable remotely in SSL/TLS. + Fix potential integer overflow to buffer overflow in mbedtls_rsa_rsaes_pkcs1_v15_encrypt and mbedtls_rsa_rsaes_oaep_encrypt * Bugfix + Fix bug in mbedtls_mpi_add_mpi() that caused wrong results when the three arguments where the same (in-place doubling). Found and fixed by Janos Follath. #309 + Fix issue in Makefile that prevented building using armar. + Fix issue that caused a hang up when generating RSA keys of odd bitlength + Fix bug in mbedtls_rsa_rsaes_pkcs1_v15_encrypt that made null pointer dereference possible. + Fix issue that caused a crash if invalid curves were passed to mbedtls_ssl_conf_curves. #373 * Changes + On ARM platforms, when compiling with -O0 with GCC, Clang or armcc5, don't use the optimized assembly for bignum multiplication. This removes the need to pass - fomit-frame-pointer to avoid a build error with -O0. + Disabled SSLv3 in the default configuration. + Fix non-compliance server extension handling. Extensions for SSLv3 are now ignored, as required by RFC6101.- Update to 1.3.16 * Fixes a potential double free when mbedtls_asn1_store_named_data() fails to allocate memory. This was only used for certificate generation and was not triggerable remotely in SSL/TLS. boo#961290 * Disables by default MD5 handshake signatures in TLS 1.2 to prevent the SLOTH (CVE-2015-7575) attack on TLS 1.2 server authentication (other attacks from the SLOTH paper do not apply to any version of mbed TLS or PolarSSL). boo#961284 * Fixes an over-restrictive length limit in GCM. * Fixes a bug in certificate validation that caused valid chains to be rejected when the first intermediate certificate has a pathLenConstraint equal to zero. * Removed potential leak in mbedtls_rsa_rsassa_pkcs1_v15_sign() * Added config.h option POLARSSL_SSL_ENABLE_MD5_SIGNATURES to control use of MD5-based signatures for TLS 1.2 handshake (disabled by default).- Update to 1.3.15 * Fix potential double free if ssl_set_psk() is called more than once and some allocation fails. Cannot be forced remotely. Found by Guido Vranken, Intelworks. * Fix potential heap corruption on Windows when x509_crt_parse_path() is passed a path longer than 2GB. Cannot be triggered remotely. Found by Guido Vranken, Intelworks. * Fix potential buffer overflow in some asn1_write_xxx() functions. Cannot be triggered remotely unless you create X.509 certificates based on untrusted input or write keys of untrusted origin. Found by Guido Vranken, Intelworks. * The X509 max_pathlen constraint was not enforced on intermediate certificates. Found by Nicholas Wilson, fix and tests provided by Janos Follath. #280 and #319 * Self-signed certificates were not excluded from pathlen counting, resulting in some valid X.509 being incorrectly rejected. Found and fix provided by Janos Follath. #319 * Fix bug causing some handshakes to fail due to some non-fatal alerts not begin properly ignored. Found by mancha and Kasom Koht-arsa, #308 * Fix build error with configurations where ECDHE-PSK is the only key exchange. Found and fix provided by Chris Hammond. #270 * Fix failures in MPI on Sparc(64) due to use of bad assembly code. Found by Kurt Danielson. #292 * Fix typo in name of the extKeyUsage OID. Found by inestlerode, #314 * Fix bug in ASN.1 encoding of booleans that caused generated CA certificates to be rejected by some applications, including OS X Keychain. Found and fixed by Jonathan Leroy, Inikup. * Fix "Destination buffer is too small" error in cert_write program. Found and fixed by Jonathan Leroy, Inikup.- Update to 1.3.14 * Added fix for CVE-2015-5291 (boo#949380) to prevent heap corruption due to buffer overflow of the hostname or session ticket. Found by Guido Vranken, Intelworks. * Fix stack buffer overflow in pkcs12 decryption (used by mbedtls_pk_parse_key(file)() when the password is > 129 bytes. Found by Guido Vranken, Intelworks. Not triggerable remotely. * Fix potential buffer overflow in mbedtls_mpi_read_string(). Found by Guido Vranken, Intelworks. Not exploitable remotely in the context of TLS, but might be in other uses. On 32 bit machines, requires reading a string of close to or larger than 1GB to exploit; on 64 bit machines, would require reading a string of close to or larger than 2^62 bytes. * Fix potential random memory allocation in mbedtls_pem_read_buffer() on crafted PEM input data. Found and fix provided by Guido Vranken, Intelworks. Not triggerable remotely in TLS. Triggerable remotely if you accept PEM data from an untrusted source. * Fix potential double-free if ssl_set_psk() is called repeatedly on the same ssl_context object and some memory allocations fail. Found by Guido Vranken, Intelworks. Can not be forced remotely. * Fix possible heap buffer overflow in base64_encode() when the input buffer is 512MB or larger on 32-bit platforms. Found by Guido Vranken, Intelworks. Found by Guido Vranken. Not trigerrable remotely in TLS. * Fix potential heap buffer overflow in servers that perform client authentication against a crafted CA cert. Cannot be triggered remotely unless you allow third parties to pick trust CAs for client auth. Found by Guido Vranken, Intelworks. * Fix compile error in net.c with musl libc. Found and patch provided by zhasha (#278). * Fix macroization of 'inline' keywork when building as C++. (#279) * Added checking of hostname length in ssl_set_hostname() to ensure domain names are compliant with RFC 1035. - Changes for 1.3.13 * Fix possible client-side NULL pointer dereference (read) when the client tries to continue the handshake after it failed (a misuse of the API). (Found and patch provided by Fabian Foerg, Gotham Digital Science using afl-fuzz.) * Add countermeasure against Lenstra's RSA-CRT attack for PKCS#1 v1.5 signatures. (Found by Florian Weimer, Red Hat.) https://securityblog.redhat.com/2015/09/02/factoring-rsa-keys-with-tls-perfect-forward-secrecy/ * Setting SSL_MIN_DHM_BYTES in config.h had no effect (overriden in ssl.h) (found by Fabio Solari) (#256) * Fix bug in mbedtls_rsa_public() and mbedtls_rsa_private() that could result trying to unlock an unlocked mutex on invalid input (found by Fredrik Axelsson) (#257) * Fix -Wshadow warnings (found by hnrkp) (#240) * Fix unused function warning when using MBEDTLS_MDx_ALT or MBEDTLS_SHAxxx_ALT (found by Henrik) (#239) * Fix memory corruption in pkey programs (found by yankuncheng) (#210) * Fix memory corruption on client with overlong PSK identity, around SSL_MAX_CONTENT_LEN or higher - not triggerrable remotely (found by Aleksandrs Saveljevs) (#238) * Fix off-by-one error in parsing Supported Point Format extension that caused some handshakes to fail. * When verifying a certificate chain, if an intermediate certificate is trusted, no later cert is checked. (suggested by hannes-landeholm) (#220). - Changes for 1.3.12 * Increase the minimum size of Diffie-Hellman parameters accepted by the client to 1024 bits, to protect against Logjam attack. * Increase the size of default Diffie-Hellman parameters on the server to 2048 bits. This can be changed with ssl_set_dh_params(). * Fix thread-safety issue in SSL debug module (found by Edwin van Vliet). * Some example programs were not built using make, not included in Visual Studio projects (found by Kristian Bendiksen). * Fix build error with CMake and pre-4.5 versions of GCC (found by Hugo Leisink). * Fix missing -static-ligcc when building shared libraries for Windows with make. * Fix compile error with armcc5 --gnu. * Add SSL_MIN_DHM_BYTES configuration parameter in config.h to choose the minimum size of Diffie-Hellman parameters accepted by the client. * The PEM parser now accepts a trailing space at end of lines (#226).- Add baselibs.conf: build libmbedtls9-32bit, as needed by libbzrtp0-32bit.- Update to 1.3.11: * Remove bias in mpi_gen_prime (contributed by Pascal Junod). * Remove potential sources of timing variations (some contributed by Pascal Junod). * Options POLARSSL_HAVE_INT8 and POLARSSL_HAVE_INT16 are deprecated. * Enabling POLARSSL_NET_C without POLARSSL_HAVE_IPV6 is deprecated. * compat-1.2.h and openssl.h are deprecated. * ssl_set_own_cert() no longer calls pk_check_pair() since the performance impact was bad for some users (this was introduced in 1.3.10). * Move from SHA-1 to SHA-256 in example programs using signatures (suggested by Thorsten Mühlfelder). * Remove dependency on sscanf() in X.509 parsing modules. * Fix compile errors with PLATFORM_NO_STD_FUNCTIONS. * Fix bug in entropy.c when THREADING_C is also enabled that caused entropy_free() to crash (thanks to Rafał Przywara). * Fix memory leak when gcm_setkey() and ccm_setkey() are used more than once on the same context. * Fix bug in ssl_mail_client when password is longer that username (found by Bruno Pape). * Fix undefined behaviour (memcmp( NULL, NULL, 0 );) in X.509 modules (detected by Clang's 3.6 UBSan). * mpi_size() and mpi_msb() would segfault when called on an mpi that is initialized but not set (found by pravic). * Fix detection of support for getrandom() on Linux (reported by syzzer) by doing it at runtime (using uname) rather that compile time. * Fix handling of symlinks by "make install" (found by Gaël PORTAY). * Fix potential NULL pointer dereference (not trigerrable remotely) when ssl_write() is called before the handshake is finished (introduced in 1.3.10) (first reported by Martin Blumenstingl). * Fix bug in pk_parse_key() that caused some valid private EC keys to be rejected. * Fix bug in Via Padlock support (found by Nikos Mavrogiannopoulos). * Fix thread safety bug in RSA operations (found by Fredrik Axelsson). * Fix hardclock() (only used in the benchmarking program) with some versions of mingw64 (found by kxjhlele). * Fix potential unintended sign extension in asn1_get_len() on 64-bit platforms. * Fix potential memory leak in ssl_set_psk() (found by Mansour Moufid). * Fix compile error when POLARSSL_SSL_DISABLE_RENEGOTATION and POLARSSL_SSL_SSESSION_TICKETS where both enabled in config.h (introduced in 1.3.10). * Add missing extern "C" guard in aesni.h (reported by amir zamani). * Add missing dependency on SHA-256 in some x509 programs (reported by Gergely Budai). * Fix bug related to ssl_set_curves(): the client didn't check that the curve picked by the server was actually allowed. - Drop getrandom-syscall-fallback.patch: fixed upstream.- getrandom-syscall-fallback.patch: Fall back to /dev/urandom if getrandom syscall is not implemented.- Update package categories- Create symlink to ensure compatibility with polarssl- Update provides/obsoletes- Fix sed for includes- Rename to mbedtls - Use cmake macro for building - Update to 1.3.10 * NULL pointer dereference in the buffer-based allocator when the buffer is full and polarssl_free() is called (found by Mark Hasemeyer) (only possible if POLARSSL_MEMORY_BUFFER_ALLOC_C is enabled, which it is not by default). * Fix remotely-triggerable uninitialised pointer dereference caused by crafted X.509 certificate (TLS server is not affected if it doesn't ask for a client certificate) (found using Codenomicon Defensics). * Fix remotely-triggerable memory leak caused by crafted X.509 certificates (TLS server is not affected if it doesn't ask for a client certificate) (found using Codenomicon Defensics). * Fix potential stack overflow while parsing crafted X.509 certificates (TLS server is not affected if it doesn't ask for a client certificate) (found using Codenomicon Defensics). * Fix timing difference that could theoretically lead to a Bleichenbacher-style attack in the RSA and RSA-PSK key exchanges (reported by Sebastian Schinzel). * Add support for FALLBACK_SCSV (draft-ietf-tls-downgrade-scsv). * Add support for Extended Master Secret (draft-ietf-tls-session-hash). * Add support for Encrypt-then-MAC (RFC 7366). * Add function pk_check_pair() to test if public and private keys match. * Add x509_crl_parse_der(). * Add compile-time option POLARSSL_X509_MAX_INTERMEDIATE_CA to limit the length of an X.509 verification chain. * Support for renegotiation can now be disabled at compile-time * Support for 1/n-1 record splitting, a countermeasure against BEAST. * Certificate selection based on signature hash, prefering SHA-1 over SHA-2 for pre-1.2 clients when multiple certificates are available. * Add support for getrandom() syscall on recent Linux kernels with Glibc or a compatible enough libc (eg uClibc). * Add ssl_set_arc4_support() to make it easier to disable RC4 at runtime while using the default ciphersuite list. * Added new error codes and debug messages about selection of ciphersuite/certificate.- Add polarssl-CVE-2015-1182.patch: Remote attack using crafted certificates: fix boo#913903, CVE-2015-1182.- Update to 1.3.9, detailed changes available in ChangeLog file: * Lowest common hash was selected from signature_algorithms extension in TLS 1.2: fix boo#903672, CVE-2014-8627. * Remotely-triggerable memory leak when parsing some X.509 certificates, CVE-2014-8628. * Remotely-triggerable memory leak when parsing crafted ClientHello, CVE-2014-8628. * Ciphersuites using SHA-256 or SHA-384 now require TLS 1.x. * Ciphersuites using RSA-PSK key exchange now require TLS 1.x. * POLARSSL_MPI_MAX_SIZE now defaults to 1024 in order to allow 8192 bits RSA keys. * X.509 certificates with more than one AttributeTypeAndValue per RelativeDistinguishedName are not accepted any more. - Build with POLARSSL_THREADING_PTHREAD: fix boo#903671.lamb69 1589641613  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVW2.16.5-lp152.1.22.16.5-lp152.1.2mbedtlsaes.haesni.harc4.haria.hasn1.hasn1write.hbase64.hbignum.hblowfish.hbn_mul.hcamellia.hccm.hcerts.hchacha20.hchachapoly.hcheck_config.hcipher.hcipher_internal.hcmac.hcompat-1.3.hconfig.hctr_drbg.hdebug.hdes.hdhm.hecdh.hecdsa.hecjpake.hecp.hecp_internal.hentropy.hentropy_poll.herror.hgcm.hhavege.hhkdf.hhmac_drbg.hmd.hmd2.hmd4.hmd5.hmd_internal.hmemory_buffer_alloc.hnet.hnet_sockets.hnist_kw.hoid.hpadlock.hpem.hpk.hpk_internal.hpkcs11.hpkcs12.hpkcs5.hplatform.hplatform_time.hplatform_util.hpoly1305.hripemd160.hrsa.hrsa_internal.hsha1.hsha256.hsha512.hssl.hssl_cache.hssl_ciphersuites.hssl_cookie.hssl_internal.hssl_ticket.hthreading.htiming.hversion.hx509.hx509_crl.hx509_crt.hx509_csr.hxtea.hlibmbedcrypto.solibmbedtls.solibmbedx509.sombedtls-develChangeLogREADME.mdmbedtls-develLICENSE/usr/include//usr/include/mbedtls//usr/lib64//usr/share/doc/packages//usr/share/doc/packages/mbedtls-devel//usr/share/licenses//usr/share/licenses/mbedtls-devel/-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.opensuse.org/openSUSE:Leap:15.2/standard/e0587cece12cd9845952c2cf58eec617-mbedtlscpioxz5x86_64-suse-linuxdirectoryC source, ASCII textC source, UTF-8 Unicode textUTF-8 Unicode textUTF-8 Unicode text, with very long linesASCII textKZ/)E7xutf-8e2e03774e19cc9db43d2e60ad8c4b0b51d9a6a269a608e7bc2a31f71ecc317fb?P7zXZ !t/y9] crt:bLL デ惸 N3N.rZ2Px}ǧ*ȆRϞkmQ!L$4Bwzbz$uw 6mt$f]}n"RKNa!Y?ZM̻._ajw˴ ݱ:_Mͺ9%>V^Y\ ~mNEΥ#9%nc/v:6+p ژ<\%Aow ʼˌ>3=03P,?ŴCh'ѫcO%xvB`olbe OG3 #ϠyC) o2M7`!Z %Ͻ.bF',kjyCqRqÃ,\8-~3tA@Ff˂!7OAށq.c'ފGUwW teq;``Pxxvp?qcIm>sXh|6 RxowG c8~d.A+~5T EVhiUE%Y2o5.u=ޥrJ8T/'z. T\-kν]l6].2Lv@ItOXfN~f Cm=%e_"yװ@_~^&jƞJBoұp7>Ջ4FLBm;d!g2>lk'KuZTDJoX]L%a%X'x)蚜! xG$F[6Džp11"fdA#?{9vNȫaTmk2 =2}nO8䔓}^TP=Z/Pf,m v2?\Gj ^4C>bܚ멀]oO ~]MCLs3*WC|ۇ#<tQ0r|#ǟfl8e6rIc#A1IڥpUo+SJwZ8,VsH(2imX&R|K<=t ľ{. =bu#*t}r 62H7һ h&x^Qz|??EK&0C[ϙv_̏yR|0ʔ$5c"5rLRYݼ(JWJy)HI 0Xzq 2h$ʯd(|[qfu;#)Xc> :.t/ԭ<^@8vIW`MX&ET8E㣤#aԙ3nʟ=T\Gw#N-S?ՌOZψ ;A~N)HZûXk}-E1}et" 8k9a90ݎi"+igɻζCy-2D?^՛4p}N~ R1;Q@l4q&V.?Tt2hBcʆc"LXG*f| /=H\ы=~^|+1?,"aaIa'X{$H, u94{K&d8:+\r!Ӭ`Z*Gd 3+ R M7.%}E>78uB2&++J<}Au=OLGh@\9~3N={WCu7Ѐ~)/ 6 9DVXa R H[OgƺTKr=)$ m7qϒ,ЫGue,&sśǡ}c3@9\;$e&0sQwSe+díV\^h_؇ü(p?y52bI ='*tnRU|0{Yη>ns Fqw̹j# _KB9d 4310Lz} Ef jQF8ny&&yڙ`W/_a8o<[EPo 5F4$f_8p5Z:*/#&_I=M;QQ}Gu5_zdzᱏ4d0L=Wc*uuqcYD7GQE%q挛9,PNZd]л4mKs"k3)ޱ9dcn5˷q:X\_X̲2Puw.&Q4,=b3THQOʝo~X_{\LJv @zk ֺN` ,CLb%*h=ܐ(XA"1C%_ " vvf6C}kY=7IqA;x" {4k3CWo/%mI// ^ĹşhAtl#c+tדA̳|%!`wVL Ȓ!x+v*Rs Y+;ٚel%hl{Hc7E҅(՛' [ƫ5áB\=h&Y CyJ! >p0 C(M]?5 7M _E*4h11^YDd-1#V)8oR^aS0jaLajKySXu&g*`mu\Q2FdA cZ9HsfDekxY2<ɼ*햣iD\J2{je緜9)-Iv0# 6R G4_`Va1]TsvWMdžbؗ^ Jd/Rr2g?b[O~P>>4Q!*`Za7ʘ'V @$\-}%?pe+Ib)v&|Uk J3J;%l(EC*Rc^ruOOͱf4yu7 6d=Ge=r-+t9~ȉI"9kOMm %β6c$ BgUKnwvCIY"͢/Sz铒*lhi Ã:_iY[w[ja@D%<N*uVd0[F)d}vÈJ}Q+ɼF0KP1qc~᩼#Śm'nom5ɧdlt,UG92wM+D![j0;vX:B|: pA )ݛD)æ-|3g"@p/(dڌOٮ~B"yp]]$#w ,WR*,Jj9VAa)V HS,wȚ7k}J6iYc/#6 *2-.t~+=4VӐ3T'z 2"r8>lVCf}qjoTQ7OZJ_!Qt|ߗx B%+ъB<ХDTo;e+$J(UW˻îT{'؍v`tL̵XV'm#ׇʛ]{d+ж#)-H f2Q' [K/ȻoŏN;? {ER3 SGC:)"U.4P [ʍyў_,qYg[mcW )Ay Q*9o; b:+ط[{um<nAbL+f%$f*5n'zimJgiM-n ־ձ%% BobVq:&y$o-j.lT+5)4j'4̉<>gǠrhx?=^&ʨ4'%=A޴gԹϜrxiREtv+(Ydъ]P \d#6D_%kF0+.7m26ctU2^sK8\YRt_mU2^|S,$9A :+:ߚ*0L\5< puD)pNO:(v3wb| 7e0P(z2,LAC̋GD93؈̟Cx\ ͯwQÖ:x[^ݪű hx 1j;pvy%%Yzڶ3FklF<08㨒Mr/PZR\NJ>(q+@R#^O:63OsV|qZ 3T9J m_?<]E K=Jۃ! m/Xdהּ*/j"GI>rq) `cF 5Z|mHu|Xĵ";aI=aƈ& Hʠ "S!.#"ӓ p3gOLN;!.|8NCO-*FX /94кD1BRT"ox}ɼ%ٱ^{rtٗ1C?0Z_8ھ17upؾѯ XMNΎ؋"DTГ1z(3 ;":2fr,y+0 S |ߴEH4nx O铌lZ?!O"jg 5}/_`dk_Dy85e ZRTuAG*pW:@Zׯ/R A/$BUDGSr Y$]$c B44g4Fت`0K ѺlhuPxWtɁbZʣcXՇ3 Xz!mpM[\6oZL$XM{xt;9y+Ӟ8=`=;jnpT R@ѭb?[}yZpSf 6Ei]@U>v|A:?+OU3fJ ~ [<Ɏz0a|4?ړ(Jf*P멇h eTșuߐS;bKmݼbzN)ı'\rDלO l3ZebTg{>dBÄávB :Sql0πMq!SaF=C[ \[VAo[R 9H(;gļ8M<,t!/S\̕,[3(GQ&4ԗ좓4۬teQ+"Er3 c7QM9E`w%:`O(R<Ox~B1MM ?A=1vW+-eVLvM? fnQVJ~BȮGqpޮ(r$kc㿌&ܖ뼟Iˋ$FwG p"R$jSK=z~資`=3pi. Xoy gK?g?_Ό$|?ŜwJ\1" Ş_Xd|cX`pgyo #wR"$aKU ݊Zv}?OC #}_iUG~ڂx'Dr4 4\?f;N>8;bqC;;oB Q xI_/Qhsh~{>C*xgH'P[ ~pS'#v7;@$g,6Q&EPok>) S YI ΦU}:X ؿ"'7c]_ڻ$@|r 6`\XK~{d9Yż v%cW8WY͉&p|ƯK3s.Xpyi4Z ifT~EɵJ@T@NWͯ͂R0к7\@ g&3HH5*aAʚ7."iSO-컏oGZ?\X+UۣcJq%'N5xC9ËD6/oC GM7 !Aѷm 5a*仺hB !Q8ò#h\A?D=h!)CV)w|K 8^gAŻļǫF*0Z2rUmCqc}h''.@dS.szS¦C XZ6gx>噖w-pBC2Nc `PIU/a#9-p4"bJ,W/+,2^hV. N o P$~#[IR7)Ղ:,⋳)tӉ١~j7#;^g̈dͮGA/: =D2R N MTRU/$p5ڠĀ듑Jzq|V'E2,LTnoumm‡jumzq3&bG6T kmz+soLx;W57mZ@GLtK|N[;/h[h{6grƈrNzBȻU@0 ??p0G`y=<l碋3!#ngzO$smHHj΁/PN93F{a_=2a83UV'\] LVPaHiM0&ޟ 5miOQ+js2ԒdJ#)V +\ꉧugFr'.G'"1NFr~Zֵ\%Xuy͖EB6҉9ƧVʥ dii'4j~ F }d@|KlU^xYA6 K6 VEx?,\o} }ߡ"FeݓYQ[RV4=XMɒvB-e2lWexXr*Ǔtv--gc&iS$+g!]*2nf\djGxDwp26A1`!Τ|hFn5rو9,B*2.#k7_ ~U &*SQΝk}U6\`ͳjʬA8IQ'/H+Pr3xNSljr[#BAǐ[bg}FQi̱>K+/8X49&:^vFVPAj=Gw "VL#J-ln%. jvW$94P9܉(6u]elLw7dCH6f/c7{TE0(ytA]‹EPҢCu.,hnbYG7BN$ÆêWڞ{kAD۹#ͽ)ArXtyz% ꋢ3ex{X A: 8Gfz7޻ 9 BZ8h :ŕaȕڟ[THd+0&.)z ,u })5Y %'{Os.d";jWжwI\|wPb"ha7[eҟvqaboJOd8  li.F1_`U!D+;EQ`!,$ hOl<++仿B4] x#7JzbTGFSY.ڐgY\˳+?;W+o?gvMJ6v|~U us#HqI TRq?N^XDg #Lnk%>!.r<x Bkύ~[ɢaɚi׀s*3zm6JM.z͈(l$RීoN+QBȿ{CF'di #L䕛*Nu:ѓcV]m%`_Ua Ɨ3h=, GjڢXCEW.hJ@- $V'9X}|U{S|gȘf~"6>(Z~5%sQ?jϋZs.@:+GZgI}(:N`OMb}-]i06-Q`Þr2f]$ZЦ'!#P]蜸Eka1ӱi L+i_<"&qZ4V~~$X!(_\F,#cxlv<<+8R C{m?iL\Bv**{ [!ƈD` tS@ [m5'"$-^#vNeL3~f&4QD˅X rd*8m p(J1{8lZ 0@Mܤן*`s>h< vpGşmFI]'L9ķO'"q/yd׿ 9VxiW;B@'Àe'j{y" 1ŶK<Emؽ%?բ5ɜ7.R;ܥ<%}e:c\#X)8J!6:QA]h{v_|=w WjG$ Oְ jMG_b)"oVw-Zd(7nop;bE=^^ԁn؎TI a{ƄGi&Q}2-Xnftu<ˆyI1@"OP7CzXV)]Grd8mca8Еd-,ʧ:򄙧(]µ%#l.?#@06޶#IXXbD0c ,9::R a\DZkYXvctnw^ltwqxYFeb6 VE߳[Hj~ߟZE`<>> PIX4vGJj B]d::oƩ"ϸR 0?YwNZ2:qEXws$fE8^-K.FYV<Q.BVN{?i@Ka2RYwt`kRb 8 IjYb.`ZOH^6ک穉c$ E^- ˂f_pRx)ώ tkV{:ݖg颷XI0@ <@nz#7,]h|fWOvrYc) 2۴ȃL(r{L54 G$ TWA^jSHOfxcV萄ウ"zdCWw{ =2nTq֜s{E Ւ dN&^l&ū6 -r*iVnþ=nKO!)O?VC69;Q Uj`o2K&nF9}].25]Lh㯒rTG5;Zq‡YX P %kMY*Sup&ekh.˯x^&!=[Pk-5̟mj&HneTXknԄߎ -rC蕗Q-0Is$f .I 𪌵s)vIU.2edOsrj1zUE{%,gLjlBBUnoOB^^+z BAw ʤz{.gܐQc=EF]Wy_b%]Uˢ lJ孵5 }Nh٦X(LJp0jg™}sqx!E.}Ya}6u&TL'۴Z@@)j~ګ\=>Ю-ԬiE2{|$#ʓ|ex- WYQ: G]Uy`)e 'g2s~WyrM6}Xgnmap{NYtz(|f2gVo7%LO>I1M VН. c WA ^H CXNa6ykpώךЫk@SSkΪ Q2&_\P&q8#~0,FGFBJ'TܹT3jt⒧DẉOw#Lo*NS{c8Lz p+(d`)XCqS(.-:^ $ P4KSќצ |ÛF/3|k_3 ~FSIDvxwV*W䝪իUFo~q3wD,])WOY)\S/qlF5c+XBV!li,W&јeO},< ^ԉT቏ܞjͨxO *uerHa'U͌ 5i}үn45NI45%ޡ2,j("Q>t*t?#p/o;мN? c+w%1"52M1*{,ւ*$D}z7E>="]d/npc ![/LIQ!TFF/.w L/P\ӛTxk/sR 3Fϒ<> hP}}~ $}WZ'4ح48x3 MJMs̖v- y-YXQaƭj}'aD|:ޑ ;DY |9빂B6j+y @Fy-anƆf}F єY5c_'nK{>gƆ>9-L5ux,ғjKe~`o0,uG duztGXK&Lk:.\?,k^xD7 [QK&5w]}aS_>[B$w9t?C5Q )xvU; mGv*Ƭ|UYj%ڏO P+at<^s_WYD&dtZf1ƿ_2[_z #wVKn&DC5WhD_Y4XJ+!w`m^K;MoNo.LX;F I3grOORcmn񦤮22.NF]a%pQ4+vH ^ ǡ)=M B}H<3vځN;1H~[l0ZSWcN;.Uto х:9՜N.wYBɍ3cUiyp"3JݬzˬE]'7IfQPş>Ip^hjD3(lL!biM~W&5x.6>8wW\㢽T6~.kH9RB42ͣVW$2|<rwÿ g!#ҙ8|4j{la[0=sɢSUgI Olq7B?Qx~S>ΐnNh8%gso,4 [jThƻZl pAmn3. 5[8g͜;KiPW_WEP;~{<4y. MS yN[*B_%/B}?  RXvONad/X^ض^| *yP\QmQ?K>=0m # ql߽?DC S098^_\''3$`7㙙w3k+(^K 8A:4z۬}ܘR4q!MU`LpٕG=Vw_+n8#5?C֪2"JJͲN&w+|͵-_]i[t dQ\ Vε@HϦY(q懭&RAA =y$T\M0顬 l­O'GUAkƦg;H'bOnL-} xrÈewPOH9.e9*CC /! s*%&: ^\Wй~ΆFF;h&a_6^i%Z!uqD3 aӥ|\2"x3%xw _irTWIPR7k]jC1ŅDU:A IT(XTl˽k{dc', v8kB_-` ީ#bU`HJ8jyq6W'ĜPK~NhUpX %![$D,Q?92qj<#U0ǠZuC5KG<ctzuN8]{~OQ@ݝ ufE" Q!)owPтGDBzK~ ggmoJۦ`8v8hա'EA1HAoٔyG'5;JIrS,@eQBc 2A4 _n[Y>dpe _;:aG'Xh ͒ #SHjL%+Ah-l7#2-4bF=WfR74۷M*'ӡb?}]{/9瓾\}mSz0u /ÊR|K_@&{Zxgz~q`v Mhc rhv>+E/؟O֧GpG-x5P~+WɷG!~_àHӥA-J͋.p+T4$MiuE',%w9nJ CeN~C_X/c_}􂼾Q$b 8O f. |eBu|@q;+?cB1Yi'r/Lh,|N !7Q\`7 @>|b5#;- 2cWzĪ12 C3*"AR4 ʐUnϤH~8m)2NWZդZyST) W4)Ь7,YO5b];8Zj=pN+N[+Ԅr¼|MIzFӿ1)tkG{[Cc e #3S!'4L̫ip,D]~)si%V!7Y o9!eU]j(X8T^7;v̥e1Pehꀇ{ kƘr(-jqM(I]PD}Gj\mGE#[Z>\s/ZsF"ǭRqsfm֩ =|Ո\1w{ipq(aqMo,:6n["1WbꂬBQz3iaF`DCq0!]oTٜ53QS:eka ]i #*Ϙ1s! %K3xAaca^ j>*Q`zXk S+'&0}ÏHҫ7mr#WG BPP,a2u# s95BGE2GpA $ge\we3la,P`BVOWAPC>_Ljs+\֨ȟ~~VKXˉd2sIyǁik5 p=c lo'/ۂE1hgu}gfGڕ}IH%%[;eGGE^0 j =lR>.(NOw.,;i:݅}og=8ZTR*b/CITZJR S ""\-eo.`^,T /GeUS"Ee%As(݂ om6szc,ߒCUBļ wE +vֆQ|}<#XkP/ ~w!*[MӬ̦ c {rS՛ 9ŠM품dwH”_5Kf^ҥ L.KECkqZ8ScTM3C`)̵SCKlPWs1&@w$SG)%\݅^AݪÕa"RgS9n{.HϳWӈϴYAnfvʡB.|q,ɄUƾ]cj@'7\i驛t36Or/pQDթYA_d#zFj*(iV%?js!DFBĹkH 1;*'iyNUktyGr֪ :Y.gTK-eHcuW-aeKg)Gjd5Nqq;<֤ ƖtYRnag#p5Cc*7o DzBmZ$k?5!jܪ}E_=Nˁך;Ja᪹IT "''&^;&'iqP2@} B؃3М.zmU0H$YH!<_^x\|oD+Hں%\D-hQ g%|$K_ڍfKOAQc:3Ue=d *0 Ρ HhX\4q$ʗ4 s5vGuWpd駜QMޑxmyw&>(hsW椘 ^pX;z܅.uK nMvqMJZRXhes] g=#4"- ofV:lܓOEZpO=PLDq\i%ǑMTB k ްF&ޤ stnFXwpâGyd|bw KHZBu3Q7YVK?װn7Ic^ޚ.DͼE3>t_unmƬЩ)W֙,_y{燌2{̅~ߘ=((YKV:r⺑Rq;ZeV-d9w^BN1e4i6?8'9w0}C U S ~ ?uAkS㤱Izc y[C@X%3 {~{ZmO9GbϓٵCI%p7`֑[cW@} \{nOl\ -A!91%k|% *%:(ͥ]L廔8,k˵-ȗ۲'glzԚ$*-1#\\kd W#7`:@D9l{B?%,F'e<'YR]k1aMoE*lױjgm/2(/Vгe1yb?V;#XM^1gtf@gf9!.H eTFu KX9r:Ң4=̓3^x< x@ TQӲh;D܆WQߔv0IYG$dݿ,>ojyj`Qɽ>(gkR^z2t*Y'5hq TJ.WpE G_V:OMaY!ImlI =;T5&)a̻ΚNYmf̞8.Fo]t2[ im7jg&9Q`[ݷ(݁(#P ƚ^A~].H~w f󫊵엧#bP&ժY"@bfo;;=l^f4_ќ3C8Ђg<7dN ),ohp696T&TY. F=CS}Gb=s4lk +q¯KH2_ U4>Cg4.|+Ew/M\Y[Eh)VIU ,i; #=1k񚦐 NB rhwڳ0 |֕M0^_ .el{cs-zi.˸H  Jz:Q {#oP%6d{#2rM6%ĦYC2X0VVթ=/!LűLbonHed|`I@[?^v336p֕X93šLm`QhTKo_#vJ,q؀[ t~bAbrV֍g5q(ϵxFM5ܬ _frntkzɻwءba֗ҔO|W$IESN SXZ(.IGjXe1.^9FFSثì%*n*l? 7ɼ@ڢ0ͦHΤlEևuUE'Y)Ti$/j-{IջdGK(<~e@䪧h[d-`0-"K$Oe <-N;=3􊄱{#06ߏJWe /@v=. WMWPY Wʢz[Cb`a\ӱpOă๊50F IΌ1D W&woF>Lz7S5 *֕kKUdcsa}&$ -(HP&Ң.Sn99y{lE`גS?o6!B(Ƚ;UάEg2teA}|zO ]/Tb1f9zv)ͧ ˩㇉z3'CPAǔ9?ɏRقIl8soH!lK&TM^\f}LL2님=*!V(*PRdJ'ʯdP~UE]j袧s(DÜ.Mط1ů=KmoDv$(M6f{^.<#e(;D!%jTW߾~֝2DdL>տtw+2>^bI9hj!(bI,t}K(U=Z|Ƣ/j2VLԶتC ޮBi!>NS;ha-b?gj1>>IJ!L1yXSfZV ^GCbVeb.d:mW[xok|ppUSͿ3Aӽ7`LG޿_Oۙر(UrU=x'w%/TaARIP(k_Iwy[q]Q {^U^P Zlb:aWwدDm*b5 KnJKYD\'ն% zU0y~T1/[s7uK8T5 cQS=-l*f˯׊vN9>pLZP `^}.Eva,!qHܔe i Y =%ďqX= ibR-t@ņ7nIlOa* ]f3DOK !N`TL!)Ik?P>F LO)CHdw%,Yq/ynMFʋKBB藌7u閔.4" %*jF`?n!B qdއҪqg)sRp*{$[AAM4Q\WA~IjK [2<4}zl;'} դ;b^q6Z6z#xtҗ$aWյ eZ0{Ĕ 10*2'FAf6u@u"_=R׼B31#NI{;jKmXc&<&W Oc l9 O#DQ;}@㹖:P8ՒNGCIքKVy />77bL-νJ$O/Yq߻ќQ-BvnУigg@v }ſU1=վ-3,_ IĩIsGT7'́rH]u*JhT#S\eDa< XWGT:ٹ:OJxmbhR2TM5xH픾!4_.mSS%(i٩v]/ēxk^2t$X- ^PW17n>ybEYtAr [ģ[a,ZڟxMu fs99}XCt2ɞgɖY˷k Q3'6yzԾ&Z>F⚙[J *d2C/$+TDX6|H 3V*67JQ<řKc9Ea1֪N~y1_(7zBbQ7~|3ƈ7ˮar!+:C3c'Hd4DD"`y]nȨph_pY+u'w>;%`"+ym j|5%VWӟ8BjYx"78F#u4,eBڎoKʠVe8g#K=}-ͻZݯ%F605;/OG6I'R~&^Xţ\ i,eZM맱ԫ$i\)0E[@Br\8P? 6K~-WN] Jܼ$=e: ˷H#X7ˍW"$BgpZ˨[:,aܱ/atC4XʰkՎ1znk5u Ƽ$u5mB̬y1ˬzp4B#)ʓ4;JNariL7-F{Ǩ_5ZcSJ653[,8x9_[r~]P";Oּ%r ^6/W b kcO\d6Y$ӄlɆ*jr(έFp}htiC! ={x mc.9fm)k*`ܭN ޗ⣤Q6SklJ+GЃ,bq9HP5٧^Ā-@ÙO4l{p*^ƻyc/D^Yj1U)Yjf(]7 RGKvGXS7{JDpF[3=7ih[G[Cfh7 œx @#|8C~ȋU 5t[ R x"c-ݠ3utl\ @b{Wv 9Iv@<[_ڃI|7*Jp'r=T.aI :٘n~JE 5/'BاҨtu9LD9x1 uV?5T#*u_ 9ib鵵RvVZJǁ I K""WH hsp!9z aTk^!r㮴3W9L'!L!mDȮ?qzCdwofR1_EERQ @/Wʣ>xW> _1.QrjD) Ƹ2"c"|9drQ O'#6^MomL 0:!rR=ͽ%ق=mXx|2l9Ŧ@jJXי0"*)H9g$ǑL̤^w(7C=& ,qhz>rd-o_QY وr p 9!`145+sM+mũjm^3)n`ў"|o}U]5N䣝s~&:B'Ba5:S.F wq7D KF\X5.48|y{'3X>SmMF;՞=9$ /a@.ig/ =gj _8-PAȔ%u֎_bF dÔaɉ+zw;tV6mH2۳NQ|XUmƬh&4GC#͹nǔNTCӠn^ fl^M'OkՖ"AE#IwY pm_L)z' lc-i|XPLӑGmo ;vpW[3~p4)9ƙ6!>cPtHP/:~/`NV47=nN]T>k"-vAiSY$6ᕈPo Yk h WB"Izh/Ճ9SQa{zC n(P%b^ =6)]/-:hbgҚ*vC0 ovULL7wڧԳptI#t:W9.U<kK:UeH7/w}QO $m0٫wa=y1R E: Vm4fsy4ከG=I̞ɳ}Aʅ8RA1#UaHtߛ IL27W>vC$ʶvI[kA=,0zG$[ӌȰs'e>U`3,",74E6zh>܌e2MŘsJ/LoE=tKJI,Kf.-?^=ֳ9e QUUJDw,3\:Lgtcmey)c1a؍S”=|u_?hxI\E Uە񎽈IYpM0)z]o]+0;o$F1ΐoV/gTPq4+z_T>1!.Mi#lzRV):& HcMڞ? >Z?ј*fGg=QI>Ffv#v>nB HWktN; 9/:CCm܊ ʦtӟw=19W\0 r=@>IFC6ڱXyS ;6tWۗe^7KXAJZ~}%;NG LWcM찳6yd}٨(Z'b{֎yrAMXV7|[D8"rNHċ[pi&gPM|%Bœ`(j'iڣ5/vN֧$F^j'y+_亻kw gmGKBH2I rP[Oۿa'!*kdx 6LT5࠴uai2e359Yp;VF鳻 imR9y:3!+YяRˇF2́^dk +iy8~!U">@XTtZ8QOf&B ^H wj-Y'zvpВ~` )biE)K&NK0މYjl|S ?:תbqѸ A0|_*bM ?  ?t̘C[ڔPJs[sS'ģ}Y]΋LtX>'dfԡ!dYWN(+f>|zn/ 5䃝|p_ɏyPU?;Mד?!7%gxնMl1."⅔Fn75@uP8$"7|?G@J)t<_ <84 Sgt0-W<fUBK>o}7lrq!}`)a]T.N #ЂOgB=?iT ybTXMG )l5Y9Mb YPPR,Wcz` #" $wr)Xy3QqyWXg>#dW[_i|Q̆_+2-2H۠ 13t@9z>B/BNqw$K`7Iӟwv8tN18 겷`0tcm ldobN.zۑ3 (GKm,U{on@6! #\Ɇ|Г("&+W ;KR3 I6bHw7IA\ѵ'!swnT~ ߍޛ"0fpC5t:*|_*[q~ehx@_,gSSTIu[x777.S0[#6Eߠ/od3N+; ΓU}a5qcv@9QK{ۯcd&ԻI1WՙJ֓R7\&$ix)jUId.c'_$iA_@\{}ڑp>^|JntY3LQv6&'0TOZ9늠J: Y`/~Xw]%g*Yb< )w?ݶx2 #VKD E&4uZQ\k(*Jg˖ ۜ\:ٽF7g[t~*@l;꼶siBUO)qZNt^+L{X5[֥ E- lSij|˜afI+?`>̼K)R2i55CS$ߤ8-( S="ϡObps V03lE큧^Y]MU\?{OS41mO;ZJ-_?N3Ş*&70*ٚ yl1H+:/dyLx0V7$T_çŅ+1W0n=Q7N8(fv/hJu`K[]\cE0^v#K>x=0/Q >˫؋lC6'h\&΅_vib5DT6Mýݑmm uǟ)d>/fˆ\FFT!D;%A*=޼t# 5w}*TY݁__ckp,n14#(?Vq0  cA;u>0se܅I?{DVEj̧M:1D TMcv1}c HU,gxPK&+Vm*AqS 7t M`F= %0&3?䴿d15aHY F{O-Չ|&,l z}wDA]QGgk@lw . >ssFN%4]m dD!mwʺ`7D\/64ɑK.,FJ2oZ(KbRoiȸLs#KDxa^]1U]#P?v&h6^A:/F筎bKd9'[mf{C8㞡4:۔!MHmMcb`qS^}{`1~*aMP} _ߛ8o]I)Ca)ar.p* (f,[VE>ALܩSW(HMuQMHdŲ c +rr6QF}^׮9>>8kj>"Y ry X52q]Z:6ǜ v;;_ASO/IԶ26 TE쬝Jq8 KoGs^a j!ɬ|}od{0ɡ&HH8_*U/Zt]__,qn{c66!b9s\8:|wpe\Jgaim)щn5"4*h#>0uPi/'hQ:e3͕KN3 bژz@)M]spc[l⢜6V1R7_.]º1h ^c5BT3fzũY<`]M1SIo1HWFLmZ#F5s^k(LCz*-ϕE1y9v %!_QQd9䳣 ܵ#Nf"&j6;Yg'jryIWaq+sPzÜ i ~`{8I$|9 ^X(z,Q"``E=%l)ԓZ.˔ NN>5ʘ3?Xy$00(nSE3tɿB%#2Z`_)ܘfxxW~j! S>z [LeKJt<6,sfB >^g-GK*J00gb[YnYTelimZ[Y#:yCg9,h];h*I8A_,%3kIa*@r0Wl!gh@)d㯾q&Is]ޡmIn~z'gilH@3' nQ,qs>ק?IZ^_;Co4W?B]=%7|wE3 0`G Yn2EWHs,Fp30=rFK1O2(P ;MfF"b_u5u7OsOFVOn Ŀ4`eGycfPx.mhcOSwrK`O$rPRAzJ0ҟ\Kt$V6BO{Է^*٧oNAk@ɶ2$ĠՀ-Fx ' UH@HVlM۱Ȅfy0CShtcBBHfpzC ǐ1sUP£?^<|r֤ fh8P,g^{ MNz: ~@>jͬ2=BÈ%"ntnX&髓z{Cu6H hO 7+p|]8tK-=sDQ# Fkkb4RJ0hN)ƙ'gf%3qź!ޭYV#7\n/4WrbX-(8zzNiV }HuY^/ق:ymtj/5w"3/?Sz=Ƒ\W؁D-= :H<3 aR(Lxi]_¤.Yuǎ鮰9C-`қkANڈG1za1o8'5j&,R=q)eS}=VǎVEf/2{sx,._o={id"BU.X [cM3[G35y@>#@ra|r&q%PT\<#G%~RzPk01<P(]PCĴ㝄iZ+Pː׭% Bv*/0{SiF IEt% @4?%# çMaI.eve{v7K8 @q|E {X*5K*ju+\tWi@N;yOG $Z2!Q-l w >y$2K0y3- UމUTt>,\MB?oM[MhA{{@ì:Bp; u`JR͛xc ǝ0N{2&qiH+SZqޔfU*=%H1ҋF؛V E@5L߹pF*]=k>-"&}cS<::wM(3zܖ9d`*{j2z[v ƅJU'&Ca토>MP/t4pa<~ݬ,'0-zP9 Y1&O܀Cl1xMwG@|yf,0D|5T*`CXPphM0/@4Î,ΉkjJF7^d&-}]՞ 0ĂrZ“Dڽdԡ!e<(cB&YS@#z9eC,ЈepրhEgCFxNޙA>]VEYA7&hW嘤/S奞{.sQlUA#IJ˜ꦊ|J}A&iYAAT`SIT,7(p@ar'NtՉ9LbFy!p.b|Uao Zi/9V\i.UJjG!wˠM?`A?o>_cq/wYwtFب,'?=56I2?O|7;踵*DVgM DbsGvѝJ >&K|0]gn_(Y4;(rUVrf#@uv4DJ]kd!Zh:/i/n"tnj )1t+gO}KT-,[#6{zp0L Eoi[/3X ^Q$uWFdBDoHep: h<N#fgJo|e}v_̗`DB8qoe}5\zZT[+RK6+D^$/i&PBzO1q5ʱp&^5}/+^F*~|x'veό+HR%_O[ `Yb:ai5BTkfri[ehp޴$a4 oMU~/ZRo_'ٜ&ENMU2lݵ@$F4 nfz$˘*n6ԣ{31WP6$# =tUVt@ =9l A)Qt΋u:essQM (Ea+74 ~EuPaQfܢ MӂWLK7M7vզaW[0##=)H`"`Y[:8F[V•7J5&%m<idO«a@DUBKiI]Y xI^?~:Y7SA8 D`nAl\&}| 7:(0p>Ϧz[Tϵ'4;a|(mxF%f>_Γ믵Pb)rlZ՜bẆjֳurq#ɋ՚{-߁8+ ng~jǙtxZ{yR̶a7}d+`\4EYId<@Ɯcy=24lQ wJK[aiٛu ߤB?m/O!yzTe*u:x>Iϕ]$q9#\-P  Kĺ %A"1?0$ke H+Oٝ:uU <%.K#NrF%m.iIz,ml /O2TE֐Ӹ$ٿw ~ Ԗ&j[51瑯Hh1`QU {võYg/xe WQVj}#U 摔]%=lI#hzQS-cfCHN&t 5Ww:>Rֺ H"綜s{Q0\x\)Q" Il{ VCN˅*:]yR?` 2_z2i?*h%KEȜ~2jd7 mPe@{1}t8!x ?C"9@m90BM5EL_*Fɬ@$c_U:IDbx+N/A# %e9UžqMPwӍZ0wִ+ۄйR,}dt=9zvT4)vEmc1V.\swѭۖ<9yZӁNrR.;١23ѕDz6߷BEN6I?D_A5Y*rpǼ)dm~33 51bPۣ${CbJ~`8Ъ(2E(64RaG1:H|NCUc lsX n;Tmmr755C'YjmSj}m,"2/l-:V6Ȼ.&hH9D%ً[A;0Y*TO`dX&mLY: [͸Hpz$oh?7:_#%|Q`hyOYr?፯K^LP;].3U &u,8XMq ܢN&af[Kt_p!;kQƉq6T\s>5{g5}8ǿBעgCNlnlf%u{yd=>1n2l*WKGxO`jFHz_Ei˒2yte^™bNW AԖIV^پU0? =_sP}B}uبp$Q( ] @p̯DBkD`qT-zQj&0b=fܲRpo`I;?10HEҼ>{{(ermld~vQۮfbKó.3,ްtCd3a]# ޔp0geV+a 1$J f!z3Dw _G=|e ;}zcpy+ g03#%IӺp(U;R.7P(?ů9sd6nы'&^$ID5ߗ 1O[v 6WCƸkujz8 0OGw)wd-HX+1X3]n`.,p-L=p#g`#h`w)V8o3D[\X<نۥM㙷>l!*~oDQ.AoU&3\(qm(l[v<uό_g߰ 5}6=󱟏Wvgպ-SzQ ʞϥYF%-?}eL@JTML=$|jeQ9=vׁOVrzjhTl?Ž,tQ=tQ3FlGs!M^_@~ol*CϿf~a4P PMzXy*ljo)|%%.WOu1;LlRwEHpECzTP("ʼnܿz\ ER4# u~%7Mib"o‡#.?B)81:Sjꖏ>H9 ]Y^?V X{%Yl~U ުۼ"qUm%#𴝃nJ\R{G4eMȹ L= `_<$j@V[dT+&HZIp.vuOG=Hfm{珎Z\>GH0ȶW hNZ%c 5埍0S4Π$ɕx /ï$ۣ|CA<+Y9b{R_8Kpe4=%C <'hRx_ZL}2ןQ @QTٸ9nn5 _դ^3|YO58R{3ySNdvoA=g0"!1CyBB$;`.`95}=_ά~0)"/=u8g20lLA3+\I'wC)& }O|3o&+y=A- &!!Hy!R)7+7i%NVauI൞^׏zQ})+lpxy{/ 35CjUo?%aacy'U_M&"hO~u Ⓩ;Gu1W#й}XR7k,~zz.Xa(Yh} 4gziMxZ*>]JPw%I%q6>,3#v\ RiA`pxpsG [dg zxTRCHI|tȞNa8|Ӓqv$84n%Y .֏;5s3e)py~e9=|QYX3ZHAL%bpHOuZ`F~=P[r˄j tu-q/6(\lpM_<9q!B+(] Pb"C\Fqߋb5σqTH.i+h%Oh D3[yem/4>n./Ca',D%󡣸rݴZ0I7H:ulUA vse`"u K?ē/b* ]T9nĨjC>e%PפbȫNlD%P'C6dptHZ`qPzmC 5O="</Ф1vו cLBua^|*|RӖmU #3yij <'!._(_mBhl$W; `iX[Ί ]{ jq䮌^?;,MXV[XCgKjJWVA̯a.eS|GineÜDd8aܰCi(|V׽] +X0X p,(qzu])+AV*>2M@NڝZU*$ܺ񎥁ur݆*~DjQ.~H|œKPt\V9*r:P?bBW";1 5Huy*f`bITy3~ݹ1b~B,1n]"X.#&#[Kt7c͏sX+GpXЛ$7G5JDtRUp_;;]l{b>u8]0%Pyv)Ec." Pܸ{9@َrq%#U)?)m ఌ5]5M1 |Lr;}9wF]eYPԹ(H_~?.E&ZiwlgCYk%@8Au20%Os Bca &vT4-0 ^8C^1xesbƗYv"g5CblN!; ޿ޅZNCLMrӘ9QF?lrS4ս?5q5}\OJ˞nJXjP/76j{tQA1ԃ GꞪtڄK.kGh( X6R睦~):;Ȍosgm\W @SSޔW A!qw_clGv&U$«8ƿYjaJ2kT=k rJ~)a8 edӆ0f#@&GYS}MWf'r)wMKLR BIAߢlGE/Ud0!Mrj̕dZ9R N@<˼w_Dx3Z+}4]<QNǷ94.T,ŌBQcVElvuD(HXx5l`a8P+ifdM',Mp4jamfP^7rL7PMeR]LMl"w0vH𐂁 +D2b'KPB0"?Dvnak, hStF/R]֏8d24brȇ +Ƃ8тȌ6Np6w9kLQ0eJ3h@8g`x5RcyɃV.h7`>ҼǸ(Yk9TF޴RO{S?Ug϶7op)J1#ߥxAm-maq!DHề pK)uߧD qm*_6 @e9~LG\mgPbF]jx̎Gu|j3 n&Mr.UG ս5FD4O 7%8ފv3'Y.ͦ  Њ7yV .H+j֗Ԗ]HC{}'&>~}G[,E+9u$ļ7'Y&$Upb Yvq/H%Ǝ3H.)6gnwEfWv%9"B@k!<`B$rXm ph8a6Οh}-Z<ޣfu%jB9rg€R cr|{qvX<d"+QW(27@5кo=3ĎQ",K % ѳMzyS@oJI O0ҚE"o?dK2.\zEɾ1i):ïzȽ׹{m;UBJbV|a2Xkjw"ppB{!d蕗T!o=S^8CDTx=gR6M3 ~[nS0g "ax& eJ<ǿ{=[_ tX2[JRق<kzlSzMSMzzʶCGŃr^ jf|H,m T9ѭK;{vu}Ib}Qxxmh , ]FR\KBK~nd(\Dh.V8SҪ4ІKj;0gxt W/vuU9!c/H7}lNx.ɳmSY6ZPWWf,uj^4n}h&F˸]xӖ&1{[f=~ݢ ι.{6G_6--Q=l(dշ(}dcu">Uw08]1/zcqnC\6Hݖ~uI@|^PˠY`m޳q\N EYn$F\ޕ! ~qn{Nj3fh:SIU(i ]'DiWR! qSГ6gnH,eʹ{$mp$MU}%Owdbw.pPD^VWNNK +ϟW>'U>;qLi9X¼TRau'1|S[y⹥i;"  àK2 HYޝ|GwOu*B$/yLr(m{{>/9=mNZOͬsLK A( zEo&yz(vh;F}.ߵ&8 V^3fh~j;uS剙.@!g*Rr|a\؝6ǩED+l5in)PZTh\&2ѥD0]&cd"LgގJ):?pXHLNͅYSZBZu]ʛwuZQHr>p-^8?>kMwhnk03QP_|qbL,~@/Dr:F:e5>!HI}) =UT|yɭ`yDlpa j{_d="gy$u?R"! >F״\0kīQט[w1\'6zI!*QR97=t)Sߺ6,y *".;:H+ggċvs.50ƿ$Sn&g-QA'Wx'bp9@Alݻ5)(r 4΅/hVx^ X~.2h]!4޸]eT6.7nĚ q;0<G_iU,Z&{Q_yZJݐ[ u9'3y\0 1pH`5bP'\mB4kttіHU3nY]%y%Q!џFq‰I /G*\ZåΏe]S?#Y7CyXx,5 HWn<~Rv}xfoF8( |xRCDXwl-$PG[ 6@cp QPGA:kކKOa"}(OF}F)k|{wLVNqft/yYvkUi`~yzGޓU߮[SlōlR(+o+B jhN<7tX.J2Vz7Qqs@'CJfJz oM/W8(6^X8[}u/.iF?S)1V~5D,6b攥z *0ٮ k]Q}޶N]րkSEȭ^&n: Jt<.GUPz|:!A_ 4- Q d9- =xѢ R>~=lֵʒ/] zUyRv-5GЭمNiW@N-IwT whr nj#T#7u[wiZ'IujLxdYכw5ٟЬäH-ˮT= JӉַ@uARNC JU4E6}-.p͕{21&M foщ#kTkgT XAst6xȟUH-4JdZIP0/q}JMBSedVra8:hzdV_H~13rgǏ*D EY"a.gI̮yB\ΦUuUKIA$ѥyuA1,3V 9kW=1.I[(s^K%* [_9 :JDSQ.g:lNIPX4axCK21)^ JlQ}( J_ネ/·$0l%/7RcU{rӮZW |$n f9DOy:sX=8j9S+/ k?N@`5GEfe~Fޅl(V2Ėa^l z6r.Md-t̇VFv8H]w)U̡H=/]B (7=MQJ*}k)0e2ro ${ th' ȬR{hMU;Re%#]ofu4J(jB8Oe[>6Q耚r!tJ쥰2P׹HYU:_f5~iiN2Ơi|`y#(<ÄF^|Į)[R3 axC4&8ۏtOHxo'oQmk`.d46A($ :HɡmR՝_F\3S7ac4VY5E0.awT b@@Tt.xıD;~dJ2soV7Rh cMtXEIJ(OBMFsਐX}J[ZHj^4(P&v\ ,K{|Jw.+gtJ]|Fv^P U%^_qXJO! 4A č;=-"1jѴ7g|#b= MBM$U4(pD.fVK$^<>T;ļxb5a8P[Dw;e2]c6k>J^'eU}R2gҩHv)S-OzP8xmSTԕ>gՋjO9D? ` xVGH7J[Q̑"㶰>H։o hkzn;X:3 a #w*ii#95e<~! #fOܰڞ0NZ2IˇH6 E{ռz릢@3Q8{甉O(' t}OL}3lzKb3{g5Rv>up .(c>zRO"=$THPbP)[q` be~5ٲ{9qrN)X{Y lwD Yd~Vhж,Tum,XYM;8MXدR$:zur1/+c}qŚ4< >MvG;X x)U=qc.ly*T p2Z,,<'НOx6JERJY͕3v͊d΁_RF> 0]W!\ E6I5?D;=݆bXu(pk &oTbr'u`73sv4:M#CTX=|zNpM":ď}c}AX$*SfC^~mʎ_7|hDA-T;pgꥶ@6lF|>.LFP,sH%uN1ԽT6 He]6] VELv'Q;2ڞZS,rjJrT w!`j$UYŶv^Է l][wܣcĭ'F.pЩ 0f҃,7[sJg[;iB~e%6'fz߽g]X07u9L/;q|Y$qs1{2 J0fG%5%E嗿Qt?ki X 4 ?;Jrw}:O rXlAOvM{)xKb5D>1-ڈשOnY{{ ӤR1rCʸRs}Pĵ)7Gghn7]6.V?`ΎCtڕ rQ1!.jF1tuc@DT k#~ij\j$q=&zHEBk3xh|IkcbNpfޟ En=cj?"L` <ښҪܡy]IrvźkAtso3'͗IFɲlQ1J#e`JPڹH9 Us.}E[,Ozuc>ႤS-FIve!ڙh _Ӓ$|Rl⌒> yDsm&K"ά2aFY-0PzZMUT_2r+w{c=ZsIV7oLHl/a"} V+`Oi^/TU+j̏\Rjyb3݆^9҈j7Co#?Y!(uQ)_[HplHݎ[9|NE奜,"zMeVW0@- 6 F$Cj t'R__9ƪʟ 4q4-Z Q4}tƣA_ԫN^ Ójx쬾 o>7q@RNͿ1if¤^yEɀ&$*ռ9tms!r,H's.lDJ94vEw?Oօpw")$e?^l.ř;-FAˡ&V_#h|*"J`LwW"8HL7B**x & M☟JH`Y洨zqg ȫiu+c"_B߂>^--U{(O6`vo{e+ҙ{3+c1GXyMbH_Opp6rȕ䜛Reskurh}]O)޸?- yIM53MJK:MD*RG$q\_nkK9h LTQ!ۆsK ='PW7Q, <ăʍׅX%$bF)AwL ФG5Յ@{$`~)@ߙ{ps:+ᔀK@8g|`u:~(l8 3?,%օf&n&*PW҅F%1"i 'hoDKF>L!زDI:U>(A,fI66B+gde;c=$@ƙ2"gkiP\/{qg Ǵ +-BLM8MqGZ=)[\0H}$o,ݾs` vCvkWÕ&L,-r./RQ5:wZKtd Qn/#@ a7gic <=EP :mu#KiUa/C]ȱ,Wej.TܶI_yvoAWLB 83w!p%ERPW}8_㐤$ֳ8s( @ՑcC0[nb';0֝IS=t20Z!6L }%7uGzyHU(}'4t+ԋR?¾:x&i~҈׷&9suT Nڵ F8[S';ȏz336cNx󘐡pa2a͛H=۞h ~Vl#olcH< (EРķWdr`2qK1NOο8nR}E6 K-b=WIWV"NRev`f.ۢ+W }QbMAX0ZT4 Krlkp  .6:௕3v-FUv&b޵҉QY >|z(jDŤt_ Uҳry\Q 4Gm1oK9~8w==mkh ^ML*XAK[!{ F`9GB lR[b$ʧUtjG^I+0~K3[S3즩sxx8+J؁#%#HZ aWOq&ea|"-Ɨ&NB#]w"hn(N@Q4Ǹ8|"Cr;jj cMڒ:E/㗸<&rC!@<_D?dzH;} DL [J߬0 z{mv U48h%㸯2>7D>j= UgȉjHIyx/'[맕\(_^pZ J7 ,*YH͋M|?갴>sV3Hԭ z9F @yXϯ٠|{m};ɢ ;>CDjmu-fhP! Ct^sՅ 3oA"I=(N­hL;,K y܈L+Z%lNOR>o.`U`(ndu|ΣΒX#pЦ>wX廤^b?s;j$DsI c誄xS. /|Am-qN^ƅ FHvh4$x\ ,?ӃG&0& x%wW*vD.Kt V_mJ2S{^o73ԕQK8‰{WbȆcő8"NCnORwݢM&DxiT:N0e'"dr0u_d LdDoΓYx>1 8~ u7jVr`,Ip-p)1af(??)eۄ_ӷ*+B@ߦ">A{g w? GhwaP{zr75 Ж%|ne֛u\BOqIaT=kȕ:G". (Q4s'`?݁H 40$\Ɠ5*P2]K%gX˄gwMV&@W<'sb-_T8f`Ȼl$OM$10jkQ7N\ɖ*yz"MNkʥ@᧘)s;C;yQ7AIKхrg_* :[Ӥ1.SnuU-l*Z3>Op bx='׆;mjΌJ+.4bz^ϛL?T-ʗ_ե`%YW )kjW+o0g4ߘG^նj)/ψ>j-}0uv"(nw.Sڛµvx[^XF"Yz V)#|׾?:̓y QQ˜D%,. <(ӯ:?YcdI }Ə~R z{`5V>ǜ@D>+ٝ8[ſtJ.jiQBup-uajfy{h$wmI֣nS "T)ʕJ%\&7KZ-;S Ys׫'N_67Y FKXoiō"2-^qՁ&oY1CH8΋>`8JoZyLӀQ&vs_Kݭ]O#?Fgrsa/ʟ0dS_~Mv` 낾a7Ţ옊=f7@@+ؓ [&P۟FZW72* xFZDa塄©Tu[?9]ތ6t/.1]L`[]Nwqݎ{ʹ Pu%2`?r;:|֩8ω OJ9!Aĥ!a\"<Ԍ2Z!:'uR5B])ֿ= d2u{V &#%_c/"oшBXya<$X?Iغ_W鵥DV9Z[|6@ R Wޮ2avc$}^]?Dafe9ͨgR4&T?"C/,T`cnGeI|Klhiu%Ջ|LIjkƒV|)TSwYyͻ̦߄Bfs>!JN)]QW5_ć*j"爎E'6|Z>bOf,@(17 kXp'yT=$B|K047iq-g{Ees,*kNȡ0ZeMm;POq8-Rg!i哊oW}FRM cy@mDӴΜ?(whaۮ\lo)ڀ2jmS^JCǩ/:!q+0DDEK9[`sZy*|+YpEf*;_x Q }ɾUg"(MO sWa`\~9e(*;RpKxѲe9ˬo0D y: oZ6' ɓNzOn,H.4"8pc!yj+b1htIr1_Ucko \֊H=+ 2Śڷ,e ~@Op`97+A"Ln׃L$ύ_Bv|P%XݩsZE1-75Lvn<HO7^w`X QMs#^[$zWJUGyIf躳„M$a#z^/0a#O:d]C~}Dn|7[6*)$>MGT#n;LOXM@e~A<=R,K!":;Ix;mBT/Ii <58 qvP_EBk E]C9;(&J9שYkghS.tX<smSk=F6s初eX[7fra$fJp:) 1~NIh؍8lCP0<h+`?CN$_YTEowr)p}q]hΖӇHՊk$^|Bߜd $6sɂ̼`w^:+ɽmh{~ aJX`9]H*#Q9}P%n?YH~iDyQ}D'曎!\x؇<}z7Q9i[KLC! {MYQ+gޏ, }!n~N9pr~yǕrtvˎ,}4Y~'aG Mx|U iѧgz@xkJ%܅+D)/f-(I4(XT1A@ՠ>cMRH6?5fp$eް]$LnftrKoᏈu Z :Rd+@m{-{3N2uG ֝j CCИsk.*d,Y e4Er}h(A)y vhجķۦ)DMOƩrUy5eHɜP1Ӭ-$Ey[A%m*x_Rx+*SN˽WlҨLwr/܃/4dFNNSPOoZH4pi6\JпMA8l3REbi1vBi㴮؇6#_;rJwA8#QEI ~.Y};~yCo98g렅tt.]< [ 6>Un)wG VTz43.-Q}qMYR5q.Y+p)=[eC,$@U{475ݵ_Fe+yqд=@T$'- ?M/k+rqƋTy8ئhM ?2CѶcJGn1٧pRPVqrSP-|T+h .FwZMoգ7Ro^מH|^qt$`3mAY& ku@8?*vy1y"kQЙ uurtuY'#Q`%LxWA!n Ҟg`J 6wZ1"QKG#߻VE6bat`;LJD-DѾCUAgC<CDTKS|! S$9C(=]qFn_Ls$L*(.R i@>%1Ek4t j79WxȹKHpɇcd%4 gQ ^flPAIֺ 0;g4(jחJwTjwnpP?p4&\䖋.=sEݠ#t(^Vߐ|jY4׾CAeTi}K]- 7xyuB9f/îΑ! );*)C i ldVD‘B<'@ev,Inp #R)(S2JzYA*ۤ^|?Ip\zd:ɣ^/- ]݀-=\="岕VOdp.,*ӯ]8lݱ.6ԡK3AV|q =Xp }T? w$]iT?-'=t||)ݾ;<bQa D%a2#='#%/J zKo<5w7hAǖ)VO䅙abZXeǷ3$J5&vC5jٶx(ø/jn%zħe-䭉+9i -LdQ~h'ThfL~nCG$8C2˝$UGi+V( U"1d(#ȽK;]!m  _ |l.5E#TT7c= Ɣw7J8Mq[oRȺ 贞ئ t#{j;)=NZ}]qŷ'ܢ$TEx>U7#Ivrj!:i`}%G5 Nex]@])6?J;~K} +s\%tdK"SVZ* `(qb/51]d^ͺ:؆Yq} B#{gЮjD;D,c%-ärbw]ªbee7k0p8i^.\-`?.٬d8!G=UViA$F)AQWI9)u9,gU99*Q96P%HwjUuZXA۲^`1lL6M!JԹG%ҥ3w’Wa+FVhT<,[G}h ܍cTtS;[]J ?HOS[ݱf? qE,9'o(pb +eY8e\-DeD$cspͨ&˰XFD L45|d ˧5%kws Ldi+w0}zkYnw{{KH/=+,zn/aMw>  2'0 ]Rm#*$B Jw zlh~lI= ar., "H\([^THWob!qJQ Eǻz3_u1gN<4)*+ jڪʱ{G]$}$>Қpryh69,Ygb|&j3e*w{ӽ76-o} !4PS߶r}MkQʘ3Y vhjӇH9 cn'l%Q מ9VSD}R}N<ٵFd3%uu;F@k6esp"x_ @#n3*w6dU Xul(fi{8S΃˰Tiùl (94jF=ܡًLa`i%V?Z/G+'ĸ9EZdun~>Z65Õ?_/Ӛ!;SDe(o` ]'<=vQ@߆coI<9&B!Cq'}uIo{(koYȱV.ۃW2CU+c HCt)X"V/B{‹(M]|ȟHC)#x W,*:XCBRD|!uv!I6AW x e~H @&v&Oh`G%yd:^zHSwxX kJ{#q-$7 IP ꖌ@=jN4 "=?|m }\_W|¯(8m_w` ٭$_&mp^KV+xn;תmC"ᣈ7c'=8]20?EY}]~VFDfY0;`xϫ%%z"'~!9eYNu_4Ow-9{D NHv7셻U GK7\& |~ YqPq<$eCf́,yV٦le^ i$bRGyhd/oE>ԊK@ɶ qu~IH_PK b{Rl |emL>)!PciFJBk߷g܇x-=s`'Dl^1I_c{VE?7׿q *`` Bɉ\Z2!XsRL[.ݣI'J1'9<TKryvt.x\ifr:G;Nw?̘aCy&C ?}=_n2ORHqcH蒍N mqj8Ll*ZqJSI?bvO%͍ǻ ˹Yv<@3rIW[ z.8Q/ݶ7>1eZ!Ä}ʴ9EDCʥ)Xg)8y DpXQn4̛#Rr)`m_#@^^vMu U-۵P|7 MN$xѪ䬖aAG%szd>j Cs V&ë.ńzڵ6׵|)evR%LDʔQ"vQrkWei*_\0M+\p$"pTwKԂ8y /y>dJ"2\AqSfUAU}fJ<5 ]~uuZbMtGˈT6 b*vWס-8bɩ?<-Q;j]L!g {w`g<>%}rzTWD8}PF+?W80~NOb:܀ :Cl{15?tA [&_kݗ¶rYLL`p:iJ pb!WK)`NepLl7s !©?Ɗ (18gLc|RV6 nDдD`dڨKyV!k'Ɩu3hlFh '5T)z=][5rdna eun;,n\nT Qc_ބt s )=`g*[2=ަ FP׃lI_bu ]\5@0<ך37WaҶqx֐Pө!جp^6R0= v?&LUp^wh?})@`Ԭɸ3Ҷۂig[{GdՆ$V..jЪ ru[~1Q`[g9no{%ie /'D8áN.̝ASYTm"kS$;rCM&w!wgzg>KXPD};8>L|KNtYEZ$vpq;LUc'k=CJ?9m7vsx{sPI Ƙ}8Mdh Ja`amU*}x_h__t}qopt0 {/ *A?u hekjQ91n>EIڞ~ؼ4T$`"ℇ4_ |4j81KI5wdsH2[ sedTLv um,?;ܴO݂yľZdM=?隬oXXC8͢cC"mDMΐMYE%=hgʞ;ט0~ө_㞝ejwAR7҉kjIPaʠtV!Ĵ O_:LMGaKiڮaE" WJ%QOiu m+3`kgӶ~4#XS8՞Ϡ X4ZB9ʘJguoxklbz hz^i)5dY𝬷{?4v)T' !i8 r a阶24 ǧ֣ \r#'Uw0S9 '?OSc :tV4FQ=4H9Ggˮ 5eR 0_+P#Î?L#R1@XVY8V)C4CҠ!8sوdnݲ4K.'kY;]YFS.V1'x2tC&˓,ڶSV$J|ba^&<*B fآx|eE*;CFA BUy|)O$*9N botoNP''zLEX?.]jmw@b̜oVg5ƫ盕dO)~Ɖcu-Q<ڪ ԸE$XW 9ܑκ;h~^.DJAwOOTmҙk0vF֥ވg{0ٮˤȿ"ߓ6]Y)5մ#~ C9?U_(T巪MY!sẂ7@_j),.Sԝs/]zYn򩓱X]^ErV3NORTz֒%lnvv(h2ӿǯ@˗(ѰyBE `Q!sTjrD_͞-lz5W5mQ WXGY6|Tk'|[x ee{~M>ǿ9j@8~t~+ n^pxK9anq4\J\ٹr*A(8@,g$Rk 𱀓"5t&;_Ew<2zY6iC|GУĤ@9nhj§S |Y-nR4.iHwfC}VkI*RMJ姖(F k͒+dƝI@qE}ܫa #!qןp΀;_0_>d%,1)A9EW|o&VSx(D%z aC/RQ2T5\Aĉ17 K5tC@` Pו0)3@z=B1kaN_.ԁdl=oW5p2YM5^-o}|g/2@= +|-4s Pkdr ޴0KraM= 蒘(Y^B:GME/,i ]uV۟F5΄h{V K қ[ӳa SWڭe|!ks}N ?ӟ1U]FoX_GKUEs^tYfkL$V~W }w/y(fB+2mjJǸ搉)!Bn1oovx 2lV?&J|7TH$O6u8€[ hۣfy( EqS%vv^(i f' +>Zs?vN)PC]$rSfJ= 9~jF+9n^L5uf=O`[!&q2ԕ}Ѥ aQk#f;ň[灳jA,JÝ۷!T+#"!hja*'5 RŸOu|Ù~DE+ Lfg9eܯM5r!”w$33tG% ҂XwPY=m~ >o7= K.)${ ͽ/IhtÉm>')"蘌 wx ٛX98ЅhU^v>i&,9\Ѐ0Ћ73~\+hG#k.acDXq4ĝ\ 'E̱C? d[E)RJds:榯]k#g@ߖ9ZIᬟC00,d)"(뛶D>>c-y>0PmX e^ao@E4v8qY?C]? RrWOO1zYp;#:~UQN˦z_#}y[OQ)ÐKw~/S3h'^UuxC ue)v{ -}WzbgC(*>[`*A_TxpiURk CtF.n-8ot*c}N,nZW -_KQ\%<١!c3Ӛ#"x.-yY^Ln8]iF3*.3Aq;OQH逵+t O=owM4^rFp ÖufO\1?8ZsOuXrI:D`Jԫ1H ?$XvU pX~z rIO]dA¤ cT1cF0+`Jt/X%q(q?bQ7?qdֹ*dw[`4^dʦw88hkʏm#9(S[(x>[*aY'Q! W/k _Mf'1#G|ol WCAv@X jcˤ=r7p G$7;jNǺTe'D+D ifM@VZ AQ\@%u'ҿZQP@Br/n£]:{zr9Y-観#D}e¹7#BP⁗,>Ci7BW"oeQC0Q+kcQYɽ3ߍ%ݤʼnUYt 䔚C+ץ \iI(AjN\f2(n{.Nm⇇C4T/Ǽw>5\.T{oox, {ޏDAwWM/pڮ9~mYJyk"lpqBzN/ Bf@J@H}0TGTI.O n+3?9~Ē]Dh3=r+ZQ]Mne%0]l7vvF4"8%-a||k $^"S( z{0'oݷȽ72FjQڷ:< g|ptNE a j9MxG/z/T{Yب4 eo:**9.zBx#Q{},l;VČ-K갨vѴ''j 䮕&v*bG @ЫA }G$6f &0J@!7 E#E{B!rئ&00I~gdхk">@#A&xIt/!| rR#FC\P<~O nhkĨڧ'q}jd00' + %Tc*93>J*U,YeI.8}CW۸"sNBG:ʏS<"ə)A /t KmT(HOaQ_]J2!`zdžݾr殧3aY8$䜏, m"ЎUMY۸ΰF9rrn'˼B* ` ) qz @)`ty=QЏ"G4rcꦇZoyIՉ%NT7on$њ0W]4.\ڢՊ~a` g3\qݠ;B~65/9RH6x 4L˲pqZV'C]NuXXynEu 5!e=˹YqQX-HЦܑ_,F_ńaPy쎑:C|NW\|Tz5Kg:bs4" 8y'>7Yvi8Q'XvkAp"%lݗ9ӜsQH4F.͙ SS`E(W!%E3I٥"HXAQ0YhSpNbdN.}O}jmlɶt1r8ϘyϼɛkӃ'՗XKJϡ-!u'"ĥ={a¿x5Wq>Jg`,ARB | kc/jzwGz9g~1kჶ"g:rY?홋nqL2,E$hvi߾M`Uaղ"])_~ y̶ ÷~/ x\sٮUG݈VL&l$q  \ UDpw._q- %QX`NKh oNDѻKSđ>:aAX߬6Jov4oCx_2|Gɤ "E,~}NaKx*뻿z}G};4,3D wcLAӠ'o/m,Ԉ+#pX_3aCaK¨ a J)q [gM(L0cnVrJ+!cAmkPsAր!bow/uΌxRDAדFe /lcO  wsFegSJy/I| pVk &#UQ.UgVb-?M0ccrKw<վ!;`-/1@O +9n=QS߶vlLujRۭ-dCIVt T䆗(~vp ꩹ ´dvU&$.^fy 8d X:"Lgwp`-iNv')i9>u ȀޏO^խ&!(gH !ITia!O sZ莺Og y1n92TJ5/+(3WC&aB#%;4})1o_pN=p`_$Y͆ﵴa룶y$mģ~4t @Mďq:fstwy4vW~]0Q=b0 }uΞc(Aԡ3QB홾{Pdy `"|R=+o۪-]Noڏ/myKUA؊\Вv(#4 !MZ{Ezma0e[3>|Ky@P{J^E\%@E 鸦a j|xY&_Yu ~*mpGCʋ>9~B^ &@@\k˫8_?~V"POl`bhl>9'߾hY>tQ?6%bI#%C%b]׈zj U1/U4QPƦq&g9ʐfuwU.)ܾ|hB"'fz_}t eL[F.¥|cohx',$ ^ 0Kቬԁ;ذFѝ 욟>,"Ȭvlc~Gf[i\R~ >m? "G,\jRBf<0 #m?D5 g@e%C1=`[^۔kA2C^2ܗ%qFвk#iuP,l3'D2C0MfcKxo2~?u p+C 0YF30CջBWeCO]ΫkT Gpk&@oݽ6ePȶm28ZP?҈2pgfr54+ &dY܉#TNl$2IV e4)wRti8Էʵqc>P%y(x4!S.+U?T\l4av0%u"(IՊ=lBnQ|2Z-MB⚍ EsPL#Q_}&Ghy:I-yx9߷J>NhO ,0vÎ1лX׊axoq Эp=2ڹ]*h=z vod 8DD:Jfs ;QrJKڤl:ҹl͖TKۘRR7<{N!Ej]ԅ> Q /Fdy!A؉y~ ::&u%5AW?|l44I2~fb=|l^7=\%_w -+uWwdVd=ٮ,TD'}/0lqOaW[ti#]⪳Yds@5Q՘ENi'w.y]!N>5juo23 T =]߸a.}PL~uxn !x1>[ +IG3/\WsLP!© ^]Ooا#Z+sP5Szm33,I8MɽGeSWixm|lGm"[&lI.`%|Ip5G4k!~[6.*`V<`RyySFߣc 0Qռ; 7jJf`ӆ*.+>ľ]QVVq+ ŝ-ԮyJ35Ȍhdtٷ/8GrPLWK3Z7:=$ƶ~Y`)'|6Egs8+M6 ؍6#uv O{6ʹEZv&vj<2' ֨70<׃J%jGy>-£f%v imltS3T+)р0;zYCGŽ@@ګ{N@$27s2 ,zu^)zɃ*ǂeh.d+sP5g#Md9"ou6+p2o^BBFcnRo?0Q%Km5'o݋f#f6ysd56WyiE`gIѐ(Wv<Thl{aho9/-۶Fl ̖ Szkc 1R9ʭu*+:r) ȩLU,df K:z Fu08q<᪱q~t@/ZW():{ Xhr re:]R:6|uL:冀$I[ ^ǽ2y8-bȸ{}[qJ@2nUoU͖x>X&WM ^ɚY6SIC)QBܠ@53>j=O__b'e58oyj4%c93u.⟥> Uؒl{7ĈeQz@ nP-硞/jzncm5x.t)tS,Whq1_g9X 0ɇź+Z03.[Cf*QHOJän ФccOM&=ڧWt)RXLij$rڤF;PJ% (xҕR1t#QENָg7L|ɾ JDx.MI6 C*PD4KF&*,[ ̌dHȤoU]K;#L~=XlFZt{J[M}LN5&8Q-e)k(tBV됲p rp,7*KЎzBLGei*$6y7~z%)R'YnFf/gBn*2eLj&VeP~SbL cszw?j ֍ IY> 4fW;\-Rpx`:߶3bpg2ub3JB%886EEg]"U۩갞x4 .7Ԭ6lCLn鰤%A.  Ԃ?o`"[4kN6RV mc1ұH`F+٭mgf_zAG4^Qjvδ~_u ooQWLUj^C [OP 74;Ivl(̭"ɤqtЎdh/H^+R&CL٤d@%/@{on_wq|q5R4KOW^\ɲkNvjH-ԞS]JHw­5kE\u$ >k?$$_{B\l 9[+.Y !RSaݔs0Ufx8C Be9mvY4]@Jܮbt:(w'hFHZqb/?(~jgnr Nmԁ$6pJ4 Ht%j<|O׎޾]]S,ZXv헊ۂ~!L{zi3o$EC=XP;3;^ ɓԏbI[(7+ QR:#|m-E"T?A> ~+A[ L@%Y2Wt`N{> +}DLlE ^Zj0o'r%V:gJ~GIDΫRZ[8>Gϸ# U[ZQOsѢ <SƦRҴw/*?O%7M `5q3} zňnFZE#'L|yߤpG,P/Hf<>fcWgC˗RqYAxmo6rZkPɵO5n=~Ɇ=F=ǕbWJ ~`ZR1P- 4Eˁ Ll|avP4vb1W_{<9|  o4ձ`Yူs,*?'og"fh:~=vMT܏b KGJqIi2Etêʹx;oC\E6uS7S^TlV8ޙ:MC ۹_8hFgMT>z`[ 1`G:JWfw0z7r;]WV(OZ|rK0𭗯gw=oevE > Qr$ܤ?ϫ,j*,81euAzrװ,Gh$h= qt*Vg-ؗ| 6gX . kP.d=.kbSٺ n ה2=O0T$=d%f>}.C(S1w0@Hy^]R|i6*[fcBU0L *;i߻Τ׾O{vHƟJh&EC @}ovF?8+Q/up *k.MaKjy'? jF"2}a0}({# 8}4"!{G!~𠇠4֩B}P[qq_L?jsCЮɝmz>_=2E %x~82JqG8;(5vKg` e^}n5%; /48 >NqרDb36# )q2I>TkQpo^w'Hh@R\T"Ɋv[>ł # I OsVVO40W|S/sdqɧWXk ;ˏ $ V5'*X}īFՒQgNSʮ eei/-}hERw#m3}40VkvN|N,;%(r!+,ÔæޥH+$jHɢ[%(d0\~xYW4x/"Dʐ@]U?DOxכ`1VPcuq(rJj5*."zy!4jpB C^S>?cWz٥X A+0u56[-Պ}`9me)}㢮9 !AM{R.f<'2Ӄ[( {Yľ0:5B-fD/&i{M0X.˯֝V7!1&Z=ibmKՎ ,orkt7L[6!wQ!HU]YĒ0Gd@k\D`4?Wj<2=23S훍̓1  k|W&puȨzni3L/_#awN t`zxQ6 A9z{)α DO-69#yGl[]gY?`1Q64"gc/3 NzojlΞـ's!= ߇y]8n TǬuD-όRc3d-UOvTz#<_]~%^5)\65mmA (T{ՠFq&L";/e|`v'0UF5n鳈E+v`)_WGȤo()kUⴼ Zh mfb_MY(f`.pwxW={]cnjigۋEY۔⒈UL B ~#`~Z CS(uS^͙*׽o䳇 Gf.`ޛj0}.b"hޠK, :xS#YK"I #E'X.h8FLg<o!)v<+Pm(mtL~HG3=u,2'&PSnJ`/"HELl}O$,W3uw%6n+퀋9:" 6 }y|\bM;*7ڲt c+ˮ_* 4(;clm:!gxYZF@H~3.|' !_(tb.w}OhVZp2_Ҿ䇥^O -9C$`0*ny U]̨1Ή:CU;mCJ [Y4ѭ%/hǩYF3d>ƣ9/S6e@m=@f \hӭ ԷF&_eƨ(Sbre<' $Xr+Wk{Z5)|zٗ%-Ԃjˌ}a/S@oL7pQ/yb~m'l)H4.GH,+3L?*Y\3P]yn\7+9Er?d+pߐA!|&1Y;^UJmr7*[ 'A$R$Gd@w닯V2#o ,;/\gL Vh,!cmJ@ئVQaK _| ¡XHr9K`B:ͦ%p5=K=$j1mcX{ <ηDc ͐%S=[ ݅t@`x\s$`=}*PZ?5k"Zj%,ƪަIrGzCEgvr|.~J! .ɓ R >QiBF#MCvxэYI_FAtЭWy~(G(~T"{!0]fYDRCgu7aU ҋs/6Zb~,]p^mAp@@ţ|D٧ XP^˓ %3QS5]'f0E4]d O7ހ!KZS-R,f2 q4eefet%61 Y)U4hxrXo)MZ͇h(\q^"I],S9g";pBM.͹<Kq`x`~$N;9'E"!(tFL}<\ݮ\7TCtKa1đTĶL0 h'*}ԜZ<|ןC?cw-Irr=GR^F7Ye;m*-y5CDygi'*bc. |.\9b˥20LZ/^vOeSq 7oxQ'H)ΟpQQp`Z^ ӵcIe >{ז[#3dAHFeDfnݐUpthesZb;MiKoQnZ- H^QlLm/_Pn20 }*>[OYgj~P͂ *Gݟeݲ#>lEA< X"n\<$IWI:myԜW"BlBZ(dJ4bzFA8؊hxjA85\ۿ75D.(={wl=9 Ux8TfL%ח|GTnY:r!M8 w]8&{5"v ejWjS3imBW"թ6 UG`ɢWߚ '`cOI'[$t? 6 n+&WajgLg!<׋/Q X}BLnq2X((z/YBrԲ?a-;ÍɩrR*돷M) S2#u2?aDl>3r2M …&Q7G&':TFrFnHUԅB=Av(guLH?I2=D)!]}āTryX:Yh#ԧC\W# X>;RhLI$.i [k$/-x#J4oGmQE#^EFn&ƙv6uK֪$<_vFK~:ӡ8(U/_r@0EΎ.z;7KO,xwJL,)Rn@b3dZ*"]A!Rc5ff+Ytpv^iBqw*IEqk>t6vx9Mf(JםxdCU\Q(V9s44=͏Q: ~O^> H4Bun2c4(83oX$4vW]̱K:亦^'78\VPӊn -OcNC> Jsf|i lthW g‹hRR]m:HPh%hqĕL=߁j,P/F+ysP[rx1DКm' aCv nQ8oV5OeY-/$ؾԽ7|SX,w|J!CWm 7Fq^McM:٪%^:9J DRowT5Ҫ'kI n,d㿟M.2dI ݝ`ې@3Ų8W B)f{cI*o>^vHwI®Bn:5;|0%43dMZKAIʣlJРѽdpb 28+qr9$w(_9-":Y["$=K9[ V/M1m&0ߢ3=YڲP%ӣ9,bKӲ}MNh07kxʸX/Ȗ )#`;T Zo1ȣLTcN6\jtu, 2,2~ghL_ޱK`&u _ -߁{)Xa8L***O =mBA5x/aj1L,7)r)44>7AdCzJ.()9а}m*}#Œbs^R+suqXX;_yto҃$R\l-+bKw?qif_NI9_Ӂ?X?4Rf>IcNqq JC/#=@bH =?RzIe"Xz0TP B`RDypZH6BH{,]@9fK׺()/6,ᨊ08+s$-$B3oS)dC`ivK 2TtxE!SV<*TqT.[!o?\ y/PO!{~,a8)޲ X>">NR h͞{uesRkWǨedpjb &[ 5òam?2hxwjͺ1T8V^`C󤞊CJRx 'FPo:E04ToR$\Y^@/x>JU$8YV-hY/3= Ԧ75$jǛbTvX`S_*ћn~ӛ*H tܺ۝K b7mhΗe*'W8Iq@,SY-2֡/c2q<&m 8dqamΥ!<]VIw~(4;/ka%lv dc*T/q˛`LٿU|n% rxb`[p`򵭳nɜwm%  BWܩ L >&E2 9V)B|&[{arD;G#t{@JJscȘ1Ϸυ X*$F6 q ?GJq2eca!KEGԇ}r(Rh4DŽP3}}?j/R 5^Ah*Euy;~=E;zve{ W؞E,st;Ce 4ҔtY*bif=]'E?ܓ _xbVMH0Vݵ'xF8gqם _Lߦ7ʫ><ѸFnXPN0+gƂ34YrH ]bI׏ߴ*A H Y, ?] ~ ?hf4QG-Z3C5)u^HoĂtrT frqsĘG}M'ԴN !]ǚ-<^wK[:au` d~(x6T_{D+VŇLZLhhm5#d~6�qQ-XE첻%=n?@"̚~߃F_ܩ9R./r,V}FTE;(͛.z dA5k'ww3{`zl׮xsN#wn0x۷X&{6oNz7nro|WcѮkotڷfR\?6xH״! YڅV0u#tHdylvr%jQmtb[|(TɏRF?#iݤ@wHyb  ?N\["Mh58E@X:uJDmW(ŮԒMd^-ӛ}(ԺjAi@eoɉSgL̻~]jPAەGr{Wn)9OiFٽmwd϶ ( shy1~ęǣ\YΖM TCJ ӵﱶD w&pvJx,? :=ْn: V|%XMui&Wm$ȶNƚ|@?b)_dlv tGŹ-QF{S[9dJ߬&t âń{; %ȅu7dOmFw'p1K-eYmL8__&=H.^<]sHe$]STwλDqЌ=^1z)3r*D&dt5 bUH|a:ccE/? eS^ o-{ieL#4}ATx 5v~(TԖWD挖j~+:4apDo@1 Oú2v`~-c*Mc9* ?_O t#5h{QHtѪ(ULTIm囿j=`m=\M#SY5PUs{5!XO<?2FNij2#<qXc* =O}Ѝ*Btc>=B]١c`BPR>Q;-:+}<Qp>Lᢇ[ʼn.ɓ(G lj>Ą Cc ^{v %:ѤПֵIi'Bi%ڱp&w 1,ڨym yw5cY2V C)Hvfp݋B&<2oM"> U7q34#H=eNu@W&~14=x 09 8ܗY=˸cyRkfىrևQaRz΅W}K=$F-ȂpYH3GE9 @uƲgARu^5+񨹤 HA!KAui"E\UJ6F%uES=o@`"_\H*OQ_;ڼ;rn[ 2Sbܥw>׽L }ժ­0 |GJI`n=I>[9Gk[ 66E}bD.x!}FE|qDzDm%x5rb]bf rF>!Tt&3`y C<tLw}+|a{vOHtf}XA4Oam/D?z|Nyʜ/"ʨg"3;0EuL5&rz58__1d|\8O5/V/T~ɷr, _&O1{4,Ȕ CzofNQ$JD=텗90Vv֠ >R:q ,f%ޘX!+zݲΫ ?1 zT&}7lОo-Gw{@q ĞC{KeGCr!9S NP.Nc6Q3!fvBN}YD g;/11_&sUtP"$́މouKۑaOٕ_'E₽HԊ"(I.{Lix*0ι^n32>V2.0&sRfHˋQCN*.W31Xڞ48(&}k YJKr~]jpHԯӸv7&m/OAQhpZi6>#h?W&靘 q3mHfF-2k=BqY&dU@j3WSbS5Wj|i5j)xZށ UNyrq3 %~V>fJ.I}$t`qO_~/1^ίh/ܜ7R9"oV%𘯼-Ƅysv yĩ\Mݪh,B8]Y%u%ޟJ~cH>4d^sRF.E,+I~UÀCXSj!XDw0JV|FN DqA VݧGN:{v.:f@u'L.{ pM(|m-%ʑqtG);eχ{gζ=z<8GW^ SE8q[9z:xujÅ+J.q#%8աRߞ縊K:"0}n) "g D RW{ZXT[ u KUh7خ`UNJ=GF#Ż GdZz1gՑk{c&rǩ"7WBt(JaidcKM"k `G/arB*]QB%)Vu8ZV2LvFLc@N=D5cyߍKon e;BrY!z=[%;#O.cOLJƠQa]$zs&ZgA.\>Lѹ.cA+ga74})WŇ9.E0bIžҺ1B8⳴tg},7$%`eh穾rNsOZӞY*U2XMa>^c}G_?hna=7  Fl$1f?2DT 9?Y\F,\:yErOnEx.w/'7} @݂;Hi;hSW"k>]@ܞҘ$)7co_fM"A)-4)Q=&>Muul!kK;^*gk5pDHH&A]!n6o DMcbcWXh.6S@ۇ(Z#(8@{n!'!6%ͩP;"UnA6 @i051>]u1l5.@t+rGfK7&㉸Mj#8b6n[u8׳O~2B%9#dƚeX$fhlcȫ]H)3fbSJXJ;CChFH% m7`sȦp4".͡$[Ueh@ۥ.aӴPJ)~b}QaǀY^fM!V&`B> D@4ވάe^eD5|z&c~/Oayh8tu5R(4ӫ8AWD%ۋ ڙvRJ1 M/ L WEk핳NCL;/b]$!8,4w)cѰ#P(kf9 ODh6Ůdظ/Xε ^lKнl+s0Sڝ4>a8'd߀&ufIpMPTʯq'K-Q&[6}ιf IQ &Lp?)K'%Uo*1a*.q -[fE g5Y7Aex$&&QR/wI1i)]g(̖j;Kj r?T&q!4 e9OQ5 FoCE/ac%Pe-W:=.DK{R(u0?Tbrl6ԒrێwRœ Xu. $O~W|舀@F5Jˈn(Q3Т3)р+H\43b vLf0,Ϊ AV.KsDlwsX}u F>Z`` QvەIsÕ 0?ZB ь 0ؕյVy '`FO!kfّ)/E"I}q勦^n|0=$")։]J'.^7,@85vPEpYis21.Q$ Dr.B*{%D' a|%Ym2NFd R8R؏u"_W(A~ YwS3>`M0#%+f)YhZElLhFġI+#sC6vq97x{{#il[$|nOC4w7~n3,G#8 لz͵xnnmgeKjDi3QFGj{ejc37uJKƏ62g:L (``8tYIy||B~Si-RIV-,#$oz{4G7ح&m )2ɎTG\x|tu1=^WآuנW:(K刜~m[lc=Aeu7nrp(t9U_)2jٲ{TsÐv(Ps_eo,>w(#۱M|w֫;.^ΡCؼ(ۘ#jYUO {ph`࣏ա1WQY$r 3?cXۖ ~Gsk2t߃ zr:PǕ^CM&[R?ysYT೷'⣞t[',Y܉əg~9K˨;MK2"Ra_ =YlHL=##]R3̩gcĢSEӵcn_qC#Č)A)e=%\g,GZa1i9wxVYԺo:Puk\* ZԦui[EӸnh|\@չIy06 eUuď-rcuߣ)L–FXvPuU r*XTYl,g>ōGofk"WS>,W24#ҩ6{;7v[٣"!?wX[l/V6nzv4[Gh9]9rV'u y`>/ ]ܢ(I*2K,rЦhҊ{X%&6uꎡ#'nPt#$Fy f/`KX3qشeWGuLmp J  KٷrrWEC]:aqPc A')Sy,&5&1)A,|B68nV? K?/ n1y_bn[ p)7;&_7xT.p._H:R#enD[9] (h.xeΣQQ)ɑPTtnk=XRo d-j/t֍w_94\&>ЯI9=Sjn] C H{~8;ѥ-zT,[PrJ!牼Tf,/`6u^*>C%`C$[KwȆ?td~bcr4Us^^YUQȣ^s;Z ?vg;$u8C$_MOFX 1px)8^(s xϐ-wJ+1}C lxic+6Q,?@3Z%0xﱈ)պ3I뉡AսtkTX0JUhNVC[Ll21'^5&I0Z){WiL+VZo>ke@I$Az8a ?%~-ɘO-sՉ[6P>@~|++,]`=?(Ÿ[n}ke" /)?r@{'s)#)[>eIDX{ P0P7@M[?s.'4Î 3c|"|p g :4xXb~]5a+^RߜKE7rfO3,6Ʒ(rRy:rMMGkdǓ#͌μA2. Y 7^3b8jTtw>2=qMg`KUVz3Z4DJ)"R3s (|$IVb}@^Ėv-t1)6\WXlkM;tUxc'eVĠN}:ܹnh`=ΠPR zC~u};}z1y5?S8m̗y֙:20CaVJ,cjA&MO:EvXz2.1ӫ_V73MϦTA[д9%ҺWBV25uq\٪% bnfYu|nsY->NϢwH># (aL=8cvj j89aa#8݂Tin--xolH"޴|dn hg 5ƙ6yT ,d)|#кRiB wlFlz:'D+K }+>I*V5ޥ{KF^v  T+q) g+p*F*jLsnFrcWlqpTEn>to Q>Tg'aw_.Kls=cBb* ;%~!$t&T_J^DNL L[a;# |J;d2q:ȤkE \ 8v-ǡ)0ϟ?]-Q=yN&53#wi&ڣ"Z6i qY]hAo!Ғs覼(d=^N梖*d 7c[ڿofft!pWj$!$33DQ+2 >N9ylh !P{wZG,fm֛G ד%׭ف 5Ks(h/PM&ܺ\Y?B4C9y7mNMQlV'b0mOAl(?[Lvwz 2hz= c,u|d6<^ko-Q]HeȯN~ TJ3rf~DL&ɳ**pN*ZzϹ.!\ ~X xC  $w^ĩ[ D!go=a92s P2ԕy$_BW•|2U&Bf1w lDY{8,j) 2(8Tcp|K^ "z?bB2w!M# ';N94BMFfUpDDsgۜ^iKaQ3u|ꪏx\V6a솿vaKO]K91Y3VX` S{5ke!DU0d/[ ;&)A[ eI]hdD}ۊ&I v7L~vx3w̉!Р)@#UUZ =hxg8(pִo%sՑh=2XȃP-- DZii1{mt*Yam~g2Hf32OمH$&B\ Sg^ {܅C>q:>y|W~XYdX[.$v(9g'ϞL:/!c,;m71bvyzѫx)<nH8FvyLwZGa$(WSČtDdC\UM3m2eE vqqis 4$sVԧUp=]s߻ ,K9S:v(p7g**3 M'51'Dٝ ei /|tMGn-~][W.4t I₈1~Dڠ&R!7dd^{ھ\,&ckۼc6~@ !ǁHi8h4MʦMF#Uʾ>mƹEغ`ܸ8 rKDǥlUKЏͅ~ d8Q޸ZFJWĖD&i tfh^%_7ƵFϞTr?ʣ]UCJ Glh&߰:㴜_hW"VC\)JZj۪DRցFB ,TtYW;`LەIv'fF $x]ӻ*(ԢΤb{ fgQFɅ.'۩)3NC*)_ _dVs"{YT#k)-K9+P, RZy;%2=>Mp+Ƃ -Dq6rgeʿ&_ؑ!6`:@2vYŲ""&4um>@Z(u(*sU cUidmYo;}ANX(H?+6-\V#uєK72 q2OCKnj*82@q5:@4R]SWjN5zbBB'_|dAj)Fqi-dQͩSM].Ff#ѳC%88чnL©~WRBٶuf.}փҿv  Y_‰UKC=.U2<=,zH+ W-=) ' rg;&9'M$-K`t-ȝ_rGXWfObGç/Hiwxk6C2Vik(Tkݹ{/{uUY휚waН+މ|IߝF/u]|GUGrӬ*dЕp2ZmT/'1b)0>2͢ɞlv.@x)A݋0^I {Ea|teԝIjS?B¨ɽԶܒuQ3uSKd[Gi1qSn7c*ݍ5e =Pt͊19IfWO6k)CmzKf7T4%BH@ -k|)qϘcYK)(2~@4J(&љ)2ڡ،irAթ/# O(ޮO>8VuyN O{nG8"Uga2  y.Io۴GYC :cWcō(0e,T#n%Ca= },y;uജJ7CJuis᧟f娣 1|smװWqQcZ$!Vjޞ1x ;;*$$sV +9oLoNI(Ä}-ѹ882T[C!r%Q먝l?&k+DROPo\V!H548l4]Dږe9p ~̎)ǃXUf.OfR ik/ &k^ cW E0)IA+ۯ1r%ME&QKӔd?<;$O\G4?Z0e8`~c\^xMrTuPeůkxKOڂ8CF}fqDiXkݑ0X[R_gGRQm@g4M$Gqk ξ0_K^@hnj#<3^}B=ZKЈ3A;sWxC؈_*J!kzbIǁfЮZeD|FID9 }_/ybq#ķEXyXEhU0slѐTtV>=gGy3KOw WeiϭE)#&"RлE+ԭ$N %̱Pҟ}OʾJ~+]wxeB@lМ8e~---ff1n$#Cɥ"uFꓦǿOzGo!ܺv j$dgMCG^< $ޔ$wx^QaNAa-^]~;E/` 2QUWb>鱇 ֤9q$Np ٟDלNdv 4C1uJ@u.HҎ6,|Yw36s.O/i ܟD F|_VQq']{pL_IۻXo_?A:8rjVxx_| A]CŽ{ .jʳTwpWJW 2'm.&8_ޮX\7mKIj`|,@\'Xooj~No6_zN1aQV;6;7X hTvd_9 ׭,c^w!^v_ĸRH K<\@u-iIIEѢ5x[@WXGN!#Pjgް_ґY bH'thQpSÐv(ϠpU4xbM9`= }Cpuu>ٿ6}N=vר]N8`qA,WOs苈owboF6;Bo))qO!q2E:㫢6ftTlVţt[g20E>|rY5o,Z;m/- )iQ~]ᨦ'Yjxu󻅄'61ANz-t3j K!L(YǥV!*gu pWp18LDƱvK%b t<bR` _bn^=|̣zdV1J+EFCصXncپ Uubx6`l@r/ N~^I=-n݄5: eQ~ڰwQ)M,>Vb$[]EB'gHrfVJt,iޙiӰ󱗋gR!ko0hžb(P[}Ը9;0JX"< ihKC>G"{+J lfI)ĹXb~7x!b1*ܞe6OdcHD"~SbMg!Tf]4>#Ճp1=7*G~2vIFt$藨S0C'쌶 PM9)NvJ梡)7߹Hݫq9W6tB'Ϫ1(҄DIY΂(?%8S2NmVz$!Ýz Iz%%EJ"טf'!؞7I}ϵ?r`YU\1.Ipt-d+w]L g3"rSN K<`l! =vM\;LR9n~oORU <ǝ6HXeH >8 >1d8"ϼ ]hxA;;gM 8=.Tx>6`E.'Y>R`K.ׅg'g/&rdScFho0;0HR|?AVa{pOSC3nvE{]YJ߼Ou4<0L_>F NpёzvV| G2٦I7;lDKJ7F\iogg@/iEkm %!x܅A33Z< ;=i640Y>Dζ Ͱ=`_R3Oui%'7*ZђBr2V n18V$;b21:ow(xf}U}_Uč, l٘Pl BكWgȿ.w|MM)&{ߓ3v:FBʴ&Ldyb-95G̔La$a:.rmDh[whq%x//q(IIB5/ B*\`3z[ŵ:_4^$3w(- C퉷u ɓZtza|,sz}H/`Pu2 H+7 ݓHG 'p!ē-a}5 c`u>jYa͠ FӌMqK+{ԿVo>֢ }}hڋJWGCZ͵c/KڷM~Vج 6 ᾬiS/N#,  m<: V`W&O_YJεqϺ٣4H%'%9"=8Pm"͗/8)!HCzP mqDA M_Xg'޵!EXRe?i hL$ by xНnXE)}a FHzS(X]̑.(+l~OCF+ Ng1^~D= wAF )x"w$*b]5|E{ASNYŒ1Kź<&4+V{%VvnLt^bKVvI8uU[R?|L w;uP} ^ґN]=ts2\ e82anAױCppq4(UtV u ԞF A<; eh@?<9[P+Lol=#h O`(h|T$hm!M溏kk:ѦcTwsM.Xv6](#6S{Sy,}Acz@i*+^nQ'E) B0ښ~:E/w8 `2:T.vUC!y,W)BxvRX/Mrۉ-pb#L5`<{|# ߠU_K7 e$J}W[(Oep^Q3SAS]9e/Q6(٘h_IZY)=irJu?A?z"{G:4Y6)}c :D-TA0?N#w6oAFk~)~Ty?a[;;)>tqabv>-SM0>Hhktqoa#TP ?9.!+IFhᶩ(;ax!՛gH X'EurT/ϖݬ!G:nv84|mi98L2V)ݝU}(oa 6'YBݨ=b35uea1-fW=>!A\¿ت{!J| WxA@-rX%FxYj'*7Z>81 <(i,ј@yVxfs\.\Y_QKLS%Do V$UP5gЁrкw$wԀB {iT" =ij'n),#~^E(Le ! Hc2?Zϊv4eZ|/rc958=&ZBa|wCW-:5_rz,Uu;)PKI|> m՚a'i95Qu*e+7듂֒oG3c#02nKFvOEV}1)lެ3|nR{h?iݵEynWzyꂊ9@I>utJ3S/_|rlrc FX[ZP6+ߘ{ռ&t3mќUE.qcu҆'a-BM}4e1&\]eJc Z9@'co@(C9Syen;sY[W7P`%rd 7Zs}M))c tX"zUoXKOn[UFcbB6$+c)+@mrl.ET r9<Vs]^%2"7j6?v=LZrcK4B@=|B,Q7~ѺW9%l[`n&MxLc M:I:J9k(8 ,(}>Aq̆NkuX_X:pϤOH.]S|?',B^#EFHL3Ƣz^C A܍N$͠F jd7R?^xhNW=hG}NKnU:(S.]zcKF̯!L'4WOOI3e.iޖuftCB!ĢF08@BaWTk^/uMXU CqtLkHLcnChEHuVp8*3O۩G-`@ˮ;¼,_HQ(`dkx0Q@O^ZJ-)Di"HEwM(rl+oD=IKͬ`>iJtTmT"fn}Jf- kC)ό3we88KY-qmd+%SugE>[?,Ɔf%IMM-[3V)sӗQ)#4l UQ Li_tCL7xrG7?.:ţ@GSGUyeB$l +7$NX}{>z^,ɷG‰I=}Lm9F^ì'=@gV Z(6YpyhMD&{nX(o43w_a1BWS 榢̆5[_?=5y%KWTɈEa Z*xx<ч#Ĵu4QTu׍uBڬcü`n[#lSv˹֥ᣋuõ3 m/9C5B{%#BG&b!#p  T%9F v3u;T? Z˽y@? qĀM0#2[VO|ZOz0ܖK'Ygnϝ-jgEzFUD\hW5Jfi摳vFKSa;97_{֞ѾX?O}7.m %WN'Lѿ3j4k.e*j ]֟5q|& Ԍ]"g@X_:{+RHrgARsK9׬}S>Q(yjwb VNӏm+[@j-ƽn.8K@k !f0eaOHe`oXd[ [#S;\x\Ƀ"89ݷH:PK;f jy_,Sչ;i[p@^I}67_P}K4:HRܤI SE;s; NJf:KFKf'5NQU@Ft' @mIzj .l!M$ysCBžZ/=Lb\\@fiuiPtͳ]ԪAYdc? '߆;-,i8էǶD(dgw{R'g^mk :6:Y@n ̀9{阯GFs%uR1g,EhJZSD qym!,;XQiC0H㙁l+y(5JEqv71Sb>z@9`Pcw4$_BJhXdܱbn$>Ȗ/ ކ#gNI{j^ CGJHp[%PS&+W,eP8n2ne+y'#7l`_;T/X|DYTs$Zu&:x;pGcPi2xP+m]*ɝ \X1sߜ nY, Yk'uc&R:ޘ8/ϋ|ָ+qݸ+'MI$.IOB ٜ(QNHuOܜ8~(jWv魅J Y%QH'Ē `kyMrki< A}\ %>[2[ڕp&ۗ 6e#i3CFύ$f:Il},$Qj3kf Oa~ԕ_$x \-akVSƽFf^VX *JG25A_"].>~y0W/J՟`8.侜.;0?t1 dq.<ti#Bã z#W}n]˴ (L8HW*Nיexbg%H?Y Rﹰd7jQ)99ИU˼0{⠟oi?7F$Kk?cX5X_##Gv<TV~i F-g.2Q&2~b.oXzG+L nE a8gw>MͲ4OA:1u cRu=  1+k&*l:ۂĪϓn(AJR$,<{ .Ӂ(ITjXڗf pW`>xg%GĪ*7y@)v85FV%r1\.5-e ͮU|zz=)>%3oYL ,˦18(6-֍>i葍X&xrgl~ ( LE9*! ns~UPڡQդ@V<Ј(-L8b*AVݹuxb2ġUl~z%!L;z5^ts]  cuA ak9Q+ճWCJQqm5%61kmRhJ},t= <^u+%KE)Hd5;KV{QIR][нAYeEE!%߆?:ᬱϦCnj)QW5Sp Rg-XI̗Twz%ߋxcp@CJɪE͵.0{UF8zjxB˖h6li*S'/^~gWTWzvxHmKABkߎsn-Zլj1bv wo4֭ ޟ MBnMऄ yX)9;&Uf˜a o[Gwb[f&L|JNN m|P1Bt0 |i|cnkzP5G^Ȗh;D}VlE :íW3 {rw:YQSMj՜ ]$L+]AHʎ*^nywz)*s{Tm\<:3 @܇h*~r*ۘڹS7ks,j8bˬ5P̂-ԁјOUp߽nU [%:r>EL>4&E!}cOZ(]6 q j0f>%oI$BvqswATHS(8FMOL{5>"lY Qښ*i7D-a4Iͼ%f :)zf~ps0y X"p/Y4 3ιPDJ2Kw%XXlijf tJ w9 rK1-ǂ9w!aK5x+8#E7/@YQȥL: T iZyםa6!+P\N C ^qK( }xxvtaM,@-;Ǽko݅vw]'ξ/(l̊sG}+'? S?wY5e-ʦ Rwp[fVSp}٦NǛӅۡi#_>m^ |<ݨbj2',j_4ϡpHGÉbl1 J9AqX@ԾyNg  qFYث&  a/]GfLSEv9L1)Tjx~! #=CWЩד_X1eHR9$OTTefngM3),c E _CuZr(AϺP<||K.~c}֒bN)bA¢bx qL-"VvD`fQĄ ~/#+*0dь"C,`̑v7TʫSJ~y`'qA *[/!t';>4YsX^jX+Φ)S2\VEHp4xL8TYIAŨ=|K{pSdcpkMv"?,cd3=|+TaGNQ|MX?=˵ gu$>K(BHCҨGb)1Ps{].=Jtq j馧-$f>F(6UB` ZUuEYюx6f' y)YDg i=,~a[X;C"lX^u*E+yQ"?Ra-ia˙*wJ$ɝ=Mff%K,sXK"OR Pi@It/jIR$v*L̀r^O2BZ̙9*dȡΦ'toZ)+y'gCOi$^k6UMx>_Y covUم0C/1MArAJ.ؕ! f-l<@L=Qp@nΎ-~6NhOUOʹy- ԇ]zWĝtZ; YDP))]n2^7cw@,&{ѴV޾giA9@:/%|څGaj, x2l_usb^:)&A?\LPeZz )׊& ʎ~5r"B_ L6Lw/}S&O)7L5}یa䨣C(OVe)^B^a󤕺=7|䵻/[ Mۻߛxef[O tevnQ4Eq*V+KO gJGT08{OĬzD5|O1 >"ɍaQ@ieFa9ђB JHM9~ 'ľ m σ\&lsdwx1ף* ҇ 3_nbA(OTjdx&ieabq$|$߶P 7٩jn{k#dͶ1#^!N#\ۡ?^c,[%)sζ橮\;sRt% ǯ5.)hq=L ItN$9 m6n\k}"\13JJ|7+Õ_peVDL| Plz=8HE~e3 NY;>f0oKa͒0!8ZƲѷч9p!B3?5n@%.|nc&섮ėݗlշPz-Vҗb+xk~KL&r Mɷ+4|)#GFŖ%(c,Ov<әNǙ*embZ\ɍR~\#A_&˨vkPѓ?0GTF/028.28[̯ Ǥ\Ldݔvdۏm4Č>(_/zqWS3^XE?.qh+ $Unr^S¾p #2Oer^;Hac!ݻ)|xw"s^1%c-TVWؘA,M*_>H.H1h[W^QV(&n?yj3ܑ*a ɔ'Esn!oV%R~AڀȾH4#n`۽::m+"gz'nE rJoA]\]#*w\SEenlcmurfM}IO,Y345 +sPaz}{6)1}pBc,a58\f"`w)gx%|m'1rI/8K3->JU(%q$#&J=g)w`;gS#]ҾpVl?D ?qۑ=eT蹌&` ІM&fXPVxGމ*L4r$s6BF qCz@[zgiji`'ފ56[ۀ~=L N gpvi?Fյsmsv[#Gt_7/I)[[Yv\i (>*|'Z.OO=CXony7q'0pWT;ycl=-LJ4%겫$[Nz=~8 gݧ4"$D G * GPŠc'P+ U *xtrB²`@>H{]x8i`|`:0b0'&;\Уu9œ:Mnt  PX'[bv0vognBLԩDJ{~ZW`wug}dstrceI>3 [69Dۧj`Z08Dzz2ϼ0pQsYyUrLdqbxFAOQɹ&DF:W_(>@t-K*}]Rc2rv),pyf~;v[^?:STGc.=U6?3#&|e| u EFl#=XE,dֲQF\8 棪-VT o8Rxilq^I3Ҁ  !A@/a7 meGxʴ APsk Wt#`]y WmuuJ.Zlr=6 C^EuګSaCyh#vC HFbNlfbX*?p޾$ܜ*acg {QI:p_MAt0Xd蝧kA&(cC?pQ̈́[孷/5u$ˆr7+BUBQg6kNTpa TKvM^q>D!`yZb%>B6[pE=Ty Z`5@ؑNCHu,DB.)׈sA^ CpN2'Q)ex`d ̲Z!/>JUV|jRelv:Ks}ڻ÷̝aGcۡ1S~!-o@L"39:ҦŻ;B0"U6!8 3u׊HkT~%}wsa~;`F季~ P"˒@ib*vlZL$40`3ꔸ@=[E4Mb W0۰?mIRzqʨh1->F_Z# wP*5R3C"2X*f-uҙEk8k\.NM NռD}r ]s,Y99 OQ]'|SWx3ļQn_x__ݍq+`2}Lc^w!1D6s&SPTVg{o #K%b87Vm`xR[u@UZ7pG"9H[<֏ND,;zT205% ^ yw Pfb /v'u "=CRѓ8@H%j=[1chZ!=`i9t(Q^f?~EI͵b|o:_jgAh2H q[)g*ΆXq [mz{Uə|z: ={_W@cک\4& L[y1T'l &4n cmZ#]scV̰!UgW0+CBVIu~ru7P3ܑA9ɞȈ@$/|crQ $‘CСƙ¬I{}($MnZ ?} `it(LCe}.oWsU*Cj 5+OX11t\:ÃAG1\d+(u VCcS:C Ll]xʫϬZQKcAFU +UPP*FPA )Y0tz2F|'QR4(h!A!&"YUpQ^s~U_lxfT@D)yV GP~Dd=y$&wO QM7VBۿhL򚺐pYS]FIע:"O. Vhk+E(>L?B#-cѽMZ-8;+_z/Drp!5~/n`&hf" -MxϜ)ڒtDz$j&ß )k*Po*b^(XβSۨvٵ\ f1ޣJSTuH?`'bעU{2R=Ɲ\)$"=+;J y׺ $βR/I!N5e"2enާ<+BntxR3R|n<.UQ?nUVY<Ya5m7-X%S]:Ǟ+A8ޤnigʿA+Pb2Ϝ=l1xa7kNfZƣ6wzjP .>t2fBt@D%#N.MCbavCJ+S8{5mVwe֧4tZyJ #2k'PKd!WD}{Ոwn:x2 dsJIQU.\@̰,|NP+j%wh=4"U/̩G;3.#f2WH nj*gLr-~=̏{" oZUu,dbֺf_ p]̓EZE۽Bhg̶ʿYae+*rDgI_5`ߪٗ8_^;4dY"`EѴnIm\qC3-vɪ)-d"rvXHn .3h]pqO/1T{'yX(]$/~zp [`}5+kIJqu46!媓TE\TU6xLɫNn3ssE*v+bɰoC d_MNA %DM3q48h;(}#ť1  2MKȓfqĢ r{]rjX,T}OGK'tDtY=cP e$XbkɤG[?Kuĝ0 !hr᳉b'%%y~4)2cdLvR uJoW~BdnԹ1ݩ2WFTs`^+-K}ִwCOn7Ȉ}]I %"gdFgˀQ0;5܁$!hE~ Mal^Dhp,RɌ[Ml P@q|xiO9F˔`“Tx!25M,_PP4ʾwB ۋ(""r$<&>פfr~=>tznb^]r >ŃuۊGjGO͜@q(ݐGvK*_ݥt" -[q8#Py+; NI +J>1iRPEঐ(`wpw֬85Rd" %lwBerZ@Yxi2Y_0,3jCeV6wCӡF:2[/B)fz@Xm{:Łkq(#9SF|ot{w]7_uJkCוŃ] 7{vk23i*YlC.}ݝbF%G4AEBg}6|=LUMrH{NQ~2Յ6G]2[Apʪ)j0q`&'jEe$\4uz͒^z:Sb۲-￴= mpҙwڦ{ĕ@yU:,[0_&m=͓ K $'93cv 17i8 ӊ]{*8Om CL{8^Ď0A;Hn9 9nt֏RTۙۜۧm9ZϠ"UĔB ; 3{p`Ჯ.]:X\֤6s`+   Gʱ .véiK2a V ͷ$x0Fs'^eb37?4YNxN6aP+OG<:?*G\XE\laUݼY^|[/аo;8 ӒϾG /y?!j=`ݬ3'JqD|N y ȇQ}}B@-ߦNeJ% GZtg ydXbܢi2<x*GFB[]N-W|GPu!H%bڃdۏT\ʽO9uL1S mX{t_,uD9idhO*#;I>|y.(M6/XɥNFlr'1>dx{8=|A}*8=6Vҫ 3ׂ/_չ%/9_ӈ`QgL٥|C$[ް!gl+pMh;{EՊweD|D_ Fǹk.aj"߯a>cƷ%5ox@p]&$yEO/2YWCJ1pogQ#%h&$4`Q3 z7i&5멿^I~V`țn_VЇFA_:}R__v9Ds3C^2N U& hXv`wlk)4YG i(kAk[ڲ6/d%fXL|W.ksq^#AX2>Ǭ:W.`Ol5yEzsa^F%PpKjԸot矷/c 5Du|E"܈hUFB2dq>/+=64)x;0rH|H 0X l&1X-u5蔼- #VWAC2: i<'jF0D%%z9(Q FXD847L'q@$9w&W-d\(,U|# V2:gUp]%:Fs+H8l%o(rXcA7n 6b?}/$"$ A&颒'YyZ"K8y'Řɧ)+ ,:`v T>$VXM=qg'X:%]2]d+ DY1X҃{6x=UAwAFKjA.6:aR1d :+;{y{y`Ih"֮.Xb {`¥bYG ͐ʘGos`=<(lq t"dxAbm!e<6"/:i*%mC,Q8LQjLaRl @^wCl< Qrbnq,>޹(U xOGe^-y~MMfq+wQ'h{^ cE'޻_Xdc:A N)On7VRty4m+4؛tgLi4ƻJpы(S9-79q^LOhG?Oc yUŒX$6#!x3 Z|.xU AgD2OŎ= Od946o=Z ¼t "L%# Ļ)TfcC:*)_'#XP}Q{PG$kWT;[}u";\NZ֎;H۷uj*8eCIQ$_d(]^?eśa$P#QɏJAW7yڋaǡ eYdş*\arT2+֝sMkԺ8参,FQ9QvB.$Iᩮ++kv/d(JbAY>6b&7Gdq F38#+ͅoF=rD4vSJ ta j(>9f=6n>"fwȐgh=e`י ='[fѩJHOf1"4l0#\QJ3ew41KQUHZQ I# mxMP&1Bw5QQ`J]2!Fbh*wݡr:^{fM3N2ǝPԗs/=hb# 4JjhM%# )`M/%#3AJU򀍻뀟E w*U4F A%qҖMɤ'vч3"ξFW{%,B"zRmzֿ( ~{9 NyQO:`>騧r@_k+}yTAr?L@7PxH/6Cù#~b,f O~YώzE] 0kghdQ =\c͏w#op1 sҀ9v';lVndsq¹{o*I&npb`~Xn᧎1공A*A;8 d(sf]UZ׃G[%{rNYʋj0FcJBڵ bA.QGI>~h]\W= ejWO%H$~^-ZUǏ`o%劉ON_,_V}D%Cpj¼-=1!bOm?m(v_3EƉՠyj`4\o|\V s_{[eszU}&9y1Dt1!Ij?7Sw&\*%j\%dƽ6pn@#ew4;_ UMmW#a{jw:Q$[} Kjd" wmWY(OJ) y~9eH!~,>St uS̍0Pvݹzk QJ$[_SjBl<؉X iryAS8s'=bwByZA=- mȩRrQP=ox@iX ʙDzs}l9Ac|`.{fjxP,QӲǢ+!x\&ٕpbBuǕ1S;̵p=;2mrkT4K]}φ5*|*Wѯ30 S:lfNc* =z@!3V`q ͆]ZbD.?S3ZXov644nSj?6:?*2Gd$Š'$ M$NݹêfcJ.i JtVno6rc2]Sb?8PV v^ ھ!7۶/U2(O &e~mA 5]q%}`eYRJ$xG ve] n.&ΪrhDi,#ZKRg5q@jÝfugϚUce ShtqCW^&iyrR^!<9(PKCwjm9\g XKBGkzRt_iÁl"E0gl$*\J *ynb6kj,X9DA8ʖC-AL fd*{J%< fIbSk+b&T6F/k"ߒ@k' #"N}4H1va !$IV 1YtO2ۚ:4"MZXY8F2w}0F;IEhE͜?xerqkCXڤ!$K~Mّ[\GӚ(K˸\]_exL*Pk okTw'GZc@~aPoL8ـ{pUy x1(]$G,Gt4nԓAygN4WA>1J5cƗ7K!]^dz=N᫏Rik6 ^XL˼BwҐ=+(_vqV1zx3٤Kj iB`;^Hv~YԄ|lM-KY3H 5G>j9#ᨠnw.~{l:k`eEW=tu/;fiUfJn a&fsgDd Ycqqy8 xġs>u5끴 @݈6=Ndx"{ZQ`vjVGuGѻɭpMEoI2'`LhAnd|< "9PcpzU{gtU{[Z^$[oq^ ˹HRbr+c!L]?\eސ&[ߠ;IfeMFd.-۱ߙƵZ&w<恱d鰴=&_m=A啛ޠ/}?\s /4·FC.Ws#'r.MEΟ~` 6j~ĺI !yOKXzNa~gQ&Dgu&It*vB ,SgV-Ρ+M|G˴w.0 ֋fNW4+[Q}y󵡝r7t rg,s|5k¨]Mˌ?kӞDx=>.̆>oۮ1^ߌbUT|k6:uyFW^{JD jaO4h\eU$10GR&4Hw֗U3Kxջ"̬c;] 7`ĺ$E^+<4`% %)W?eKoFhGsx7d-osusגCyy[ %F1`ϵ1 GUESA&N¿*6ϻZ]Ge21'pE!BRG^DRV=TPT n-@ˤ#?nɟ_֨4uu`S٤s߷9@pntZ0Y2z]]F7/ύjw({MEIZ+\*@Og1i@}îD `NFsz^mmw5(L M`J 1ikI 篩j)j^*pz5$uߍUT4 _ F\bs-ZϬ 6.)sl-9:>wʧ`B!LXP 7M)|Ǩzx RۉjqjSyMR79)8[߻"!ֱHN)^oT}o\dkUUT_ge"'3j-M>+՞;˵gH6(n PrPf6Mn儫1]%"Ь24HefvUDnM-c߿kcE*=;Ա~o?޽)N3y/R,j˗lu<`Ŭ 'G@|J8 πBw NKݐAyv%YYAJ5MC_`<8Tu^хUtً"mV7хZtݴȨ_|&&n-Jog3'›Wcˎ; )Sk16?E-H??&SʨFKhSL BnR^65+ᔛQJ`n}Q[+ɺT`ᔞͧ\ZȒՄwS"SĠHzU`UIiEWGezxY7ɜQFKX1cE57E}|& hOWg UEDqؿ>sH=lk l$ʓRfq<w iA@wM;tJ;f_4^0`%4kuߋnnfȏBݺ?6`*}&275wЩKLkN3蕀Θ {p'1p4seA9Trj^m:eWINJ*SM^ʤc4=3,[%lB=|"~xs6rNa.u/L1YnM1dA5oqTKp20x(UT>=YY& 7d W| ؏{\TYƄ4au zgBAm̒Q/Fqeu8HDj+m.A3}Cvy8 \k 2eО7pM0(n'A(P}$kϧBf;5Bܡށ%o[jb؎^1_&;d1#qZ][ljYsT{i h"ثVmco?:4A\{4 NpBkPp O?@:܏%BJe|#*Umf0b}_ T3ƥmn^ +~EOޙfg: Uujma% \cqNPsgyiis%hbܳM]f!q$0"Uu.31("eɈH!!Dy*p.m,$bX\^* s52}>&"vEմIݸ2[DUs:;lK3z|\~EV>c}?E ?򰓘):'zYzԛƕFq87Ez~Ƙͣn}D$ bl+7' UMD&sx99vrpB>*}vGrCiӑ #e5ۏ葸^Xv"]>L7tqJPZ-y/G=~Z;LE1ȗN}5&zC܅.cta#! )#9elR*]g*|'V}>i% G% Ȓp *E\`pC/| d[M Έ샫~gKj~(}=$AEv i1R!xUů0h/16A0 +1EO2)S_RG^m'Br*\pR4/\*ZfE2,I 餟(ə 7q>LX:!/M-̺ "O5] 9t kޡFV,~?-Djxrp ΄u\`xDCPHE3^ن4;Pk 5i@(:v)cFmTFEAB`]2yIjkάCSesC%KeO1JBε&? sT$4CbSZn8y{FG{)B;*孕1wr.Bзxa%*/d{/.=Rq);,sYMZ{]d]|jZ/j!#koPv$E/ 8olC )M4=HDkri*NcH1|/ao\hTON ͓#Ŕe:"6kr^Ĺ_8Wpl5feVcqREyTd+l":H:ᅬD x0mȯdp& 93%>'Q.vgt:~De4$šmHg ~:bLբs_ݿE@`Ee k_mt_&Z稰[ r0䜦Sj¥*vr^4l+vV@uV FpC/Y|.|j| \J%h32];HmBxo9`h_`c#LeA!:WIŁa8K-TSM$&*@E6Ң"6vϭ*~ؼN [!S4WJ1!a&Pa,CTS 2>sn.9AAsq,׶0u sטJkhzE! }ϒGSCaj,Iʈkni%N RxO[")؆φGX<3AYbd]ϙ G$FŰt-s.u0 jXd+]^OloW&PHGqI}zJ;ͳ*v`3K }Ȥ3TRc^{"#{ th_uQPVPUV܈.I{y"+|rLo7..0syY{5R1Wѕxˏ8VJWUǑ`oVOa t< ۑ#gn'G' ~hDַh=]lQWyu?).aRԖrF 6nԠkh?(ڦ"ʵU⒬́=U8x5Bl? o9ݝxN՝9'Nԅj?RKkrS~ff ƪZ@`t7C/'.kTQWj\ 5 kKcqm]܃ iSx ZBi'9Vt@+е{a1Dn pb~31>%u%/t]lKTlke(:)ƵM}f2I@CmQ4^iTړ:s2/ASpx oZ1DLE4ndm+-&ӠJ=$gtOa0oXps j |,,(/,IEK Ȏ.qb$ŶŘwn6 H/I-V #K:BZ|^6X?:x֢l%Ge֭'a7 akV.齦;qѽE` s19n$( R^p~ 4e l4Dzl:Ki} ,nReA}ũڭ{Dne<GH>JXc].r+S/jB!AHkDgŒYUqcPşK mox0-Vg+vQ*cWlFJrR/jPE@#ܣ)Ze1"Mr( <P!v<5ە;PqCUq[I |^4X~" ,*x + D|u5b$έ{h&P)0k&1W[`ApIg^&@Χd{C{H1@;Zq'嘼 my4YsՄ '!;u}WObM~[9Sk%S6QZOxcB6j -9NĨηUV(i: K3N )1(g[KW=(F/ gyO `k/NyPQ]V0 -!tgpBK&i,OI5B=N3fb"N+$ )1.ܗb"Y1~SX._*,1HC3|Sa&zɿ].1lDۚu8Vo g1Qysk4Q|3!?cIu=ǸkKs*b Gn$&7(!tIsw^bv$D=V6Z)xhcZu-t`ȺaV]e-' oDef ddv1"dB:p|)2VFjlRwLܕ[ t̵oM^ޘrN@(}n0vK>";:C8(40(e/;z HA]K%7LA1aI,L(iaVD8+J8UT$gk3o~wX#D T48v;xtTWn9\B]ꮢ8١z *Yw^ g 9U)c)8d>TN2&"Ü]qd^H{^Zۻsw$B/,^1ߩmGxq% /(Dvs)Ć)׵@ k%D~\o˭H<4:CGQ)W%?!߉ }6H_1̝% _)6Ul_ P~A (Zvs>|'Qܑn&ڙD[fܻ8)(O?W(i|?eP0(.[o=jlYKӍo&F]O;Dͭ\"ke_+j630A|Ȧ 0KHώ)1$J*9Qg{V!l(,~V &RD<_I2Z&2Ō˼k`>! ff|&ϊwuxW`fݨaľoC7֕L%*SlIÎ?ã74ܦYB/LW&8;S ϟYt,>w{[xmۚ/8iE.d/6W2 :V:a(WV;ShMVT&t%I l JxHk4[$#rwG|v>[pςyjgYڅצG^:lpImô3yKXp$43Q*h.>C=F$=E@R~e,3C7Jg )vgIR]BVgvc3cwQ=G-A3y>p}VȳsU5P(kuH~,"S@򬯽(J/*;+dyo]%(qd){mE^TeXDe|QvMx'A᧨_Ճghe;& +ㅂr8&9aTSq60]BԳd *V6I ^VP9j ϯt!=S Y- #@m VDFZJܩǵ.mj9b{Ө ' ̩]KPQͶQD-!|3?3wq6T=Rc3j|!˘Gx+_j4z)tB|"S5bpdN:۔ǮUֈ;%Sf@>~)^!4G{o2- RpJB9B"ǚڥ{.4vLbY8PRH&qJHݖZt5LEI31m䀩`RF?8hN B"ț*Zt>j>u: VMt8Zgyê}=OX(h;K:ϭ[3O`wI XdmfRV_ac80P̫v~*Rbe .ݴDZ5F&t+ON\]v'G."}0t] gЬ#!kD".Ǣ X>!˸ MWw%9%_Ӳ)o%Iu:̺%a-xTd|9EqF݁KkgQ|‰S_pwn:UVy9\=P Cz _|KEFÆH XhpwA“QTiVwVZEWyؤ!O?'o١XoG!`\8 Pr=r?HIjAyu֑6˞L<3lsWԔcR<5u:~WnDQZ1_sC8NjNCW@PU*m3ych3Y;Qxfо9iB\.F)9e#ӫm`wwRa)Cqa|mąm. ̷9YJo~:HDQ _g*[R}~팊"@\'W6Af-ALJ0E\aR%g.ߴYRstll x;/zaVXޢ/O"]B~YxWLvUhT#`QY]5G&~=;b߱Ө/vi E;ך}Lr!lL"s38izx;lg2-(B Q0a˩]椀WW5%R^iO'3h!ɖƐZ2aH`7$WbrnSUۨ3PȰ|8gHT֗sQu/:`i /)ŻEaoݚg2 L?lB,4rq !Mp5̛I^o1$3e/V ( |\5йȷ$Eye*Ҝ*T:v9py{oGmcҸ(FhW8,l|R:M_TC^2eIy=+*}UԜvL'r B9;/ Zn7Xe0 Q 0>XZ =2'mҺ@saְ`7MR- 'NQޔu1vS/üVRN1DMŧ/C&Ods)xKR6|R ͤ[ Ncx݆Sۜ+>tt*EWANdX$:\fOl Jg-6ol,&ŠtXQnP{FӋd ibw طtSVg[M($P0j|()Ĭ ۙǂ:)ʽ<ۊ <ߨ]ϫ _Db{qUf]örKdq?&@ hgF tC\ㆴF/4>$l@N[MT*VGvy Mr\Vz5x$߀y'v# ̕*kXԂ@y ̓:-KlzG])x~zD1 i>m uЖ 3ޟekt~gQ>~Yg~*dW yđD@X?z(C` n^$MBt<ޅ>7u ̓#˵RaGm8BJvZOfI#/ޅ8D)|:IN(#P,˶`g z2团?yT*i ,0%]ǥiWj]0eTH]1Py*!'/m %ǐ`ن#_Ą nܽkIC3k 62*kMf/x>km$۔ɟ[KjL!'჊,ݦ )b$#-k[WrJ 3QSnKUٛəH:UNxZia8-P (͸0;8B)ӀR2XVI4^*XG+cHֆh6 2 6J[ߖ1VUU<{X5Bm`"˶Ӑݻ!ؑV| ҿ>+*z+^YޜcUj\v+p-;O0|J?R/],Zk^v*ؽlN+fEn_98S +ȲP4bX>L@7C!L]"YK{BR-ȵi=&in޼Q Z|*dQȒg*Յ$J>Ƽn}Z_>+ !\^Ծ4-8?3sZmf)Q̽nZw&rs;ބ 7U+#Kހ@tK*[ VB!–&'e#&GVd%c DoƯ !ot_jq2)I3*W'*`Ē(g|~U0*<'Ç^^ʹxxt%'ZC+SyB*FϵJ*:DaLDV|ˮ&G1ul:Ӯʎݵ̖*DqLɺ]L7 0\% zqdPC)xOۭ TZZƮ{2yT&v [>b8 OԕB ܼQ>L+$mơسѷb|AnԘ9pw/2ըE?iw.e|Jyd`Qwg7 tɍ)g)2iN󍸆&V|09=퓨a_K:joQKQ,䡂{" -w9<޳rDKO%HsqoY9XՎ@> eΝ|ܯqf V"[B ZѨ7>-}Qx5LSs=i.kũޫ= JEUp弈~dVύ&^ hHx0GJg>9\YuҩE.D6^ΛbN2VʐT旌{ kaJq-K/t`HNR;zDb8`d-Yr{AأŹbݩD狿^2qDuKwi׈C< oy;yifc*+}[B :29WP+i{tph!d|}2w5oV|:̌&ܟƽc*e"LOhorqZMspٚ"o@!en|%r}Wal+JE ՕՉ7cJiX>/q ʧ`loed3T8xI˵Vճ:98RO.2*K'1CQ,1%s1!v`#_4WBz66׀Z3gnDϺGAL%DP @HfvKE)@sG!4pXϡ5rU$e_Ӝt5Xumi9"|zKU>D N j xOT뵙Ӫүs'xUpcom,Pc۴_c-{~sqdw@)>EEx%0[I(-׻7Lc _sҍXpn7F[jq5N1_R.-8t ?ۖh'%@}' Gk]Pf030;jLRZ3-3d&m1M^'芹r+xj-3NgYB*7N BҥiVq췞5K7i>u&:+P7sEoI0޲Ͻ׋eB_[ wpbm暲He;A<& 3P0SZp;$Xtw#0Ec! n' >+ $h}ܼD6"c两,r=V"L AhrGbBùC>w"LS[Zz~-GKVmL(|CƪRG*2Md18k'^i51jP`o1 I9[d@hK1W4kI#4 dX> GPxTiDEnל:n^7Kv5|U`(k..g!WD8WvзlF̈/R+i]{V:yGքUYcѾ]c8}Bkevr멷>(x2DxX j7A;Qv}` * "\xE-Qk;əɘI˟Iu~q:p}@m5t3edIBHAu_x#z'MEҔ ;R: ly>oC/3lec?h, x)yxb=2SL8!ԚvοKG\wYf7hIᶅW=nlvX^}]y$W+e`X 9|*c ] ̷𿾿nvg7Vzu\_К&K-8dUQƗFγuC$M$i!wN[(kY,]ఌ 1:ugSΨvɋpOB)ktim˘/Wv|mҜ.,)eUSkVN1LGҬ9NJ$uNPH fҶ4.c+ֱ E*-:ZZKw^ʻ U_YgĵQՆFRkL 4;ULA0q^;-|h* 5n<µQM:\v&PUC8)j9\qD_(0ip4ϾxCuM^Uz"GxLxhȯ=Oȼ+췑gsH /TF'1eiQ-V:`8-gCqusJ4j."Nҟ9 %W<k6>M9IZTCEQK=lt?%a&b}vkaqnvNCp=n .|BJ|ogrBT[9k&+jO&&힙r|>c z%.F"\BFTA"cS"Z8zd#v;Xټco#1㹩o lw:QU!I`e~|F# ,^X=vO̦4sS*˺J-Jl7ī5x?qƃfoA`7!1Pٞl_sv/bA ׊ctҤލe| W;V@):M!(a}SE0&"w)Sю;:;-:?+x*c|(goe)@tɕ8To;H[.Ę@%riE+yp?= G|N٘BM9\)GD戕V%ʘglj 1~Ŏ.㱅 Ŀ'E;Ma-8q+円)ghvmBom>yo[\=(DFlk;ᆸX s0+(,c .LCQ-ʩN~t;$GTi8~L8Gj;>{)qpKn/g,ؽam^zakGBO>Y |5TB#)z+@q!1 5),ul>䝜%cԓdyRM!_P.'vOiCgbFwXti{vkrC|k,B3/n%/]=~8DAB7HcZݲk%NZP~B,'Ypߎ,Yw]֬e( 3YRW5u*K"w*pXP1lĪhAayzw7y}8TP l1 dvɆo&3!7-oaѰGe8X:EVV`[O-6rgy}E~|eA&S9lya<ׯU][U^]Mr ŐjƦ(q6N|K4:ɉe50m?!kA"1I >f{`W;lU٪FdCql\`4Pa%FjE{d>Pq-Fw=Uu$&a\|8ArHƒ` P]%Q\ }Qrv'B{S7`gަ=~qft!ThI_?"8[~߈YyomjbPf%_LTzЀ,d a(a+33oE74*3 n23A$e~AEwKٚALvU6}$:rjEx dJfx@~#$2lP„V^>x6M@3aZӡȎhcL8l4+Ƙ&H A iWyz0^MO'@dә{AmM ׁd'k/cX>os2yXp?m}@4D.+!^ΐQ{oSrFL{j*ZN_+Uү ]a3&:+m]pB }U HY מ]蓵.b5Td-dw u+Z{.=mD#:TD #4 ! XN۾MI ({~hv9nlk~*mwO? 4eEe!k-1vS6KCPв˔|ZzBp0P=_uQ!'+Q),Z$A98.ڜNIS+;<>}9hd9K&Ei90ӡ85 Χvp=}vPH"YGК]=kHG/f~bS" Qbdka*T /hw K?K>XyHR-%?Wi:b*]٤v+q7ׄG]!zSƞR[Y3JVBGfbg =i>Q=]ο㘡Mv$'Փ?4{Ifl7gKԴAB~)c&vRVld9T.-n~ ʰ7!;2"tEʎ/@@ Ӱq}P*GU}ƧrF VL&e:^cə>D2T.,crG1*?}]ܰԬ!'JEd5Vׄm,:&?w"r{tt\c']bJm;k"gDFeP͉e8Ei񓟲A0tV1DȟK(i~:5PQ47 2[2>6sQ%;^t]hװf+ a*[A@mq.)A/X%,m%۔6Y{5~tH=\6yɁ-5ݰȀ)W>H:s`K8}ע=&aѩo"TQ GG3) QHlah#},1,Ç[`Il*;aCb@{knpt2E-!"\svQd'vKh%j'lc^>sSSkk+bxR?Go90: :;6q.bV3\ȋi׳,X2Sua֦.hbsP=[TCG[ AW1449ӄXm%$q=D*1SdihknuZ|`ϼ4GL:^#200SeFyu=U~4 &(ɲ\tµQD GݎFAAfINmdr.ߌE֦0^ip679fsS!WO;9s8~AT(ƉoQUc*F2v4K@ ?Q[#>_c|Qs(Qi 22׈c%c[8b}XE4Հ}0K]1_ʣÆ]sM38Ƶd`Vw[ wY{9<}:ZgT{~hji(}FNzHe3]Jӂ;T'N}Y"f*vD(ecc1G`E]$>|ŠI0w3 SP'y L|r4ZFCvm'K..P]^֎K@UMO1ÆY>M 6@ FAM.b*&@ adr״SV*cH0O:Y1Z3DsG`K+>E^Mrb~Oħ꙰~PNPҸ<SNc5<{#5]13tEn,(8lE)f4c'cpc9 x"ƒVxmgB?8o tb]Ǔ/>•Ų|S~QߣhectW[kෞU壽t+*T u*"&:QPv#b:ڔD̤L}|37Ў9)OOrI\ba^  3Mbz8.gA23@ %đa}VQ4z#^Y'qMnVžYY zHX&&%CICf//c}I$ %WxK<:4/ : )ĄfoN}%QPtLN7>jGb=2IЯ*! >//Vk_nlHQl ]my Jf7g3ٿőވIѹtaձή yR&Δkt%~O;FZY߳| у?,\bvߠb+t0n/%umyrNr6{ݫ]иYJD ,7k|&MT:m49T( 8bͯ'|ҷ EwءL'r4W)M+E(+4-WTs 4)TPj Vjd:~2RmSr⹿8RԒ5$I(']q]R*q#.^`aUhϡEDK3T3FXO!^xju>x/ ܺ' p_[ʮ9L#mEc_m\po\m/#z#A[DCġ|>*)\5(m2pߛ (gR%g?@aJ0ìXt@.dc{Ķ${ˇyY>p[v׫iEA %1l89e+Vi&5HdfW{XjQx=y<5Avr zhu>7fiGE "lkE 3Gcgs RL6#A^%Y\AYTD#`EXt K..&`s9+Y!։ } N#N[3]u0y[WZ2â|ωPu6mEh):(W:U,`Y\Y6&0Szv$g !~ !45t˘=/nu.$L8 튕Q)fntbH#Yw"hbl줰:Y#nW̟-Yl`ws.w}#LY=)WĎ(732a.T-hw>ڬEli}9|كߜah nB0qw a,JP^|.: ..R:J؜RiYSLR$>GzD|JL&v`v\Τ?3GXzKO,ncC" 㰊;:׽0 >NG=B_GGkt0"<;йq]͌ jpg&42#=̗͔R~ΝepZr o/:Ɏ(}|Re$?zCJ!`z/ID+Ã6'*㈗f%<3Stf3[b0^Y4T6eKÐ-@x;*4yO iMc`ҏߒQLVT!kzL )/nY@IHE<1aƋunT+_E12o^7QHk@?_ $MX+j| iO܋>¨&Ĥ̊2!^"g޿yTx91WAᆢ uI6(NDkω'$!8E(_ѧJȌC}-#d"fPH<%eyLkaӰMƳ l䅔F6gՉׁ5eiO"A.:_9׎3?A,Sk,~0yoSݛ5X(cS"lkC(xJ?Yz8SX=+-zd=MeWSn=Lkր][8=|nw4p CϪyꀑ,H{:OQ^~o CGޒM ~9p)'L#zn/ iEpIzu@>%I-6.,e>Jԧ(K}0ld2Ds`|_XFњ \Z$ީbf ɋᓧTWÂj>|EWu$0EFSi%Q(Qg~ 礌ty€'+ L,USwu]̕f]Gey04sՍ/:06 2~g. ܗՓls?1gĺ&e u̼ڲ}7eD` >z&#>!rCτCFϪx&cE#6Y'=#&0(Vq#OMHsLa[kq/Z 3&'LX q.{fc$Sމr`Ku?Pez ElMͫOGEҙVuۥ hWxy?MLM 00 [h* ʭGiu˱Y[x5e 8r؂Zo4M㙆'1t¦֏OZ(SתWvV2eoVc\P#s ,/oŃ: vȉ}@C 3&>VؙŘ3lq2V>{sb?nҸktu@C2[RUB vMi رɥm&p4BO %-%epU +`>3ei8nN91ۑbŇv[8a0Ȫ:1앥R 1:vYD΀FTA"%]tfZowV:ޥ~-R^ "Ђ옟~C_LلQpG\lJIXǐ0reF@ DXQ؉KMHi ዌb^s dRdބAo} 4c;?hETH$*Tz$Wdcth(%qoqo^xJV%r J-;'[L3 / 3w>kpl᧩kحbYh|Nnݘ*I/c})hH2B͓tv`qș_iܟu{hZ@s5j*gF'%@;aL}iyܿWåp;g"Lz:5te-`_&HϼJ>K>7gJ[?,Kt5I{]rNdBo񮮪 fF.}hk)lnT=ty"DS;Gb`n1{5Xw+B4'C6vډ4Až 1{"Ǐ!}~I889E@쀏Hio}MTuSZn41+jÄq;B3*X$ê0Ů|d'3`J4B rI%+W`,VA6~I4RE林@ lbl9#;.4`/ѧCf~5h=0$:ùLR 1&QQpQ.͏7_򯱔 c2dfyYePlLa*:XM؃8N 8$hoڧ/Jڮg+?C~\} 5Y)?DfqlK經"OJeK0d׻ E 8֝^s0Vȵ|Ub_gѡ )=~;? ll>1OR$Eѯ+ E&Ohf^H~-Jz> .`}rtfI|},p=;m%K+-וTsY7D4uołj/{M#'mcn0g0LGq(]Ub)t΁+p5Nm;&LwTHHZ7=h,zQ齔]!9u?haq˃p썏Ҥ\,#tsS;ntQEV*zIb^7P_zsGEal}.=L~rG"(,يb7Է'?}C^-|˥I')@lȽ)C¿TΩBЄ1z8?/I 'Ѓ 4J>d:˶=Z3ChGj؅D* wZVliN]&"짵~xVU{l?;$o~V shx} i@3..PG3W)x,r; H&̜RTI;@%s'`Sl؟ziipUo=UM= Nd'=YmcTh0m{TkR$͕'C< 9@xK)|_}"X.N.rnCZt`JTN^)_2Yfo1vc752J*ZTi81dǮ|qOx~6="KlڤoQ^o\7%ӈ?;ط3+1 8&!t@|m̧gXEhf+XxD. j;nz䝧fTRQK$&T1 V gp繪s"V2.hm$t83&"u]Xg%6Sw_U"Z?\s8m"]G.q-jYUYӳ}<7{|~|Cu#nd\R.eXԫMw/2"pXo37Kݛ#N:-[=ZMAk,ꐰ3mwzdL*sلc6X{vF8?0VGMYN!RB'2)Ma`]FcI@eŝ~aKCaA*Z_2I4}Գē 7 yA.^eaB,H-XgBF(`!gt=a{yڒk,}8p6?~zЋ(.~WryϠΌ6R;J뻖a3V-n鶋|̓RYξ-Ì&E*Qh7;R.&7;ڐSb3\lVG3.ywk/vJ&G1@u]`/;aHА+{O wr` Z:h}bm%#'.A{xgt%Sy D[0&.W[ZVTHbA$yLPKհϤH݈vvOa$AV/Sjy&M?Mx+ڛk4Eo?,= / %hTPbM/\ހ}H(oa]`o=ͩ}D'{`*@QxXM&:4c uI*?ل3Gf').y [Ξ=rHڀvȣƤ#O8 3ׅhVbWZ|.X!.$8?D@ZJH1u׬"ʽ[QV'DT~3m<;#UX`ibaFW_Bz'Q5z3K~}N+8B3GL!o0 /қXl:~AAҹde4c`y:Z,#~8ghof|8n+<k-iuW^< Ws{urIVS;ަrQ?[FuP$R+?1Ǔ9h(:ޯ&\/rzƿO r0=sn іT>M' QeRb*kZSϋx . i96Wm=ńB@yusՊ: \n G,xv5gco=w;;Mk J\(1PF^(z%<8V嘻z%ɪ _B?l. C[ܸ L_ ?klJ_b:R[#yZM8o*۩dE9j }5>madGj%Q,lxfAp|Jէh +kݻºkzJ?DI.8#!Hͺ\BW.g>EʏmtOL}2u@(ʉO\ѻpxU9M쒵v$f^n[r?W0]A rm'N#Ub%#hYb&Ǡ{1 ߶ 璵:=QKP~:W& +v&0$krBR=@Vu6)uצ\k%bnaI+kZpg=%x0hoVjnG;PfXvr=R[΅+vQ!L/PEKŤ2Z eH,漂@N|#a]UhqLq!=}"Endƶ*C@(svz]זMV OpE ^~z%y< %e4ӃX:k}_,ܚt]ik猡+ GK6~UM|289;ZXNꪟF訬nٽMF|w;0qM$opysf=_nl!𮦏dLUϊW(`Y BY2f PX9Z"b䰹X6YIɸ2~'+"P];vPKo)sf3:yN\GotcTr0W'b赫9œ(P!Y`L"}yVTh۞"HOp&;EeFf#zu3GnUs %%KJ>\?ЅDg/6un ZSrЂ xO5n=#w," 4 Sn| ԃ,5=:jm/KHŸzBTO HՊFs^x\C dV~"NfC.W*s=Uzj9ٿ&ůF=iKYX#y5:"!#F[1r80VE nsع_e UޫJΘ1ͭd#QM&#HZ TTcVqQsw;CE3mCi6m˥T< @TH&9H0t_z{/C B;9?p] ԛqꭟYi4q6]B ޾[pD<@.imd*GʂўUo2ENLDA) BMp0bYs$T} upM"ԇӸ?aޏזkxG{z@+]& coqebR/0C6'\uEnm['ZN ֺ䜌A[LE|[\}ӯ.v6Xvns-1[5g͜6єnZ0qApUӴVFt`s҉GDYw/H3Ln1$Myu 0zڪ} n8vZ>!=s&:hG~F:kLMh"p$7Bah b/H~^Jb#~'GP, vPw䡰%X-lI_OȆk=EQ;h/7g]A/:,?%{Dl.q50 kh5'CqBi56  0 )|`*UTZa٫4#ՀLk&S.C˖Csٜg1ߡa޹p-w;P,?[O4J[ jN9 (xQ2,֪䷛̃$@fEa,l[Gxc= 0A-)4tĮ'W83"bnL%ζL!O v?+9d Z+5 P=f89)zDsZw< ·ZrwjpIiض#s"D fdJx0yS6>cvm?[NrKU^#y{ytb9Ufa['?ҷ*K<ڑs[3:82Rc%6a0?ڊ",OC ۽l|'᷊ɩMvbn.BV:{J= F?+kh34Q6'^v*%?vVE ّYTvY NnӛzAh }#PBɝtSbiM_^+w,oƺ6@36ϫa Ցy%E] _D٧' {lOF[ܲU U:tF2G(#U,`u_Fw`alWϓ&O<$< iPtIY:6XEКZdRRv&HtIyxF^o8X*E'<_ ^輧8A}A/[Ӏ";LS 8?C.8rD WتYx F',l":2~F̏wNb P 3;[٢IYoM.tV/FdZ)?=^mD,2 &;3C\t:Jՠ}Xp -B;g'#?4Ud."`?]yns*%V暴Q7X)aE$T o,9ēminQ q=Jjwĥbw˜ hN .f.#fXP]߼)(X,N#a*϶=!X3]'c OJ3JHOp P@kפsp.Nl[ (fu^JRb r.F0H/Sr$]Z?q/Ca oQoCPeX+Cy>:1_8Lp_pKi =|-/pcR/)rèb|ŏ [\ҪSYOQ7â ,163WD> LFc=N˻fԬZ,ةnp=_Υ<5+4orc=99aӂhCUʚ޸d~4TKgx\=ޒ0j7/$z+Ԅl#ֳμkW/)A 裀4*ؿ@l>Az3_{Z?5y%Rx(eswPap }$ ㈃,/n%* #~">yI|V?HdH_IM:np&`__eQ9t40Z&z3DkS]&TJp E@l bT#ɸx8ZfJUr}91oBrVSoFԖf]VL%WϪ/`]xSs  7T8Cj KY+_{߂/7 FowmoE3"7)BeNPStJ8,!%&jq_}+ObЄkRB9!\evLa"/T0& 4>o:2͊sڌ2 1uxmX$sl{D,K‰QGAZ觅"ËZFp|Nm"oisR8:bsL Oevǵ F2i3T;[0_89bwD˦5[i„l}aߒ>FK]1@ʎ`v3u;یtJE `T(hb ǾI<ՌXA9#wff߽IV 4k3ef$j xO#4V mB^Bbx|73eI_Y!Il+HCsZj0ʃfG1$GKVj b &gHQ6#P )<٧Ml«s#L}qMaMm?>6^%ܦ7L%)ܒі_]A@6yGKPLIQPS4erۊC%iلw-YN{TVdDE"߸!-P7GM~#HARY+'}GGWC'G;f%/*Y2n~%|y2޻-7mRkHA$1~T"ip>\ǻx""#)N WSP 01Ϛ/p7jk4&\k`-nUcYzJ.VҞk?Bc{s6Ru% j%/gdj5TSV, .Jd,BVVU3k α\{$g&ͮsW(%ى@8^-;F2ToׄZP%ھLPc !ދ `;v;r v2G1Njeqߚ/}/-}C[Q]at/\s-B[qzy?%n-$fDA&&BWfig& -!aDu+&ɊU)@=ߑ6Ӓ^,ԼSOY7wm$MX醷!n;-8dd Ɛ?d%WoKD'زW.I:<;^+W2if?ud$3uϷM #Y* 3ķ!_jNZҿ >n3XuУjwJ o>eBi?OK2H|w}dzIO6 Ve1o.Ĺ7dha#FiwzLP j.d SKޝ۝?XU6!}PuT[6;l.ƆajmkζP*Aپ7h\ qEhj\2!Jmwbtj>.|^SSG?83^ I b#E'&+r Bͣ:ʼn1rFXbՑ9µ AEy""'+ZJ׮VY>ҧ(! Si"dNeQde(d{"?rlS`8 CJ?4lQ6rW|__wJX"Ho14=L||֓BsQsY:hzpb')ކV2;$I#4/~ޗy!*g'GnBW8n$2^M]ߜyo2`G On+ȅ1UST f*%M|5# 6  0<|hr j$0b`Iޯm $y} f=R[r^WTG BtbD?\FhFur<hR:m!i X'nSDn^XCiV5lHЄտϐl3cO^^u3"Ѥ^t&mˣdC'f g಴uy [o4rґ*Lj1Juk`rGɴ` p},\z 0so0#"ƅ+K/ }r{[vG=N`f/,znޤb(d\ F0]HE l~bz1 LnMХѷeN=N%j!%R_^9ޡW9̡`H QRQ) 施j7$PaY/UD F>cW>3mqCvҮr#;snx@p7 #'c1,"wxdV(N?,eg6 h<#|5D5PxހujUXh(RɠsGdz<3¹BeR9V@}_H) ]Dtαd ?X3ST^4UTyuCesi翣vP}DBfs>@椂*R-ǰp4<5ŚIG\@?Y~TxU0#/Ѩjp-_AY@Hc6WںLt82ՄBg wbIu,ODI]*fav.7`X+%c4zS%6*.ifov݄=!i!5#hK0R"L6vxvLlpYq~:Z0Ja3cV8TO8 0XK@LhW)VD'tjS <^}AGcEpox?@g a,3I#I^O^VKV lq:ernjٽ3Kuf &Y 8 ^VMf[lkVVP^, iCd%1 ?Np7-^?9{ߢF2ox:t]@t"ڠIP2 X??#Mdx: ٟ%B& ݮ[<٣ J+@N^֠0f`x2RtS"8Ulb8ie fzph+;LKFȗjF)e67X`mpz>K;m; L 5W%}<18-+|>x ӑ\j9Sqq0U9K$S(%=i `!Mag䢛X.y`=Zč91.U0 &ք'yLɋՅ=ǒYz! #K d iZ@- Yx,cig^\PߗŝRt樟͢hm"qH0 X9^X[y*y5ɦ3ImilJ*؃! àw0IU%!wr;U H^JrP3𦞕ϮjIEJt~1pl5-74`sj߳T0} z:Y$;zw+:Y/#N/ Dywr菣D|"Z.>1,ZI*/8t S#޹aLx#Ln~VΊ xq91ܗH(엃5Y tg74t,r=\)ƿ]9ҥAYدٙ]GuQSڶ* +#娗'dܘsl;\J@K㳷P+&ISKנB  Pguaԙ>Gr}g|gbZzk k0ë-}5">#4 /k$A_&Vc咱G_>^M8FXz~iF9ޣuMbyD;V)cW]I_͓hүshFF;UA NJ#izV()7Ꭾ"ȏ~gJ&|1RIw{guۙOuh]Y[ts_(hgM_f?E@/11#>޹Rȁ7E/·B=/o TiVشb<1<Gx;2T>w6a}Nlw ^]z/[/0xn-朏b ~|f&|r\ V˦AfX@.~D9`Ww6ۯDQXJ'=Si4Oi$w4%߰|(W=v-K:شu)4lL3^*^(*X.|r@:::-_L*`W67OLϬ=1{/ ˦ZQE]qƍ~D >Vb8qzN(.@,]*pJޫu/i0m"Pl8_a[.\I}-(n2u0®"E]Pw:&fz]=5${JڴqUbϒ9DӬp=JRU Byi%er,ݐEˏns _H`$1DGN|ƪtBgkkVC>c xWWGX5~HndRAziWhksLMۇ=gmt5zIZ<]b/kC5֣blʭhzpD|ZuLMhr]2p,\+ In&Z%E٩…T Z. / WZ`8Z @YG/U;=[݌?E}¢ :z$ԽQHDVvVw[ܓ8G43jˢ>1/$hC]+g-uJ&*r٫pT41n zMEMɪ헿#- ףQ# SD^eW?:Ϯ u^8ڣĔO C^gh_kAitq#i̎ω]PHF8xx)gbB> (#(Z?wd{: ՟R?Z}SJs"qЦU 1GppZQUu͐pqu~b6,ngljr O=lt+ۼ5Nz=q+#"F/kZ%J~1 %M~5vj*b/G8[)o}پ3W?0as,8!VV73 _Ļz S^3@#9]a`/dٮ5SX&( 5}A(Z۬/-wFlU(\yұfZzMS2 %Dn@)Y㏣X[PQl۟00= d %#)3)g(t^/x傞Ʃ9_;[ ܔ`Ю>Ƀ7̺N,pCHu~\hY 5>_@#a@DG5UdA۶1[NJr2.򈪧* {=z[{'D_:s̄c IҞKR3dihaVB E'% .  3C"+H$X/4 %koP}s pN1)Bj _^b68`xHɧIy#A|{tGف7vɉ<'[HF0_ּ=/ʷqzA.~Lk[swbGɓyӥXp ^Ӏs(WDE~;wpz E MRQ@QV%7_wR78ԑƧu9G|Fz<)::H`0CMTBESϟ[7 xؿU*BV'?Li L:~y=o{mFG5 2~K&r+$f~1uXK[Օc(ŧ~3Y?@oM0:9cM(++qDpH cwe>42VɘK;Fr6/G 8v;QLiY˫Gie(yϠ1:0hrb hd}Ms(I#MH~ mZq}dLVH9r1攡ׄ@ 2 TKEրHܹ􀶲̢ao-xczaѵckumu UX]~+gK[C/~W])sG! pH8GmhN׆"I}D>2QJ5 k֟:y)q,Џk9M"3U %Юo?`YFYTƆ|`3 ё ^/"dfE`MtRLBar6/V9;@1mU>Vgve*/g67فgzm\=hդs n'(/6|Hm[0u!-O#~QPJ/]㺐u͵! 챶g7eP})$^U|U,;J384{$Vc4@݈_}2,wW1ӑ%/{ZDStFc Ę/s|@t1Cp wƏ2F?QkRGEO%H\ WvkiWUe:?5v4]kч&djϤǒtm? urKdPmm4$nP8́͗7//o!g.g[V\6zV. p?ɌI{b/[fnrY5KQXȽ3O=jFK q:V#7v1dI2ZnBZ:lx8~{Tw\t;x{v1`] ۻ3!W6=YWgxeɑdPqج aH^1ϣq,爠z5+F&gm^M QT(@OI62c4_C˭CÝL(ADF(ʗJ{qZXߟϝe q K8Sy7{ f%7{2~b5|D|Ђj_|JD$Bٜ )NL .a<77;]NI) (lV]e^uډdMU^uuHRDy4]Bgs׿5RI%7bT} f`'hH 8I[[mCxxa}%͢DEoH( 11a x[F|8&j91X[tؐS9%Fߊ0!KϠPG& d8.k QPW/]bœ}+և08PzKu?`8|y/oa(/l40Rqo)>> >,<;1.lm a%{;{F5ĺlDÊ~~/dӝIz~ |t\fi,Q um J;ŨcKe<"|uSq`O[$|}2+\Rh7;Rmo[$JS`}K4iSs3hd)NR~wEn5TV!'qYg%/O{E8+G`:gaXzv ?w]zS)zC,[:vUJ~j@A+,-H.'&%w9`[ڈHF1d F$c:YiUJfo#LM$qBʎA{jȒjC6lVx2N/Zi]|FpIaJA6sI$&BƵ E 9RO1 bG`N4xN ,XZ˞]ޒ0ns>0! X9mZ +WS@!^E2fJBl"&X!= -_[jK =!a[Wk16W:0.q!y̯KOSRZf -5Ƌ_ L[=t>I{'m<)zqLIúhZ?NԆ JTDfkǻx>ٚ`s-jaYj5]'p5^*pGM8fF]+4_M/X?_ !ѫ6#`ta0yL1y |V޺ZA):4qgm`PLCbN]]9k?9ͤ'}ؓ%]{bsz&. U ,y\(V;w/\sf ^>v?7V">_Mld[3?_$_Y ڏ#ܞբXb m 6j{S}hJ)p/R2A\CΠx"(vSvlL6?t1ZC10=I:AdX<PrOL}(  My&vr5_'{¹1$p 2sz8yO |Px$pFD ef$؟pegI}2EG,:Fu[fёrõx>Q 7>GBj:N" niJCּf`aEw*ß^iD2xEK8~t8:dKU}E>\$v9xmH<´PdKixKVH 7 $~{?֫V}#wRIMHD7!0 n$q;m. vi^GW6!*o*{qYMe,mR((>yՙ#{fcf7b\{(y"yԢj)]vDBES_Nׄ`Wa(Ԧ=As=]ȧK[Sͩi}G(AY<p8P EbW-׻IߴS z/%~;z[/M܃MqԹ[ؿ%97z)hMh 'YbzMP=F"Y][/3N ~~P̙E ND-2r>$"4'Uc\m?v?.Ȩ@A>)PȒȿKN 4smoמ٣\+0߀."Dƥq 'Q֓OZ`$ED0œ^ LJ-S`$Wk䑘46 G!7d/*ؕ6 q&hf7idT]-ˁ*ZtqVHqo=a [pe_ ͈BwKn~i8fAD3)? ,w`a 8ac.gDr_ Qf[ ŭAmwA~x8M[[mo "> 83+lMyA"iЫ^Kn[l!qI/W\aΡ,i>a{1?e n!!v|v"1r.bȷ2cZP9vq$*:{KH DD 0ec1*h~ zAW]&Tc;-u\8c;e[| a#$p]C:+ݔ3-oY(;_vag .@TZ#,H'7I a3 (7j3p ۗgvSKA;1`&45rP-@ԖA/'Mc&jVqM?ļ/B8[" it:d.Lkb%@2"H熅BhC#䦙NW Db],E'̺}recg<痪U?Hy7&nYwKi!&:~}_Oafx>X + :'N3,tvq3E*GZuAJ tĎTu t(''2_'=C="9B -a79.]ӴQ,3']PG0OCvU[pH3r=TU=G j`!l TؠZ'Lͪj1E`:y 6T۵_*s7\MTUsj <~df34g\[[sg-Comk5*b![M$AƯ9|O ݆Pb!SS`k:vKE8YgN)W _ۖi"^0S"LO,f1Y(ÿ-O.tel)ӷGMAJHx8SŦ80 OUB4вa8S zg!i4nq3\,sj[XGpil\K'֫Ο_2ޥ?(.,>'RonuͮDлWLKh2^WǕWR~o!AcR]!s7y,lt;ٟ;CQ\GT~E㩏}($JrjG5n@ҐJR_!! G$HkW0{3'NEaӷБ(<5ls4az,p`Wx|9QKzaYlR:xj˘Sq_;o- IWL?l)69hnοsV1hbr΄PoB~N Wnma =%̄\ K @zIm2h6F&/$ﰦȜ >]Ub^a˯ 8`\X%hA:& ZI<#ʆ0, #O. `OS Ѯm(?2Զ"s3"$]`UΆ`?#PFVud@5̓/l i Fit Խ7,Ded_Ar{K˕Oؾa*fHЯe9zyN|I(e3VM$;.BQfD\cO3h"ƫzϡ?Jא^an_ִ lY@Y q* }u̶ie2=|ђVhGHf2."n1%/D QXy¢C c<%-=:X! .K;+N$$s29v`͝p=jYL#n& /D8)T:GB#maƳH p<7ڤkr5˷M;$ .` m H"M5[r"'veŽ*0r$AGHK>Ch8o 閒7-K5Om5P[AJr5Fn/@ %O"9ݦd~'}^>ˤag>zFD$@q xD%Ƒ"j'b6K?vK*/4VFPkyX(𰩟s_M#pܭ{ WW0u+[[]i=L>D;xNG œQmu=+9:qc=gv!#ai&ķA*-tKbb@CCVχ L;8 >, 0%BfĔ-ܶZӧ]4͏9hW5 ɢL`PNxس;3o?5ZOa53x烤)tW6E̐>^ENV(>O4QGH3Y՛Uj(j:nrFgcAmȯ 4] uPn1)Xڴ ]:̹=!<i<٫q1S^*&qL2`ׅfH~>53COii& )LG0,&s'].gC}IV%jlj"AB榠K˛ 6˔|䙂fNP_5IUCIm /}v~K5S~A:ʈ' OG"]*wK_la% I6u: d6wen^zդKHYZ\p[\f׷;$V^3/Pa۪*m#]4uݡ8u%|huca'/֐r4@첯~d(ӫlڞXx~Pt9+,hJ:~U\P$3alY)6P!.^ ŘvOP&sTPjD@שֵ>E6p^08ana2XB,F5E{uV(Q+;> 2lIhd$s@__bpckrs3)r^e*D^-e*0]ꝷT >3 \_hƞr)r@9uǖ1i0m7m"7HcΖ(;sᯞXRc8ehɲhPVþ%j9n%}O松(Mu(6Hđ^zdj()arXC=nZvaI+|k\ŒH%L0l_t,LQCIAW!b(Bgg1r e `@]AWJyX(#B!KgQB&%3`_s5Ź7 y9Rcߗێ}Gq׎zcI08(@e)#մe{~lr%Ҩ/SJbf~9/f)|u0pw.yZIY6nn{Ȩa"~Eb_BYb7,ȴk*`( y;Զ@ͼ=ڒCͩPs9bVBT읗mdѾ}QP PGO}ߟe T{HHNŞxq!Ycq7 / RሏaտUo,PŷO98fXoÅ6YP@aZw!_ST[ 0ܴxCV9litkORie'7ffrfk5]0v@/&/V1+ɋGw"߯FqwQ^oKs%\Au0s^}S:\Ğl[0Lw>"E ForTjOC@WbN: 79Xgn%8.Z .C0Дx3Xvh&O_l>NU7E{-5ۯp 2"h>ȟ_`;%(L׻@m \-E?(+b|ouy[y+ c\}eِbYTt2C?|OaZeIg<'\YX3xs8*dKCñ:Bb.N-ڀ\\b+/g%HAEHpwdH?!Q s^t-jdwnU0#lwlC ' `IHTEt+YDi9zUrS2NS)=E+{Ndߗψgl{B]DTc;@TqZVP>u>|vE݄ڛaiD#vVت(SG{;276icL2E;:.8Y%P~^p唁C@z;|Nq+ Lz&T,KHţLtImoAi\[6"` #)wb}Ⱦ.~VWFcB$]a/'T11ؼ.8}%sJ̚ sX~o;N1,q_# s*3|+l)ЯȓAaI-V3 KW\'yn~IADdHCz7v$+ 8!㺙BWm7%RyXkU Ŋ6ON:BZ%>?l ,Y0\ص:59$wCWt-YbV"8$!+Gy}>۪U!PU쯻Yc'#k!koGfL'w-r:l~nbh\zqu/]&oW#+1:4_ wخ) _L+%`횢|'Y%-ǹZ 4"w*@s籲⩓&0K˝k>~&cX1JU;(#J`OH: wN'O>(\ZLtVY'(`?J!Y*]*gĘ|?`8 X1BơSN\SCK:ʩ4HRU򎃧INY.#ڽ]ts6w):q k~܌c!r0&%3κc~++! 1 5*߃ gE?c!/}~e(0ޑrgǀ)d(pNNW)@X96cڏ`GDLC/:f=47L,=xc'/nƌ$^ޔ㉭ZY%1hL0yQq3> 4iUM|BWW_7hFSH>EZMAporY0~'&xBðM",9:i8qCh"8hz\0Yu+$!Vl֎5T1FPxL5J Fؕ\o9ԥ4(]Zu6=Ev-%,L ??T9Zw0zpVg @*%]vAhAO4A vSPխe$3sLDu8ŹGUTm҇;)IVAy \ c;H=4<ӕ-;qfyx[H8S Vh|%Rk_Zs* mlfxǛsY-g 1 mGolYא#ynR9-e}DR pK*_ft-/jvOıYϰ eNܟ=5:mzr'uϦ GxTi~RφW q%3 q/a'<ƣ>DT!UD\JGGp׸eXd/2ù8~cTxa`;q.Rþ x"L hfKO]_J+N ؖ T hd pix2s`ań3^BcckM3Í2 5GQ_^N(1t Tbr*(Tw̷oI( ;G.>0i~dt i8b8=9u@$hY'~DCO8K@w!!w^]>ef v6_BB,z)9=qGnԺ B=ly(GP9 EA+ݯ!.N{ȧn/Iij#KraO *UEpbE-N%n|G|iҋ >$@,d0{c 葕73y{"󅼂|gzb1gRƊ MhD #Un:#2 e/pyF`Uۑ5OhUL$e7a j0$p;e:/ZTǵPy:Cn_Xc\U"oP OSkl^7 XuFq2( ˴qa6c(XUo=YZO6*ZTLv`Ga9cl@|mދ\ OC# >eSmS8ԫXq}"gN84IPhv]8@ee1>e[ T仙0t` D8}B\,ZS9 6Lkw"!/1rᣭksF4Nx~[Gkq琠0검hmLȷǓv]-i-B* 9H.?g^.<Y5 r8бk݀tM=,h4o^"lß7D iTNܑPhFDY=HQ6~Sa9dZ5Q]un/rEQ& Ig?x#=X"1b*Rf 4C9\2fi.2vEaek87x ?Cr"`C^'Cx) <_jҾGJLT|ehzkRBgnf9c9$@2S|ѧ4͂Ee^ϸR} |_إiA/[{3'cfTPY?vV,vM\.{(kkmQ׈@7\ 3V_=>I&~24%h*mbpַrO^%0g,y,V#I8nycPi"uʕxdҕcXM$@n47{xލ i>t37h[""Pڬn+po9TC u" :Z$.V4؎ ES>]qJ/+=oïd|fGM">g 7=Fqe{ :FHH}WNicao$t-CkDy~Xpa!0&aB@>R4cr31{*tVb@Bdd ? ƯR6%akz蕭^z-|;a&xIn Vά$Gi N v9ۆ)*yyXaqk(T+hV,w)ҥGWsD㗉jaz=T pO9O1boLE3^ qCw0_FzNJP't$̏h2-vH57"&tJ~̖'>&^̔ Lk7h4tM[ lW9BCm$$j1/uk({t06&-Ycזt@f7-Q+-oZ--6:r޼8+o./Xr.2Gdvv`]#>m]ݪjЂ_cϰz6шO]SY;6qH&EJ k+sAƷaCN'@{;G^T ?`Lv.Dx#{`q~sr+e*^4oIl!Dw!&/Up(d~?t%>lv'm5tXثP4GHc 6NBjzX63 n|VPF&chѹ%{a1ȯ#}̐V IX=35޸8Ӑ`<"ȯ =#m1ZոȾZ٥eXBLRM5Ԓ)2 5z3]b1lFZBUS7$5$[ȑugSi|*w{Su~5b{mp;/T|&4o$?h#˿dct!ߜ \XvXVH$,淼a Ӭ]mꞣSFoc}U;>&4hɝu|%[%E`3;럴G&ihgw[\V.Af x 2bmStkKsLvLyS)M"pښ#$9IB%EWW7U8l*CS|ҞngբFSAEBe[yG(f8ғbo  lar0bցP\ @d~p>)#`ghE̻҅H}ef&y˧}ţ#G,Bo4`E?=Bʶ0k9ƩKU. *aS;!l1oQZ7iX.Xl^QzЇ$ϢxqӼM`h6j[" Y:8.(ύ|KZRnBځ?EBmS<|;k9qj+heuS LGA#1[dq }„@Ta ܼ0,ԶLx_$KzZW1ۖB.';|RvzLY-㧂 .ŵv?chx!N|֋εb{w<q>1FXDe4F|{?,'yIK<ѣb*;9|Lf3¹5:Iq0ۮүrqU'3ww10ľf.fYY'-e r((OA֓u|zܦ%>3v`.(HvҌ ֤i.=!SWd$YJ.ژ Vgz%Tom5F0@'Qv0Ɔ5PPn&꯫Wuz|Hu7m7~S^-^rxGeD5MI*/t'J3+aWZ)@#iČzJ_o-NB91IF8=6R M3:)tsIj%f!$$Fƹ52F5CX#qQ[&K8$zڌMBR&q>љ҇#eC_nW>+AJ6*yhkس MDDwk7` `B>.b1Jd[Z4I`}?!֡`3vb% (gwQSdKǕ8 fav2gK7oChK] BF?|ɆyrU÷b0W"AI\M {vxgOb њ=`Y/zbZ&3=Dp I2ChE8y'o#Ph!n@"d7,Uy^ouȲ/~JXWK=bs𼥰Rfj'5q.A? (-U(V52St{ Z)!]-튦OͱWX8*L! oaU!8q.!$ re ^{L%Djsl_ƯW[F${ꬎKT(D 5Ͱ[qD#|~`!0$!!}u&xjpQlegq-%f{鹄ӲgZM g5oz}YT"YX+70!%K!&t#A0$I|d եW (<_䷉9W>4a-ЪgDqJzXx*g`>|˞CX@Gzo;2m(5Vy*QPٍg`esW5n|(nZ\jPo9k'԰)?ٞv=0K  ZoCHk]u?69v=](bL:t<o!8+DGZku5k),et+:quSY,LJ݃_"ۈwOzCYmc&*|}lO$K uY_ 2M't  cYrOY#<7_5`>M۪$j8P:_dΥ46^,ZrZ'K8|EBZe{SFl)VGtD,%n1we\D;az; SXr|S6B>=#=sw|Qv,d {w <J*{L4/gN?+ B:  oeW($n%dN(~=fMތ6<Xf.- 0Zr+NjEpB ɘm4We9c\!HJ'5 a c^LTXG_ΉrĊE)/?kc{ѻ3kKp8RÜ--T}O q^v=6I 5dD BU5QYDn//yRW<}gB~8tBm5CvmlZ~_8j%\!#t$j'\hTc$Ý7Z"Gs 1OX[9$ 'VZ>G4XT#:iASi'~dv*I{z)R6Y-@oƆ-t) e 0xB(S`B:bMP43heuItPkR;nJϏR-iQ0REQLcnI|QGF= UBkLtJ~cqJbRq'ʼn,ƞhDQkzK1wVDwQw$H)$q5ǜF>_U!ՌVwo_oB(c e+r҅O {`%BT )b~(lW_=`GF8rhv[v#-MoUo2lo^`Хc[hp徜791`FLԡ^qXiOkgd|>o Lh@O̖$`JIk"5ݰB:,:;&晞z@Qiz)RKadV5GSai L?N[ F׸WH/$dn]@V)H`Y&@<3g9Qv Oh;ʔ碗% W?eA$bm:5paKJe6OSЩ|Ys.@& ЬqPDu|(iWL}"~ ,JtFHf}$ SP@CnJ}KI SQUw &Uo$,b4~˚X0s74RlܼY4Xބ\ak$Иx`G4zm'6G+$OEs? OaV棙vomQ$ɐ\ՙz5ݮ zBl=i7O,$MZ`&M+Gmfmr &\&nI=6VM&kEG9RC tre,qg[|-(PΡ\;BU &&_x婽rr@Jhtv:}pZ 79ཪXY3Xa .`1*7*Sܐ%iee"pꛁ^:3}٪*WݞVK{Lޟk3ΛѶN-b3vW{Ƭ]Y2HH?\}QUX28 *l;V^c+xO\AiJutM/Ŀf,#"6rdy,ie hR|;/q{6yOrcksc SUE߉V.Tmc݄-ftҚ:槗/vD[\i(GNTlLĴ/a9-Au y_;N\^Nվ;#'ɋbi+ތ^c=iR vvTYY ᥅$E[1P7&B}܆[SHXxdS7ؽ?}CgBD+oL@g9CRHM3-OLB87(ZU,]R 2т扳#jSJ\jA37!r,p*e vs/#$~#ƀ)J؄WWs:wD9Z40)]8ÛZH.K\% h@B@Ө O:G*wk߬&Ny%w~DwB-pl*>7( 8' 9f?O"I\%w2|;_9D;8Yl!8'S%a$>|oܢݥOSrN\0zޏI"6$nx~IwDjN>Ac)KSa`Ί[B#5Hԅ \sDI`TE\}>3 t&'x3M`=(S0g+|mV%=n!@\ dxA'9.I P2m좕`F-Wb]fލ-!V=?AŃr$|2zSy#ɇ(b`[fs[Q>6W|Jͤ:#߈s[ m>ypmX0=9BnQ>!0:F};4:BY1Q%V `> !ѰTĥԧ#[o?:Q9=ESqs &^ tL oVUSon6J.r4<#eF%rX ncc>)KQLAj{ܧVgtUЙl+*|pj2c`Aܖ*ͼFf\܂zؖ8+aARmÀi$ _υsJY& a14RFZgd<7O/sef(Ӝs[t^Zڭ4e1ٵ -YK|#xعy3(&Qr<.ZC>LKliP-L<=jUv".=_$ z.q/XN V@2+ut* c{')lb>.`1wՀ\]yvXJ;Gw~bk܋範9,I&7UЂ[PYUtyaNbT~ n0sۊbqTLf3$*yb+]m1ӌ☙b<{aCFzqեf:(am&fbg,@p5ejIOeq)?pҟ"aٵ s3XNL09޻x8*iĶaD@VПR`xR|Ș8Z'KAXEh@(GX@ :&n;{yYʐр3.G_ ſj ]A HRKiVԣcV6pħXEVr8y5ՙ[~5xINdmV]m~)-}~$kKx.׀.[ɢ,1.S$8& Ku pr.lFbuXC}i]k#xFf9zdٸ(_]# wyM敘qӤ ,gwq~HQ!OH-h껗'vL\m0wy`%b" qS@i !yn&)JKC+GGcp278Qh5{гͲAВ'j?{MLyw+9a<*oMy!G& 44C Q͢ZpTO8st<"A_g4hݔ6S`?c"BڃKh%IzhƚhdW!lX5s9B%сXLKPLK[ʠ=xn%;\P 8fgG]d#rYE.a.`_kK$-J&F6JAx߰9'E!r2{Y d ==m̗#wl/jS~8$b)#+=9 RMH}W+ơp7i8rZ|*bֆZZsyI.ރg}"g}Z=[CdF@fμ9kg|SU~1i@)=ns?RQSqLߏu=3:QrGP&y&h`B/BF辨#>]:#HӡJi蒚 ~Be?z9;# e,~ȴPosD?eЎC|BE[:fO~HxYwx2/aiOCᬺt yv&+4r+ `xWJkWFDQY&E^I­n(X1b 1%qzJfms Vm)b}pؙ|/󘄸8>dj@Mf9"383WQѢOX=TX; HPp1&xCX1;oЪ,#skJTN>cYt uX3  Sd8PLyQJpÐڇ{5 \c'*Lx4es{ $['yµy|jq;֙H6 k_Ird!Y=d ["ڢ"(/,Z r ¶֙Qi^*q5tG-fo5:E]Ӕ(glQ+03^X.VXbJg$}3gVS}B^@˕z)"$** jtU0Ij3AʘѧO'ckUnUr|0o"pi9Ŷ% %*&*@|9>˦ 0@Ҕm+pX cP6LG!Wp1$~Wg,oZn~0nP !3_z7=}1w÷&k!&L`r٨2/PAA5_fAQx%!yDQ6Z2z0& =PHHTIpo ?J5nq)C&mMoZ;zP*+2U3 .O 萩y7foԯ={ Niq|QabLȝb!4&rT햿ʤ+q1;@ AUb[uvI3)Q"0it,gr|o?3BH5Hjd_YQ!Koa#Ո(Ady"<.Z<<ПXMu ZN eG9D{ZjG,USϩn (h.6L]R|hU^`xB[̽ɩ빼7n+h97šUiCBW7)Rʐ!Ͼf& _Vʻƨ,nJfzkH2/ g˜mSȇ!Dæ}|۾v92rƮT #*ybQJ`7iH0ܨ(C`W2^6 Cz^7C.eإQrmG9~LV/#->6ɕ@ROCuvojDnG(Ƶ\vX6bQr6̇%H;'=2t2b4͜u#F԰'Y{O$~=]ᡧgc4È܌Eƛ1]a8(8@");.cg33#! m@@h3Ɋ0lFIwY͗au ޷fMEoo^ªM$@(nY>u85s wrcheQP ?Y~@F{kУZ/ V Rv߰b#rg</,j^?zژN1HP1HF8vMN O~vױRabH=:fVa؆s0v{魝E]ZU24Y,FK#Sjv!Y,8k/*{`̨LJ]%ye .WjW㚕ä&o3m# y]`AV_UƔa4gF ^b7TSNr`ak:̡u4b"|zDn0?[*Io/,0~kНF%E†Ԫi ,I&p$f⒤D)TDcs5ܨ#e|VXR !Cy񔺄LjՁr nmw L?ӻ]SíZթܥ QBEz6iuL{jeNes T|~E3..oeM["T{x(ݟȷ9M;Z]4<`Ȇ!P΃/W~ ^DY>4ӼBC\g@`p"&^ e(Jka;YkK5$!aUl2Xm_ ^۞b&?~QcWR2rdKϝ}F<#KDnVM@P1=g_!| 1lx{>*˶I VHM", .k"T\`åq49jʩYɹr<c\25bglG9njWQk/O=zlR)AVZ'!K=,s6#pNsfq wkX; x&-[z 'pqV÷ t:AtcڇώTRnBV3d0gIjy5a0+W٨$s5nck>oKYw #u QzʖS}#v,M?Myn|ދn"xIEt7G&ropLa4ͺo4A  )'ئ`t+P}T&/sKTAKyYMϽC\7>z6J{įYrMðwZ.GL SOky35Q3pa@bN rcK:Vդ<rѕ{{M)my^~&Ja[~OV[ыWeijl'pϨ{o1U)2RJ~ez|t?WtY*` n f淼ŝ(zv["* /om3͠1<$>oh?RowBRX?'NX6ŀLF4 xv+EbQ x{g*uŐ,dd˖U6YjsE # @Sdw$e!Bd|١Qu$9lc>M j?ՠtǽ3תc#ޞسX+qnf!u@ ܾt/~|F|gvusEQ yӚh-O)M|½zD*mǺ Yjx1EKN~} !N𗩠 Jˬʹ89 FޮڣcKŞOd${G%[q١ڽD6+&xq`.dY\Cy)N&BydbaDZ>-LNehu5taA0ҕl,R6J"Z&/lKIx!R O=Aȼ,5s`#_寣Aq2ůIS&p?_jYrk#* ,X°=?ðO_ٻcYl/ɫLg\w"soǓz7/uT;:GONyj5|vNc`%5RBۦ5x:Esy\C8/7/(;ְf"5$DtCVHarLکSY/v`Iq8 |2螫t='RYR XFeDH;705ZӧV ),ZC\h\òyRu-<}hɲmeC Me9aL9ad-^u>H"/pЅ;(>minޱR_ ]k](ၲ$#]q檭&6J 1Njzɽ\z:Uy( ݻHiUȝYKTԯXazygMJ43K2}Nk@ uGz7"-}J0uzYQ8!LBD_FZtU O'HuEYRh۩vUD) xH~  դ 6\ ]R%<2D8(zZĭ2D6JBH=ljⱅ9,ѹE<[u~4 AݍłlGSfWHd=a[+nOzt-9=zkruZ=3UX¦՝}HEo(.He:]wBc-{vФQBγmaNXҰWH=U!EqAi\"6c7E,r8!EF-t1%dEЅ|!9$"zS>V!D6_8-$c=BAB(} >n#hAQ w8PsMulAUa}2qg3yvǫ~ iuBjȭiKEkp6#O#D_ nE4)ZCNxvS0u tH)tp1`_MsiA.:Aj؉םTe ~r!-rPX'dmF}M" 0nr=΅UMu@|TzĿ*Ti=܂qڷãߌe؄Hyg*+nyӥ*0>Q@5q/$ed&jԯJ |Nw5لEX &f_)R;rg lqTYH  lh=M2G쒅Y\>MPS4pmj)j`˃FMmMA5dL`=KTMwF'T<³n& "_`[be>#*+Wbš(z%OeW["k=5,3Rb)O;e2vE>^P:fO蠼aaC!R䣻x7r1Ô(<8 f${vEj,򊑊3<3O'bwY*+AQ ,no qUuKم"BͩŅT]œ1'K,pI<xB%kKP\)Γ,< k$rsqw2þ JJFx 29?Y2C!uow]+l;]B@L'ϙ\AqL .kH1"\YÁ aCF Zޑ'_N1$<8fwd*啞]G6,P?$%(0`{}#40H0*):*J`*Q%kWi\&wRL~xkuþX}'uN'ʔIT@G Jq .)H6 =)_[/I 'h A$Z3h۵ bzO|Z_켢(E( 3~`1#@9֨0Ly'9=Nn"ܕIjfanH2An)B8dwRWWS'5 Df!ĹGLޕ d[U!=yC Ebҍ R mB04]&STdf0<defeMPf-&#|EsГ86W)tKss3XJXG~&$HO_`K%VMR8쿍$=g$[v֖mޗ(l*4@Ifq}C_yWC8]kQ3$*#aJdUk)ƽRksbU&dW!Dv]-}%$92Z!NHF@1Qɲ5=Ͼ>8Unc.KepXDEX[S1ۈȖp`gS-[a R ;j+3,X7:FʫژNLtڬfLLG cߢzJ*})l ˢ7'7$<ҤPf،p] L?ӯw7Z} {QV:7oxO{ ᜑJJPbdѻ%'QF=e  0BxɆ'vm}V2+;J( =4L'Dan)MQ>ZRggDb9п)TϺ@U] oD3 37ߗhr 9%ǖՍiG.gj(Gg޺ T @̥y1ùbh}sD7rg wyR -V, ĤTSqU'ɭF5Ak&3˜d#1~a6q.: @@"d'({/`οfA-=+~*'\ ^c|S3+BGNG5 7vU\=oyn+{NMz$%AʼnUhvHݞ`|@4 ^Y .A򾙝p0"t E/aO= ΏOFMr TSAW|M.)H|; ]nRyj.=diA>ϣjxG"鞹X`#G[ږsVN$Yހ֧ij =  5 % knf:C˅C b 1 Q}ύ{|C%loU-2}s|;[K\TES!O:|[j1[ I-cOg{TPJr'Lh >/Ck`Cez' c+?YF6Fc/J"j M$ Sv g@dXCZ3u'(Aicϸ'8x#W_X.&l}»< S);hFb؍`F|T~63kShz:f ^ {<"]~0 |T+Ns> K OP2R/ULwE6E>SaQDvwyLW1 eh aԿs HY`]%h/تQ4S79y^Χ6lg_Ś05DMlc+YAF,x|DDf?TN4l{9jnJZ n~WAӳ9XK%&.{np.-iҏRMa>W} Cv{yHT@J萴K~krsT:пۿfW|?/D9[Lʅ/ WZ8:pK+牎6J._~xjiU~u Ep wWpl?!o}*_̘)ȕ̴ q}Fxu~㓭?͸l|2-^CW>#YR,:t@ڈ&3 EQ@0wsV? gs^(J"  ,j'kCG&IE I LR(][.2GRh_5ikH5YW/iI=ld  2ok8InnwB;5R<nvAmJ_Õ#/X&D(i߈Q/`0;x;Jy?9a}it 8ngy[߄͝ʹv qDdEr}U"1gL} ?< 'E[j9!֥qKWoGrBѥ_n$ h2 LaH`ECm{[ 2`2КdB_M`XHX/Gz<(c7w>!)2ĝv5_dQ(g!^'myH>Beb;(Q:d*Vlu2*氤D/& X8pHrfA^",3fyoxAZsRAwI퀶XfNc@,pYXuĦCӛ0xLZy?AֺQք4mlIO?AY'fߪTqwePe-YI9c n0gV(P9Wwt"mSHhϗԡGzb3 ,Sy#N)vvBT;+Pvs c&Zq!6D322rrYVx T،JتɼUs`MJDi%;D2_$bakXIm' uGCI9LrۢN k&h(nbA=D~vY,zqsY:ul܄ٰ"~]6w7T(RTqjiOebhÊ*>QWJ@wa/u4Dsӱ6w؉(k}}HZctǗ JuH(x3;14H}{z FY8USZ?]5M勹LeŹfۘ@O|idt*; #S*e<(H {-1wH9B C<Ȑ}e$RntH*9pm; D)<] ;aW[WWD"PYHѧ#ލ;y@uN88VRM/[<`u]% =\c}s8llJkOp3r"7q.Qg‹~Ild%S}>m'Ofr,rǠ IZU-i+Gݫ4^ݓv,.Ȫnxm&s edž*)P-FSw4PGVF2ڮ'|Zl0^s5Uj"s} =}2l+iWCB2!"O Pk{^;}f$` }|krRayRS|û/.zjÊ;\b`.nru:wfXP,^xs:,W'vc }*&7PXFwbľg^/ 9=T55氜,I:%4 Z5]E F(Ւ.j<,{\_xde!A[ELki^aZ7ngARA*@v=Pe9k'Uu8;)-)w I_l[yU{6qH}*#]\'[]#=qL?\zyQ$1loCA-Sb꜠!:R,\)WhS ۷޶ñ6;Sߗ ٚOxOiUgHc T^A$Fl@FU4 .,r뢺Nk3u2{ l(ʫw  zxbY1df#Q7_GXAށLyq<+.akfB&C"H5X<(b+|lZ^duլ'v hg_]*y_Mں[_Fe;͝{lN!NU(|u;Dýo95#G|M~on5^n"vGxi]inyW:DCu-&{W&*9\Əf46PߦVfX/hTť?ɢm:qKEϨwk m ᠸ}Op^64V$$z`(pjL `#K7CHDei/\F`6#F)n)GT6'?],Ƒ0m},_0.1lXqHfZqleIFQΨ $R6qv~GǠhjڔ86jP84)o ]SMm9is[QqI3'tRO?u?ڌu^"+VeC8UڼcvE5($r;#6m6v(,<5@ rfXiK`|;f]QAQ9rhi]_8+`x<Ǧ_c3gmۣ1i!?= p}} glzv'՗hm9X]JeٙWjذE]!`$䑿gfS.]C!BK,Vp嫂r+E ³ NQ@PGb8 .4[e]CTFs^lWtĴ8C;C$/@h GM& ~tܗlaE7}411OGIy:n)l@њ!顶,|7gDΕh:ϤJTR\c_kY?;ʈ~{z6-W,vDA4p"Q\{o" e@NCZ1j=Qەǣ9m$c^fY)&J0\qpEX+U'jLƔD"r(DMxH6q?Kr{0o|2y}!e %*n: Y3_~ɧfЉ Y=dk:@ 8cѬ7]3$HĞ-nBTHӗ"~Y]#s,N骶Vr@Ρ4z&8.ToZ阙JCSLwG }Z%lr8x vm${K`A &UEG+Ըĝx9h ?fgΰ,ć<_x>nԃ43=. |[>~_OhLe{:G~Q9F_lZHӳvÑ|rѸs/YSns#M+k 7 H?~?^*'VK)Y7)GzN8U):An)JI#& MZ}'do槢3iXm͡ e [-_ujv ќr L%(:*SFΥ.IK/kK*BFM_vK)r2^Ga6Yh Jj~V lKyM%рwǍhOo^ri:UgL, 1] 7+ Vmx_@N~^g>h3p(Q8f 9IvyAӏ{&]E[,(/n' ?m mWG&sGdH m_:0kKTd}ݤߨkʰ*q_B'X_-<_$M8[{?U(/BequRgD®'eCƕ$^ Pa(\WĮW]2N {y\)FK8 ,J\j 5j8+7< L:_($IEXZͿ*keuI &gg6Zz8[wvV+/Zy?-!bo:,Le9CpI2Pw9z'H#zzEͩ@ As56nDS4}*j!LUG V[oMl G/<g:R hQWbլw\d *;ѪEeJ%O<&խc؝ԵP!(={7Z#6Ʈ_kurGO᳭&K7|~TJ 2gfc[:#ʳ"xg++3Xs*K>T lL]sZ{r?ųZ3{`32zIڪf&?M 6U*Ȝ5bAƑ4Dj ʛ p/*,cѕ3nK=_$fd_Hd劮d2+?:9snU@. {4*ߛN_IHb/бƻ6RL9G}!`i=!Iqh  Hry +TdLHuIõ#*(40Cr51KiACQrbs @,xh_ T$SqS&Z%[ڣ`'n@Gc~7vfT9lNzR纰}DJ`bU˂~l hH2|"aIQ%Uq UL!MZY+#~NOjRv9BjlDS:DuZ6E9we F p zޤc؅^ћ yq{ڋEI4lޅ&zy1WX YoLÕ`)L'H1v%,Sd. $l3;Wud2鲋{P4Oy7Yp"HF4+ )/ IJ!/$<^-$Grh0knJʋ̶C,YĴTQW;/$*C<ղ^Mm59tj6=IiCsm&qF5aC/`^l[wNƌx粑O|itYDI9!ٹȈ-~ͳdϸiEl% d|F36kT޻| ;6ᒁZs@E7}^`Wɳ׺fq0t:ywC`Db[hF/s&fvQD.鯵jq1q2&9`"v!d< I up;7wދV-J@.Qrn7uHAiW\bКfǻ rkں6qJm}{ 0kb_f߀,צM)2Z,ڂƓ1'Hn>wKS&!`Q2ʉq'eW*3 23XbƋ75:P .v'+DR|#0:d5g~\bZ"zt.vRX#@Suʿ@$P>0NʕI'R(BKa5knУipZ **{̥cu/.a+z,·rgc⩱7 ]EP||lc$9@êxEZ6^gR,42t@"y[D1_+^Y*  2҂+&炼ET'ʺ |\a~?~3E 9:ݛi@:kA,oWOd4)5`fL~8i |ƮKTլmlhBYyZ }@dVfG{azmsg9fq?|Nc;x*sZh4;>܏}@?,FW47[bPBsf:KuM *j"+u- mY`#)Lx~bLoUX:pPŀg*66O=Smo|[h4KA3V:UIJ'?v`ȫ<~-"@Wc>{j^@S|u|;6۽z졻䰬0cGtO^tzX}t, = Cn{gd|sU.R.RZSHfƨ5f4ᕘJ ӑv10Z# DWA*Y(vY;KFRH; cH*8>E%h̳/NJ\*^1[1;rIPhz=;uzÍiC^$<[YعK0oJ)egN0^ CsU@ur\bhI~_@ *˒avĝ?+]|e4zR(mbq̈́mMˍhOѸdڞ~t>&Hcu|Oͯӷ ] EȒ.O` gc;4O :x*XOnFR3p"n zf@L d^O%e[YL셢[ZTfP7HQxv%uBG dJ a͖4'9nCf,;78t<ѓ>6xo 3r'5X%d}Զ YZ