libmbedcrypto3-32bit-2.16.9-lp152.2.3.1 4>$  Ap`>.|:W 1[0ޅ%pYGD& N N|41945a5451ccf5d52a55714c94fed6d4c3627af686e9cd4ea7acac0d6af1e3675e0b6e650784f7df81ce33f0dd63f06c536edbaai8`>$H =lo^%[,b6S,>p>?d * Q $7@_ x     08BLpx(@8H"9":">GHIXY \4]<^gbqc/defluvwxxy Clibmbedcrypto3-32bit2.16.9lp152.2.3.1Cryptographic base library for mbedtlsThis subpackage of mbedtls contains a library that exposes cryptographic ciphers, hashes, algorithms and format support such as AES, MD5, SHA, Elliptic Curves, BigNum, PKCS, ASN.1, BASE64.`><`>Martin Pluskal 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.9: * Reduce stack usage significantly during sliding window exponentiation. * Remove the zeroization of a pointer variable in AES rounds. It was valid but spurious and misleading since it looked like a mistaken attempt to zeroize the pointed-to buffer. * see https://github.com/ARMmbed/mbedtls/releases/tag/v2.16.9 - Update to version 2.16.8 * Support building on e2k (Elbrus) architecture: correctly enable -Wformat-signedness, and fix the code that causes signed-one-bit-field and sign-compare warnings. * see https://github.com/ARMmbed/mbedtls/releases/tag/v2.16.8 - Update to version 2.16.7 * Unify the example programs termination to call mbedtls_exit() instead of using a return command. This has been done to enable customization of the behavior in bare metal environments. * Abort the ClientHello writing function as soon as some extension doesn't fit into the record buffer. Previously, such extensions were silently dropped. As a consequence, the TLS handshake now fails when the output buffer is not large enough to hold the ClientHello. * The ECP module, enabled by MBEDTLS_ECP_C, now depends on MBEDTLS_CTR_DRBG_C, MBEDTLS_HMAC_DRBG_C, MBEDTLS_SHA512_C or MBEDTLS_SHA256_C for some side-channel coutermeasures. If side channels are not a concern, this dependency can be avoided by enabling the new option MBEDTLS_ECP_NO_INTERNAL_RNG. * see https://github.com/ARMmbed/mbedtls/releases/tag/v2.16.7 - Update to 2.16.6 * CVE-2020-10932: Fixed side channel in ECC code that allowed an adversary with access to precise enough timing and memory access information (typically an untrusted operating system attacking a secure enclave) to fully recover an ECDSA private key (boo#1181468). * Fix a potentially remotely exploitable buffer overread in a DTLS client when parsing the Hello Verify Request message. Bugfix * Fix compilation failure when both MBEDTLS_SSL_PROTO_DTLS and MBEDTLS_SSL_HW_RECORD_ACCEL are enabled. * Fix a function name in a debug message. Contributed by Ercan Ozturk in [#3013]. - Cheanged License in changes file from Apache-2.0 to Apache-2.0 OR GPL-2.0-or-later as the upstream package changed too- 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./bin/sh2.16.9-lp152.2.3.12.16.9-lp152.2.3.1libmbedcrypto.so.2.16.9libmbedcrypto.so.3/usr/lib/-fomit-frame-pointer -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:Maintenance:15878/openSUSE_Leap_15.2_Update/c70f80d5f5d3c8d49e5b8cb15fd6d1c0-mbedtls.openSUSE_Leap_15.2_Updatecpioxz5x86_64-suse-linuxELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, BuildID[sha1]=8ac5d1e573259cf3babba3b82db1e63f032ef527, stripped PRRRRRRR RRutf-8324dadb831883d2911ecc07b2d4a56baed8e5b98ba758a5c9fb70446931d86c8? 7zXZ !t/X] crv9wf``'\eCpwf;^(Ľ .3^wgxSΡ[c(m%JKjcCk g2s Ib/􋲰E׈?Hnm"La؃k m\~RQӴ"?J\.,\-ŠءGA N4QIl49:,;r)"Fz[5Kʿ/'6ݑıh8R1ࢌ3!Cx0k&3oDc(sI?Z lWpr)d3Y-?AR%?}SbhtɊP_HJ5hzռ|HLMqWNq8N@ o|H~ӂ):6V#ȴZ7zarlLd8oCkPntu2*q(MYSa+4Vqq;7^KUmame]r"s4 qo^lձ_BꫤpS#Guj0oco!hG$-C3ۉ*쒷(ۦYQB0`V2 `x)cG< Fƨe (8{DOBՒZ6oܷf~$7! ױi"e d ;jN*h/bY1M%̀zECWϪԑ|)<vu.M?lst { jUg2 9j;Dl:QLg=BYO> l)f(u_NptE|I0-)]ddk.GL-ֹu P o2tPڦppРE|J_R2SS 5$)^W3X^a;9[⠞f OcMw#a3w?(@:%-wbfl"& FMyd-隔XAMvػ31f5IN3ďgi<7ߊc9d CoU-dֻD{rRsBO=؀bSrcLRf_ S1Smޗ<ޣR6WfD6m؈B Ҙr]4eX3x B.Ϩ޲AAuH'AÌcz0vːM1 \W *: lCi DPQc>H'!'0PR/֎| %q7жtz !cxsEIYq5#sY՝[1f%~Ʋxx#E뛚ZF0wyV( ]t QK9X&̿OE梌@!_J T#w["_^hOIMFӊA-R`ZwX~62ښ):Xٳjɚwh잰. H$4Goւ-GƯ;E]TEtwg`&xdD|+fgSe:鑇~.,3a\"mf^ qGmل CKgu`7 xygE߭XO2Ui!/'l+nhshP6\]՝9w xǃcl.= 3Q 7ޜ(#?Caٌ8b"^zsSJGփjL%m9ػiPΘH-u-;HUDlD΁ms`#6 8 @euc$h]t3R58"Djyy6%)-"V.+a҅sNr7fd>Tbwn =-HG7K0A[7f&RآgosVFԢeBR 3ƴWԥC4FnD{6umW6HO-!?R3" rzk]#=&qRJ!C|Fm̛  ,NuCȀ]x_na}C}IRYx'U)]2>9dZUNHU)k%NIp@ѪU((*mn2!T0'VXt>aYoxsP3љ-:py6">jɶlp_Xҝ䨊O)>Un(Tc4"A@ u8+2Vz!D( WӿQA!6\T=ޟ|E͉ J: SyΑC\V ہȤDWG񙝷t.VmЧɿbQV= ?{g ٞi߃F v]uV'|KܐiΛ 33gR2yؠѳ%f"=t#S 7!d}s<)iDgnӞyv< JZv*Y*up:5_T2Ƚ ݘPm(Fn̡V`&qFҥon?- 3mdkA_QL=W"WEU.jԼ!F+Z) 7$K n(~syf>׃q3В˖o"j\vw &1`JPe]x1(w*-kW1!7B%oúX7:=dN| Ρ~_ "G!-kck]k`Օp1EE]L ;:_ Y+GqCnCT]A@\;4p2'E8<  r 70>s?0;="}vnS:t'aaM\a!IFMbDA!Wic}]!K8%Eii~J+$_΄Ehy^d:r."JE'.,vz5k4MmGnxo]Б4|EЭV5=4HrGgZ}`ӹSMϐ5\\vHe&"Ve7T*b^폕 *کc|@+fmc+ϒ Ryb*"TTBw~g[E/SJ#ס +yU ~t78˙[avj ?` 50 S%E[q񔅜ŗyE$xEGy[䔦C\|y//EuO*PPZ>S"AAu{L+ƙ^S2e@EU )|r?~JĂZ<:bҿ^l{,}6mLOEYE8hέl#\[S&hk&n @ӳk{ g!?d&0vO0x k/mš@4#$xd7xoBix'-94̴0zh3*2dm(k\WwJf6r.3crRN]zb]*C3دS.Fۉ:)ąD_AL.H4E| Iq>s(tB;q7tVZZlJg>,p Mn4,5 x둺d/ˮfnQr 7Iu mG+I5^* /|G g'F: FZ :"\ZC]g'Z^s_yLϹok'Z(褋sRH5jBٶQtܽY&ވ8.m@%20~!v8.Mn%Nⶦ-_˕\,7%RmLuA KZ5LRY.?,`p%?+3Z&:+F$s/YY7c' _ɒBu*W_.w!Bמ?Mf!%D3c,kzsQW%f7/.$D(gT{\ݣ%r<>nu(}^/']tjHͽG{4vۿf%La fKS͈c<_yRfe+Pڶ $q|N{YF,\M8xWAc>ʀ/:xؠVҲ~>K^aFvRʁá<r*1qX~{{X;<jk;yp?nJ],XI[ (QMz-Z)L78ԽNT'NwNI["F,6aᖥJl`t@2oMر>C9YZѢi}l~z &vy@ U=pW|d-.3 KnZ'7XoA/Rk< 5 / "zC^8b 9K -i 0$W\rCF8n>ikɢK*ɳM0sN ͥk b 3y㞠V{]Qlt菘6<2.+Ev.͂x+ I^Ș`C u*V _8ROr~3#?Jm^hx¨8/}}ܞ𭬫eɮ zd;%GokjsV '\%Ȉ=SOXm!P&@`hNi#{-x>Zžy8oa_P MҤK?(|v3teTmF6HWpg_0 Be&mr>$}ԖS'4"m@"L`~~_G^@jڳc;/}Q&"t ZK~'u֩Hjs BreJp_#(Uz"Kzz+21qv&uSzto^HtV,M eςY%Jq \ ~~d+PcaTLPU=!KmŨ9/ @{ݟqW!s+4Ԕp٦]P IK').3 ]kY1Fj2VҢD wQ.5`k rG h`E-o]v'C'z|e;C$&[/(HNhPNfiF6Ё+(ibH(qNbiTk8PcpT@7Z=XNҼ$HpLy1.Euw^s<֚; 88et)j .U^Uqͷcs2=tx k0\ w߭ vWv<ʔF;O f)m5vmp߸ȗ7y7hK8VaQKޚr1Q.>JjU cn)!VK{eR)\qt5ku.B1Qo3b&prRe^D.ꗧ*еc;kOVZ iƩDZ<*@7n1A ?gR.Ƥu.F_VCwۥM7!\vL}`gau^+فAa]/aSrV:]#w-DоZ|kNR @TUNL~S$,>p1+]#ƄRiIGﺼ=I$kکGXչlSrP4P>ٔެ㢙H;qS_}y};h4FMBxlOFjt9j.{S TA Bߨ Mc} Bke,)|&p|k /*s@kL"?9'34](h4z`NO-#,U(lQ&~C!u`Rs-mhJ"u`Z1kD(UI >-b|KwU<_U-xRE(Gz S!b s'?`ڠK>MڻUw^$~ݕԧkyCyouc_#V0A&0h&&H`0F G(Dq5[5Fd86a1ף,h $ -BosDH>Z zlzwhnFz214e 䈼 d}{0T"v"-rZnab,)W(|HYU `ƉIT6=K}8_Hd ݈C,Q3^[5eWUtۖBFbnO9A4Dw| u{ "ƚdUs ZN`CN+2GR8-vC k,LA ܸK55`JZע ~-vfM?`|oJӌ\eT mlzÓBmGϋBӮpǦӓUIe&ts\m/AyfjKh09`]݀pe*LhY/5&k 읶0kK-ߩ2%Y@4m n^EZpJPJORkzo, Ќ4P^ִF4 %Npj^1%w8ɥ:yn iB?{`*&R衸ZWFHaldbI"G }ߪCIF{.@QdGh'$\AhC!;'g{9y%wYwCڍ^Imx:O/g6,&x 9qAhC焧CIh6fnGLոb)]6.c0s!"W*:J OüݲX.9?$ckk//OYg ~aWW`D9S@P.q wXBpxsw;^\5*:JD_Eً Rs13G9ZM0շαz\&ʔG%[حii!5զLStZYZ[Rm^C3Ϲ/EV~p_ژcf kW @P x# } @&*PHHdٲ~QX*.<[9 fW7RJR73+ϩ(IXnc瓀M"2<= [``2bgFhx1[7r6<@sV lEzGDi&6gpir G"!52@@`b62H@t_a noNCD+ h .Ybvp WPq0S,^l9ɩ QRO8kGLMHɉ=IDl[p)„`*NQǢِ+7kmr9kTԌN nXL|ߑnђqn5E-j$D/2yLxo]=`Y֬l" B:!29'Lro{s5YRb^w>n(@룤v#60N ,j N!1&5þ(df=QQu8^VhE98,g~:u]83HIhP95WPz"lFo/wRYO[*SZaf;8kK*/[q$h.%LVf(chgҠ9:f{;܉RȚcgHv(э~a0^Ano۩Hh2]Uƣc=s zes.LhD*jۼ0Q-Nyl:w! -?^G E:.'jfU)ֲ:{ÅW,dt7P W<|*;{D5Εr0YƗTM[ge.p^V%40Șv#9X4g0+I?"K9'; ƞ()1t%ӂK&IYʫeP)Y޿FRG7Jп?1n+!>ʛtfd{I <#^šmνA{CKk#]˩XXoJ8~?ljZ7My9J;υ5KK$m;O"0 {?qxw9>PDñݓ/n1ZoJCMorPR3m7rr#O1JIQ(U*`f W%=X BjKAo%WC[(Fe >@NGk Q9mM+7BGTS宆GӖ@gݸo WS~?7Fg:a9 IA%O'; ??mյO ~nO ,@V͔&$! M)=)}%7H8Mĵwv 3.)7 :v]0 Lbpҧ@{ܻe%9yE@ͫM&| dC;ŏE8~72D͟f+=0+Yc4@FL$#\|iŔ1!} G!s7H6ـ.> ёmARʯK `ȵ"T锾%4ׇ6Z,\:& Y[]!s[s։/Q!ag42*[V^8|H'dDznzW̥{+#-ҍ][7ْv86lq]'=O#ʥmo2J)nCw[ y 'VY\{c81F˖S.bT+rGYDnIJv',$m8Ț$+`QO݋#ÄʦCt6y5Ur6qy-Dܝrj8foجb̿سtI:ŗnL2m"P2 )Mqi40iV_zc)>L+9iL>2M1݀Gs'KKتU]m~=]vHa8j67x2=eVjn65 [8f8f-ǂ ED}r )`}񁕌dHN䔚B{-#QBx\VTʆ+__ɒDuJޛRZǷ5Oc]qX}t63b肈J͞#'⥏ƎbE+p}\ 0~7pA1qDgmfUʨD$$NП $U;^)kd#B#nOO @mpG5!=9-U*FԪ#t9EN ,Vy@EBxbN)-D硙 qYR=ӕCC/rn)PB]lElXٍCO@XySJCKGzg`_>~Trb1_->WH !BϘZط3> 痿WBޫ$d~X.!^ʺ+!9q͒CL-$ĥVq{D~SBWzT)|_V&CDp1C>68 d,S]l"ϻ1%;6NA>C1P~}@aU q(W]T1t6|p7@,G ,!+frWr?pW@mPFU9i̛i<\ ] 9wZY3M{dH8/MLo˽Z˸[cEޓJ&e:K%5nVPڑe E`ӯ -#vw?)*eSd^ r(S!&IԶbJmVc4'ֻK6%U+h^ޤՉ'ǦT׫2Y"#)̣%Io}HC]/C6AOvCzu:_R8iF7kD;JDY*b /n̐'AǚJ;+|z-T`&z.98.]uA%- b.4eUִQӴc $t7&ă ** tG{uRDQPc7y~6dwrYT3 NG]p(ǭ##\>8{g69('}|!-xc.&8DdU vy*J w^2W.V<+ 5tq~5B&%)8@')3"Mot-G m%L$Ŀ㦺r)}S𧿯ky讷5˾(XqSTI]?"ѫŌ@bl$hv;pҫr{Ͽ}j1bS6#j!!UjJ$-8l>BUy饯Vh#-c?ު9x Xm W86*,[_#?єVfl ~ 0EZ!\g JdqBkHQU3^a󔻚v{ k6bYҨ'L:'N?RAg]1b:(5vׁ{HS @H2F6 a (iܨ*Q  EI>8w40Ewo AJ|I?C,ώs<:g.+7ƇRC`E n|ʄ5yNS,}t&JR LxP$ȝ}$m.\_[a_9Q^gnH*,z2m1߯6nu7(V*s /~iրDYU[nML qV11/o6+ 4ی!|/>gǑ*_$m]@-fmBNߺ"P f!njVB bhC>?yk\ܮ1LYΣ95k^dD43HQɫA䝶k1oFZNf1~&^Yv,t7GgR#-ќ~6fӉ>dQN3nBpW|+xK &Vk! c'WŲ.>RT&@y_} ?,U"•0ßBJB7P:rXƯ!:M|prG ul y%v+ܶ pRJs>T~-gRw SAB)$YcgcEQ:0h^26AUBʌf苋8cm! gSUx#&=#cB2ޗ=KRǂ9M\9n_F,q"fXb5Ɔ[!#$ Z )k^ZZ&s=z;voń|htTCf=f7 QtWӤ 968DWK?M`[hQ0E֔>[6ԩn-:O/+E!,-ȉ ]hIF􋚗p'uj\ v(9z n c7aa+N-EtJk5 xNu$,)fu$O:닶+pvPO$ %A6> ℾ 4BV?6&X(>8m$:[*_tDe:0Vߌ4p()$1H Cp4YigЀ̯$ze:U;SMӮiYzg s/.guE=c%c&F(7!Ū,@V/⽆o.X0ؑd$$]%~3/S*p4*3w)ܙz#N 3X?!VxRgG@IlHb#&7rJgB,Vy1lrb]5Ԫ3iy'&`yFwaM_8QbTnaQ`vqy)@D,&y@CߛUS׸<6\7vp3- ON#y`Wɨb&kTҬU!-CD'%ƥD!&B|aNs"iqu5 @Խ;fqg4t|ːs\Ӑ&>(-Ga%L ZUlS14#+0致wѠ2×aTzIGYZ*ѺnhLe|Vfnc9 JK(r)ID.\7q'-K8+-[dɓ,xIaL?G*A6W}9 i0 eS!}%r#+sϾ:a݋"Su,+o KH\qߖD9p[ϟabi_|| 'H74I`r'N5J; p d®4ٻ[_ցZHI֘LV\hx2.YX8Fl5aPVT2̰H#+%ᵣk)%$>In@޽|M*j1Loo,$k6tNsz_rtܗa ]Cc-M4aE0%Ķ Hneyp>(T?~1/C.x~I{٥Wa31--rQ1@;59,h畿N(u LTB""mC跬StR[Dl Ϙ="լLKT6x0Jtr{Fe{;1Қ넧Ѵ˃G,@ c|e+Wh<=hVHZ6Px9R8="O]f,1X^ʴXˡXMCA CvoK-[{: KG8̤N84YeL2eX:E/H& # ד BWӍ rI=i٭ch ly6lNzE*ׄ/0攡ّԭDC]l}'݆穛[fkh"]ذڎo &8WXs>wfMU f@cL}4nBGCo•"tΎg03SmC߄6/*R3b! 4bGb=O,q$pAoM@E,#I0Bbk!(>7B۴ID]֐Odž4ð,w}iUNolF^3[Pvy;ڙ.BUVkA"tǝSp9hnb<+BO[;p[ R2rĦB$VMMAd^p0ʃkC_S@[3t[q>CiM:XLeܓX =~cRB,DiHҷ9n٣ r (|!rem@4&mkٯ-G)g %-bRZTM6qVK,boY﹯;ToZd>Zh':Qc `,٫m̛Py~&ɲ&3L]k!IoɁ0`<l caOŴh6L{Y 2!~ ӝKsu@oG,fƅR3\+l4]:^e)=_ ƣN2ށPYsY}Irq-*ζA RHw+G-^X| O8E;Q/Bjsjh&-06}3 p/4[ݻVq}|i #)҄@_ ]` B@XDX ܢ8Ⴌ"@#{Ӵ#NcjA];>-< T^]TH1Z @|:-,F)[)\gIEt֠MT,aHb $$cU:..*H9Tࣛf:^I1zibj+?2wi"}POv:m?I!HC+(CsK1Ε#d ΰuʹT<3)MC 4XH8Uq}+àպ12̏஀b/S pP ˷P4 a'ӏ^?  mzsnPoeZ10@MD}xߛ?Qűo@ɬ14o;aB'7eNpoJ@4PG?Ir,{U*?!+Fl\z^_?1NIfheyEu~ANKѤ8bV< ̫շ!c~!x0P\aS"V=CIy ^:z(vѫ+#*kH.Ix^!/Gv ΋2+z BX%X?1|6 b<*Si_ԓ%Zs;Dgmy7nLUymU>Ȃ൶X ucD!?apekj,=CvHcQSer{U*2$Ƙ$wi(^<wPV#D@bK9{ FwaR cT .' `&r%w3#G4~VތQ';ѕeSb<#W3gAElG E֘=L~]7mpG SEI+RbȤX[SѷR ^i40/ EmfFF4Vg̪Mz=9`7,pI|t~P( &7 b.E:wT1uYMd%VRx5RwI%%qG"Π` F72GM;uDli6bBV^'*Y5BaFf _>˙4a֝jm|FDVcF^iw){iowneY4 qaڗ>͹S_o-㟤׃t p爂O0ߟrfqnT#hydS'E1ꢫCnŞ㙹eQ sWщԐRBb< +,EGZy} 0PChsTKD%Jq1"ҩ@]TmQswzqU܏<=YFи2c0~m+ʼn\\AMaXGq5ZtWr"_判2[ieͷ[I׿>pa\*wr#3_Rb2ɑ ҿ[9۽'`ƣAvDMJ9jX,;m/fi hdA3x# ƶk"[ewtS$If}<T.$XXE&̠'S a=c٤՝^v.^qqPK %qo0cn]Di0GEo L6g "D8_ㅪ-Q$X9-%]Zȅu]>#$?ۃP~_ ʉ^Ǐ0&t8jR0 -%Ǎn sGkۏ.;nvɂwKeto v.C `B>^Z̬ڿ]L R ?ʊfOĞTZ7iU;^t ~ESG^gť}1lՄ睟.LaƐ#P'?ͅF{@9s =1WН-꟰~H_Z泗W7X7NllEP@oPW?֖盝S'}39'29WfSveFKFQ :Ʋ˳v$5w?@&)KQW'PX  ҆)®:/ `unRCo9ɹkڗʞЍ`RϺLͰfjsn$bc kr fSE1Oo_d^* L)Nx#aQ~ݣؙv+9EM'2|5B|leXw IFͅ8ZJ2}!J%TF+֮VB ` =!d[=k It(~;vDg-6\C 4wc&͓4WtM襣t5FF33 : Mѝ LX(ڋc` d|@'ߨvpmZs%.o/.wTwokyȹ.]~Jk)7FN!eıY2ŇR6R-DY"tˆCc_Y؆4l;AW~x!.ktB0XEQNE"l,E[y#7wJh Q!bT֎90D_:ʋ۲RN+$U, Zq7!dC;kR֞^@+P:TYXQmͬ.\.ruJ_aS6>E`kvDԒa4 QzN+y MZuWZm &_A{$,OY c.R-W`PƁlP1s^yrWXsԗFs:IK<6`#dC5Dv<1!8鬌>/Pώ%B {B 3оEVЅ9 Ԁ]g m=l VIEK^ZgZ?jd1;4g*$qc^H@EN/coہT$VmP)UyXk=Pp &熰,\2^ ^Ur.ܯ[${VlTvk3<6Ģɡ*V-n/㫘 ѷ"Lv+4\~ސ~?QnȒT Ei y; WLFCbm\,;jx jWfj8EG)VR-EN !7F* 1A%by(OLZ|_ AK `hFu@Î];ishu#!YW bmo[E$&4LѺ/|n54j6'H =M q$p r\ ؞"4:|f`Yfuu*?M-O!N' rpD (G|}6xnV^ l9!;,cM=)cNP<`Dq[Đ ,,4 b OR`<|@P~ǀkl0if` kQ&*0*Va?^S-PHruPa `B4nӪi'dBA3OA'yp\2cJ3SXdٙu ϴJvЃf#_N9]]滑G+$N &^y{/Ra-EKBƩF e0yJt#ғ7SȊ!Nap6SD4!+b8uM ذEit7y #f]9qˬXJl͞n"-O(m5ĘAJLJ͖|la:zTAEIz&M43)e/^Ȁ;·l1 cg=q؇)glOm}m; =$rczF!MbLD2Thn~/~7\*:^ݹҐzZw7Y%]O@c>uGw hl.{W)Ë ߿6-NKgPpj {I rR-1ut` ; V_pcEI$Fq>,ᴀФisq \-'U 6=8~̜B5jUS|A{Xtz)pmYh}Z̩gdܽesxU. j֞+!)ݚž"1Od?=mtl~EL@}O g/*;#ŝˣ,£JݜGW`;i-[_i6pɁL'6Ӗa5t;t4;J OgQ/ 4qAj76G[4%؉3|P x[fPe,+AG, h:٩d4R@C^ZO˖AȬ`t:g,u!b&X3S_+(?Y$5+-[R^E^@ִU~T%(YEClT0vfZ5(xm8ΰq"bp(8bG~ǜ ]Gb+m.Qh| >mWkRꭩT*[)$>C/;. pQPU yeA_Ãc>޿]cBe") |2oG{]D qC7rYDY~?U\!hEwsGzc-Bz/EZ.g(gn:2E/di {<3#8E )WDLj2 @GD|pHڎV"Cl$ڝWӱoFR@vHBɇd$[\As&[- r oLLkwfz1>U~ү 'bmYbU2usN s,Hψ'GWm&F1o5uRMՉw- -ҮލӇ N%b1eu )ތh`0(&n^.Mɓ+YmUbT!()6%\&}b]#3h(Rq34`W&~*mt%gPNM| `cYO䁼 7T'ѬnxVڕNvDoN#*1+ QKUUª_j4=QTC;!4Er@rw@;zN@ʳ ~ z" ҊtFckX p$^76t3>'|x*C1*R-vl p,ɇVbཱུӥ zz(xauh߼^?O";}[gasB*}.AĤ\)~,63I;X.޲Qywʙ#{gY5zW9\%j{ Q>B*< *#7bA)92HNV [^]m "c93rIj5A[͂p%L1hŴ:yX\95.>]'3MtMzхWE>ĸQR9~Ic cBhII^\JoYaQ'ou+4wˇmۻpCPQ=-F.tSZ^f+uu uaÐ,u t"0R.5pk ͞a*6$qzVHH6T/󨉯 r67찏)Sx"xpLk1poX7;/ LGl}WU>Cw"l'#DK_DZ8 _Zdv) @J$iR%4b. Ǹ7/X_C)/Qz*LgYJu5;gU"%LW T8"XcHȁ8<@ӡRDv-jy%;t~sErbHq Lk(ytvYj|op1&:8t]Qźϋ'=YnQ[Xi`sy@~@a/P]itIsd͚m_gMn2pa7Ʊj"rմ(,; iȚO專CvgkW.|{s}Qb\sc]ʌe7a;k86 A#>>@YMFm2qʩ->Aw^z"u~7,ގ"CUwr6vh՝J<ɉA32tË^KURH9 m.fZwE g;cuM^jX}[q[ZWolI;SHaCUKt#dFWxpwx3nZW 9K(I6=mht\ z)a^"5sJ{ !!-ʥbߛ+9gϨJx4e`XSRLͩV"%g'(;sQ㴫$q Ks̳OAiPYg(yQt F:!/q=X 3wrSj(p/Eu+`)_>`7XQ]m^+K|>g#Lwl0׽t!ޓ^)]0f63@^aƬ<0:"UG.wɒȂ;Aj>nm& /8pCwDJ|j. Y{$$>vy֡Ȕ&~2Fk0m|}S@tz],3XU ag]w\fmfOcQJ).;?'Ӓ9=Ɗw!QY/ǘF[P!FƳ&c qACe0530Q񏽿2M8qWRsj yA,kJ_r̦mS͐%=UͩqCہ0ed^ N '7{ZB'ƊX f*$yrdy_CcK&jznAƀeƇH9[%_|/en'ʑSTFU^Āsr&4 a 걐ށc~i,G[t:Enb| ,j461a_F}]q3G3*ĿI[b&dA2X,Lw.†սcRDgPb-؇__3-"ܸi}=2Y9"궋=zudXʊ|OJHj6*M96 fMM?v'!8Sn< r@cDgdJv%9rM~\~$7bAA>n [AXEdrLYdrި(4b[%{~e 4OxIDS}DŽ6|Gۥ`f'}-ioZfPbY7pXRwtBB/u6Xn9On\C GFTk5eU9-J3>]ų# \Z\Qܼ\A~cD+= 아 o%|f.sjŸOxF=U\Ŧb#Ws&>ULcJؾ-.p*)b qv gpOi|BĬ#~n1NS)(Kv} <(WBuO t,;YZ/ι6!2:Dn?j& {$v4Yi$0Ra!O<ϛ3~\Jmt \Qb>yrfdVFź_8۶"uÆJq?Ӥ%Ȫt/Qa]ߌИ!zɦ㴧jЊ['4a\D8r<Pugj*}0`y6|6;6& b/Uo$Kӧ$n+t !D=MQ[` E[ƮcZc[\U`;SY s-OMWQWsnP% T$R 860t;@2t!i͉;d⳱l+^jLHVO~}Ӯ $܋;m`'lWsR# yfl90n6cCvAN$Y6J:($Iu둾 Ap{O? ̭B Ǡ(ɜ(^(OKL WXzM^-fJ=koiHiWOw/ALlQ&ض\\;D!v,TEcU+f!+63|>|bεrdh*vy]V7c̲sMI޲U>Pd@|R6*ee Fbƞ[Z tsZlL\A.”+T=iA}J^Kx |>A#ۅ%qr Ή >Zu!؂f !AѝA/`yX*<:o"+K|. 58XDp֥8:91~Ӿ ST W#žSfp)[ Q $pS|Hgx8K:9uj)x8;+AЊxD`yCm){Ln$c'`o$tGӪuy$O~ZS'Y@je3upDuqs/<="}w8',zUkd)0tU02L2DH7 /.EaPzAS"Ia}>UO⋥VѨneOٗs#hIXګHAEꈴ=NME J~6'49|$NqV66֩tsERq4Wn* {y&x&5߼0∍"fr^U:&duyhmSZ;SUC)a*@خs,^Jِ{qkkv&*m`q/lG+nnjN4 C(U%&u)N%䯈hs )o)f94j:b_'~"P>*NxLzʇ=`E6bml%p?HQBAG!^T95%ˇ+tq]߅PumYN iTOĚ(BpiZ">Sfq mdK\jrVX]7]ݡ~r=tbxZig[M Ogy;MW> 57z Gym Y%H|5ׅϚn(r3ӱE&D$9P#m7FJG4?:3{=WsEv{ҠԆK.]'Gœ ",Vs !wP9$KᒋZ9_b҈}A,4C0GP B{.y|`"Ԟ%` 5 >vL *MRm[G=PM+dعrNja[v1ِ ,Z>aFc"0t` 2͓ѲޣF)g}i%OQVAh@ӱf Z y( d\[Z9a%}8{俍9U~u9$સ`ݺ(' b: _K#Rԭg2)u ik6?^Z<*'v}gW5V7CS4!!EFfاϴ^j6.̋F TBp:$ )^Wظe ދ:%9EjO8I&^&c 1a:RL)d, Ț n<9wو02l'Tb V泿Mbe[".pJǝxS\dr68sDl9M{ +VYi.dq{(ˉێ^ ;1ݶ>I )aˤVՁ#p vǮu'C;cw{VaiR4ֺ 朝 8!WX\FBbPn"ZWO{m-? etay7utbli,Ťyʴ 3LFxV,$j $FrȍBtq+xP2+;_2x@(򔷸#W%O8~LCyA`RtJ*xpqAžWtO"9_܅:a]B UgHgq1{tgg"Cd6G ?V {~)otgzu"L gZ&x{9d 'Tǭ`5R5(,=*%)W^shr[ݿ:SNB)O}6??O'EJ3[GoܙVڻZ=Efh%fz 'E^L̏sHN|ݮBЅxp:}^W*A@1J. Nі{?=F*畇-i.AJ3K~'ՏgOpK@ܱ>X< rL3hSmO )VF.c-x] ϼdW bw%-8}ۍ3T5C`HIhMԢ>nI8 !W]jdх`ZWjg`dZ@;hY"/J#*vj CGFbkV'=-pDY^D9"B^DH kOvepA}OM>n3~am?ڒ%+%w ]&r"ބl$gz&JvDP LJ\9J1(ON%{ [$Hse7,6|bC2xɿ&|W#-zrf2)֎uAd2ssbD*u;vm0ZcW2)Gá!wl僃i}r%8xNE InK"ĵ҅ Aj(pyrU1ܬ_*}N!bݹaxp(6cr~ɋN0ˏ1tn5-XF?OY\r7} )~Gk _(,t]n ~^Ιv>߱-1\M2[Ȓ:_꺚דf8MBH\˗UCVZ$43I#΀LEɂj,XV85Թ~㮖+.0xu^Uг^dd z I"-%^$%4%+3~-X4(o(Y!'KKN  9a,"yb1U8 3UMT;h[XV%/DO #Od?Ta/ƗkfY>#w8R8,㬂( 3"a%ڑژڊ9/NҲ?B(r^*oR}1$vj9"=)&sOh*W[) +hm*/2p|}@Vy24!tn uihB 7A 5!I\ĭY/JD9$w?ӝPcK MD6<+qQ~ 9QkRۍpΰ_ 4,X;iRl]e*}3ڼ)IMh6b#lb>lFf[' ۿT2`OEK]G7Ii{hw^5KULfV YY낛oRWc['ԞQqV\#D9Ҋkư8@]\#6S[6reŭmr9]/|Y;ROoax M + u |Zm)X%-`5aeU;SIe025&?TB ;ft!t&FvUTKXNe!CǍrg.Fe84wsb^t;jx\nkLo2.8X)9Z&:" hf)2iQ%&m$"I UM*|eEoku+LW)a/ º'n. g30 xtdKs(ڤFg3rFkYy_)LA69=<yRYϸ OZLG]}3VbJ-}FJ*s!ᜰ`.\9f%Ft-,ekև,gV*ck-yvͣjZ_xng#ʁF۷rWH$X8RZn97᪐71H7Dr tE*< $BchK;_Iqb6 ݇f/b9 tWcD *#<&"Iet <8ϓkZgAД|!\xƍW$0ƊbP;7UGS} EXE'wBCYIn/[wBU~d@_o W}E=^lڿ-bS}a|O]qdM#m*w22<9HD>E@أ"0r7Qm#O^n¥qi`G)Ơℯڤx;x"ilV<mgK O[U)_S zOc 5KImp3=vd€uUtBxh3 6@Sjpo|xKX_y[{d+YI )&\n:vĵ U:P># 9I(ED7}5m553~Y{#V> Hy~Ө$.ԭ~+;N3GD<&Uh+{';E]Gc^~\g 7Q_$Դig]X_fj,|m/0l\^RR S7ʼn!ϡߨ yN[/\^GL.9#v* /e^04XiuOCGY[{Sew,88k29F>I䱼+D݆Iia˯LK#w'B3Mr5WwяLHzBEIJGWWFlS-bW\.YB$ЩSMk5TA# b~6{O ΠXX ^j6ٙ#3%wާ8dGL-Gᘗ1/]7E15:3q+wg^42\.k(m*v6 \|\}O&8a$շ11sxG05e t-s ft;`y%"=°)|sK^f&zf#@r5(5ZFk!_z3z=61CR\h@tI4WvXMBŠ_9u@o>fkX퀳ȱ9Đ7hs 5?J,p͕R~-?ϭІ=w׿?Pj6\,2ij9E0Ⱥ I!-Pƿ袙Ǹa:en$tϦ0]S>Vʻ)PMo ̙>.B.q[MKP5b)D ݱ,II0gx9PkD[lWdfs_!p:מxXZ0pl?W-x[% bÿgO:5Z-HlNUqrR7m4XRh ֠`8E~hQ ˬ6ʚ^*u?c¢r' 3^T*A+wҋZ^s~Xzid7 kE];`ic:A"`;&~&4FE1+t dY 0C'|QUonoݵ7ʐ30|;oO&>E[T\N6ͣ"^Mt".flQ+3n kpYѦD'|ga킛GMPQ*cQcC ]Z9<9X;MJ0Tf,kJo1(/9Ew1ƂWw>ŶX& Ntq&#h7"XTukw[ٱ($;=JFpF6O'ln 0BL1\Uh)=pK KBG#f[GLTTs&#2l|Mp_lAthF/JB2qj b|n:@y:-;KoғHQnT#}f;ƃ2bD78|e: 9ъRf.l)$ 3V "߹tZ`xRٷ಑ qU_9$7ܗ[ sqݿ[Mҳƒ+U6O@]-2xNfX(r|Ee仳,t_V%nC|*V#H`{/sƽFP~6gnsw(Cͥ; 4`Q]PZsjn[un F̠6ֽZ=?b0~FԄ {2ȚFs{7mSꍣ%X =bD^[=t(58eb Bh"GbUjC}#lmvKĦ, AiK=k,Xß``ԱoU֯2&";=ʑPP|g˫dW,2<WDW@3u0GZpogt-i1:~I#-ĿF]Cku󙅓PYʡ=icO;@QJB>Z-X;2cEf(uƌܹ2z&XNu%U鯣$җV/ y Du1< K v/~ߚK4EC`v%3WkQZ~ 0%SNjǹg̉64`B)?n}*#-Zjio'cq>#eκO 9Ԧ+0Pcͽ1W+(+Z=8g{g X $p#RB+ݻiqȟOY6BE+b0Ǒ+=QE@!i%8D5XyW$HfAh=N + ڊpKS9`^6F /~ɗj{n ~tG/$oMﵻ|E\YJPGLKl0Y`thW8q'3>&4u_1t?LG&I,0 /ZúG2aAmAD_⾼9&Ns$P\Q:)mk`P/'?8-C!ĭ'yiwVy ~ (r;d^J3!Κ.2MrX?4+K1%ݜ61nՔSE\*朁Eu % V fvX9?QK}qV)w\(fC_n/%ok 8;s !ux%EEAzGE4ՏBDaHEEMw,d)oo3VioR]d5wlS; $ldDۊՃ_W~Z *Y!d #xЂP~e۷\ $hh@`_8OoֿӬVaSeN5Tj8*N:R1xvoxm|=:A 0wR^ta`qtCƒ-tE$*}9Im܁/6 ǃR#QY}i]r]j[u5Y316` 8Z #"T2XpmPʰәyp޸ jY'2WbI> ~"قvࠋ W\# FIyQ_PJ/:aMybڌgx].ʠ/GnJ0_5ДkCeA!ߛ#3w<x~e{V󛺄&,^`i97X}h`mcz+S2,n.o%DÔ KaG4pSAje ᣓϏq<ȯk!XtLxV0  "ԤW<޲toAJϡ9N9gsr.y˽aa '9ihm5RE!0ݫ h@Yg:Ԃ2eZ;cni/A N 0l|OeHV~IV8/ƭnmx0 [y aNdY67L%x#\)LGa;_ yv5 Ö}t_G׀5}6aPA!t=nmFɖt{MR+ bSj,lM vTU'XE\4G8<V ^ Cvg+^϶L`Gq-ur a;H@ens5ά:Iq` WbҮ + ⻜s;2=.&T/UM­5q 0Pw zW^c_Ѥ%+-Q9aܪ@Ky:c2XH^lDi^ y;"#(V«^@9ȎYNCaCF\S4&<{}=!f.2/'z((DdܡY}Vts3ls$I},a,.BgAXI^qߖO;}g [6h(Ֆvt؀r.r׼ͼ]Rnz׉:d3yq®9tIݡ8qLE<*͐%s4}yQo@„UMN,5ȰjaɆx5IQ!%n^Cc\Ghdu0gܬ}' #zz_XaTDOE.Q3İQ({l1=ÔCx|sc\X*0lc$A^u(-A(`XaPѝsiQqA45kB 1vCGwh Š8=ڐ~`Jlp1KhZ\eEݚGwd;b--$Cn tQz,|?CúMGS \vҸ}SqKS"Q3Y$ʨhb =Bوu͏h#I}ƪDj^o [.$7хoO)sk+U/H%x< Ob&WеPna|_/hf(DS'd_DMǷt^EV,8#Pxt?i3Qap $5 M< ~i,Zwn~K0x@l0|,mz&y]1'k{Ű6wsP34;{3#"\IgJd{*uh ?6C[+>u=#U2z ;p <]FN|܈KN@#.>HmI,9z2W}E+ g@.%U8wk8%R498-]%AUdn;gO5pCh|FFa: M/.S-D%b0c@=L^#Ńz 4mؙ:fm_j )c[.Zr񎗵[[4?+y EmP~frfYPl!?Ev%)ǝuךC7;ڠg 1غxPF[.gÖ87:;Iopab f&2xBZۄ~-anaLW`g{Gab%j@1#1 }ś݆:tk$j@XpD.Dg#2\v9TjYz7=:olFꏭC/_ǘncp[U~XȑȦXdI5 pQ.'DK7McGR|. o :,f\؅p/O/==zFwUS7iMP s=@lO-|Kk4V&KOS]k7y[>K^ T'7^CjBi3I q쬔/{4R\{@TD=y-..gZboi֣£Zhw(S/?1eageX:@!4?gO]F+!NޚңV<7zrB\c}E ]"8]V[]zxs+£q΂+G S%g?9Q@ze)+hfk .VUPLxX;/$;hIIyD\, qV {Y AE>EoWJь!BV4thPJ=iq+2md:ݢI.1j.C/A Ru2@L?>Ts?Ĥh@;^Lܘ<9jA#5#U/!RXl]D[7X@59PI8R> N DlOØ*8r@ }{a/F- !=E8횬f27Ca{e3iLz\~^sX2q^\1Syajq5z/~ϑ>&݌]1 Tx pbfެȔ~*5Szo!{$F`NNTry:}CvS#8 `mzw19æ[;CPg6!, vb" ;U UzJ]vP:l v)zIkFisăYqC'̖M W@ZlJ9c#[BCEVeL O@X{avѯj+>0@P+ıD>`?#8 lHL:?du yR`Lj- FBvoNvehNOn% ~YF-S$_&SH[c,ݚ8܂2.DA|ښj~ =ќ>(w{12j.3yrӤRձpDZ*UD-` pJ1.XީЦeiug|uӞʟ(BuVn ?\6 pBhI06gT|vH5k`_j-~,#sO'LCu֣-f]g\sRWe!S  EnGp 2O}eGo'A7 ch0x=NB,3Gc/b^C٢wK})Ì!~F&"*M:Sc+>H'<ǰ,36'ۂ8ӣɩI&{ pU.԰3 +,4xoO'ȣ?zR^Q*U[͹L`k3(-.ꞩK*6oY e|*T d8KAR2Wi pm&%pd9a  @D6kcHr7s?P{lY~GkZ&~U!IsF S ypxiR> .e3GNJW0qD{] v(&Iq,'Ogeop Jye`9'|ANH~u4+4qŷ8 ;U|a4 H8.O^Zv^_\X`}yܶ5>~FT-l|֠. «[wQVZ awEOn=~W\ƒyH;~jrt2(B_5K+WQNy 7y r1\4$ $d?FD1dFej3249]]=2j_3klk0iƎQDZ%^؍eLUWY):HWµ$ $^yiQTonYcڗ˧GuIOo>Zt cf8LgFHDF'MǴTVٳ"7S=h8mYdiǪ* e53)lY#Ho,6X"0|}í#WO 5Ǵ CSoy 1O)Igu^C`C9\,J=vArB2*,ٵf[|8wQyڪ>\1--GꡱzG$7ұ+#7vCN<(tL- vCwX jI-$ 7(eF[8 ۱m޽b=R naW&3,>ϲZQ3V @UT׿%PD'Ch-K~NDӹ;]#+o(6ra bluϲJkv0@eQFWVZY/J=ypB dZZU #H~VԔTTOI?v#EwJ+3!RzZb]QM:ec%HJ @c%ߔ] dyaa@zJ 7l'p9zPH~xvNO$5@=<3Xy#p1~71Qr٨<7 l)jcR:`W5,!n_fg=k 'p3LiqYS-9ujӠut!&gϻ?1%험}Lԝ/@! a[RFpAZT< &P8-좐iCaLp`qP%R3}];N@J3FZg+U}\ZSE4# o⩈=Ag55(w71*c"HVCfn1B]|7ɣ(@ <Ӊh!3vCh1ڮE9"#t=_:ںcAz"1~"J!2qs]-5q?2-m7|rn^=[ԏ3e˳z 41y]+pڄz݈^jqujW}J% "C7O}WU4 ~>WKI򙷂R=\\^v2Zt-Z{ƢRwzgg^F/)Xc+9{N#f0A6`Gw6('|_!TBsK)p~Ep$ FU[*Y2ߟJZ.mU%5 YX幅Ca$іV,T%ZO@_d 9_74 9{'Jyt#ݥ֟Qݡ#Y| ԢZ9 F> X#?޷ ,ʹGAځLe{iYhS\P{ \xXg 6:Ԏ {wqO+4[3W@+%)Iv-LW %ϣc$#MpB@)vEllcg7OVthRxJ!w5>|Yը$qWP%P]{LPv~KIj`@7h\+&"x0t: VX Fm!%.jW/˧?bXH*.t]!6#w` خF;Nù1\G60EU`T^$慌@/u#YԾGn%* \x^.Fam?҇ON?"Wfڟ#Ρpd"LmDD2J*gm|y,* ך Zh_Y_n.ߗ <&-FN!)OZY c:ΏSVD5 ,%>QJ[ vb+Wp=?kRvP>@N0Npܰa ?2٨8OBsP$ZQѲw$aePmC"Ăi .r2% 7VJp" `B4JJ4\.Gi-0<ߑcVVo!3jm`p\55 "Rl vLWpMAc+}ZE鐏$}\6RZ:>2ܵ"µn#{Ÿoq |3SW[/ kGM)[`:1H;C%Tb L829,w_ni(-K"!kwDCm^!{tAnaE&pTxs[*4KzP ELБc ; vѓUIȩl]RِU]h D%?mL'x6uWӟQm+3&`jw'\NqS,Vv(BR}]0wdѧbN p  yH逰Sأʤ( pڌvIl톼c2Aϊě,žd$o9\hT-Qu uP؆rCC֋!ޢ2ÏZtN͗(ǝ`]H<ą w^=05Wo_#K(ߋLp9LT]7o0]p:T-iXj\Ϭ _[(xGo@BDuXpNXS&lewS0ڢGɎ;Y) >"7أ.etoΕ}%#Z~'B$nHv'ڢ#!Qe-ܻV`̀hv N7k3yGcj쫇#zbT߯FSaQt39=/ # VhAs!U.BT(0cV ;RI9$__#Bc5Zn{T5%L0,pi/g#}\{?A(}!y>Rqb1[K|!:8JG)Б32)FЌN(tg FMFs\l|"8ABsM;|Q [-q"[㕛鞗ٞŖ4NbDE*9 I 7^?2ѳh]zE'W3~=\ /'ji!c0s~6 &}É"3*Tg|g+,ʢ~UJ5xan1ع*:/R?ڑ, yQFZyGu.pN ')=`]PM)tK^[.U)-知uk۝_x0 r1ۘ1rSjL@]^|]0S7%ZnR DDɕFjrߒ+Zgw8!PguUW{oT*EAm{Ã*iȰm bF(1eP .;v瘜֬|w">\hdZC.>҉ُ=^WY#=UcLM/oBPJNS8Pb<&7hd B #Uwp;%rКv:&DU`f9Bcۨ"0/:4#rC9]X퉅T3_'AOndO~MmOB7ѣ߶`LXS1u)yF*c5j>պ4[nhuRcVw仗J9BxQ"g+BQ۬v7|h$PRb~$Crpg-Of$+۟Û2!(0%X"¦Y^@"'8hKQ yG?Us "wpf蠟"ا .4Yzs[ |iZb;aXJ6NA U2H¼ Fcr6T&}S\,6kEG,;?x!Àm}+ ̐ @.j N[^> 06{' bV:TΟ8dX 폴mTu0^[i{Dc1ױY.NBNgL2Gza&kl/0J>=*1+*dEj[C(j^ ZPNΥHKE^e:,˗ޜW''ݫ!FCڪڍW0VA[fmî{QR̻bӢx Sgj,HȪLkoYMDž![4/V4Y{ItڟW-.2Q ` Ljb NV)8&sOrA铬1XhuP8:FJQ<8 ŽYMH# H-1#~ ME697A`eIuZInH+-hFo[xG$A+17=Q R7b!qI}[&) 0TCol$JƩZ@k._m%ۀo2?yBoZ`)JGpq ȶr]{,*E< 0O |J'2AsMGx|ƓYh\S}mf#LjGĩ\{KIAl) >iEKriA+qKE?%tfyٸ[`j@kM%RNYY[줪FqB0)Tu{tX͑ (Ɇ|,QOXqzdmQ(ڟ%mBfca#QY+* v9WڀR?TEqM\-cͫ׽,p^6ȣK42Qh FWZqnulۦ|+lO2O\0Qpjs#ZEsM-*FV$ zώln7(@ ̓yڢZZr-+%޳ v˼p=x[g7ea )to=CllITA87-^鎔G;=5|*zWDb?mtF8od[t6eT-/B-ȳ"c@A):AICE_eD%9A1X0SCYuK!/-eY,9ʩsto{HfyuHT.T)ve[U4 YC73Ű%N𵼋^.c\Aw9.dwI[GЋXyQZLG?*Yё/|I ͬ'Խt7@ jYC1%@g_6n>KAG !ڥn* @H_[}j&#@pllr=tP~u-2sn!B> > r(&UжEwk(;jAQF1Y[8bҕDK˯l{hCҕcNu|Bə(eQ#KUC R ]9^B/xɟQDÚ_H[ 8Չ56vP_ER٢|_I63!G]+;7-0W'u7M)lXQu{ԭWtZ5)XgtdG405]B9/@Cـ&?ugj*,M*h9 *Za ekjn*{iUTHyA)O;rEa|с$#|6/ye>xЊZ1Ԝ8[JLiUQIBUHv-g#] ak[tMT-S#->5i3i_O¨,0M* 5+D鄀V ڣAݛ&*KfH)0%p\*Ұz7dlui`@v,q1Uaz(\锆M>4]k{&nl2ǘf wxIV4Xmw ܯQ֗Ԡ::NJU_'Gk*7zזn)99' 4Q >.DSέ[:fy @{g F^i ѩ~҄"jņTD*Ԁ3O\TێT4d~F٬[Fk3+U{D2rάpnU#Ӿ:\sɎ}ߺ^N7X(hm"Ou6jgzڗ.4ڔG](N*7,aNnE~3N?r+}hRD|p\`ڞC&xc$ՀKeFP& Nx[D {k(UB3 OQs 2^cSlc2yZ+~#ot< ƍ˗٨:z|#nΣՈg=d ^ Gw#ĖK~v_ΔGv[3{tݯ/bJDDy}M-xuHKʢL/F.HQ4wժNN#O^ eo4->0n-"5}PJʾ]4`%EƏoMDå8zз' 4-H)m+У {UYjDA&mϭߖ"$g*7%_EzŸ: +o-~nc]"7/DhQަyjfC'}07O* uva;݄[ ,>p;`60g^O6ȊyV}x>+%Q̚UWӰgng)!@G5=e$j%x. HS?’VAqR]Koz fmFqwCRxwX-c`bȔC}Sz/[ P!$"2+B7pZPW%p;^Gs!wJ+},#JIHAMX*<@SD؂IM"MLtxX\IaDb!LZNQͼ>KY#:ᲜOFU4sOE 1!n34=<V$Ҫ |2p;i7}Щ7[[ Bwrnja4ߤӲI1@|xU ){I6*,`l82Y[QQp:׮i &! I 8t\532^T +l!u>:@l]c"7i:u 8H9M-WyiT;Rؑ@?U%Nղ>$NpCpmsJӴqâS-!a νC:l2w}UiؿAnѪ77^yiknz+]K&VX%jʧ-)GGq t5ٓovl3o${kD @+ ud;zHk׈ )pUPGe zlu[L"JvQ b4k>3@E-R댕t9 Ѳwb\!݌W~v񻜥C;DO #d=D 1?F87=#ɤuWws,'mr(߫.A"~Erh6]Jz,;5c-af?fln֑ ̂'ؖ?(\My=bV3F)ۑ9GwĪF< KY0H?oM!dOFi^E!2K%oQ ZV#h_z9^΄=&sk ­MU?L!9fL$$P.袏V T߽4ez>w& &rhH)]2BqY'f&/ڨ O_^ cXCW yDOʈ|Q#FtUV\r1@24.M f<ǝ5)_fj?z޽Lq."4JU14Oѝ:r0\jY|ꧣBJ5"]x)hZ/׆6R+shIITHR5ӗQ]mEs.؛ 6X5h=UӨޖW?=ƙRޣ,r" j1ijA$c{H#ؚ$:W%(lQsQcR qv1bGVC .b{ncG=4aUu ."Y>[3-!#I{O&<+(8!2dW&vu䂷/ut=q_a? Y9bV엄yF*O]q׭fL"( ]r}}7%3T?riK c mS$ǝGxn]eK{Spûj,s`"Vy# =919@` K @ndn33Qe`QHW`>鷼l20mؼllLNrɩyW?93͖x8̹vÞSsk'!cS#̨ S0!)#b6>W~a+&+w[a-ƲV{!ZDp$;%uTUxl+Z҅\N6RD΍>z($#|*Edf2&Rz98wh^*;ڀGڵ-r'${w+\̀myGOq=pndcs,O1??6>4r6"Ck5ڰUv5UNS0a_m`'?gنu6 s_{/ڇQ9Xl>nD` WqFvmi 6eRԶM_]~@.WQVJyCZ1СxHhE(@ǹ` U, #dQˀ&[Fv 3WI͋{J72]7}Pسԟ,i5r"z"`B@{=XvK~Ϲ.!<*`X$̰JpDdu12yjԴVהk??׏%^XPa!L3]?Y=q\F MJ^ a*sG{oWk4ӌoR`Fw!?CɄڭMu?lG`۩gdՠXkjH[V2͠>̲M2 (:3zn4"ԏkw#) ,aGϻ]ް@kc)\CZ]YmyϼWJNSq򆻩wjN ~RPr/.Q;eb!6xw|ѣk_S@\1n-{XAg 96,<3$EUnJNU:8`O#c 4HsJ>`  d>N?X]HzM_j@yYBϫ~ !+2A9X[\fb-FNC?LwaxuWYu]fՐ҈?gJ`^P .lRZRP!&JF/# c摎u60u4"O3Q{hmfsQeɴ\rkҧ ^MI{\D!}:܃s F'~9' @3ˋr|NbP ^#5I$s.M0exm`4 ՛{̈bIa4@2tҺ*,dwI),I bYP4,ϿM,ƍ>]4=X7Pz4RN_CRbTE *㬝o.VeD@'6>wH8ep?wrģH<0{kèk?W#*!eP~'m"-=_? 1:z~2j*K{e$2PyX:C<>'|zC%0_g}KH. )!'# Pg(D Teg6̚T )jI±ǡQڭk_@}u{ę ,#Z*?*&yc@9@ 8$2Xd̻Bݢ?M`|u}$fTV5+lbM"N}\s2Nt%O+*VxϿ.o>Hm_$㊂>HX ȸ&soBrIZҠ$E%kߧ%/J.uUZ[ <H T# o߷b՛w*ԤFu(I)&%5gbQo%]rchktl1O hϿ&_"\SorJRXlx{~ $@ I}֯Y-|$_l1;O'K[8U!?6 5A Xzv7p͏{+_^ nHbž&G{Y"&dw{L~SjrnWZBHh٥`^U;QVCb AaE)?B)CLx sꟛFh:'[ջ@fPy c>ui2;4ϑjȱ+9Y60(x.QàfÞрk83M#"VÊBĖ(̍-.8dxŗ? /dZOb2hQſ*jO!M7fP czߏYCMJb~jvX"xCxYDŘXhJwo" A벯#4p;-H'l(yMH:i^T\20_ԃ]%:p w\tɹ٧mw5WE 1?\Մ*T!Uumc,) P ;H[2H>GNc]N ѳ{FA<"EԻ.ЖVݤT=BanKG~jBYa'7_del PZ[C;ufc? 65T>g!'' -x#Lċ(:+`ĴnV!/4XUFFFak< b'w`R@Q1ks+ V(®Ԓ`lsx*]X/gtEtWxz4#J$OY3" ɿ Pa5IHHDǕ#9\\ Yv Rx t²0҆CyH]0?JSEs7\{sjdq M=r5;2Z3< jskx-uFKҕ\ Gv6b%$Д+& JͺΚHcCh.HSrB/ bRC3) 1SCۥ픺y}^^ c)Rنسh lwlUw•jsܤkn#WfWa]8|&U !V1V/  0 #/dGJoeg@ o'6'*)"R)_{cRMrr<b?m:nv2AlBM)ǿ 81L"٥p>-ljd3Hs8P"Ԩ+|Er$>j:STt+[Y\ȖC~Au']O7dq:fɄا{Xy!-|ۃcޑ-fm)ӓ!Nx;TgH9gQ̒"9ME2 7i]YXR}h68 .#C͢nwO1 /1xy23s8׭rN5/s+94mcp9F2auu4<o)~".כ9;Uc (Wnߊ4&FaiR4s3\0_qF&"]IzlFtvobqh1iw^+iI鑁-,T@DHbз88=Egl,}L*bə~-_CYGG6xBWG69X=\iH'--3?rX{X@{DR"O+;Fָ9r1hh0@MwW^ 5>7f nmT\N/Ĉh=5fa.q+Xf{I"059,ƠބÂ/ K @ȸf77_bO" #T..!?>D|+gdbט=qŤtLרL& L*  4 ٷ$V5Hˇon(d$](E2;X=n3n)7ǁ.A-&? Lr?'52PSQp FaVhfmxEl7)֮:X> v\У%Mhpb@C}1(˜}fmۃKa$b S+_Pm@V6, y7tXӄe9} MAL_;}&fm%/-Y^1NuUET> v 5*_kUʑ@gMgIRio,/׵`+)<{ R*%(4(xfF#޴uɚ#"XyA{oLRlzSku(;UP4J$MQ5Zrqb_ɛrqabVV J)WS_+M`kJWMF;ylH]O= ZI7@x< #S~&UAy<_򢆻 |Sj{XMa@{g#_3Hy̯јflzB=k6_iJ>Io(8WS6!qe+ubnu9m Ibص3Vos,`-ZWG3ي"lSҮ9eI!V<]JD3,-4"鶵J$)"#)d]pŠBTJ|m,4r9LEI8qb*Ms: ]y **`mmocZ׬ABr`t'Vwh8 huQBNbqGN.fusjZbMqLLQhHY(dBѐ`cUK9B&4p݃jcGl>]QKIQ_+ݠf&6/_{ccݒHX3js*~ABoZO$<,a%kη(T=\7<6FM-V;:{a݊:iG._K%9SԆ/iY[aEɯEdTlf|:29 K4HE:%]ttԑ JB5|F.@Avs|sԇҍi2jvk: ufx@7 6ڌ$/c)XYD<\nEQUv>i`5[#rي3,N0 X,N?]1ӂr= ;ϯ:nm+*?2%G$/"4 V tػHEͷ#9 I.*+  ZN;K'϶ q8pYAT }u!@0BĂo 1}Kоayjn;%CL+ Jkz+)4-Ӗ֊v%ICv6>2}wqm)3}h94y󬗇(^K]9n(<p?@jҫćkdFd:SQAo\GL>yiuQZE+I.,0Bd^U\e&U؄1RTy `ri,1ry~2>MMgCVie\2e wJݱkY7TmEwivx(sP.-Fo[ JiƢj$qZP+@Qj.>͒T8|rSۂ&WΕj`' +wR|e=H[^ ` =~JhdW+,QM`#-v!;$Ǯz|dek)=/D#+WM$^W/RwXx覉Z |f#vB |qIRqfhrgkB _mJ0=(IӾ˧0aaβnuJ<; M3Z&'uݠPpƚ'@'u yNL1pg$veSaiCE?+0:ɟ_;m ^3>[;%=TEX'm\MM/PBzo%e5_Ow{!ɨ"8g.Eu-{QqRXb.N5ҥX`'XZdlR4pcp:aKn M`#G&^dЂ>;*e ]$Iag[;WB߼`LZ+e'O'tQA, ߠVCaw *=/AդN8ή]vu3\: (-MI" J`;jϦF2 =PY?c-0p JUbUA.09.%a$Hg+aiM,c2M!@ >ˢo40m_OC;Bɿ|.Naq/dZ3`+l 9qB# u9K/ٴ< N/?[ZE87zGu||0*fmPdkP(r8|8ij#8M'㣤ky?)*DuR\wԓ4N$=X=s 뭗j7䣐,&!tΪTQTU POnЈ&VfEVYY}t$hrj~\Q$aH[NW~ tn?O/BYrj52+)RlmEȐȶGG].:k<NBV簖b9f3=_fj<*E6X?WuQPXFة;ڮ)ЋO<pg[WX T Le;DĕݨQ9QyY \%&0CQU V4j{v(<Mej1w\`FOnu)IgȽ 0Z"_&m'32ACZXvc d'ZӻD~m3.MH grGϿjܬ, ;7irm+DŽWPT)49x{-ߠ$̛Zr3Sx # vљ%D~.ﲌ4m~,Y/]sw. -}fҘCeoй@ak`3z]M-n$ 1(~8L1chRip4&Ȋ2l8 8'cٟ ?ܯnk젷G[xcf qM4X>Tk+t_HR!Tԙ<j^Sd祔X;Lv$q2%:{z쁺_u @r/)j8*,.Y홈N`&XzgEئHDrձn]b6@q;ipR͸:>7={ʒ0hpTjj8}&q :$aF˹fG Hܖ !͌ F5|믈 vP#~ΔIG`:@iqeW6)$1%&EGɹn o`v M!VS5\,¢#s8<ѧ;Oy.%RA4j\).jCzcM}yP1[mBAPR |E#gQý"ҸF %&y?H 5 - m=jT,ҵ6-&qX QuSyv~XM*B硰$cGb(˜3dg9Y(g>n“#VL.1X/7#*zq- B; Bz+E`隷>JII^EVp&@jDǡN.6+tƔ}L0z\.J]g.rqF߇l'Be=A3 vq)SuY@Vo!7]/~ea`Zʲv[Ȑr,4/D8OP*mG̏)[~ЦS:Zܽ6tk0-p" B_fZO4۸᦮›+TwO2R6Q|#TʎvrBdM=&;c JL>eb 3jM,(0tyƣ؄-aK]x ` ~CX)쇶rn)42;.̏?W ?h DwJxH}fG4뤩?,.ۑYA210C]5gJN|GOJ㺜%UL׷:Jɓrp+pKSֽh'"qn=R24EW* BG#(۬.܇^Y^ݿxK]W hr9XӤ>Pz&w[5 YBꎏW2"-5kͅxO6m1|o %3o`K5ZXHEXMg3nv F!.rmwMd\)i_oDZ./C=_.&X,v92S\Md}v{faep(Bڴ!]UWYܖw 1{6($gSAp]GRfpTmA [$k@VX* rUF$*+Lz۩4&E03y5<X) %xbo.*JC>: b U۱7TBnyp'NU]lօoE d5{v(S4W/Tw`86I}~As.D>E>?1Ff|UZ^`(~T93>u,֦ Ddr25"豹QCUj@iJvsc}56t_2CF,a)J^LP[δ9Ӧ d [iW,n3Sygs?Ωu7ŜRߢi*[&3'`"v A aDb*H+Y#Q)OS{w@.M`o9%T!,^|L7 A#Pr~f&IuqQU<ƦS=i'aBF ο, uO5)ʼn/eS.&ǹ=]@N.x̾H&4V]HW|"BAeF#E${'ƓdIbs:5IoD^XS[]ӆ@><1)6ʨ5*I!Ac- '\{C.t q@fk5;#$ywWfK1@ܬcs0N*3Tnk:ÏDማ_-UP/%v;hio`^9buW (rV`>H\ZNXj:FS^yN>>tN1{<Ͷ0(;VyDf^U1ԝ5=ÖQ 3E0܊t|_@e샬20VcOTXfF4Uzqs^-u/+d }C,g-(2%cW*`vhDpB `R !צbם=Ѐq5!L`Ķk75|jb3 g2a 3}uaէ ")aO U d6 pAACyY#S\ gj[\-9jEr+VgެCBU{pC}"\tY୊Z]ݗ'EO!8LkJف›N{jbvDʹmm7g{+2tNRiP$@|r3V?ɒ}ĝc45;*Աg7AíɔWy 볺Vp/$04Z52I&rj}퇧'6kҭm)!(y# qBY>-2ʪP`Vfj9  a'K"=5C't/@ v2frfibxAuݚ@`7&QC{t[RΖ! ҳ[y8c3$XP]A~t7ؓVXf zxf"OEPvhֳ>T9,[ul kÂȧ=؀bXKFbjr2y$y_5$<;eFATLE׮&pXpD5 Tӳ`lbQɼY?n-cT7_-,RzRq,lE,eHF' )ϊZJaԪ?WԋTR{& 6Rz~s¿co]{~Q[g=y ($4V,3y[$?cY}J}!V\oUd? Us)s( CǂH",EUs]05 r,4*nWf"+nwA6^ޣ%Im6Wm#5 : wx oq)Z݁XCl4d>-t>"FMqUyZ593T(ZRo!bӴٛ}IEPM'@PIU7}soQi܌DvDm3v/W8RLo3?)ا}8xsx3y6 cfanü56qtןYہ86G}%Q0d~r惃Kf >3z-B'"Pw<['Һ)>' (VXP 5Vj˹3E͵Üm`U&[G;k"a.D@}#T^ͩya%JH׈:&=Q);nh&>jêly,I]Jj/8l_nR~29%h-wm8? Ul ɶwJSmjNe_>ن@`A9~82~5C9Ռa6"ϷD!By5Ú~SA1ƀS6'$T"\RDzDc;N+K 0XHª.[EK&I&snW R jVDV՘B`[K}+>)hwfqoTo;m1[|]-YP9i@ e1((3WX\A$’3}8,9|6/c&}4Bճ8}UazGyXpȌjŽ175:j4A ̬.6զ*xY7 ,࡮t Dbh7@U=%[{bX/1j云n^ט[$0|˟`њE+'N60C)1:i >1ʺd:־N5trܴaqAÌԝ<=@O^gR]fhɘT$:ݐ?bܨZk])EbeI;A>l>N`ZMD}{ !URTql5˜I$pHωeޅ[ . a*QӢf64]bHmЂ :bD6پSB`7\5h|^()aDt6{4?ԤP7A'= ypԋp0JQ2t~=XeJ_,9b1ptԅn H_C4\ȡeOvoOk;)̺]V6R_ɣY[ݷ=2h4X7 ,QR\{}*l)gkrO\ e <8/5N,KpoOmSRPC GoKw-S}i"5 ~(V핢?Vm roZq Ӹk q] w>ANE2;!T5ʓ^-`c2nwXלlХX9#%%Rr+qUqsp@70*ie gg;KL{va Ԫ~~})y$Q],-XK#4ऌ8]ɜdQ/BG8/P[i^ zA"ܭ0͢RfQx#0( 7ĐJm]\бtD~QƎ(Rz, V3/\4Ǔp+G2ib`!H$&sJl$*k?ci#*YwU"IJ]Cx6>msm(լW+d剡Ka_7 %[wLmC") z*~14Xle-FYb~jղ~T(A+ ̊ .;qy җoosrh0z;d'Z+PT_b$Nl|s:<jyUy*.vJAOg_qKC#TryX}>=ˆDH?F;ϯyW]l|)7ntOTI(H,n9;/ ުzț/2!&:Ъ3;/"}e!FZzIrgT1gg|1Vܴ]3? eL b+@Q3͟7pvD :7  8&8pmVZ½X k3\TNΎ+9Jvyj4y;d'nd&JnQljBPh\9iNac~}B䊓D0 HU@g_qv*Ũ.J[je.߭>XZ##5d)?lIobdA˦5~ZD(< yI)hhVT0-ix;dv\Tih wNZ?9Y/M'$q_P__g `LKp,FoɃ7=l(1ٷ3*[cxH`hR5Q]jRh.-ndKƻ 3WLhau?f=f9y! ͟TO>n'YvT*^b (s*n$aVy]+D2lKMߡ. j*AUXPmTvlZxǼ0J"Cĩ+X]hcԩ͂4ۈEWx _͔Y\pXG8S iWv.o\^x[EBt"p w@헻v> p@]R ɻ7 Z*BH>IWLN^C=soP@1CK^knaUU 0} j-ȳ9WJO\k-vXQYN &,A]u^@n1~.'X_I2TW[/;~ޤN-j\Ÿ:uSji3YD7~tӒ2DW:&ึx 5MƄW%rSbWNFT>FAQW %ٔ9L}mP윦ŶEWa-t5YZ*rD]Ei`4tHV־b[͕TaYL}!_SD-g(#^!pl QpYiϱZk 026.^G_-ŃdHdh'reA9uwSGH9CTSs8Pr՜ֲB_yHS:hq>sI9XMdϥ-ﶯLT O_\>؀h{CzmښF7>+NKJX[s홁\$B:0 :ZWM#dQ"_6lAt>*H突j‰P6r[8A}|Nifκ#c{g2uΠ̐ K%eY.؏/"rzACKvAzvyR NEJRBV`U'(rl+acH*DJ'#}X| ަ>iܞD]˯BFD^/Ww$cx>5UH̬&ܾTW) g^-'oD}]zH3ݯ1 \a _MaӀ;+u~b B!mhlmUT(c8_({a;aOi<jQiELƊ?2{]4rR#XkEW 'lXxEl_4Ym.帡Ɇ S h45_LRI2ra:l@I\߷uܜݑU&ѫtN1%?i#ߨeY\z<.3vi[Ю} +;fE$%2CEř A3z9'ۻ\#阇4V?<&( jELK_zZn2!E3El%ȿjCĸHif|9 =}8D`=峛&8ud@Tf*_+Mlv jrQ&`O@CKho&ΝH8;Zز x3+aM Ps;S=ڂ]4@\_)ewt {fq'vaI"hO[ԳׄVfPlR9a@Ǽӷ"/_C+뎞Xyn1vgE-Zzќ(ݑ!i3"1h7MO2ˋptRⰊ`?ލFCdM.hc}X9-6aЊHrc r[rܒO j7՟?m%4!%!zωb͉'|]ʾzAJ8 A!IyH [" @I<*~艒3y@x#a;aVe!F1^/wz".#@`IBM pf l S̯lXjFu[Gp" yU1=UЏR#\aA8E2f>12T:3eZTk"%&bkl#eK,Bw5X8}ꩥ,5M^E-0dͽgMo`~n0L qx{|l7RuF[b@JsIP@X3JRzһ""U$"_h '}{⁺~|~a Bk)YT T8Tj<FygŒwrXmNNd<4[g:2Ǩ^E//5l'K"~-ym(3OUk=eՆ͂< %#u$l(  UnkKܢ  '>K %وc/!(aN|ܩWGbfx [@˾͹n[Zyo_- E]2 馹|C'ShNFC?K9_ {r]B(Ycźyk|ƚ"0<^ yQ gDz'8GA"RC0gİpOsKɨ|B4_˥1 Ӯżk̓GL}Du/\4({<.Yj-P&ӀXэ1B |Fco=Q-E^6>B${t)/JO˸pYSo>8b4ãȤ\xGpjH أpYJdY=xցjfw E`TԳ/棏dK C|KoʫUwefNP"%FqCn{ [wTē4<[AlZz?\neG-sPbH;3썶lh n |7j 0.pSxvˤ>JKFxS|6W)HwZKxVKLDr[ye<^\,K<cY|Ҝ1>Df ?j(Y?O=b %refME@(joD6"k vNr=y"tf_,@A *~CX_ +'Ьp;"d # ug9w @@@zi"jt (zI+[L$$4֐OF5`詃 GztJw.X}]g<8ڕi~Dq$\ISh#j5nd0O{PJ#ZR0xI:(̋[Fؚu0 ` ǽi4M-x.@+*w* h.| 'rRJ(bsEbH[|n6%H `jqmҶ,eFjQuR1;k C#xU_:-H 2oӅ/Fu ڭdɞDMR648ڌ X-oýBx#hy>z V@z;^DT/ЎO.ˮ939vy=d-fʯ%?78!W3=r |x/3 N: e5P3KzV%5lT{v:V<켨!sPM$uM=^;iu2R'jK1g&t)CMYP>had4fhRy%q7x1]/6V3QWڽ"6@*.)M9T)cjSBHS,iylId7Dl+unE4QCTd(EWR?\D,;YY*ޏHRO q)(7M.tFHbfԦ_İYV&H{']t31[q%EjT₊-l'㚝]"q#r1Oj". -Ʀ<>oݛ$,oβ {)DFY;NT\WxC\! QKroEY>\|wʧ3C1-F{` Ž9v_U޷d'7`1?"v:DNȀ.,EN~?E@Wԗ*kέ[QC04Pma;xw-n#ak lndڱE$rh@>EmOohf#O-c1?TrA9I;+Z>Q3IH+P,Zji RwkW!u?>ܧ]7ݫoIlA 67/^͹$-ʋcƨxpA1,{W ub#x=jhFGNd. L1Z첏*P:X) D:WYɰŘVYk%ed"zS>wW \Sl4!uSmAoywg&~`7EnYQ<SѽK^z٣zمEp>ԐI7aTDWȄvi)$Ҁף4݊X͚uWg{ ^1δ</Ր'S5;(!<KFg,dztvH 0T+_-KieG},T8 U?'׾> hw|z^OFoصfY7/6+Rp`T8@K,G5l>t&s- P ^eu0.ϛQÕ`7g ͜c.f:V0|?gץdTRv X[DB%Iգ_(,<4lV.;Rqxvw4`S?&r ze2 HV.;o8% #+(BpJKcs.$:1+>0R{`qռ|.RZ!b,< NQ?e+_a!j#2I4T՘C[9,7=xuo1_h鄾# l֣.{D\Ա$:\Gj]U;68{9Ay,g$BS#\WQE%wG OܾBKFLC%ú);nnz2+J"9=8F)X(*'יY =5 ZS{[h=6_tv1@ևg,GnjfR)3(7􋰗24bnuz ByY`Mum r(ҾE %EfA r ģ"t?؎_WT>/qB-jmkjԠ3y4Foc5 kbs8 ]І#U/'ڙt5]FY9MR%~Me4zxI 3!zړ̷jQs%S8s L&X"KCbHITX*@zlb#̚"X)@~iv*`0rٿf9/[ZϻjSFΨ_.U ^MɌn֐~ fn#bcqvEgVIS}5(2;{ i2{{G KQ0|AY^Y*Dۧ$D7e cvun1 Nwyy{[ubj99:kr  dےO"iZk 7(TS rފu&sG fCp,qǘg0&=GR[ 0o8N8jg@D緕Yh)k~ٞ{CNRˎt𴞢tc<}]QePTűDb'P_*:TYp-bӫ_O8k4k2R {g.GUc1g[Swmo'0|GjL6uj:, %11x<"e'[f5EB"JTju,iՆϑϕR} h+M Nblq!͈bґ(Ǣ89F<5;#+.3!8YP1k{r.Ye&P#⁜aBKo]P8$96]lN8i L^3J{1;3W]ȍ)1PU翏?t1v,vxS1ߩ%  $춽B Sc}QMUby@?!ed|T#EpYac= H!ɭt/5Dbem~V!8F&2tʏLF ,׳RXW 8 wlhCT&/BRũZ=I x'%ynգ5rb?: 9!%{w?Ys?I3%$dJ6n|*j?όrB"-#@[;W:YS_$\{ 3Xvi2?9btlS'UF#F2fՒdŃt{:qg4jwxWύOS[=lIX,͛2F$|q= _Gg Af Ĕ+SL7^eX"Ǡ4AM:!+~@7g\ $O~S!Dj5^ZG=m%3Ro9\$%m&0W.g -^#jIer#'|e5`u `tk7x]ܰ+ &OwPh'f8 Myԟ` lm_d>NǠ6xtr&ѻN}g;0 5B*[9J5,WP$QنY9hz-|2<''1}䛦k !jkmW˝x#':=E<C45rPfyj470g#%1R-2)A! m?/hs%.aZ"|lx/-T;Y ($ICHDdڽ±hlka>) S>!<w9HJGRm5laNgzc 6L/vN[I;; e}-CR}u* i,%Pڇ%U C޵{5D9&sVPOovO PPK^"җX` ^Y ^qIgbd',V.'hc MgIo*q5\UD^X'szHRtᒋda_JVeW5VDfQ<>ebD֚J#{Ԥmfkz(&ӭd_RiF bڸĒڼ-~_/q.\mS=B ROrrH^mJ e OݣK/N{$BQtS#mE^r[\II)os\b\VW%_\$65Wit%)U7&IUJ$RƄfapA9mI[7 4+T7NUB2cѡYNVUa$*[Gb<Θ&pFFKwd ii:| :I֩b.(jz:A+"a 0,fU˃oMiU ԔiaUWVy7Peќm|XHUJAp5WERK$9_[vܛ+D"/y-F?{D0m:!nm7&;]^.)8u*0ghL>jBlQw0 ?k] *ie,迎W^ ʚSL(TI-@]Gd#B "`tΑ{`x'7g–I᷷q`zf ,zL1@2BQWˑ sFɒBuV"C )Kqfޫ^ ݚ6gO_x|9#1(Q'ƯpV|ubK<@vPU/XHUoşN(R9 lh*m iSg -7f]Uak8$3J6`vZU1כqirY%I3bڹB;cCm2M3Ef?6aC% s޴#y#ȱ:IO'`AxgOC)A8EZ]\R ␱v^nS%NI-x3 OY<&Wcͮ LT6 CagTLz^?}Rg5P¥ylҠ?yr0Bx%+*nRX0b^Ȅ?r=}-wE8Qi]A|Y8[Q7j+ 276wMf0gr2F"H6_방Йyu*w%Z<lg mWasxwW\2V3 ;a` P}A?_K^g RTO+R5(컫>eG+ϧS<#Dlte8L_:X}e.3CN)sKd{9`3%ƥJXY8XϡV#wG`Ș{uT=k Yh/Mp lQ-eh8~o§mUEZMftBfS-IeXdmeuO``ߠffg׶Oi3;f`T胭+WVSLui@WJ&7|mxӊ+/,t="0^~uat0YAbdG.!K[ΑVqzuJXNŹ9$ErŽdi4xi;h-kK]J޿"Za^B?82UL@OM``^UAĬxlڈrQ17y~#+!mSTIœ^&n4ƻ-+wQ#eK Ţ-_bi5IbAEoSF?וQ.nD7?\ 7y9}n-mtvE#nāBަ(u;~sl=R7"|k<'M+ъ*LwԒZZulFFVqW9_|8SGPӕqsPUܫ9JeR}?NU$ m!y{ha[D+c[l*HbJeQ.l;#wKY5Qw}Ӵk3?URw|z`%(20WV*HwW+ɮ ,wf,KSYI0L%H{2WdZ- iwC)s=$IK,ν=d5`x%wk(k|%8ߥ-wn&(=5A}#Jv$X!~z.&ơ ϮPF{rKw0hRe1y) 4Ie ʘaA;m6[2؎{З" gb6WM£0;y{}"7?96a:nk¡ZlP,h)y{T "AC~̈́Sf/>(_ZG]x{Tw6~4|\㮳R,Yyh*8F ʛ6"6^.@[G`aWMVv#qfeH^DLb{ܙ5NOc6fx+h4Q:FވW?LH]`+R}:o\%ԔM)EfvC%``~,)rOe W0cjY{dNlRXs;8FO@":QHc>EKJ&wBj;:Ŭ¯H˕8~rgjnA?;벐+˂d_1HWl[b;@-/:l౅"F%-U|GfA@b.꠭_ d'(ԏRLzl8g޷,ʕ `4VީK$3ƬY?@I[;AXrm T|jc:Ux80Si >wky7! K"(+{ н mNDXVDRs#X`ΉT{Gx.*C;EXut(`3UUVeXޢ(x}j~eg:|OF̠688}6ь]a&zFӷy 4 E"Jԃԁ[X){̤[zlȔ±2WjtK8do~:*df;K]Nҽ9'-!)Yˡc*ed|%IQ I;,dQ%{$#xwmYm!xHN9ȫA ˪t"EPW)(hWR4* ]271Zg"Qd$;L*#^a`]'kb #eAlovuӖD& yUlHhq C|v>v31A0.dQ*N&-2@J8i_FƋ5 ,W1j&_Wg tu[ D3fjEڍU#9 cHߥ.=0 NYةErȀHQˬ o7r>9c[lKNϑ"sMkvKǑ,1EE1h i hQhw .WǧT%2P^N_·F*M=&U#l6vK<tӅw~u -?Q޵9GJvh$x Wuh=ukf[K޼̹T1ˤ,q(|0 ᧈ1/'iݑ(,NL?N*^xDbS3j R=WEf.xyˏ8-ۍLY5"Yk_"ST_ڶȡ RVr$9-i@Xi3WP1MAl3O])jX.KyEщ D7u52 ^v(vXL_ᦡڄ@M E5}I%ϥawa5Fq> sњLԙV@-t?UE졼Hf '{u%Z +tBX m~,-b턊iPQ& R>/jVn+@Q ډx&JefɂX!&,i<E`r.7^ᐫ2Z[qROxAlRp0wІol=#A L~ST&Gp/5~khU:'G|{º׬,lj#n-fR=K3&1sQ#T?lӢk49[)N.XR\ |>Lj-,!f Sђ[jܽ܋<9ON1K|@_~Q= r_Sdl$M[Px?"tͤ% 93&UGjEg˛YrR篥5+oq#*:WX4;%e6] *ܵgS9Цh' W!ğ(7c}PwfdjQLUHVz4~iǧE%BqBvdB`vcAZqb|sC٩5}3T62DSP #dPg[Q:V'K\=iMeJߓ˟9^쫵׊fmh,C#r0=OgfEo R{WhiDJ\%k`#(p-Oڲ1~)R+'ڝ>^::h[}"޿ kwRpPp %R{0Z,Q ȳbޜf9t~*`TqM-VL0 $ː{~3 H )o^o8VTj$695ZYȖ.RCe B쓖E%헒 X-~/۸PYvK/Y5aR'} Y"Թ}Hȉ^H#UK˗o;SB ;$?vN#Bd XU ؅EzbjίRo9 c<chҟvj͐8!:nVקlgN"eUMց`ռVS3{S(`boGT7 dUt]5mVnmAJuQ3QGr%<ԗ_#u:/AFy7=v p\J)M|Ai|i/CC>d1lr4v#sڈ^0nse(6Ǻo6 Ht xgz뜚}{UG* =#V e]7ٕC-W]Uxwz .=iv~wn.iC.9"w aKFn.$ q6C'5}ib9daII^X*[\ Wx "xÆkM7ՙ|4[kIE-XQ P]HĸB1L>qh_e :wU.BW GLFzOt8倶;rFE9$t] kvY["H%P312ɉt+IS 5E*.$Ab;=6v ]ן7Fgw]Wm|D\3|O0^/asb2q_5jz?/]PE"=̡rHJe!15GNB`u돮V=b[r:<>;5U̘8~,4򔶞Ks(5n*X-aO7h,Y[5`\((5 ylE wa1[pUiktcYsQeKcBXT[XNK$kF ҫиJyyuƻ$jQ<喬-l(q2t~ޚ4Kk=]ЎRX}9Yzv02C٩Ēma NKd}h_$y(8,L;%6 榹čqI-Qs JzJh"Ler_ɒ|Gf>ν}.CWA+c>!k*E2 Jj4<;vvˊh5Ih @Y4$4V.P!*Y}!VqːR,7Ģ#`+:]hǀ0Px4scɿTE# ֋9K pc:jH`!'A@A xyZD*&lqk=OcՖlsPʕK)r7]4hM wD-C7`"`G qQ)в%c@t&}; ќݚ: rVt>W?=+Ƣ28!TUT!"~G;REԛ+_6НHϮw5XRM,CMQґ]~ p"3Gս=4Uڣ|bj/8} Mo^f>`'(ް BAb?Gt'oɧޣFrV%J᷺\ )0ӽ(NLpHcK)>6ĵ;dlݳ_Ѿ'1(CK<(:8HCFLj1orh_XmN'P5a6}/< {=݊B2<u3dE0q-y2jIM/,zէ)'oi0y ̒h?eE.91h+}Aկfj ]{4y'|8,o10f0ŗ6Za~|m 푪4-&_CM v7vA}.-Q<p i( o03*F#|.ߒ/ψ٫'0_?Q荪]o{(y~\"IHxcJ@W"uiv }od=).r8jlM5َy# ]B27 cr˂y>وxR]f'!С߁5tGX sאAdcVC۶f!L!C_hKX1]%~ y(ÿddդ'ad2_+ u:`.yxV݈dΉwTdoIwmmHDX0Z`彽KRN٦ R)~ BGRLc_$ZhR- sbGPӞW5ƨOi79OD*&f34V# t):#ʘy$t$cR%[{Gbͣz8íB'Df -hbDPO-'h]<.)0Q$w,gjQ܄Ԅ~_}H½4"\?qZ vY~mUU-Qp&ZqBk˟3,,< ş|@> ak̀[k^)JNWlA>D}F^f"3 w nP #ځqW{~p* da^VZB]bSVt2 (5>6`n\n<일?tEAUYmm5 _q$BIW}uhN6N4zbΧnXme[#uhuRB\=s4P`OVX6nBBG1]oH]%\:ݱ0`(g]N?܉Q}t۞1. bi23l fpF*Vor'1DwÍl7|9QByMTѥq089jE($OȽ ]~LBIyZ5RDE ҊmIqY_oݏ](*ObNŭ*΍jM/p: -akMpc{DxRbחMJ(Dͦjuro5cմ] ע06>,zp/vKKMZ X%tR|YD-jDw2947h6b0Ue;a70頧twZw} 4|t[ȹ=TF5'\$m$]}/N ouv7)vOZ7I7!p?5u;IU*}ұW7^6x1]N'Mn)p`fIҢfb! b/a& !t4G/mmP1d?kB V 8'ZOv'"tF("k:>< ok OkP+5r?IdgJGJ4,5_ ?̼$N:o1,+:(]A.~@8!)Wۈ.&B8ڑ4mr|+=pZ ;Ku\)%v|+CRw [r&Qu-֘(]>'+rN[ȵ*?3&pIQ@},w?9 DWr9Zt^5\0ِ+`A%"e1o`qn=vw9,PD'] doU8a9 /'oNHѩaEB0|P=!|3BTl8 ^JlH__Q> 7&Bp}qi1* k~p3ij\eai Bx\6.G^hpCΞ_$px萕 V741vj%=Q8(qV:` X7%d;IӯZqT)_4d?rTn1_p[Kdu:s$j#6~:{vzK *}9xY o剳KRYV@HI3!n^/T AiBX)1?cJ-; QgxWݰ7寿tp _oocN0uR_AbwL۵Lsvݵ[Q2Bbq<- <`n-5;AT h GhYష҈KL}9oe6UWrN  h1N? YgyNE)rhp9L̺>x6zIcj8M5°F/&TH9}K\c#-Zµ3 +3E K0@*I%?Fq{r- )%N a'2+2 yu|j[*L=vFc_d-4AXVAD#KFa"MWZVҴN[F~2\1l|_aUҝzFZp 8?4{7u*J1!P"`e,;JrVBӜ3Xr785q\j(mO收=<{ɤf;鸇C?ڜO><2  em򗅄ФO|2&,Ekyslmtϧ&h¦ƺFz; [3, J)#CwZv$jV.<8Br"?V>O {8Fln$'+jDl褫&g 1&Rrkʦ?ܦ󾕥fB}CB?vC&/U.izS^yЎF"J Oo@)ƒ#lus٧yl' ╖B 9TOt):$޶wѱV c4 -Ds;[mx,cŌOp ,=V~41BͰaf-`9+lѫ1rVWnjްx7x/g휬#[$!Z</YI{ͦ,^({żM:Pd@0q8esi*\`hYׂ;|.qu6(7\68 H}8|]~%/h9V/Rr[b~%Y+"fվUjz~#O?(;j-rN84m 6&HݙWI/fT˙iCT%-tKQw!j@w9']c>ʮ+cy 614䤬ޞ1%y+YTT,C*0[fXݺbE ߦmp#p~*0`~jVRV5NJd8stzTo'NwwA/d8ZwOĶ;H5=YZ,~3Qjr*2 7DEqQq~Ѡ}Y\\9,]TzΚM~ĭBbYTGT% ,e대ĘvNE0/zY=U;_q)O?;z{8tN>겋a|m3|54Û? N< ToѮ4la1 { jMʞlepƢUO?!u=ܽ NB[ht, ey\|A,z` XT0v[OE\aM;!ɓ5l>aI&.zMj_Gr wD) u;i40Y'%V3o:n{£ , y-96 ߆'"!(& ~21 +h>i@ǩt8,З~Vy+{ȝ-8WAM1 \>7# g!x⢄;Y{̕ifxh2y?G12b h`FܝC|2DWKew l }AL"%{~16 n P)BOՈ $PNGzT4sȰ4*[i[뿤'ܓ4٬Hlgg=zfz "Al]vÜZm y*b+- ؤ}ۣ ORF>̖6v_Th*S;0"J%{ Iˉ3_ 7ݮ7KO0lj=l-¾A`-0r_Y:ŇAgltOc\Ο;WFK4*i+eZ0׺zh0:u5{y^&mž倓eiyI.bEceM5,1xS(.f,{S;wtAa[ "/ 1!V.S~aj3pH3">,ü63Brblй,Y1O,jS'ny3Bh?ʏrEcXA:D*cji dťHm6-G lA&z&&R!4K*eO}532Np$~oS25u\Kֻ^+'F,ށGaGI\zL ! R=֎+S8ў!%4^FiXݢˤ?xnwի?(GÆ}Elժ)ʤ*tҔZW Ni"C i> }=jJ_C l]"Y@4_}rK~8eȖ?&}_G(/yi1 &au 2[$=33!W _DN͖'ϗ;RZ?ܫqߎ5ٱ=[{Ǎ|QlCVwraZ4`OZ14QQ|;!*h}G0u[*[EOZ3J9YuVp42޹S9̴v& cmz,3y|`%[#;`I?R>+^f?3!m@ϕ7CKRR6*'eK;{9I-V7/s3ssirvYzɖ;oD=X$.:UMm y[ owbpn|cALJܳFoH`$.;قݠ > 6kuW$HR5娾2=^*Kg -B tt׏D^iД1jQyh hx Z;5eh@#5C4r\f% H {^}2e`~u2-jr.Z9LbzIf՛عHSC\2RKXThڳ9wF&CiW.~h# Jt# y2Q`-R0u!y ;dyk%D8ۣiw2gyd#mS(fd;lq2ο愗Pu-/"X']\)>;(C߻"ҺnWj4S2ZӗȜEbϯL^He éjrB"o2)5Gۦ&WCq"ժ"0wOAaq%E5y&#/51d_}#&fb]qW4UĈJPf[L^*)='qvr*Yp#CzOmվ2獖@Ew8sSuߠ"F2#:5xg¦DT ^-ve8'SW8~hIZAc7 T$1k=ϩ!3`0q,B u_;4 <3J Q4yCPɀ9/Df%VhQWe+ w)]xG"H@l)회HJ0Mv?1S"$P0 ȰD?ٷ"MjaZc/&šMo#vP3Dj =58z8Ji{]$0* ≋m2u8Z[䝓AҨ>@][u< f_x S '< ymkn>]ԩxZBe$>_tO7\'0WCM6G5^.8:beP|NU+( &oz%@IJ^r:e1bC"x.:OvxFb鄿; ' S?(I@/QW2K+Vn wC}Vkyzj+"m`%1kƻ7ռ:'5EV،?1|}24|Vf(@UJ!OrljbE-]a۲fwчZeݸ$r+9'6K(}B|tm 7q(СÊ`x'h'3Mͷ.Qk 7&t'׫ᤅEYm@vl-@p{#j6IHQ O+} 8|2{KӦ|߾W$Y.Rlߚƨ=(654_ka9o_gm2us#z.qxBrϯAŶ(UHrǝk1MHXٞ [@n+ݿt5v6Q^ 0 gM{]e #(IUAߊ -uƒB(|?4A+ɛp϶\vg=1U4 9hhH&T='eW B˺,Q_90+Y`!~8?.nqWnNq _h7/jN`7²RtZnYv.5ʭ~j"{T0$Y]pA_2j,)?7Ion?KݿN,A$h aÒsR8]8dU%IyR!) oCKjMn(kHd$$N!FT|V.iÏo"Vo5kn=/X7z1b0S5S4@< ">6eG|7S8 k5 qjůap@feŵzҿ' P("qgg8.]0ׄ7+ܼ< Yy GK& 9S\Uf>zOz~: ڥ_˗+Fɤ.f_vPM~Җ$d^(5},;<cǿ>!dBVȟ wA (!S<(,dzl8*Rt6xnLgA!b?2xEov#{47ٟzapN* )2E.K=tl~dIrŭmm԰u>$^)W2#%}fsVסN kN"0zY}/ZQJ2^3B&C>00id}*zb"`SqP'Z]-]I Ȇ3k?Jvb8/Fž[A>qEfLQ ``Տ:rPmuڔi~$'90-w-WL󝷶ڴq iAL!>ŵ)3 Rt}RM4qϮ}` p9^e(1acoJq{Y|b(m s2ߺ4B (@c#ڭj.ꩯU{l8#?Ocz.L*ymC ֘3"Qt)}Id2[o^z兩VG+-񌦱+9FÐfneur|dM$.qo Op,twfŇ& ]_--4q"4kC%h$U*0$L,Rsd~?s+.c-5En\lP /g{е}S2 s,M i_=3c巩RCܰQR^Oj`5Y{hдd v}:*_t_l VpM~[fH@1^㻅*EɘA+VASQG\eA-l;"Ll2(Di8.X?MV@^էjnZu{տmq3yw7ҶC쒳kI%*)43;(:)<7ACxUмyپ>4Wd$hњO H܇)Qw679.݆Mbҵ޿Q vj[J5cW,FCB_praU :P揀$h`3HIS: -/lUO~W>ol$ W:c͐YNC;&{};v;ұ: ~đMab?鉫#o. O=+&<&=4rHi+t42:ۢZVj^d+xks0!-EwZof_nWuK=|(pM ˒cOC2*H-h-Aʦ9 EƧѿkv:H6a ba 3'^P@Iö5֖b:Vq&@(N fqB ߿oiH!%j/^-9fIt8gҌd%{*Z`2Tzo~gY 3/ӄJt:9`]lNL֚U cS*{qS" s2.=xFZ3(}"U>,c|v$=Ӵ$whSaE"/r$~x.JjP/ݽ;mwŵUg%kJ[6l&O~e5AVU\g= ΰq".,8ae0qN:hiǓ o:], IY2Qw+h6 82Jk+Ѳj9n۸歄}QrSP޻/[aMQKͪh0%^JLDR'@cAbec]H>e$Z҈[ezHNZm$Z`2ŕt5QRVR"p=%iHy2 F76ޮ? 5VNyg[oz?OaU< <7SNd}␨ ZQ%'lZEF&]/WnrӳC']5oC+R A @[s9f Nu 8꘯7`i.`~7u, xv+$yyj}l$D>Yf.ȳc [:ӚIARm~ԓVPo;hό{ Q{ >Ti'(s ^=WUB v߀L*$JV̌(g`:8%c|o%ui[5|vx?UL+'eЏo ǵ.<)T5;wN}:ܽ׌^qm`^Ǔi4CvE6 MN3|ѭ`]OG}&k)\ ȑ"/񸰴i1tSh"9p{V|KrCBJdeɋ g;7_ sfrt~#N`c2=ٓ6$ɧq($ʧJ>pu^0Vs3/"=DݠWa闀כ~ u$Pqɑf1tcMkWmc ┼'W7w~,As=uͤ!mB%Hm ` d|x~f75 Xrij6$[FMND7wFEҖ`JѲY Ptm,QobݿkߡX#@s|pD?ʹ9pAX,Sf k[tRMe*qeP 8!2U.H'xCG%Z S^\d3:(ޠH#9 ɠ9C@TxXZz*oӺDdJ='&݂&> ¥=M}m1Mh7ȨI.M0*HpC=/Tr]ng<7d}Ӧrre6cGb+^ŮC_rVBZ4Zt>>%bКnQkD{R} a"DtlUli|HWN A UiV*We/n\#_Mݘ psR'綀Ѽպu"K8\^BOF|$Q0H\|8 Z'ubGh"d5R"ثN8%4*J?rx4`1v:xU!ۈjӭ?;Rl qZm5罌(?@rwaaWqԟv\vim`[R0V [TKzDHn_ˇ/^|0}apDUq2xsgsط%3ei|LVT:.lAEZ8{s4{.yo__%S\ >~fcڡX ~y/PⒸnV!]\=*u9cY; Ds}:i=FX*>RZ;܆Z~Ţ EF%┑1qOXp`r5V]{u"lQr}|&"dT p:ݠW> _`\>%'ٓRՁp,Yct *,U.wcB61GFm٫[-uл$DKW6_.7v7D@2P>> .d @/)?R%Wn LVeCةV6'j> ż !^K "JcW!>czG[oYQ^x ɘ! iŬ]nDG,3p~)JYmx S!u|?20>Rs1uBY4D큕5 -gDcjɻȨ2KؗC3}8ὤ|wuERy0nYѩ|(P5.e\QYY͗kΟN$ٙ`]&n @,9bZ䛕%R2Us8[XK nt z)+YcI:^BFN$8 F骘F104ViSN %;ȆvH_m#*eF>`& Q=f '&)K< 7S`գ:[qyL? s1!H|٫WrAK_Gd=S1C2[higx'@冸߂%9r4 X.q]@Hg㙷zϗ|'@iXyG~% (\XYabCUi+YQ5Qvu=S+{Hl Df >[{Ui=AzbI3fy@̤@'A";Lo+߬8ߵPtNXxCX3Sb.0o#TpG^bRZVEsA:7"%b橁*+*[@aZg/4S 'M_42bQ !;,fAoBRRx 7/%r\QiԤLjgࠌbK-m6Z`xJN MaѦO"ͤo byZus9)F9f#J/lD*9#9*%?҇/98Olݨ>9W2ǡ܈:&: uʤQk G%d*osxֿHjT#tBtS_[M7_Iw= ahMQBH'4 Ɠ=B 6#6S#bu_,Fk{'[Ln6I9#4e?;9`:me1LFs>={x&@]t=9mK?x #ñ5GC@p+&*$ hK6mב>r% !xFy馍 깱bߪz^w&[ZkdmrI K8 ibPH}US$ܯqݢ `5ײOs-,*w.isGs Nw@ `N·&^~]\DmYa2_oqqa`!I*Vy]3QxX0l8r9 5@bT-WG f6cܬ:쿓 $;^L>ޛe\-$mdߤܰ :'E@:a )^!OyoQaCC 4cz*` $us 40!u.8_E͗Ӑ+Œ6\BNGpw~Кf /S"5)*׽bsȪ==v 5s哫"qZ0@r?FZL[8=`SmY r8m/+@8 v{uc ZQ?iFVc4z~~4לs/yM . jUcf> P-&ephm޶Z12٫+=OAZ[#^ՓCqr(D{0$R/˴ԅ?“ ?H~h~hS4ݮjepG3cj tX@-%W%8Z(B M??G,W"h):RA=*na^%¨a":*hmH2<Ռ"⥿< BD+=}N-9M:~j C~פjr]DQ*1ؾ6rf-oRH[ ȋEM81#. rܿax`>\._9j6ufo+Y!, )KF͒NA٭I+5LD]0Ec1/K !!ul<5dCQֹ>Ez;jޞ'qCCB,;E\2nʁ21NG)8*Q V%X8V8TU(@jtsՋHs*cTo//8<69؁j@kKʍvgt70MD˳)Wm?0m+"Z72Ix*Rz ܅l3ұqrdt%9V4`\Jn Nf³`p#ӗPbHeǗFz-Z7G:W-)SȨ+fɤ{'8΀_Z J *n14 sE, .<>{=]88^?ۙ8ҳopC8t*LC$Dy^u~U%}gh)JUd.<xRH/UʘV3SLtfvx@1Xn=䢺)riK9ϜQS>#+(.츴>VZs.v ZhJV ~ޮ,BmW5 HiI6i/^,$,h*T.v"m|hH5Gyam%V!D%<#xB8fv_πԄ9GVӕL9:6O:sDp(\ '/¹<2f@R`Z[Q oOmYyGZ.{$"8| }KViAVɬ_dPJgV 5&G:T*S+M}J|AM}QgAnN7p\<5>[UB,;ժ|K7F"R@$O _b}JiRW}-½m/ O _ѭkם3t'ih^ٰF>F/?Rwv2@BVʛ 6t.ac,52D䪗R1iLǂ<" ѐSwkgp^-բ!+tjoǨرeWZC4njcB.nrx}%rڦõs%S~GΉS(h#kO(hEE>(u6E}$C3!}Ғ: jQ_=Ծw!:Y2 DAO 睥)1xm5Dn AW(SMKCN"=TKB`ЦpJA8"~ꤸ#2:ؾ*g4P)hCknyvFWn53ȁ4sMܳmg38Yߎc(kG lY}#@CYoWul{F Qy;`B/ U)>cpXxCXE {JT\(&IkNf? OE%*#+$}姂w^<$GL޺RFtO٣лVb9#[ >%LT{Ulyu' ܳsALXS$lYlKY>$'S7Ys}Xt*-p{>NxG">UAWWp LW|Zppr[AgH]2TVe}m]kYY+H:05#<>A9@ Kk]) bh_9HeEx(o&ioV4J1T\3VXPn8OMm ܽ4j\䪦tԤ=x'*oۀ)KuJ R?PrXOLkbRG+벅F" $Ne$H>Oie47mɲrU'i ՜H'Ot :?ITfjL݇q@|wh:=30p\Ϯ˸ B=~h";Ǐ;c ol02TVAIZDUٯYHl IuDHD_Z";rOkO\WycDPzѱ\G;lՑ%Ap֠8.8M DlRz gl|?W'63-xed7iaHAXuWw#4W45VbH6lT̜0I+B,&)JELO+NauYpuQmrre/]Ytif_JrW.,\HIOzi#ɭFK8`p`5钦-C(Q ytPTxw~rcAԞP^g:Esa45\bCH+c8 V,kLFqSgKT;o[it\=E sAڇ0疁ϋ -@ߓ>,wil=_1.J~N* lFŭ} Ya! U|bUA$叠a{ L(})JJP K#pUX41?TKtB"uR;u/_#im^ x `o,ևk9x/'9-;EǙ'm,4 ɖ|lbKD2m ſ 4p{~@qX(Y j< KCb+8˙ +`j</oŁgJ(ļ9|j.Y6›lB6A,{U0W 7,oMfZ!<̬ $,I4:y Z2lTL1$sG,>"H t3xGl™&4%3 i[&^}}tCTW{8YA u C":[t;YM=G4<+5)O˿Cl&}e6C,/i f(S!m)q%i}f(w#x,TmŢJG_$!tz&dʋQCB]=..^rݶ5DfB<%Qod'T *f~7cu t1HXs 1L2I 9 DDËaӠ\&%^z6&@FЁbP_0@z&CY)%|XA6}_ū#e":Wa3HB!=9l^Hk-~ͳQok5_^6֡,?uƔ BC3QtOX.8d\%x#qoSw pS'ᄇLflT$Ⱥ؇DVܮ;¢#+[0># =f߱TUD"lF#-{YA@,lyO?4%pzy|yDe߀-cvKhxʾR09j Q؏SNsʣb|ӆKm3%u3Ze@Ҭ`,N2zx̆GQj y,w*EƜ}tjhXg#r'kIi eP"b2FDs2i]!VL]x?=?b]JA?dilM~|t^Vc8ʐp]WE{W6s@087Dr!?`)As(ǹz0,9 -N}WsӹLOsV:xyVTotkqi8djgyP0hWOYKv.7j_ibM d@䖍Q?GmD2 #KP_DnΜ5ާCF/]cL9҂$b%H$K`tfܧZR` AKpW?@>$Y=#Fmӵbz]L2*vdj^2AE"yuQ#e4x΄COBм<SUY΀z.%xG&+ 4>,X37d'e^D}`:(tu`ֿAes%d_^A- T`oϽMpb<}F?Vs;8F cZpW)٪?EK-x ?.ؾ5h^i0$5HS(RCq{/&.[4mk ^ a IYTf,?05n "Y.~s>5AX> ^YTxNhjvspZ~t)GCR攇*c#7}<)NqN֜o%51?B7mVˤn;.5`Hh$ &(Rf}76jBF3NS@SBT`I)v\6 =Pd*k!Ӊ9cX.F? z&KTr݋bF]9)[h )68>aB6 ̙ (ҥ+)X] #nyu~v:ĄѠΊ00 N.ŽH%H"KD#drJQ+xY\U"!L8LZTbӉ&ixniYf%bW-R5DCqPy4b)>9e| °s}xI^g_!;r s{  xLĊ#2,sW (Bh-\Fޗޱj,cw%jo$܄ ZTOJ?s& mZ6ZaAPwD*M~3ă+IwV*LSEnָbs!-9ÜU7M294#cB]nސF.>u%!M2Q!@;(_H+^o+X]A5v5v׼Kkֈ++pcn\ApWE a-jY%bgZL~VAgM|D.я7\tbM7(b&QK&~>=<b -## &pHv*T=iYW% TvљGgIw2p5sB"N¹mAK">_v_4h崇St]!4]N]jẇaۙ$m"#xeޢ\9 7`+ɰʿW;VXcm-+E\O0OF'_fXDqޟFiۯF%QU NTC8gAZ84D3N1~;֑@]en)usa8vQx=@ ^So%UF쑘$5O(a6q0·rXF (a cAOπ2$8XN 3b]OWiUTȩ[@c9b7-yӲZWbA}2 1B $MQ?(%fwroA}J$7R:&`:+0BGWyfb7;4} !85 }VocTb(q0rҬ0NR /ZSYz@cLʸz8jߌ#u٬ zL5dIw"Pc f)!s@EiԂ~nTjOe dnc#Y~Ҵ(m&cKZmkbA݁TmR;1P}}wX,yY'5a%Tg=Q]1 l|2(S&~0~^T{:V3db?,.z9t[5אT]u[ct?#Ζe¢ םtÌ_]i ͎F(V ~Do !L-*&4FԸ崹Sf.2T3H`pFa%=ā#:bϜffF#@'x?l&Hb=EmRKwL%;` aR2o /yTv gzq:c.Caf6,1bNӍn#xjuXNm59thJSrl 2z TNLP p{T*ԋ0Rt̆`d7TV*q[i-Y96L kUPpq3tߌUvHˤ]n Ϸ,O\?bwB^/KQ>$ +,>$[M𢾷 ݓshO)Ĥ``ȧvd6C&Gm6IQU)U V<:a{|ؚ Z's v:r>qϙhN \3fI#L ;[ogc% ` %k['Ù.Ux}o  q@y=R| }$-iG5M=2ٷGp{Da-q7&G_I `E_G~@@7nU,X컩)6; "yA #$ ͡O%Irel gDndm: oPHPZ9v( 2PO/!؝#k@a:П%)|\Ǟ~sX<iskyb2<@7'@ҐZvlvWnY,'3}K sڙ p *dp-%mcga#xtI*F*&>KpՍMRp߰q7MZ󩰶w@y!FpbZEz~1?5bt wdrwLWȅ<='w%/',Zvp!HwX)Cg:n~9LFPepL1V(F_royPZLmvMF2O d[N*6[:]τǎ.7b,#xD}@9GO9WYS ^^M YBz.I b/Jُ<?J8 kU2§]ek&{W8zЈ0bjz/ag|}FG'ǝ0M~ %l'e*,!2~f'yUؠe1W^eKE-XTH;"g:]"%?TwZgQcj`^E\ Uc%rz1Odͼ7UTdoYIUyfԿOѭ2x\ecp tNN2,@4lg "gzDbf((~>@_t{{'"\OwpV{= Sң5XI3W*,}X#uNC5wFYXQ6(g"`PJAXsg lt˚y4>ld gr=Ua=nߑOs2k/`w~HymBsk:yΜ4pFdZmwj ԣu[z;CK$u`4g>0hLCA2].훹} .HTSHfhь`!Y]`'.u 0(Jw) -<8":<ƹ/R;(i%aDI |+&.XaXN#> S Q,iPنȤr34( =$HЃ~*=%=vo㗒f̭v& cȡ3~|ĥ[#A k @u){XEznuBEb*`D|hD?g.-+bI^V9  oA"ܮ*+}Ņ)qu Ѱo fa$TtdEtDq#4:Ԇ;J)3uW[0k[ů/3)9& *$%>;˥4j+mGtx&9MeWJEd7ut;@2e;6j[cHVMw)ַ&h1J5WSеiN@I7-]S TwfL%iQt߹nfdu\blH*r{ޭ4zl@Ln{(US=jxNHrLo ֟J@M!mla+>RElwTbA^+W܆rqQE]K褖%JQz3!+8VIWZ;#n%Six & &\ _ LWclo!ŽľLfELĂ! wz_wtA죝.F_9oX_DU73;9>.EGD*ODO qwsނ#jpVRf>]D!T!r&ҕ%BNJtk;uG =ʣ!:;`eG2V[ؖ5mέ xW42Y \;H"% >C-wt\.o 8xhsCTIF?u3IBZ3=e!!a9ziyA n>Q"z?bN_vݽmޖZX T)đfYD!8\ `-o~&@GVG[T !SE. w A j)x6U#TW (;׎vqrn+<;^JYG}R'91$SL}= O|]ܴa;$[=\"vġ&/zg,Ȟ5wNü v/$GN~U0Y" S *CCJ9g|܎Sm!c$8:r ZYRFMc١xchK{٥_ 5G@Wo._]A^V aZ$;o(%k|M1QQmKk{ME[ܜ?s٣wi~YB&o>g+[T0 dvE9]Ia- >w'6o["oUWJV[_ m@]H: aez|:VY1: m"XJx G: gXnܿ~С„XL5'pjK$X_4 ݑHh,@xi֤JFaJ&\LZdN1{T330b~4FG!-=d0-jįZCq鷦aw%OyWoQٴr@w:㰙\?<~уxf|BT0LX@SE f慿i5reN|9}^:zZSf6Ĭ5Y 0p\)hӄa0vM mH!<0[В&>+A7}wUafw(d[fzk^$v OS֨`m'mzͿ@Rxlr8Es-v^H9cgFŇ6jqh+z[Vec#T,{oGzʻVfGd\?()"ZP3Gqݹ\w4첞hPgr!qM;#Y]>`aVڡ9'A+\ҥ jy*d*\ʍ^FuͭTp,[x(51'59X̯g1b8 2=zJJX D_> X:GIӯkហmCh4aur1cF裙e' PK:t׽wqv~?_j0u*wj n[&v7C P&6gN8ٞlԧ/Ciʶ{ߗ  C=^m>qfO.Pu!o/橈 kCk F 6ڻN;b1Q¢~^;^RrX VH"1k:l M_q]"adFk}ur\lMx~ܚ~QVنF jwc1P Zl-šQy7Fa4ֻCw8W mj9?j1X=S_^۰F&_HBgcfd@ =]e}%P[DӣR̊vQ`-PP~,h^<6\Hv(iU+QMp~F]p*:RxZ.DXqfBfO.+bBf\ X,XR?Rxj bLa]\x1l}j\_I4I0Uʹm}E4Pi?IbD=:f'r4ΛPNoK ىmUEZ4}* a3+WCe*fݹG<߾8_xPmÂϥډ痓'%9@W^(*+\6 ) Mn3]AnLI !KF` eu{Z* l?&t*L\ٺdGv% i&82HR*ƙ4L.-|ݻV kC rZO;}"C˂DS% $\7>kDo[):,Z8 3w#k~ 9}=($k)0Yb3˩ DsEn:9_Sߎ0O}UwǓCIr6 V+#X=ܤ?1[Xl*H"q+RL8'pC3{$܏-]aiGYHFf%䏭tTjT1%zAY[i3)5tS}CŁ~~|bushDsDZ6Vc6,ZU|ЙȮ %?`Kٳx/IV=ˑ,1u(v2txJT^5QřWS$"%2#&Qng$}̧P -p(]5]=v-^(' k⺝UKK1|j=nȒڀS6 zV4WĚ g˶EIA8d[<Hs_ ʞvs2Ul" gch~* Nس=a`Q( < ^j*0?ՅOǔ~P}CD%O^kDe ~n,PGYʔjԃa4 *}9&`{}V|%ceq^:P}2 I#-xV[9_. "$䴻\ D)_EG hL%R)Fͷ|C|$} _ea8Egk_ ;;84F%ZI- |A@\1L4"^f3285?>͎Đ0jAM %VX>D_ٜ_țr4ZYO(K+|7AYohő~w Xy>b̝܈n$@v=! L:^s*]>w(wnH[-)V"6j&sAJͯYA_Z~,nK='N")[D&#m,ye󉬺KŸ1:RwAך8,}F{ d|2# I<>8$bY# s>V2A 0.ֆ/La,mF'aAq@}.{ Aid\(g[)άˆ>)LHX(~Y(.͚ZwMBկՁL|S e]]chjm=5}ղ[  i|A(Rl3e,錄룂1&h, uGd@s!*ţԘ Md'\+&5qԪm2GnL:9%R!8,m!"oɲ*\t$2G>{LG/xꋿV%ECwwF}! cL5+t;c~.YM\JqI8vgws՜жrx]pt`ȡAzh=>ÔUɟ_ #ˍF=+ۂNF$ 1Y)0^cݗjS&;9xaY;AEvqShNr2n†jn̚]*G\FYs/ӡ"jR81 Yg#Ib88xܫMچ\<H^?\]t ]qI'diJ|T:iUWƔМMB^ džͺ؅ 㨔4ьXkpXu <l? [ iU;c7AjbN1 6c;JKy R["{Xӫ$ [jUIU_99t@LzS ),i)N><)DLz6uφɌ[%5 7]u Ma&m4d)bgR`19fqaC`a b¥e ߌ[̢*کwe!jTS-QðC:"y'7fv_dF=GdR %IJ^SӴ~&gu+.2Ħ+digBw33h[XA[ʠ' Y~Yk PE*J"WgXzY27S~/f-NsbcO-:Ѫ;t"xp:`bfK,$%7p==ՈlSe`VQF"tФx8wYέn2ϻ_EuSe%$.lWjH5P6m5'yp2uVݛ=8VgP=|{iPH1ot^T+(MMF>8UsGZ<汢 ɠCeN2e̪kɲ Ʃ BrERh;iKRN( eAo﬋P Vsh]@FsT;^ߍǵ{u$oCJyt5!(j _.k& ')ٜxD 9n+ CM' +3UR6vf_ݲRAwkM<:Y(},\ LZ5.Ku{@mruWtW]:\Nk߱3{lc ԝB.(n +}$~^ ^jFvv{E4*ِ$;~(`qSulWsSޥ]Ib'/ Ih}iQ?;{󺫹@12µZN^vL9+ `` f't#, mvSjoŴ$J|URh Aw5dR,=S/6)V.Իy+ƴə_##F3y4߰$Լ [}0q \83 aIǗ֌3/ &ON" wv;G"jyU &K^DD\qH,b^̞D { VsÛBA0imS宏+hGbLK%7;`A?n'戶΀3Hx?G {( 8OZ,jeLω5'Qd IOdЛn4n~(+muϸj6j ͵]"x3q0ʠH9<(7@fUȉƮ*Lym1`-qUdJӸ1iKW~kc.!@!&Hn٭y'БD`)~"zB.\=,̏7zˉG[~ߣ2Y1e0E4DVJ@v[RQ<ߜF֨i`! px?b eӽ`s(°iDA (E3!#+1(B>(2WI(yOI#y WFϑm ~^E3@C)(ܑ{NP' vZSh| |ݣ &=(3+_aW+؃N'bmӯ n<teP/a~N%ګ059خ0GhVg8En 'j7a}K[ѩ"xg_ VuɜyRE/Cw%q9aEU6 Etv0Q2[xwk6KNNOcZyO&~=97 d!>eM7^AteNNdŐ1B~9l>5gbt7ekaIRK^JoaD/yD Z6p6V l+rsVx }m诪r+O]5i54n;C7Zf 8M)DYjZlTF@CQA>XH9v,!Q"f p'Tz"^Fw!,ewI޲4I-B= "E6W->"[8a8֏ dxYcMQ5)#|iDK=3|^M|n?fY29WnQEhR/! Y*pO:fuWupr$b+TQ@VCq'hV &@ 9)=[Wk=e]5h\!`,gE,|^!iCUyʜ4~3mnxWCnD#(] )7BLSh{Y"UI5r*uXn:G\(^ QrQOW=K` ҁLN J:%ϼ(#iI$lb))ۓ[.H bB2e9Óu:I*\tK0T[(N jٓVu|TuXNE> 1چɐoW?d)|4NG4~/IS) s$_{DYHB& LeI*%Z? ! AkP@с&)%20:o1B3s!ae!}jK{Ͱ,*}[tڗ?Sb;bԅIQZ% Zk0˛l~)msY"|`0!}ΒQ"|>WEO\+kOБ(Uv}z|>G- 8%$xD B XmxLi_'],A]Pj E}"%22CONJx̄v&4@" 1S_8mQ V,sXxWI7V'a@{!A d^Y[ "iY̔73Cɬ 3ObCn;[n0)i= nU$z < 7bH+{#4fr9şH2+_zj B DZ"担dѢ46i0n5Һ&N, ݄עXUH v_{m?e2Ӯ+0o˝=hn@[7ow=8d[U(SXEH&{⑸rrg el?1ZmD.>IQu!(C^º "n#l'TwYʚ;66*C]&v. rB뷓b( h7>éd /n:uAQ {3FG\!jL="!WG "q=F8uL :""oR^|!{K[ūt D6YGOH~a%)'CVMAW-iKOt>t՚Smدw NO Ҵ$叇z FGi$] `<~ ' yǸ`v|f3=7DJvqcT` xNLyi~*A\l4cU-ÜRj{G SכiI~rҾin^`SC)52֎cDkCDAo,gV/XueoE?6Y2ikX1 i+zB1!9Kw( W NVQ,KiK7O88g M+|zѢEXf7KF\PDr6GJa+@ oX'Asd +5׹mK:U"^Ȯ2gG5\.ق [\nOuv4<_Oz"H2kEiO$`{Pŋ uX/@jr Y.sXz 1`ZbyUuI3_ϻ¬@ U51*9Fҭ'a EKb1[J[>ɨn̸5~&T|ZkPUH://2ؗӨ{JDp8 ;R5(OGڵ##f0}ui9f=vO+Iq`N($!j,GfbMfl b{T_ 7 j}Y[y*/w,6za6YOuK9kbacbl 9˕)Ƕz٣΄2H>@qavɝ&Ve|=v|(, bc<3{: K47;k,*dNIrfJFAINqjd4GN7*AoܔE\..+0II_~)JOMV@DJTyi} kVȞ><zH9R#/EmےH"9z*\څO$܈s'5c%uӶA["ذq$ETY0Rv,zF_fϚp7_T3Vqі2A^- FWB?D5LDY8A홤KTPs8%ejϩ[йJn{sB4 [MZf)~8h%]sdd2"a /ST:0ii-3 8x̹#F\]szAߊJ9|/La9{*뿡5SbҼ$.$~7l y9A\,9?즡JRǛ= !b|4|]nD (#腂T;ÓM(4<}U$ϫ >9>w,h|&>*>nmX\R>BJs<oJpXp"FΈ`nREFv->İbq1Ex|0#} p;1^3`^h'/ԇ{s&:L1)E+w*b8hAS4rjװهx*=ob'7|ڪoZ|7ӎG3ۑ7۞m@q#8pTQNNWߥG G*3Î/OIzR|lJD~UӀ-.Q<萌1gCVs-Bv_s q|Nu_*okX\lָ_洫hAkj]xNRdȂ-(}LP@* 7gMN.{݅Hxmi!#O3 bRo C3PWB&zK|W[aAn%idUxKz!~É3m 'xU>: Caur發,u9")xq Nn^\h.@ӆb=WNlXd1&!օ EۍůU&zcȹ V_'HQS+LղX ZqZaX]F2e+PH|ՓaʒES`[fo(&zeg6GZ iӊ:Id)UCğGƆCI aUA麶P1x9X)߶"!G^idmQ׉zHHsXT(KŞ.&J;Ю47+-SY(תv+pS\K'D]<W1)ۈ<"?θeR=+t; 72 G7bTK|;qI^=>:p~Ts$A+/۫[y1dTxyT'[@4cyCY cy"^IUvcS,Ki40CVsU\,A@~ āf!V~4/1QTfIý歚AL\\t*iL!B+%p\6@ƙDQ@tv yݾFu'{MO_A^A4Ɣeh.>ѻsJq_;.82ImN,%ðPxAm9™{so?g`JcKV̵ڤ(? TwȱN?FƎD7j/~ٶ054j W*mĢ`d+DuW龾nSJX*8AW*:/J^(Z2'*]7@{$f58W`PցmP6eo 76]vYufu?᩟؛agUZH=ERsYgR*጑(Ǩߏvnқ*\ RQA*`Y3!$̯XB~5|T~e'ǦȺJpE[XQgC(b3za,9ܺUz47Jp;ؓ[A fJ4Tk9[&q+0Li_lTIt4*l46I8N2񞻶qiQ49gR" ؈>\`?4'~S Ѳ/z@YՉ]spŤ@3.p>>Ռ2Rhk(WkVT:1N_gVqQZ<غpz p ,{4Z1zOq;8wE.ҹ@|ke;xH.ˡL"猨Jk'Fw/n# @'_u!҆"lwcvUŸxS@8*I /H-I{NOwfė\xˏ*bbEm Vp+l}RXU):$ndBBBy!܀|bɁO{;׵;!d/\^ e:ew3:v=ZH\5PNuS(N~S..դXui^z]T0O-LT-;ֲa-7cՌws=}_yD~Nj^y68Y"RO;!N`+O [ă[15-u{W ٽti!E)7(Q{Fx-:ߧf0/"BVZp{%;JPgeCsctq-g0g~rp'QT{c/`}&Z|#v7,X+@Mh>,/־롟`m .5$"nd);N`2s^3 0[9%d3Jމ%wF9˱)+Swƾ.$Kv0Cހ'sa[:`3~L*{4^wmH;d2Yă@|k~M(j "9ݟhT^YX(u'Zu>*wnӬğSqcx}Dž`[ ~6]}/ZvVux 7Ar.eBhȽ5jry!2\0ffJvڧ?63G7 <JP`J.PCƟ׶庘VA4 CFw[|ɺkJ B1$ 2iMGOTDCpjC [̻<9Nl2}أW>q:uoY4RI 0g3̈r1W霂dG==j'ďC*=H| YX:z+6Aƕ ə( z{{&KY"G}72d /)Bz<p Cxll#b0ut3mm?ZJˀ@A,7 HnuG:CiĶ@,qc!M9Rle"dٵ(; ";S~lzeW2J%;ѮR{ ޸tN{cQh(q,rpĒ9X G6CCG`desux!.q&=L;Vjc3 MݧG)V92k5OׯfKhŒ$=d$ *fiw*&b+ ?^/ O>)5DT284iz*a`wQP7ϩ_N#~Rֹ?zsI;u^(n6$nK+i/nH*]0 ߈~!b]w&wL!M|W+鍷@AzBpe.),jf2נdО|GR|Jx ř&5wքI EAX0=yLdy{~꣍ǽB:/y8@yȌPms`NѰZ&zlTۃ!%qp)qۿ:b-Xѱqz{eO+(IzxE=} 닅xjGm,qAf2>I(PaeU. ,O-$BSe9lLKmеq&x9*&S3LT;a.xկ?֡Fb'X#y?&3)B9æ3{,h ~O ܛ4z&{0HtdSmewoP5MP)"#wYGYVKL%jj@ V[͒ul ^tk_K{ؗ+emǧ\mb*L0MQwak4b.1yvu5-<G|R0FE\C5!0 )2"e-ͩaH[oVR5!'lNIGz+PHУ9B6H<.%H9u&5m m:7`<͍u (-}O0ׁ -)5(.'K^}|vZEE{cq0nVxN7O#ە\ I w\̉/\gAӋkL&3fPe\N̠4}b磖DIaͥYtopYG/[~ɱf߹FNX=Y cgws=<~1LC鴳Jd7I/[%jTV\\{ĴFkpTHpbfyeҩE1֘OQ2~iǕdR5]PYN4μ#DSک7يܝC8?=ZGMٔ8$KBmbι (KY ϗm@~^ֿrIP {kݯ #/0V,]ӶiP®j?(FNqOʷƁ_Jt=&7 xގ$ wfUj9"/.ϤpBnX{%WR*(\* .x`xa`m~T1gd}-G1[KQa6_ iדzJt'(=.g]njAYitoE!S^$5ZU,~$B)VR2-n\8UJtzM,J0F?+a{Н*aZk<}\IS?(OBt@ȭ~Af5U<+Nh/h[ ;%tB&?*O{l_pCbU-VJW*1$S݊enˁve IGi25kdz>\"^apǚ41e'e)9o?OmKorIOJzp3eat +>?'+P \y|ύ[G h7kI<;G48YR!JûLgkXGhF&lRP8M6-,- /:ʭiXs)[TôX_~rUtw}Ql+ZqD[֡|qy?ʟ.u9MO }!PsyX]d[3g3 >D=wpnwˢBHkl,9uE r`xɧ1B>/( PE2<9o,䯹1N-P8)=%y%ʇ72.џpA,_ k:`X$*zv&Z릱wLoc45?\kC?4ELAÚrH>QX=|,8u<3xk.7,!p&FǓ Ӷd'c((mbGR+mڨxQR3if^9 &V# Wf#vRG"Ԩ/<(Ecyi G/`͕ZX˘9lN%P05jx6ɻr'rOJ.RN}lwb w8vGp{@$f"kS=r< 9&pF L};2ڦPN͐8̚{.IqeGO]{%Z?+IMbZ 4<_B1RDXwvaۛ+* Ov'S׺c[b(I: f=g&ܖ5*D@3Z /RIlR(dx_^gQ`UYu.)_~)(!ϴ %bƺ6q:x dzB-[Pڕ&Q2"J+ 3cPhXe`$_-E?Qk'P[鯭.b\f϶R@ީY"iyڴ"?;?F[,ĉhEe`ZNz}hXQG7Ƕ+Y 5մ=aD"co{aF["_.@K{[ޔ =RܽZS[3C eFtKJ)bBjLVoQimߠ,CV\r{cO jYFv+1AJ2[}ßhPr)5%ot/4@YlFO:S4TP/"t+׻.@yAe= I9625 :{jv~4Im[&9ɓ+3z"LxC;oAi鹶t:Uq%6/ adNUYD{f ToR^=GxrAyLv_#I)#jBnJ"&HJū٧[Z =I>փlf̴ZVYWgU8NeNDh>m x@C1O)lVP$܁ejB+,70ݔ|K*z,XVq=ΟWW|ӾzВdeG\p9^0y x˭^Bzӆ Nh)h# nk`WtRo 4Pcajr{q-,U#A~|k =L\^$5:U|OTc|i7!KcrMe_.{:oƆ)[9Bo[@a%]Ԫo5y[U8dZD^nf~V6] C 754wF6|u #3$!0Sh8it8G<,]UVMlJW!)]FsXM@7ʅ#(P6w_lZ7  (!t>;ZŒ{3Px> Ms'hk>{(lT7A@=q>`n1@;hmTp F:g.aһX}zHi"pMRb<Vj|#%,ͪ#jr;ڌ/fzP둓7I~QAi0[n}0Q\;]C~j[Q⋐45nGȤB>3DkN@iBaEviRz׹a <'UpdiH$ ր_PpHCo mƛHFUH2qL-[>`*,Xg"#-\w`ΞT]&DjhLM8"w/ʝڧ>-~ ':oxZ*Ac&uduߙafl JSys^65:%?/oz*jb^я<]=8Q vA8>j9m]n1Q$&  [# JXW|V]U'`->eIGf5C̮Bul9T\ `cb2eH)ܴ'|r Q!LXL"{D\dƜBZE-'Z74ш $<&a^JaqҩTnU7O<<5_8ȉb둬AAY_YZ.=$j''cvb935\OM,SiP\"! ~{v2ͰkimŽMdլG䀌%hj zg& (Tz/brNO(Vb{@V^gjPɭJ͵Hr=fBcoCް{CNWYK"䢹[,Y)_ĽVMۻWDUvvsmWh'9O @cǓs60i|#q':y~#VCg<%.:¡՛?F# 1w pSՃa֢mV%r@6הR>0KHRu\ܼ:l*F1\/П Q iue܇;]Z,: C085Q?s@n-\MP 7ܜÐM5vo HZV)VB:^Wu"S),h=}!zEb,iG2iT(>#=r$=:*5A'Iͯm B1(O!3J\mrA+"MSO춈7F£#ose'A;GΡ*YJEyC}og?YNmT2-S]ȳ\Xl0c:3Y`Y]"ip*"rzqGfc`Ehr,NSR:=57!\X",;N,ഷ_Aaک?w؉im +DF2ZbS0-FJvx{娍 c/=H9pnޞY 6#o(s ,"dg A%410dNam%rjbVa4!/ޏJ%&_ 滦K<1z( VblލjW_SZ_.=Yj[*_ǻYLuYx74 ڡ[̌^4vҍm7'02"8Nނ5Qİ`%4/@{wS˙` *TǕ(S ɖRv_Ru; {  vU0!E q'HZqւ@i;;-GGV+`2~ʀ(0TFct0#vQ^6-T >~[ԩԷ^9T`*\̞Rۧ?gL9Yt%6rI-*\S}_s)e4Tη W S- 8U[ށXl!<;2k|te#1UJg%,mYڵ؋V)=`8 ;#2*rPnoz&2p()K2b \p!o!x2Dn[ȳ/3]6ScܥdL-ys7لziW\QTDc%%s{:h!\$s;Rbn"71HkJ`cEM>q^IҢ  ;͒9T2wrGQ*vȣi-p8`H%b?鏢͛jApQv֍ (k>k=j"V@٫>v "u[^8 * <#+=Tk K^#5:'Tƿ$rd|mUd {8ʷi bo=K"Hl*l7t0q̎K/נhGƌF'/,c/d3c0J?އyDL9afTsmB\R͠J*Y `n['IBbB<Ͻž.I#Pip,~R<5.[YorDy)zu\;_ɽǝ^< <|osl !Ug8\}w31a;"Y*h*]r2_e.}g}p-&A5.kT꭛FОtU $RYNYh h6:2s sŸ`2|cIF J=4;`y½:ìKvi-R?R? n=6JV Dἳ!o/)G'+/7T fO†?=;rQL+ݼ[)+u_S%Ok' +&iȎX:Ւ}Ab[D[(HC 嫡W&7ŰOSsŲyC=.+z> eR޽xy^ }v~Av[@^&~=CPMV9vꁪ=??p6l恂xGg R/Y%"8j(1jxgD5"۴HMʑ5^k%kLʮ 9H .ICn .:KDxd=qr$ӯki&tBAkn0%x_ƴ0!tJS:U$8^^H͌? $D9;?G[r-3­&7| k0 YZ