Botan-2.10.0-bp153.2.1 >  A `};!M@eeel` ̱m|ӤKQoFLu]~dGZ09@3X+bP:sxI-ױb7d.QsnS4h`!O<hobe48{ B&s-x`&%oeU%DbdB|-AO01 Pʂcb!墑 <;xNn#iW>R>壛ω:ã6*MŻp b7e0c11567d77eea589a59498a24ef94d8315276f47245f1b3f927febcab14d3cab8e366acf7dc328ab10301074e8b950a33db01D`};!M@eee$rcox`5*#wB+C(ԑq&P1PPe ‹҉Ym[FZ_&AJĻN\a_I+$F& ~[# ua@X*r=yƜ|+,B./h!DmδeOȜELҗUxxFSS8R^њK4PVK13hAWV 0+IQMHrq3jD[-MRڰ摗[N.QF >p>?d  .(,8<Ybo     ! $(-2TXp(898: FGHIXY$\H]L^Rb\cdienfqlsuvwPxTyXzCBotan2.10.0bp153.2.1A C++ Crypto LibraryBotan is a C++ library that provides support for many common cryptographic operations, including encryption, authentication, and X.509v3 certificates and CRLs. A wide variety of algorithms is supported, including RSA, DSA, DES, AES, MD5, and SHA-1.`}Daniel Molkentin Daniel Molkentin daniel.molkentin@suse.comdaniel.molkentin@suse.comkasimir_@outlook.dedaniel.molkentin@suse.comdaniel.molkentin@suse.comsleep_walker@opensuse.orgsleep_walker@opensuse.orgadam.majer@suse.deadam.majer@suse.desleep_walker@opensuse.orgsleep_walker@opensuse.orgi@marguerite.sui@marguerite.sumimi.vx@gmail.comdaniel.molkentin@suse.comdaniel.molkentin@suse.comvcizek@suse.comdaniel.molkentin@suse.comdaniel.molkentin@suse.compth@suse.denetsroth@opensuse.orgfaure@kde.orgmichael@stroeder.commpluskal@suse.commvyskocil@opensuse.orgnetsroth@opensuse.orgliujianfeng1994@gmail.com- Added CVE-2021-24115.patch to fix CVE-2021-24115 * Backport 4db001ca2 to 2.10 * In Botan before 2.17.3, or this backport, constant-time computations are not used for certain decoding and encoding operations (base32, base58, base64, and hex) - Dropped unneeded build requirement gmp, GNU MP was removed in 1.11.10- Update to Botan 2.10 * Bump SONAME * Warning: XMSS currently implements draft-06 which is not compatible with the final RFC 8391 specification. A PR is open to fix this, however it will break all current uses of XMSS. If you are currently using XMSS please comment at https://github.com/randombit/botan/pull/1858. Otherwise the PR will be merged and support for draft-06 will be removed starting in 2.11. * Added a new certificate store implementation that can access the MacOS keychain certificate store. (GH #1830) * Redesigned Memory_Pool class, which services allocations out of a set of pages locked into memory (using mlock/VirtualLock). It is now faster and with improved exploit mitigations. (GH #1800) * Add BMI2 implementations of SHA-512 and SHA-3 which improve performance by 25-35% on common CPUs. (GH #1815) * Unroll SHA-3 computation improving performance by 10-12% (GH #1838) * Add a Thread_Pool class. It is now possible to run the tests in multiple threads with --test-threads=N flag to select the number of threads to use. Use --test-threads=0 to run with as many CPU cores as are available on the current system. The default remains single threaded. (GH #1819) * XMSS signatures now uses a global thread pool instead of spawning new threads for each usage. This improves signature generation performance by between 10% and 60% depending on architecture and core count. (GH #1864) * Some functions related to encoding and decoding BigInts have been deprecated. (GH #1817) * Binary encoding and decoding of BigInts has been optimized by performing word-size operations when possible. (GH #1817) * Rename the exception Integrity_Failure to Invalid_Authentication_Tag to make its meaning and usage more clear. The old name remains as a typedef. (GH #1816) * Support for using Boost filesystem and MSVC’s std::filesystem have been removed, since already POSIX and Win32 versions had to be maintained for portability. (GH #1814) * Newly generated McEliece and XMSS keys now default to being encrypted using SIV mode, support for which was added in 2.8.0. Previously GCM was used by default for these algorithms. * Use arc4random on Android systems (GH #1851) * Fix the encoding of PGP-S2K iteration counts (GH #1853 #1854) * Add a facility for sandboxing the command line util. Currently FreeBSD (Capsicum) and OpenBSD (pledge) sandboxes are supported. (GH #1808) * Use if constexpr when available. * Disable building shared libs on iOS as it was broken and it is not clear shared libraries are ever useful on iOS (GH #1865) * Renamed the darwin build target to macos. This should not cause any user-visible change. (GH #1866) * Add support for using sccache to cache the Windows CI build (GH #1807) * Add --extra-cxxflags option which allows adding compilation flags without overriding the default set. (GH #1826) * Add --format= option to the hash cli which allows formatting the output as base64 or base58, default output remains hex. * Add base58_enc and base58_dec cli utils for base58 encoding/decoding. (GH #1848) * Enable getentropy by default on macOS (GH #1862) * Avoid using -momit-leaf-frame-pointer flags, since -fomit-frame-pointer is already the default with recent versions of GCC. * Fix XLC sanitizer flags. * Rename Blake2b class to BLAKE2b to match the official name. There is a typedef for compat. * Fix a bug where loading a raw Ed25519_PublicKey of incorrect length would lead to a crash. (GH #1850) * Fix a bug that caused compilation problems using CryptoNG PRNG. (GH #1832) * Extended SHAKE-128 cipher to support any key between 1 and 160 bytes, instead of only multiples of 8 bytes. * Minor HMAC optimizations. * Build fixes for GNU/Hurd. * Fix a bug that prevented generating or verifying Ed25519 signatures in the CLI (GH #1828 #1829) * Fix a compilation error when building the amalgamation outside of the original source directory when AVX2 was enabled. (GH #1812) * Fix a crash when creating the amalgamation if a header file was edited on Windows but then the amalgamation was built on Linux (GH #1763)- Update to Botan 2.9 * Bump SONAME * CVE-2018-20187 Address a side channel during ECC key generation, which used an unblinded Montgomery ladder. As a result, a timing attack can reveal information about the high bits of the secret key. * Fix bugs in TLS which caused negotiation failures when the client used an unknown signature algorithm or version (GH #1711 #1709 #1708) * Fix bug affecting GCM, EAX and ChaCha20Poly1305 where if the associated data was set after starting a message, the new AD was not reflected in the produced tag. Now with these modes setting an AD after beginning a message throws an exception. * Use a smaller sieve which improves performance of prime generation. * Fixed a bug that caused ChaCha to produce incorrect output after encrypting 256 GB. (GH #1728) * Add NEON and AltiVec implementations of ChaCha (GH #1719 #1728 #1729) * Optimize AVX2 ChaCha (GH #1730) * Many more operations in BigInt, ECC and RSA code paths are either fully const time or avoid problematic branches that could potentially be exploited in a side channel attack. (GH #1738 #1750 #1754 #1755 #1757 #1758 #1759 #1762 #1765 [#1770] #1773 #1774 #1779 #1780 #1794 #1795 #1796 #1797) * Several optimizations for BigInt and ECC, improving ECDSA performance by as much as 30%. (GH #1734 #1737 #1777 #1750 #1737 #1788) * Support recovering an ECDSA public key from a message/signature pair (GH #664 [#1784]) * Add base58 encoding/decoding functions (GH #1783) * In the command line interface, add support for reading passphrases from the terminal with echo disabled (GH #1756) * Add CT::Mask type to simplify const-time programming (GH #1751) * Add new configure options --disable-bmi2, --disable-rdrand, and - -disable-rdseed to prevent use of those instruction sets. * Add error_type and error_code functions to Exception type (GH #1744) * Now on POSIX systems posix_memalign is used instead of mmap for allocating the page-locked memory pool. This avoids issues with fork. (GH #602 #1798) * When available, use RDRAND to generate the additional data in Stateful_RNG::randomize_with_ts_input * Use vzeroall/vzeroupper intrinsics to avoid AVX2/SSE transition penalties. * Support for Visual C++ 2013 has been removed (GH #1557 #1697) * Resolve a memory leak when verifying ECDSA signatures with versions of OpenSSL before 1.1.0 (GH #1698) * Resolve a memory leak using ECDH via OpenSSL (GH #1767) * Fix an error in XTS which prohibited encrypting values which were exactly the same length as the underlying block size. Messages of this size are allowed by the standard and other XTS implementations. (GH #1706) * Resolve a bug in TSS which resulted in it using an incorrect length field in the shares. Now the correct length is encoded, but either correct or buggy lengths are accepted when decoding. (GH #1722) * Correct a bug when reducing a negative BigInt modulo a small power of 2. (GH [#1755]) * Add CLI utils for threshold secret splitting. (GH #1722) * Fix a bug introduced in 2.8.0 that caused compilation failure if using a single amalgamation file with AVX2 enabled. (GH #1700) * Add an explicit OS target for Emscripten and improve support for it. (GH #1702) * Fix small issues when building for QNX * Switch the Travis CI build to using Ubuntu 16.04 (GH #1767) * Add options to configure.py to disable generation of pkg-config file, and (for systems where pkg-config support defaults to off, like Windows), to enable generating it. (GH #1268) * Modify configure.py to accept empty lists or trailing/extra commas. (GH #1705) - Update to Botan 2.8 * Add support for using Apple CommonCrypto library for hashing (GH #1667), cipher modes (GH #1674) and block ciphers (GH #1673). * Support for negotiating TLS versions 1.0 and 1.1 is disabled in the default TLS policy. In addition, support for negotiating TLS ciphersuites using CBC or CCM mode is disabled by default. Applications which need to interop with old peers must enable these in their TLS policy object. (GH #1651) * During primality testing, use a Lucas test in addition to Miller-Rabin. It is possible to construct a composite integer which passes n Miller-Rabin tests with probability (1/4)^n. So for a incautious verifier using a small number of tests (under 16 or so) it is possible if unlikely they would accept such a composite as prime. Adding a Lucas test precludes such an attack. (GH #1636) * Add XChaCha and XChaCha20Poly1305 (GH #1640) * Add AVX2 implementations of ChaCha (GH #1662) and Serpent (GH #1660) * Add a new password hashing interface in pwdhash.h (GH #1670) * C binding improvements. Added functions to get name and supported keylengths of cipher, hash and MAC objects, support for FE1 format preserving encryption (GH #1625 #1646), functions to load and save RSA keys in PKCS #1 format (GH #1621), HOTP and TOTP algorithms, scrypt, certificate verification (GH #1647), functions to get the output length of public key operations (GH #1642), and functions for loading and serializing X25519 keys (GH #1681) * Support for building with BOTAN_MP_WORD_BITS set to 8 or 16 has been removed. * Previously SM2 had two distinct key types, one for signatures and another for encryption. They have now been merged into a single key type since in practice it seems the same key is at times used for both operations. (GH [#1637]) * The Cipher_Mode class now derives from SymmetricAlgorithm (GH #1639) * Add support for using the ARMv8 instructions for SM4 encryption (GH #1622) * The entropy source using SecRandomCopyBytes has been removed as it was redundant with other entropy sources (GH #1668) * The Python module has much better error checking and reporting, and offers new functionality such as scrypt, MPI and FPE. (GH #1643 #1646) * Fixed a bug that caused CCM to fail with an exception when used with L=8 (GH #1631 #1632) * The default bcrypt work factor has been increased from 10 to 12. * The default algorithm used in passhash9 has changed from SHA-256 to SHA-512, and the default work factor increased from 10 to 15. * In ECC private keys, include the public key data for compatibility with GnuTLS (GH #1634 #1635) * Add support for using Linux getrandom syscall to access the system PRNG. This is disabled by default, use --with-os-feature=getrandom to enable. * It is now possible to encrypt private keys using SIV mode. * The FFI function botan_privkey_load now ignores its rng argument. * Resolve a problem when building under Visual C++ 15.8 (GH #1624) * Fix a bug in XSalsa20 (192-bit Salsa nonces) where if set_iv was called twice without calling set_key, the resulting encryption was incorrect. (GH [#1640]) * Handle an error seen when verifying invalid ECDSA signatures using LibreSSL on non x86-64 platforms (GH #1627 #1628) * Fix bugs in PKCS7 and X9.23 CBC padding schemes, which would ignore the first byte in the event the padding took up the entire block. (GH #1690) * Correct bugs which would cause CFB, OCB, and GCM modes to crash when they were used in an unkeyed state. (GH #1639) * Optimizations for SM4 and Poly1305 * Avoid a cache side channel in the AES key schedule * Add pk_encrypt and pk_decrypt CLI operations * Now asn1print CLI defaults to printing context-specific fields. * Use codec_base for Base64, which matches how Base32 is implemented (GH #1597) * The cast module has been split up into cast128 and cast256 (GH #1685) * When building under Visual C++ 2013, the user must acknowledge the upcoming removal of support using the configure.py flag --ack-vc2013-deprecated (GH [#1557])- Fix version in baselibs.conf- Update to Botan 2.7 * CVE-2018-12435 Avoid a side channel in ECDSA signature generation (GH [#1604]) * Avoid a side channel in RSA key generation due to use of a non-constant time gcd algorithm. (GH #1542 #1556) * Optimize prime generation, especially improving RSA key generation. (GH [#1542]) * Make Karatsuba multiplication, Montgomery field operations, Barrett reduction and Montgomery exponentiation const time (GH #1540 #1606 #1609 [#1610]) * Optimizations for elliptic curve operations especially improving reductions and inversions modulo NIST primes (GH #1534 #1538 #1545 #1546 #1547 #1550) * Add 24 word wide Comba multiplication, improving 3072-bit RSA and DH by ~25%. (GH #1564) * Unroll Montgomery reduction for specific sizes (GH #1603) * Improved performance of signature verification in ECGDSA, ECKCDSA, SM2 and GOST by 10-15%. * XMSS optimizations (GH #1583 #1585) * Fix an error that meant XMSS would only sign half as many signatures as is allowed (GH #1582) * Add support for base32 encoding/decoding (GH #1541) * Add BMI2 optimized version of SHA-256, 40% faster on Skylake (GH #1584) * Allow the year to be up to 2200 in ASN.1 time objects. Previously this was limited to 2100. (GH #1536) * Add support for Scrypt password hashing (GH #1570) * Add support for using Scrypt for private key encryption (GH #1574) * Optimizations for DES/3DES, approx 50% faster when used in certain modes such as CBC decrypt or CTR. * XMSS signature verification did not check that the signature was of the expected length which could lead to a crash. (GH #1537) * The bcrypt variants 2b and 2y are now supported. * Support for 192-bit Suite B TLS profile is now implemented, as the 128-bit Suite B is since 2015 not allowed anymore. * Previously botan allowed GCM to be used with an empty nonce, which is not allowed by the specification. Now such nonces are rejected. * Avoid problems on Windows when compiling in Unicode mode (GH #1615 #1616) * Previously for ASN.1 encoded signatures (eg ECDSA) Botan would accept any valid BER encoding. Now only the single valid DER encoding is accepted. * Correct an error that could in rare cases cause an internal error exception when doing computations with the P-224 curve. * Optimizations to reduce allocations/copies during DER encoding and BER decoding (GH #1571 #1572 #1600) * Botan generates X.509 subject key IDs by hashing the public key with whatever hash function is being used to sign the certificate. However especially for SHA-512 this caused SKIDs that were far longer than necessary. Now all SKIDs are truncated to 192 bits. * In the test suite use mkstemp to create temporary files instead of creating them in the current working directory. (GH #1533 #1530) * It is now possible to safely override CXX when invoking make in addition to when configure.py is run. (GH #1579) * OIDs for Camellia and SM4 in CBC and GCM mode are now defined, making it possible to use this algorithms for private key encryption. * Avoid creating symlinks to the shared object on OpenBSD (#1535) * The factor command runs much faster on larger inputs now. * Support for Windows Phone/UWP was deprecated starting in 2.5. This deprecation has been reversed as it seems UWP is still actively used. (GH [#1586] #1587) * Support for Visual C++ 2013 is deprecated, and will be removed in Jan 2019. * Added support for GCC’s –sysroot option to configure.py for cross-compiling.- fixed to build on armv6 and armv7- Update to Botan 2.6 * CVE-2018-9860 Fix a bug decrypting TLS CBC ciphertexts which could for a malformed ciphertext cause the decryptor to read and HMAC an additional 64K bytes of data which is not part of the record. This could cause a crash if the read went into unmapped memory. No information leak or out of bounds write occurs. * Add support for OAEP labels (GH #1508) * RSA signing is about 15% faster (GH #1523) and RSA verification is about 50% faster. * Add exponent blinding to RSA (GH #1523) * Add Cipher_Mode::create and AEAD_Mode::create (GH #1527) * Fix bug in TLS server introduced in 2.5 which caused connection to fail if the client offered any signature algorithm not known to the server (for example RSA/SHA-224). * Fix a bug in inline asm that would with GCC 7.3 cause incorrect computations and an infinite loop during the tests. (GH #1524 #1529)- Update to Botan 2.5 * Fix error in certificate wildcard matching (CVE-2018-9127), where a wildcard cert for b*.example.com would be accepted as a match for any host with name *b*.example.com (GH #1519) * Add support for RSA-PSS signatures in TLS (GH #1285) * Ed25519 certificates are now supported (GH #1501) * Many optimizations in ECC operations. ECDSA signatures are 8-10 times faster. ECDSA verification is about twice as fast. ECDH key agreement is 3-4 times faster. (GH #1457 #1478) * Implement product scanning Montgomery reduction, which improves Diffie-Hellman and RSA performance by 10 to 20% on most platforms. (GH [#1472]) * DSA signing and verification performance has improved by 30-50%. * Add a new Credentials_Manager callback that specifies which CAs the server has indicated it trusts (GH #1395 fixing #1261) * Add new TLS::Callbacks methods that allow creating or removing extensions, as well as examining extensions sent by the peer (GH #1394 #1186) * Add new TLS::Callbacks methods that allow an application to negotiate use of custom elliptic curves. (GH #1448) * Add ability to create custom elliptic curves (GH #1441 #1444) * Add support for POWER8 AES instructions (GH #1459 #1393 #1206) * Fix DSA/ECDSA handling of hashes longer than the group order (GH #1502 [#986]) * The default encoding of ECC public keys has changed from compressed to uncompressed point representation. This improves compatability with some common software packages including Golang’s standard library. (GH #1480 [#1483]) * It is now possible to create DNs with custom components. (GH #1490 #1492) * It is now possible to specify the serial number of created certificates, instead of using the default 128-bit random integer. (GH #1489 #1491) * Change DL_Group and EC_Group to store their data as shared_ptr for fast copying. Also both classes precompute additional useful values (eg for modular reductions). (GH #1435 #1454) * Make it possible for PKCS10 requests to include custom extensions. This also makes it possible to use muliple SubjectAlternativeNames of a single type in a request, which was previously not possible. (GH #1429 #1428) * Add new optimized interface for FE1 format preserving encryption. By caching a number of values computed in the course of the FPE calculation, it provides a 6-7x speedup versus the old API. (GH #1469) * Add DSA and ElGamal keygen functions to FFI (#1426) * Add Pipe::prepend_filter to replace Pipe::prepend (GH #1402) * Fix a memory leak in the OpenSSL block cipher integration, introduced in * 2.2.0 * Use an improved algorithm for generating safe primes which is several tens of times faster. Also, fix a bug in the prime sieving algorithm which caused standard prime generation (like for RSA keys) to be slower than necessary. (GH #1413 #1411) * Correct the return value of PK_Encryptor::maximum_input_size which reported a much too small value (GH #1410) * Remove use of CPU specific optimization flags, instead the user should set these via CXXFLAGS if desired. (GH #1392) * Resolve an issue that would cause a crash in the tests if they were run on a machine without SSE2/NEON/VMX instructions. (GH #1495) * The Python module now tries to load DLLs from a list of names and uses the first one which successfully loads and indicates it supports the desired API level. (GH #1497) * Various minor optimizations for SHA-3 (GH #1433 #1434) * The output of botan --help has been improved (GH #1387) * Add --der-format flag to command line utils, making it possible verify DSA/ECDSA signatures generated by OpenSSL command line (GH #1409) * Add support for --library-suffix option to configure.py (GH #1405 #1404) * Use feature flags to enable/disable system specific code (GH #1378) * Add --msvc-runtime option to allow using static runtime (GH #1499 #210) * Add –enable-sanitizers= option to allow specifying which sanitizers to enable. The existing --with-sanitizers option just enables some default set which is known to work with the minimum required compiler versions. * Use either rst2man or rst2man.py for generating man page as distributions differ on where this program is installed (GH #1516) * The threefish module has been renamed threefish_512 since that is the algorithm it provides. (GH #1477) * The Perl XS based wrapper has been removed, as it was unmaintained and broken. (GH #1412) * The sqlite3 encryption patch under contrib has been removed. It is still maintained by the original author at https://github.com/OlivierJG/botansqlite3- drop explicit package requirements - split binary package and documentation from dynamic library package and make documentation package noarch - merge back Botan2 package to Botan with changelog history - drop Botan patches aarch64-support.patch - doesn't seem to be required anymore Botan-fix_install_paths.patch - doesn't seem to be required no-cpuid-header.patch - SLE11 not target anymore Botan-fix_pkgconfig.patch - this seem to be wrong Botan-no-buildtime.patch - not needed anymore dont-set-mach-value.diff - doesn't apply, unclear and undocumented why it is there Botan-inttypes.patch - not required Botan-ull_constants.patch.bz2 - no reason anymore- change group of libbotan-%{version_suffix} to 'System/Libraries' as requested on review- Don't drop -fstack-clash-protection for openSUSE 42.3 - we just need the Update repository present.- Rename libbotan-devel to libbotan2-devel. We can't have clashing packages in the archive because Botan1 and Botan2 provide the same -devel binary. Botan2 is also no API compatible with Botan.- fix expected version after bump in baselibs.conf too- fix unknown flag -fstack-clash-protection for openSUSE 42.3 - rename to Botan2 - drop Botan2-INT_MAX.patch as not needed anymore - Bump to libbotan 2.4 Changes and new features: * Several build improvements requested by downstream packagers, including the ability to disable building the static library. All makefile constructs that were specific to nmake or GNU make have been eliminated, thus the option ``--makefile-style`` which was previously used to select the makefile type has also been removed. (GH #1230 #1237 #1300 #1318 #1319 #1324 #1325 #1346) * Support for negotiating the DH group as specified in RFC 7919 is now available in TLS (GH #1263) * Support for ARIA-GCM ciphersuites are now available in TLS. They are disabled by default. (GH #1284) * Add support for generating and verifying X.509 objects (certificates, CRLs, etc) using RSA-PSS signatures (GH #1270 and [#1368]) * Add support for AES key wrapping with padding, as specified in RFC 5649 and NIST SP 800-38F (GH #1301) * OCSP requests made during certificate verification had the potential to hang forever. Now the sockets are non-blocking and a timeout is enforced. (GH #1360 fixing GH #1326) * Add ``Public_Key::fingerprint_public`` which allows fingerprinting the public key. The previously available ``Private_Key::fingerprint`` is deprecated, now ``Private_Key::fingerprint_private`` should be used if this is required. (GH #1357) * ECC certificates generated by Botan used an invalid encoding for the parameters field, which was rejected by some certificate validation libraries notably BouncyCastle. (GH #1367) * Loading an ECC key which used OID encoding for the domain parameters, then saving it, would result in a key using the explicit parameters encoding. Now the OID encoding is retained. (GH #1365) * Correct various problems in certificate path validation that arose when multiple paths could be constructed leading to a trusted root but due to other constraints only some of them validated. (GH [#1363]) * It is now possible for certificate validation to return warning indicators, such as that the distinguished name is not within allowed limits or that a certificate with a negative serial number was observed. (GH #1363 #1359) * XMSS signatures now are multi-threaded for improved performance (GH #1267) * Fix a bug that caused the TLS peer cert list to be empty on a resumed session. (GH #1303 #1342) * Increase the maximum HMAC key length from 512 bytes to 4096 bytes. This allows using a DH key exchange in TLS with a group greater than 4096 bits. (GH #1316) * Fix a bug in the TLS server where, on receiving an SSLv3 client hello, it would attempt to negotiate TLS v1.2. Now a protocol_version alert is sent. Found with tlsfuzzer. (GH #1316) * Fix several bugs related to sending the wrong TLS alert type in various error scenarios, caught with tlsfuzzer. * Add support for a ``tls_http_server`` command line utility which responds to simple GET requests. This is useful for testing against a browser, or various TLS test tools which expect the underlying protocol to be HTTP. (GH #1315) * Add an interface for generic PSK data stores, as well as an implementation which encrypts stored values with AES key wrapping. (GH #1302) * Optimize GCM mode on systems both with and without carryless multiply support. This includes a new base case implementation (still constant time), a new SSSE3 implementation for systems with SSSE3 but not clmul, and better algorithms for systems with clmul and pmull. (GH #1253 #1263) * Various optimizations for OCB, CFB, CTR, SM3, SM4, GMAC, BLAKE2b, Blowfish, Twofish, CAST-128, and CRC24 (GH #1281) * Salsa20 now supports the seek operation. * Add ``EC_Group::known_named_groups`` (GH #1339) * Symmetric algorithms (block ciphers, stream ciphers, MACs) now verify that a key was set before accepting data. Previously attempting to use an unkeyed object would instead result in either a crash or invalid outputs. (GH #1279) * The X509 certificate, CRL and PKCS10 types have been heavily refactored internally. Previously all data of these types was serialized to strings, then in the event a more complicated data structure (such as X509_DN) was needed, it would be recreated from the string representation. However the round trip process was not perfect and could cause fields to become lost. This approach is no longer used, fixing several bugs (GH #1010 #1089 #1242 #1252). The internal data is now stored in a ``shared_ptr``, so copying such objects is now very cheap. (GH #884) * ASN.1 string objects previously held their contents as ISO 8859-1 codepoints. However this led to certificates which contained strings outside of this character set (eg in Cyrillic, Greek, or Chinese) being rejected. Now the strings are always converted to UTF-8, which allows representing any character. In addition, UCS-4 strings are now supported. (GH #1113 #1250 #1287 #1289) * It is now possible to create an uninitialized X509_Certificate object. Such an object will throw if any attempt to access its members is made. (GH #1335) * In BER decoder, avoid unbounded stack recursion when parsing nested indefinite length values. Now at most 16 nested indefinite length values are accepted, anything deeper resulting in a decoding error. (GH #1304 OSS-Fuzz 4353). * A new ASN.1 printer API allows generating a string representation of arbitrary BER data. This is used in the ``asn1print`` command line utility and may be useful in other applications, for instance for debugging. * New functions for bit rotations that distinguish rotating by a compile-time constant vs a runtime variable rotation. This allows better optimizations in both cases. Notably performance of CAST-128 and CAST-256 are substantially improved. (GH #1247) * TLS CBC ciphersuites now are implemented using the standard CBC code, instead of reimplementing CBC inside the TLS stack. This allows for parallel decryption of TLS CBC ciphertexts, and improves performance especially when using AES hardware support. (GH #1269) * Add callbacks to make it possible for an application using TLS to provide custom implementations of signature schemes, eg when offloading the computations to another device. (GH #1332) * Use a direct calculation for calendar computations instead of relying on non-portable operating system interfaces. (GH #1336) * Fix a bug in the amalgamation generation which could cause build failures on some systems including macOS. (GH #1264 #1265) * A particular code sequence in TLS handshake would always (with an ECC ciphersuite) result in an exception being thrown and then caught. This has changed so no exception is thrown. (GH #1275) * The code for byteswapping has been improved for ARMv7 and for Windows x86-64 systems using MSVC. (GH #1274) * The GMAC class no longer derives from GHASH. This should not cause any noticeable change for applications. (GH #1253) * The base implementation of AES now uses a single 4K table, instead of 4 such tables. This offers a significant improvement against cache-based side channels without hurting performance too much. In addition the table is now guaranteed to be aligned on a cache line, which ensures the additional countermeasure of reading each cache line works as expected. (GH #1255) * In TLS client resumption, avoid sending a OCSP stapling request. This caused resumption failures with some servers. (GH [#1276]) * The overhead of making a call through the FFI layer has been reduced. * The IDs for SHA-3 PKCSv1.5 signatures added in 2.3.0 were incorrect. They have been changed to use the correct encoding, and a test added to ensure such errors do not recur. * Counter mode allows setting a configurable width of the counter. Previously it was allowed for a counter of even 8 bits wide, which would mean the keystream would repeat after just 256 blocks. Now it requires the width be at least 32 bits. The only way this feature could be used was by manually constructing a ``CTR_BE`` object and setting the second parameter to something in the range of 1 to 3. * A new mechanism for formatting ASN.1 data is included in ``asn1_print.h``. This is the same functionality used by the command line ``asn1print`` util, now cleaned up and moved to the library. * Add ``Pipe::append_filter``. This is like the existing (deprecated) ``Pipe::append``, the difference being that ``append_filter`` only allows modification before the first call to ``start_msg``. (GH #1306 #1307) * The size of ASN1_Tag is increased to 32 bits. This avoids a problem with UbSan (GH #751) * Fix a bug affecting bzip2 compression. In certain circumstances, compression would fail with ``BZ_SEQUENCE_ERROR`` due to calling bzlib in an way it does not support. (GH #1308 #1309) * In 2.3.0, final annotations were added to many classes including the TLS policies (like ``Strict_Policy`` and ``BSI_TR_02102_2``). However it is reasonable and useful for an application to derive from one of these policies, so as to create an application specific policy that is based on a library-provided policy, but with a few tweaks. So the final annotations have been removed on these classes. (GH #1292) * A new option ``--with-pdf`` enables building a PDF copy of the handbook. (GH #1337) * A new option ``--with-rst2man`` enables building a man page for the command line util using Docutils rst2man. (GH #1349) * Support for NEON is now enabled under Clang. * Now the compiler version is detected using the preprocessor, instead of trying to parse the output of the compiler's version string, which was subject to problems with localization. (GH [#1358]) * By default the gzip compressor will not include a timestamp in the header. The timestamp can be set by passing it to the ``Gzip_Compression`` constructor. * Add an OID for RIPEMD-160 * Fixes for CMake build (GH #1251) * Avoid some signed overflow warnings (GH #1220 #1245) * As upstream support for Native Client has been deprecated by Google, support is now also deprecated in Botan and will be removed in a future release. * The Perl-XS wrapper has not been maintained in many years. It is now deprecated, and if no attempts are made to revive it, it will be removed in a future release. * Support for building on IRIX has been removed.- add Botan2-INT_MAX.patch * Fix “INT_MAX was not declared in this scope” in openSUSE Leap 42.1- fix build. python3 configure itself is useless, we should make package python3 too.- configure Botan explicitly with python3- Update to 1.10.17 - Address a side channel affecting modular exponentiation. An attacker capable of a local or cross-VM cache analysis attack may be able to recover bits of secret exponents as used in RSA, DH, etc. CVE-2017-14737 Workaround a miscompilation bug in GCC 7 on x86-32 affecting GOST-34.11 hash function. (GH #1192 #1148 #882, bsc#1060433) - Add SecureVector::data() function which returns the start of the buffer. This makes it slightly simpler to support both 1.10 and 2.x APIs in the same codebase. When compiled by a C++11 (or later) compiler, a template typedef of SecureVector, secure_vector, is added. In 2.x this class is a std::vector with a custom allocator, so has a somewhat different interface than SecureVector in 1.10. But this makes it slightly simpler to support both 1.10 and 2.x APIs in the same codebase. - Fix a bug that prevented configure.py from running under Python3 - Botan 1.10.x does not support the OpenSSL 1.1 API. Now the build will [#]error if OpenSSL 1.1 is detected. Avoid –with-openssl if compiling against 1.1 or later. (GH #753) - Import patches from Debian adding basic support for building on aarch64, ppc64le, or1k, and mipsn32 platforms. * obsoletes CVE-2017-14737.patch * refreshes aarch64-support.patch * drop ppc64le-support.patch for upstream version (disables altivec support as per concerns by upstream)- Fix for CVE-2017-14737: A cryptographic cache-based side channel in the RSA implementation allows local attacker to recover information about RSA secret keys. * add CVE-2017-14737.patch- Explicitly require libopenssl-1_0_0-devel (bsc#1055322) * Botan 1.x won't support OpenSSL 1.1 (https://github.com/randombit/botan/issues/753)- Add patch to build SLES11 (allows for simplified backporting, e.g. bsc#968030) * add no-cpuid-header.patch - Clean up spec file- Update to 1.10.16 (Fixes CVE-2017-2801, bsc#1033605) * Fix a bug in X509 DN string comparisons that could result in out of bound reads. This could result in information leakage, denial of service, or potentially incorrect certificate validation results. (CVE-2017-2801) * Avoid use of C++11 std::to_string in some code added in 1.10.14 (GH #747 #834) - Changes from 1.10.15: * Change an unintended behavior of 2.0.0, which named the include directory botan-2.0. Since future release of Botan-2 should be compatible with code written against old versions, there does not seem to be any reason to * version the include directory with the minor number. (GH #830 #833) * Fix a bug which caused an error when building on Cygwin or other platforms where shared libraries are not supported. (GH #821) * Enable use of readdir on Cygwin, which allows the tests to run (GH #824) * Switch to readthedocs Sphinx theme by default (GH #822 #823)- Update to 1.10.14 * Fix integer overflow during BER decoding, found by Falko Strenzke. This bug is not thought to be directly exploitable but upgrading ASAP is advised. (CVE-2016-9132) * Fix two cases where (in error situations) an exception would be thrown from a destructor, causing a call to std::terminate. * When RC4 is disabled in the build, also prevent it from being included in the OpenSSL provider. (GH #638)- Update to 1.10.13 * Use constant time modular inverse algorithm to avoid possible side channel attack against ECDSA (CVE-2016-2849) * Use constant time PKCS #1 unpadding to avoid possible side channel attack against RSA decryption (CVE-2015-7827) * Avoid a compilation problem in OpenSSL engine when ECDSA was disabled. Gentoo bug 542010- Remove Qt5 dependency, since nothing is using it anymore. - Fix double-prefix in botan-config and pkgconfig file.- Update to 1.10.12 - Version 1.10.12, 2016-02-03 * In 1.10.11, the check in PointGFp intended to check the affine y argument actually checked the affine x again. Reported by Remi Gacogne * The CVE-2016-2195 overflow is not exploitable in 1.10.11 due to an additional check in the multiplication function itself which was also added in that release, so there are no security implications from the missed check. However to avoid confusion the change was pushed in a new release immediately. * The 1.10.11 release notes incorrectly identified CVE-2016-2195 as CVE-2016-2915 - Version 1.10.11, 2016-02-01 * Resolve heap overflow in ECC point decoding. CVE-2016-2195 Resolve infinite loop in modular square root algorithm. CVE-2016-2194 Correct BigInt::to_u32bit to not fail on integers of exactly 32 bits. GH #239- Add gpg signature - Cleanup spec file with spec-cleaner- Fix Source0 URL- bump SONAME to libbotan-1_10-1 - Update to 1.10.10 * SECURITY: The BER decoder would crash due to reading from offset 0 of an empty vector if it encountered a BIT STRING which did not contain any data at all. As the type requires a 1 byte field this is not valid BER but could occur in malformed data. Found with afl. CVE-2015-5726 * SECURITY: The BER decoder would allocate a fairly arbitrary amount of memory in a length field, even if there was no chance the read request would succeed. This might cause the process to run out of memory or invoke the OOM killer. Found with afl. CVE-2015-5727 * Due to an ABI incompatible (though not API incompatible) change in this release, the version number of the shared object has been increased. * The default TLS policy no longer allows RC4. * Fix a signed integer overflow in Blue Midnight Wish that may cause incorrect computations or undefined behavior. - Update to 1.10.9 * Fixed EAX tag verification to run in constant time * The default TLS policy now disables SSLv3. * A crash could occur when reading from a blocking random device if the device initially indicated that entropy was available but a concurrent process drained the entropy pool before the read was initiated. * Fix decoding indefinite length BER constructs that contain a context sensitive tag of zero. Github pull 26 from Janusz Chorko. * The botan-config script previously tried to guess its prefix from the location of the binary. However this was error prone, and now the script assumes the final installation prefix matches the value set during the build. Github issue 29.- Change build dependence "libqt4-devel" to "libqt5-qtbase-devel".s390zp21 16188202862.10.0-bp153.2.12.10.0-bp153.2.1botan/usr/bin/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protectionobs://build.opensuse.org/openSUSE:Backports:SLE-15-SP3/standard/a1df2a50f18d60738b66e8568df0614c-Botancpioxz5s390x-suse-linuxELF 64-bit MSB shared object, IBM S/390, version 1 (SYSV), dynamically linked, interpreter /lib/ld64.so.1, BuildID[sha1]=a66952c4004d9c3c147d4a03ee1067b7de3dac45, for GNU/Linux 3.2.0, not strippedRRR RR RRR RR RRRRRR RRRQՙJb3,utf-8c550ea47035e6df5b78d10601f7b9569445cccc00c11c50014288de74ed07821? 7zXZ !t/.] crv9xB|/2nAuՓ=I`C^47hlJ`{TBTi;Bvg4(ro1ͣ+{n-|裏Yd' 6 sr'!% tCU]V[BaPa|<J\(OΧ'X$V!`1_2P{# #Ezj|~WêM q܄zia Y\'hWRO;s8;+P[ְΌ ,o16'ɺɒ/(\h%2Zytm W~8Qb)i_q?g[P,Z/ͦaxE~b `ګ=O)C2f%Ҿ0ܕr&>KqVQ;}I,`e{da|ؚ( Za@3;7>UTQ~ʭ3WzI0}ĘsA^gЖK~:uم?,b -ڈARC SyT3K煹IbWHLw6]ȭi+פ"NZktZ4C2g@;D(GhC|bFԦ9!tEChxL\;G[æ,"^'f\*UGA=R7Ee4~3-z$?.QJ<ڼ7'ce"wwcCP:W_<Ni_1]DrMi[pLO6LUxl@"8zpko^Պ72嶳yƝĹ6pw!AT,+L,~l Mnހ_ባI K5V35Jс ~913NC0[:puTTڧĀm9þ`HfTK}O뭡[ 3ȉA|Nŕ2?Q 8'6'HL1NT-ou+ 1o#6]pc%ŖކEU*$+qr1tmM;n3C+"<_ l6BzO} *kM•p2-&~:x9I!>{ ݹ;B^\򝗴HJWGG?zoW@)r'SV@dLzF[1fS\lف?Vl3\j+ ,yy1'~H w]> ==1`5}4! ]_csOHA")>F(FUaLˤҙʃ#2 [YP-EVoJE}b1ݶ:XK쾔E vwa߿K}-Ww>Vtck٪h򕳇0Bi4t@J~o 휺TXNFo#idl)u7cR:POqFgTxyv6;׮t*q~l( !HϨQfw%*-X֥~q0-p;rt۰&D-Cq&wRR4CukCO*قxLAe6-0o#(S3`_k&:~@P;e,c<btU١!'I1ϙ4UE(?RzB 6-(4W2c$b3&gJ1{x53ccIX:ӓAaoW/Fb}0raӼ"R.Csn0iP䍍/")Rdp ޞmcK؏JD3 y> /;l;^Zg^H*Oo|t.rM0 IqUd<*8vE]eUVL !nˢAP%u39h>RQxs`7_v%~ƛ½Jn.·iqQ>Ɠ⿉g2 w_Dի[r'jS@[VTLhYKxzB;EFm<^`Io[{y/U4Esn~pR(T7{\YtEbs4*\[CCU˔ԇZxM:l BsLn?B ( 7QN0&J 18{JlK-֐=^+c hFf['(m$0=[g3Ů,D C+3q6ᕼx' X ĭK5+Y0:464}J̑N)D&xxZc9yQnMvAf;)tYw$PlX2!?\;j<}9.m8ɱ`Fpkqz^"è$(H}GBt?Cb'ٽ: 1]M/;_3 BwB"t,z1^Qة>`n  9 4$s&>Du8P1FQ,h1 aOvs,ٳW JlP+ڶ:a]cj(rES&;J H{wjܞ{esvyޜ`MWw ?fj}3ֳk;8 qLWEҦ<1ʽhCbOÂ۫ecI៸>M匷`1R| ÷!ծ87%PiդE oqvTQÏetp/# )eaoPo:iO,MUg6z@`ò{rlWDYBlsfwd;agQ̦b%DlpBd >Bsbm hEVjnD.Z^iМ7#ۖ0"GloQju:R)i͋M|խ^}N?h=[I/֏vH)AHTQ/dNv1"Xj5gh\! ?Ί/J)1`ðeC]q ƮBDր7q0O Ob=a풰]Y&i^̼z6ԗI8q|`VJ|2RxOנם5-4%ٷN/LSu8*R( ,؈zSFD2>q;]aҙ7qu*d^SC8HE16Z p>QD-C?z>IpY~|m*ǖyؽ~`y %F Ow/cp&[w v&82qWX35?߻sQXk}*l<&@%/?t6~^_^9ΒK+O׻ua]py?TbIgȎRD/ύύzЪQ7 [? 'Z-\÷-js d5 ݅I2'3##b8]@V-X+ L5BM",EK~ !E06lש! =йIb& d┐c\=Enl(f8;=1cV!VWW+@c`YogcJЙ'.">(aQ;aE$ՉHpU>%7063!fHd.ICew7nRw}̑o5'^~Ah]Mk2Ւ0s fQy7-i[I F2Q(uIZԈn^rE&~Rcʏ-….8UYyu&BeK: 2ѦGCK{prWW#eAؘp^$_nQt[U¶Lp -\,fܘ]i{#@YkAI:wFoTۃ)t \MG~ǫrF F X,ٵ#3bn0쎊 h\mG= zxv+K X"܎?G(XQwUC daR榼W~ B)j+F4R{wҶ·4("i"%XPBk>;9ڈ9x .O\Is U(684!$AYCٹWa(cSr]?~p)6.Sdpū"?29?*;!ZFխ`!ǹ9wDΣb hS;*e}t밓Q4u=qĜ+t^_kbco0xEoƢew18Nb$R u桥7Io5LD4 ?0ߕX;tuǴy VJP[>[d敹7.P}w\'ޘY}UλӶNc3]J;%0BX,ZLGPqry}((-SOxZ籚cseqcdiesD2 _Fz&~mrmK=d2-؄96`rkeØAF=)`\riBhM|e!ӟn`P;< VYΞQɢ|U_> 4MKpwZQV`Mϱc!ϡekھm4 LNsUkY]Oxw8"v$ ic= 3bqzEV}GnB5gF Jhm(W)XR.9 ޙʂHO`\:E.03Y\@=z0?)E}S.vp;#Km+7sxEǟDY c-ƟsikdČj`*#[G*IZ_>)z)ʟSU0so(!ы|I_NܵCJٜ`kقNZ@,ۅɣ#Ρ&(l)J ]cmUL!|?QQ ^72(aHK:*Zl0p^<ZW;VHe;('Yj/Տ _, EȹoSO'ܹ'עXiYl rr@g?4J1MrxJ#$KZY!ǨH%5 z%lx }+Z" ~,HL 8ԩ`S7ժxd= >rr@R}diS{.>=2 )3`.g_s6NwyD*PPpK{L4ڀ?0`+p~&)` /m ʩBOV V;lR^/ƞ԰[3]CQzy扜g]JP^3alKt`B~je Z*Z~GZ7 l_-®S PTKK)`yD4a1V~InҾAMb!vi~M ?+ٿ=:{F`~9ak:܅M`.m=LMkױD.uxR3$U.:pT-r'C'0 유*1R]` SZ@]k?Ui\ szxk*3KF8 p6n\OJL36i!sڱ =x!RoZˊ鑀)SzliK؄-= ,qt[]:t!I"6ˋ!=7`,!' L'B^RvX҉i X>c'p3vpCFF+1|;${pVKcyxȚ2MoiXYJmzXIROx[76ĽK49g=G):>V1*5WZK4"M[b%O~΁Y9bOٟ{ qQ΀@_Db{AwlZ27kUn=XCv+ltJ\Mh'VB4Z  L'UC~p}*P,E:8*Lp Icc@ >gių:E]#0 Ru-5@f5[0Eh,nWyJ',Xm:Tv?ҺiYs!xd_;-ni,Wc1W?TG(gЋ#|EK%JsD%0?k8CMo6~5`}xؔ.;g_مxWUEy@;:VWwKTܢQpBvROg׳I 9@ݦP,3ؚ2\?/SjJC|dt,ᑬU_HvÕ&&xM0>6Wv6@}Wv⹎Cg"FtA{AEZ;X됊_xۊǴC~n& Q">ҍJ *#HDw}Ȋyvm \HkTμ,:K"8vLy.`,r ~rǜ1CSs]@KyMPg<3GojwOUہM%epJMU=r {{ѐm5pdG@":<y?|{)QeKNڄz3宭➗ٽP1,c*nYM\&Dia^u1cө . 6H"ɚqV= PD]Lt(*v1, tM 4w`Azb$Sh.V&g"[9K1h(鹐>2T H@ Kxhq:jb9! ;W(uˑ.[wP`ArβI =2&k)-/`e拲퐋i.H\L FS]!)Q"a\GQA4`Ώɣo,}%\Rhs@X\ 8! ^oUಬN~tk}PW7*1|Î_\-Z P6˚k+BC)6_Tu@vGe|W P̚d 4r;b!WC8OD"\#T"B^Yt@MGαԌ9 2Ȉ (u$}9)/{vJ^ 0#HPlwswd?n7Ed)j˘-7wڐtGҽS`sr*fm_]+5:#u Ne!/+1^<RB6[~m[-UBZؐ9 RnUQ425z228IH >Cg8D^;{B̙s7ʿajIB.M@EqٵrhT' Cl2EoIx{q8< BIL=qH%(;{;t !r9o+xnq[݄dm;н |nC<)b_ O?ND:Ίztm!/JntTInW ^fػO=Kd(+b./g_U7Ef`kҩgx 6HsՂFLuU'=ofI-F6'AZMf3Yty g*mLsj >W?_ sBѬYGBǟ,=TZ;h3}̬jV/lɀ3rBKVG1pZ#P@p$ &44R0\S+"ҡh8!` X:^L*%*~,/#(ʝ Y_Uoj+9L,u[&>jh:j2Z՞ʻ A?x]ʱY:OZ\bQxZRJ^YȨKmrVMIi7f&M<FQ3E/5K::S]vshb&jۑd4m kg sڹ/Cj@p*˝Hι&a] VL-&fޟDwEIv& gMX+ *c5䑓c}YYBRMڢ?>|V:Yt[A7/ʐ9S7J nÔ#ƫw'uq\=Ovm&_h ffk;kW~z(,c*`f^9فԝ~ӲmXW;~d,p}'8=z4,UZ@p=[u!hvJ-}|`qOgY˯xMe 4un!(XnS[h MX0 @(z}F/"=!ctC@$P0AG}~"UFj>އJ[V3M2YF`U!!0F?K)5 2.d=/ts #xA⬈IzP@a;g-0v(Cv50㩱91veDbwI#[>e[c Ʀx?mHs&1 Z/N) [ЇFbx@e=qNNqݖ+\ۑ}jwTPm!+GhjJ'_6»'V7*1K29_9'pOw\;S]YT(*B,#eʎa_(bXzSg,=iW0:>t IM<&,ZRxa3lt I)#8Y$>ڭa8IN{W<+!ir\^j=!9!xTUݳ SO9սgg9F(Ceoѓ )?Z}XHj_]6_oBu%#}jDtmK %'JivӱJae*ތ6ݠClV)HcA0JwAJfᎫ)Aץ4\T?]!όJ[2F~"$)iJ |doY&E=rkEʷ$:&b[P.սpP>3e5 ^M zuIr,dnC $rΰ6Kt$\.hE@l!rO!u?CmMhI›n&©h{ټ OGG䄦-lm*xS4-u@gNc x{s! DY%ҾӷѨ -x襉Ϳ^=u}Ԣ!R^/sFZ܂TKԡwۙ})hyS8)Tܐ$'ԍ  ^Z@3GdHޒL8 U MNa9͇JUbN 񬀎L "_ qbI !)NVȐ-\|ha CG #pQ^dw*1-TL gΑVۮ@n5o ~.>`_P\- O\HyqpZA`/ڿ7$O{LlOD$vrB^W|gnk( 1Ea^ӯYEZBy?`V^Srq.Rn AiRCK"*$zkk9t`rf/e``IIv8լ?}V`tQwӎ`L(m}ť;[ YdD-xj`]N'3F6T-ҝ!VϱUK =ބ̂U9 4N:Jۼ&MvI+ӂ;%Da 76;oDPe]sE>6T`!tWQ8Ō8}dV YD1_E8 U{cY?C_I_oWBR1 FbfQ8bɎR!tuآؗH(&9 bG&Xg8EU1u-}OC"}8ނЯ6rOr~@o=k GפeEDE4A'=16 Ȟ?7lO:^POYB9iH,t$XlJf"& z mz0#׏7yf٧qV*xz;+C*U3̹0TCG"$pzx +f*D$y1ЁhS k %:zS;6\[JOq@@(TeůL<)~$`T "E0ؔOx e. s) HvҬ2Pf[ 6=y_nZ~Y|"q0xao?`\X@m& QE /-oѦjј, 6FD8uNcPF5F.{tԿ-6NIhUG+T{~ZPfyFhV[`ζm|: )T2 \!Т˅.qzu<$2h" :Py5_P8Nj%Xvnq^aOY!:CV]*s^m۪HjG(^r lم2e(eyҙa:,ʚr~8BJY&[dPx jq*7/x~pzO?]Z&KlRWAvf+4هDpfY C'ylжHr`Ql˼z`\zND{g i"sMRM`hj=IВ_=Qr/\} 'gNDb\ II@Uv1OJGͱ/]4lzꉤ!r @ō2mhV*OЫ_we,8_0`l$ye C-pwQœ}gL^S/B7b (cs[d2~bZ~R,(7ng\ @~#yHuDkq2`,[ f0tU:؅ S4\ ".Za%j[mu# }&n8=jQD  eU&%Fj `tp9jkQmn.^K yCZxKy@ͱw~_o:/v.&"AY>CN;嚭% fz/8HhwxKæ Wv=uLp6)suZ3nQd9AmWLFvq.@f3Zr@pRSV}\-ұ)Vtk[;fxI2v@b3\XsuPt< MxW2̼T]6"ZfѬL㮒b[$#њL DNix5f AK7l\1F gSrUhnZze=LJOzNP Z6OvNB?OrP:u.A'q>TM/#p}3E8Mf PTJ"|nuO`{+R "Iau7a }lExbvUy@9˧(odV" KGtd-M -v:Ɠgfރ $e]e`Z$&iw0c#3R, Яu%w SEu_61iDG:ņкf*Yw%ȡASn&t*Eƭtlgμ,B߻U!J!)a48T.B@<ǣ c="N|#>L=IK}wN'ZTt# ;k+?!9199 |:H S.o5}jeC;K"fE WdN'7k d| *3O[]N;\\E."r*t|6̒,s6Qk~􍃜&0w?Ћ+j{H s^ЈgzeBG[3`1ߝ)J`Z=R2"+j25PSt]xJm/o IWfYHWoHهl!U`W@Ï2>/ 'x8:\rXM*+CҏpdPd70W#QRx Q~ |Pږw3)'ƒAN,k{j!$ry8mjYߣPfZoԅT{!fD- ȏe3ô:5L);$(,KfBFl;Kj$?HzQ5W[ ~yvK$ӬXz<ˌ'xb0n:ҶyCc,_Ŝsrw :>GZn5Ֆ=6-Fy|IKZ_/p!"O5CMNW g"׬Ȝk <0 ViTPP0)]ja "D^$gˍJv0O[8$o@4!p?%l"lj0D]Lgzp7nVUؕsy:DYigެӕ*婺x FRK$whNWչr!H-LpgѪ^Տqr#E es 9B!vYJM Z²}l! bv1r{;h,p=yܡV`Y<(-D=[wj5!Y2xNzOP3Oݷ%:+PUnߏWb6q-U`t?}`2#>DɼNZ~8D]ŧiWTzK uWu54 vqtr#xM:]M~w:ˈf@-^-N{j,nA;8{_/xz)&ZG9֚%lJn5_hL !ٰ<6 3"?Y$lgy{H1)!:y Eߒ fbM;Bf>辩~6jJ39z)[pxs77lJX~qmhwtqkq hy;{қފ B<!"ׄ"%\CSR{( 薺kB+f%d$LBxmy z6bb??:$Լ}q%[;mf6Оq~I2~zuZzb-!߲2Qd=j{Ag .b:HcmgdI`<YQpk4af՝wr8mwZ#Eg\6CuxW/S 7#x?L;O1>SXbƋ3A.=s36ʽj礘2|d8z" J㾹"1LnR8Ya8KһVr||3a}V Kʣ&5^-ZLy\ꁍ9=nӅ@ccj f;g( &d( kU;X1-Zg׈=|ai%*N@iqqJW5Gv[sA}KA9s\:fYxmE_|Q~OO_V1S>I Z뚄차 ?s66րBQje@T\# 4L=bgi"mHڭ4yc#@)=\ Ք8 _}[.QQx jDߊx5 _**+C6y1Tc+7zSWY0!EKBDɉyT58n0ݦ A#.;|sH:{n]%oXl{rl Kecy:Nhm8Elx&eVc4 L'J1}jr&ZQc4${(pAzM.* :YOUddB y{sl&ߏ+pbR*y8'% SۯEs%&XC[H8BR(+ۡ +;09U )I? & dl`HK}r@+p G]؋ߨ=OgYCCY.L8u`[hqċ_BnW,CClC<␶0RZctG>s)pWz g9Er5.<B,|qO+ƌEXOR%{8hAqhK U(RD+3%)w;ذe!4ᶌ>IZ,vĥGPE~c^K`-–bWy^"r]}e'd5Z"͡Jp2zى) p־8HI܆;dQ&b|Xecc>5\o}2KF1P=byd0ŴoQzfFk2ʟ+ϻPG"Rԙ֗}6>QζNv~qڥBDGET  2YBufgo%\/`诌ק#Xy?8gBΦMz;SޡaLH/87*G3L)x!'[Q?X=Ow/&>ZIxư= .0?ee]J} 9UǕ ttbN34S{Y1)vtQ 6PҀls~^>M(1}LcgF#a ۄfJ0qL>L@ԯ߽WO7I% KNfxD檎N"(ʯ }5r~0O=nlil{<߉~S9\pXF^ {d vKu׹ 5ъ H? Mb*-&znWAnzsXkU/?6)˜ r ΰ !WЉa "/ =O s+4?1C;iI {m^wTȮ+ ѤkRuSD +W)81[d{}ZRrިG@֮F;W< &va#ƻ7厉kW]9dGrIHzz{f{h7 y0^+y* op#k0.BmfR;*+;h jڬu# @Ww(^ eJGz -MEt[û-v$ M/?kG-b=ǼT؂,Lp<5YxD{Z//,mG%(m|T墠s0RLέwIObi G3^{:섮['l(Ig/v8oYZLO ߘ)HK}B56fqGRܛASRз9drUH-Jy!UxD>Ġ/uyf(x"@;8u=3F8 :Iuz P&͐KwDՊjqF:eijtjqZxaTv3'i|0Wߙ5PM,U 3] ΐ}K/^!Ԡe AavKn#ݿNްYlN#qpP!`jzvU "Z7cۧ!ɯީ`_=bZ4 u-Dxv5IeߒD{[G KT/FMep[òԍ8EQ骳 v䀀TpE]J,t,:hqS gcy[Q9:*9: _,?ja\.%=PWxZL;dChOc:-(YS<0s2SOx f)TV[rS$hRG:t!/ZYZkD[uɵ`o1oGJehˈK Gi( eaIWR] -vv4ĒvfgWĩ̇xA1X >HPNa+s~- =?[}L `!ǎ+13sp'a2:l[ %K3zr _<Ef |_4Au% ëˁyͬCe>sQ9i 6`ub:cVpuӕlaye{ϙ%0LusPQ:y SPs9P+uLly;%#7 ? 2R .t8ɳc߀lVm=N_j\!:iz?2>2,:J1ar]vvMʕ1~KĶ9T_o ̔1Z蹜h)* [ W3HczW=R<&@fLc[7*K] ;cx!^iGmg 1v tʭFNFz[p6|25ICH]dvѭoחWž8{qti=ZTutavϒɻa&uT"q^ G wgWC)aBFNZ#&A>KQ\yxAxirRe%pkJQ#7@g |IrF哎Pn2+#D[YG/r|"s7lamh;WΞ{~jL2kz&LR͌BRՐS3y/f;6:CK)ήɘppcshq3ED$. ?1GOKxqD u#SvNGpKfz箥#-,}4E[i& wWi[vde.TKm*;oF#vz;8m[8Tf6yg>EG4m3n38y0"[YKJ1ʪ\w95eɕs3O,xcx]2rJ!PzMڑ*q9 @i h ]Xj@QFj*_[PP=Xn\zmh jF*WAZ?F7c$ :y q5l=Fx!2^_St0 %JEHxfcJ%_-K8&:痵҄$ubLMPzeD}d+otdr7{S1"}O?Jڡ0F Pt1Wtm;;X<}u޺kp9VʂQ&{cYb=7+bO<i@5Q Ā ?Ar]} .zcNjZ JV[]m?)bNZmFޫcܫ>+9&/9><T!7Y;J Y0&=82.G)3 Nƿi*9Z;2QŶBt'r4hzK^GK>OpCO@{bSJ櫁t+e'!^P\~"cP/cN ';,QE%[܂0o6Qڔa..1noAe,7@h0L< =jۊFtT\ `)=Nϭ/J/DŽdiRE+cv7lK{nA#_ ?QE_8TWG^(? *G$ ?̌mnD~ Egޱj&K/`G3D#96V9:y2SP0.D@Y פ]cC7nXs)"dGg ;$XĎ). 7RwB _.-iU7.#Y0Fz0=*Vh|f ć: [  $@9ݣVHIjĊPGcK \Dvw_6&ƔMhT46I` y*LEjypt:2hrI! fg[:#SkdWRo !uP<'}ZuA6(ip yTPW]_0" G 1]Yh s=0Š%;P5ب{eKs9cƾ1vg3ƚeGI%xgk+Cӫ~Q:+4@hއ 7=v}=Ĭ B`+;ƿwj:TIYx|iz8GB\#_ 0cvQՇY,Į+ڌw? )m{NȨe\Rfx`,au噊zNY|](h+d45J^*W2u%꒣č M{]VՄ u,@8}s c姺6 M(q>(s09ٹ붃gU 5NV\#6bUeS iy#x6Euˤ`FR(Tlb\%t-63> qk/ޓ#꣛{,ڱ8H!S FJfDe߸ncq[}*jㆮ%؉''i'CjGU%6{TLi1=[Cx9@_c -Rk8ASړZGe;-ꍵz9<0O>xG2rXr56"km|1yM*ej8,[9D06O]Mg3_wWcYXzHuZI59ٻ\ِ?P4zg (#j FyӗUy`EB4ɘ1x:xTr"{Hە<ЦPAKJ~OMZ1jܭ;Z2n{A5~q¾™`:*16;Ӈ7P %/4NA%;_Q.XtNYdk:)Ż@ pΜC0 ^FR|H.+O/Rϸ`L u$Y+497N` $2D.62gy586yr]uIWE?+c lO'Ȩ[ j{X:ҽ0XWREyu-攜Z`ycxlpҌ0i4ZX7+E,B7Xp$*tӂ&" I_|nݷ$h:jDU [p=:% h{D5< m&qagt@T?5E>?V6V7&ݾAP^`ޯxA${j<ܫ$B1IskORD}Bv2/k{L;:1 ;Uڇ|z+7s`O #[KY_=3/ v. @M \gY-y$ oALKIJHB!rSP)NzҊ\>Me␱GI5?,ibmgO.a[R\ F˃3MiPj2y6b7Up<]3Ƹ04B|n6|5@>&P>~:OX 3 ܂ Õw%9\V$y J1&kag))u ;UK!VիĔvJbDas.A[7>-S>d|K9$q0Yt*.#7A]Gc#;f <3! (pwE,l Yp3T$# hN_?ׇ\ !NgPS7=0sgdVժrfKSOKfEq-"?gdp50̀ Z=S$G/rS(n`{Ϟ(k'V4`Enbý3G(d_w:\!7^x/`/:~LmJ\Q:HSFOomxEv;䮶KON;N^jWUuR\pCo7zdJk!^t+C"k*mglsoCPBM ' ՆuV,sZ)5 Z`נ1 6QZLhR 6sW\w讈sK Ttzvz'h P(@I'Ir&'D].2)EOH!q4@D9togTZ)֔-op}bߘD~ubO]̋# ?&}+yxFw&|(TB+l^| cQ:N zGAT.Ƨ7n-} + s\>yvƌh7/%\nEэdaee2hMQ#>OhQN-pve?ƀs/&ܣON3-Pgʔ"0Hwѡ4j)L&v5nx]K;0i `0 nLPٳ9oI+I n,։"840"ސGb`qBN90 aE8]ZO(jV:Fs/f bbKQ+bv/FU&1h/'D!X(`n(F^=WʥfFC' ]&Y7,4f! -T~-b΁*a Ըs bb=y.twOBLrRr!/gX\)dV 9n~ W-_ !63#y/wٗh5qfX&)h6"H }ePG^a^8e=K>E7ZL~8W"EϾxR\(5zf*-W!G=k $jOٟ+\SGZV K:~P% rkZ}E{ԜlWIP}ـn2^Ć9;,%޳BcU r^۬u8oO5Q9H%{D`ĬPsS!H RԷ&)QaT Q xg9ND.M?,x%StcF[i?ݑ(Cq˜"~l B`/dˠKPcij&$q5raa3C2%;Ljk+,LPDf= z_o.XN*Ѯ(z)n`ogs_3,1=̿Xk(,P]CH1 GRx$;&U\q5&B%mNi#{c XqЅ Fnswf"c绚7WM:,k_R2H͔^"B@p_q\*Pk}ׂh=8v"yg8-ڔn[%V\֚o-eXe+wDfA;֣l`&Xu(b%?n+غu^ZK>]uZxP疎 ׸\*K8;ܝ'^>dw@ç1S#r][./3GHtyε< U88hc(7w_*t& WΪ4ym/J=qr[/i4~qyx [ _.6 z4">CGNZ f ጒ`o{8Cc@4u$r4X=oSOGw\.~<7RK'~\%S~].W f8-FUIk8ё쀹i$I!qQŎzL KʹL`&/$)RД{/cO'V47Lo q `]!|tYP((WN:vG %fKnMtugQ28b1:Xi9< pUJZ)dIJ{ 㩋5^8&< RM/+z{|_6:@4@-W 89~6c%e_ُ 0M?{E(>AK֧v MqxF+p s#OCh%7,JGO0Ngq|8;2gߊĞ_H:މ0}~T΍XmYrڇ4Ņrj6%zP#ZP1|ȌrtZ)/OŔ}^z7ҫnH:Rx[n}w{Mu\nfQ;)Wˍ7wC:64,\m(ud/Uķ_ gtS6N@k牘Ŗ`x0ݏO&]T U_݋KѶ+I°ыh*lYQFAZ"*4c>>ʵ !5.SNUh0䧚!8/:beo5423g%(&&uNEm ,|D/oY%̂b<)]1ݺZt/CyUAGzdW6򟓛3T~9+]4{WUv!ڙh<$ǂs|sͼ1T]:{t֩?Qi+}%.pH`fN_#f+a}9etG5nAIU)gU;%@x/G\NRE.Q9Ÿg S&ߪ}$I6 ψHۿo+8I lAwHҧ*fXu.K R6O{aNn/e܇wÖ_Z@rXֽ g?xΦ>:Ij 2>sy8/!c瞰۔LWnH2QvwyR_e5;ED @LU‰щWP:X_49K[A[J|jD9H kݖj{uTC ii1\'kQ&Qsw|x7ZkLNmsr~ U:QTQM <=?%L]-k %­dJk0 H?F9pYxZ?.E9WjӉwKOi|zBMX f9l b3B[hԇkjLߊ3m8~%5&ͅCF8O&IP^{niZׅH?| R6 m/ Kd05QJl^@ܗ|VJ:ws%yA*CoqR">/@Mv.&ESkjy | ơCU"˃9^(_^-aY#j,.)QQ'ZV3~ q3N:/L;iI 8lsac!lEk6D{<@&Mnx@#4/\&BmX%$0u85 / 7LÅ^vSX]1R/Vn3CK\JTEx[GG Qq6z4!8FfU7 q3A 4 FrƀIEֶ#K=:TQed/R%q`\ٍ?nXIrE'+#e˹{K4WÖU;hW$r"eڙ7NODk0x(/i(< ‰qX=daz:dӚ8Ȝty`LlaS&]-}T(NJ^N.J!]XOt w5/TN/-}A 6^$\LXQ+DA)v } ep{W//izH#ND"#&aI3^{חvkv  "NJ}Dv~{ByH2ysfKJ'8/Eysmh*}[c{=}zIQ@NAiX >3(:)VAcNADC*WqYOGߓΦҺHc),Pհ)"'^J$K`5d2]pI;U?|pZ?"'"}9TKK:f)*h&&dfYJmu'RFhƋVpd$" v6}!83mnt4J <.A=*Ŕ9b͘,$./pffEϫ؊P4谳("4g"CP?;|Z# 034q=08kU˸K\yx֮'p&A.LM gF^V3@gmA}O<`L=ǫKCH)Ӭ4uA oh."MGRuVyS>|AL6ʒoS&i{SZTC"˴9Wl|ܧXVq9V޵4}Ig[(> S1Ǧy#S }ĚVմU!}JD/Z0ŭ5+=2E蛲L{J0ٓm~aoQDң@>Q}~s%|P<6">d%b>VcxՌL ]v`Na^RCL, -R>RU-H/(9>cik$ ݤ4fXExl+EPU&*j3̄>qzyQSW-`C+} ۳h ?.!r{i a)f2}D󷖤Mj1qr(  9w]Dc;1ĀАZ?R|!3 Ym+(b`ـ| _y{<㤐Iy@TVwL̜qlhh_п$U?˥vv5$!/P*K^Gp0]n]n4cѠޘY{hb3%P{( ߴ=!MQj'{ڢDA8U9Js+r6G4s1R8'A Noa2[FpOr4..CvT44yIaI%ѕyfY ^s"x7FZ׶链:MՖ 3;vش2Mh&΄V*za1 IB݌7kftYg֏rq !o&,ImQVغօOqӠ=ʸNȽ[:]:82KXT…1W.s_ 0+z@B9+|v<9km~&?B/G'a >Vb<5մ 22z7VA4 ūIwV -bnQiFϼz6(my t,߲ȚQ za!\,x-6w4cH2i[7H5ːZk weU'CWt1us뫬$^w<'`KH!Sna\XOJnYo'B}$K#b$AEۿ̓R4]zc|A'D=-b<׃^ e \DqRD^Bb)]Aau-eA5o#jfLcmȗdyږɒ[ PcoT*"S58v "BSrDOI]8vZat4g:ssgKavp ee;ɧhiɢa=YgB]9Օ:,mXgr2GMeͤd¥Z) ۶Ԯ@hf n "qTi6=2CrpS?m;4|ToЀdVAsXo]'/ ӣa;gj&%H5KbӬ (/m'1g9Vœ̂U}8;Vm>& *CM1b+A;_FP􊠳eb"ƅCX4SEv<kQ& tri%]bVRs:JHoSEKh/@&C8kߠcVJU* ׆5iO$nA {4XwT\q)d[(HPťO@foW&y#hOD.[B릇CW"kh SCA+޹XRtvu,Ck *Q(w0͹h:!3Yű=N,LYq(!պd> KŮ#HyI eOl4>آAŽ'9eI#Y;qYdVRB895@1eטn\|Hr)$[d}ա  %mb%yAQVW0ҪUpD~/:a偳w7PЖ[b 2kuR'hO-jYchqlpf,邓{ d>@zM"[nldrEVeF<6%dKK1^o)aIAȫi:[s +-0#zH&r놄lPvoCH@b!LR#`sWq<;}fK 3PY:/r+zNܢ)N'rwTbHNR|HBiaph?^U2gFBSDBY=qC0RcxU4޻6J~UYeiz%<ӡ!4 $MTgY|'7ufǦVS6 V)3O3)7H;$ zY J{j,Km0o^#G_a5]:t)w~4d3O sWf:[/_eLl\c3ޑLs'*ktl"nC N{,.!GZ\׬iP'-5и{7s}}Ѝ'PfǶ1>搚UITj0GwW9Sذ8N/p1 IzoFD(q<-,DBX&lr(x(]q^'j -FbwSusrz#[[=6!]/zcaH,ْο7!d !SC+#mKryJm 4Euz@8yƿzQ=Yg\ jA bK|(>F8\;6YpZiDYQ ajRV|=^E^=tEYǺ~E2)/+ny6ŁAӉ1`)-?hUMՏGȪ i/?mm&abw5cQ&P D[( s F*  |hᒤ0S#זl5Uc-1OlvY߇#{R3N_%U^i=J2f~xװ֓ERֺߠy5  X#YջG4hȢδ5m:gk|Iv^˟F+Y Wp:MAtk8]V&Ȧ=rńN/ɽP؋mT\c4leI>vkUI=<.kRt?c:H ; q`SOPgWy&L~ .iɺ#SC).o$ 0h }벧 N#]Z0 [Q|l!F\-YeғD]׼ yB.٩j(GrA7Lr $@ L1Bx5k߱"5 GmC ƣ}izob2 b,z@{ {&̧_e8P4 e!i~WW}[JjqߧXJd**S U]+eOM˅5<%ˬdOR_n(l.: qߥƙ7'O4:r@PrlεMpLF &oYj/4 =˴n QGG@Bt+~ p.ù.!Z<#kSb)Nk"XQh3W %iR ^1b ËUk2xQLe10T(]r?<޺Sfٟ̘ s~koBŒxCk$#UE)GƤdی5e=3s,n]7 4VOѱugzLC u)3Z<^^ ;#8Gf0“̯ȮZ2Eحb5.+6P+5GP0}*tB8([,diXVX&fzpE)d>0TcR&m\k+Dڵl_`:A07BÓL \@Pŋ~r?d8GF!S/܅pv}pGʼӼ%0`6LyF$7 㫚(XXf KQr$8TI`2f.3"CR ܽm{}xBt>6"v(ף91qyx-A.:<6C6N}"&((Uۨl-BazM Ԕ]vq]C[*.k&*~\qR%zP ZP[Q,ȾAwJV.2mm z2d_bGWIxKv"n Yu28Z͛ !qLIbW/QiH gW ,e~?ny8pgJo{T#AUhAU` b Q*g)s;? ޙ#I<}&WtL#WKYZ)x.|uܯCАF=PK/ݏ2ag̟6`OG\Kt5w%DwTC|Z!# cWPNi z>--gƛAb}S昣݆ ;HPmE{X,tį:<|Ir?u}.;L[J|[0 ÀM= -@\Ś5r+|H\&mAZB*փY7KR+:D>nt f?J1w-q9k bkI"9_ƤW7>J^NE1b!EM?R9qϿY಴n%Up@ 0e;f{MU5ғ4nM߂.&ӫ>q(*ςyZO& #_c ej縊+!qK&8zOWgtZ$X*N5ܡO|* @ iL;X))wU3"'. ;f7 :0DjcKKtcCtl=K%?7@7|avn{M6H^6x5p[|~ -ch;P]G㺱dlnDnQ'qˎ &#tڮ, }/ %5AkRq_ܼ۬KV-.XQB`}Pĺ֘>5p Ĺ1;ED2Q1(zjm/6eFb!`SLc^='8]3}ab<(g;Reu d7>b; 1OZ``JYX1'XZ5U Gn$] C:0n㚇vNPW omX(N]6Tۻͥu<")q*S"5l'zفL4ئ%nv]{>!%f-g$ Nzk/3ݸ x\vݥN66">< 7MNBպOR@EIԳJWHn"}4ĝf2Q t%z`IּB]CاJi&w(i? <J)(}}ؘ<;p Կ€;Ef5ߤ4c8|z"PY0#l<[Z}#~~K.P&7tRwO !|Bw -=<7°\ٵZo\Y-X*ot 2e`>k9NNm8kzY!R#eWSOQ,{˧a$DH99tq U9_]z|3]/*  D*Y'=xgڋ!|#e]P[˘KɧV8zvM3[q:\,t)SXSrV]<1r^H2ܤ6̑Q"̝n+fȮC )~6!_v΍z!@r>Er,=ҲɈ<k2eH.;}%^و'@&)˷{b 7v~ȳ[]} eQ0=:KFjܻ733 h0S&Ÿ{|Rz%c=aSN:6+!Dy;,$u&O0JETư ᳍E`&l/Yubg+V_!EX"Zc#n;e5^Kz5/wQ9:U>B7!Ug!q&nDw^2/C2g[Dxnz7/ P $ЪQt9gRk%8R$ >#"m*$n ˷X2K$!A03B+f"1r{,j~ 35%3۹V6@<IB_: na^-tJY^@p4O)լniG[u)O׏ӳZ'߰!&Oo߿^i}2>@5 N΁uA,X:V== D_%F ]#:@tCuC[9G:fn1$ErgihC"FSGs ŋTZ ZԎ(gi7Nj|?Ys Br;BMp}UՒ}u^J%fjG3Z|WյG![FfW^'Z2 .mֵ㓃j$Sn\(' iw)fZ B~';;7*ZB'94, bP3{(95`Э"T3><}ҚJ'_SLfV:-ٻsr;nA?1{b`w8Y0q)'e O¿^:m[ E8x Źڊc2B|S~ZkW#Pcś+.)KFY4am}:ZG1i]c0%\6#p"`P=7]kѻP- h& !CX T9HڏˬZlюYbYv喵ZpQ&m"e`fM,)50 A5=lC;]`L8iח,wM/i縏s!#D̚w9,M/q<͞i/J`f .ps}jI_#X>9VmH.[#ߠGOrrs .?ׄ`,W<bN_#+Ncbw Ej\zذKQ\/v$LSKI,W̛]#dX(u{/}pI .ckad\P'+6*ڷF %ĊX3H4SUxL9/>֓ݖ;0-3EZ.Yp#12$N߮3嚠!+Sڂ;V?,SY0c{E;}gEJS#g)S~Z_= 2t2 ro\BV@g``";8ZwcxHIS#WPiF|j$lݱC51~C'#ys`)PP`lOC0pZNa< $4fKNۅ]IKRFIAyCMs/,olZV,JpPۥC{u׹ ։9yH90)(b|[d8,D3U|Zj+,Ȼ:t (@3z~1b*#^4Rl&HZ,Bd5?=̨+x<(m5yOYCA F|[Pٓ2Xe&J*8x^f(C MrXFjHB 11^oqc'= Gxɟ~ltK!reBͽ_;tra;?¾9F&)7!ɏN;Qe{,tįfPw|_YrC59x*RpqgT FJߞ/EE@⽜х׷&y̖Nl T/ ʕg+'=z^~gK*0ۿvß &xskBZ1h#EWJk| HŶxN}ɏ>74x|]MuEg3w!x\*T3uvC{}S %uZhaaNجNvAD Be.[sF;l3F| |Zŭ 1*zJaT!o ,Z)"')L%jΖa\[Jo9 A6q*Q3a{T r5VW}?^ 3P2$ WhT\.j3sI֦x*mZɿ0ɠb\.QRKևfFl}_[/\_TUe'㞠r~3)`'P{BU3 AAH(4)"X6-z //ǥo6m1zY~Q{)"Dr"z{kq(lalƿvdS}$2q5ejB! v>(~崺Yjbݾ/A5}8$p;_aΉV1rS*E^ЇH?l:;i!Њȟjô*R9dqc`AϤJ_E; }&/RZfs+>"+cMp0#{.w_ RJkOюѥU{Nu+z?ᝈoP˷#^77I p4iFͷʏ, 0_\n~ ^ ݬ.&i6PC30n! 3ݫ ZػAw[IxHځ8y=?>V{Bc(6޹7%SO:Pf+zG 1sȢAp|,cMj*/hzAQ=nhfg. ޝ_%U> xwΈSpd{Tmotg@OB#_ ́$øEޖ Hwnu(Ɨ3ςcXHQoէ|HLVrb݃;M (%c=6R -c[K3=Ã=[fN+GkruLrѯÝ:N25|[A]_N85dO" Vw53z4(8BvfDZoqs%2ٹDM߇#΁<t0U>sxu[ڥj%o`tW݂ °-ÔE=1pV[W`l TZfKP!6~2e/^^@~1T*qij  +6 ,5uzhîhQ 񆁓m0KP(gT-3=>=4,W5\y;n})a:4MS]%Vf{g8؞{ GYd4!GFCw[^(M@~'hзwk/%H'e4254zrۘ^Uؼu]YM;g1>+R}tesW?)CV|e|` Yc owdGF=lTb@I &lAxc"@BDcZj=1e(㒧F>=s̷(_ZXxX^=[#|TXA;e5"۫[*)YL*fz Z*;8Zu"EvXE.=E3j_;Ԑ;ѭ]N5W1I |`u@ZW*,_3y;9M:4B|T8$ЃluZI@ޒjz} JEf.f1'tJ5/dMNr,U{Δ 9} ձx%6= ~W*Tp57F&gMbs`, F; ,vᷨHF&"o"9x:ڋN yJɬLK/zѲd{7N$LU />tLRhU|${ ႏtPh'"m@!,7&1Lc-"q S 9/kwoe3`er0(:1: !d` cHVc0\>K{9Jy?-<ǺɽHWc%{lLO#kU/ߺMwUN%sqVh*eC- vdnC ZZ+ SqO9(GC?vs`uͩiی*j|"1HQ<U&d U v0G.aVq H v/LwSajm0Xtw&?`%p{$$&Ҭnsǜg{6Thܩj@?~"9-ń*RsWk$qbC9n:֩ `m$h I2 ^钧x J?K{΅U~}TkO8QkoGxYdA1!~TdH2j& Yf w,tsdƚwG7c5b"rج'IP9d&'yq`=Q7`V^A>e^v! :jߤ'g0l jLl*.Mnx[e!xb!7ăbZmu^hjWkqPz&&ԕ[qT6츲w}hMpXiK6E 劬LmVSϞ=N*rkjGrpGWT`Z!u<$fma!zյ/[~a+\YF|[o&SD#Nd\:}.ʍƚN~%0/,6<bp:h(> ñ<%.6^÷Hx:Taqu&raI:\ȍ0cCer=1mr˴_9v^}+/Ea7WU=d!WRhCmWΞӔCO60C*a^&֞q G Y{[7e*m&nv^1 AC;fŽxUٶ#Fv6 `qOww;+})1eߤ g)|O!b2Bh%p[vүP~`pmi{p E/݄ ޻$c_ xmQgb uQ Z3&*mf?Μi674XuCy)Z+HܼXQJdO您`$K c- |y 7xZ:s12fw#в){\FKTǗNOhY;@\֘hجo(K>*0Db7&x, $4ۉBFHFyb]"-4` f?H~0e" 1Y`={;u 0f|<;s\)6s:> L,;&ʀs$ĶbCs_aҾpI4iqRk7^oyvOP@F7-dAD,2YY4Z}Z&͝xaV7i-A.}WGD͞CN6~д@hC-GWǎxqa cU~>8J֌1˱I2BzBiV֪^"a|%;QvrYlLDzQu"1L5UX F% Ho^f(v;/y(ׄt <` Hy)L4ԇ|jv$ eV+kz9װBuQhQ=nz&7=wJb$Ob3K)q3AE8,f7^D;y9ǁ50ŶA(& ީ;n܍YƢĆ1 ,kq_Q6j6'בZۗ *9̕-i_VZb 9RIkU@.Q"w@ϠP~8TKeU6n&=Xr\ ._ʅHWq5\'ӸC}RK7"" vZWm[8b#_N8w+:U HdU,;^ !T^w^;nM>Y.[T4Y0b;&lz9ΔQj7$$ej}eWҴ 5ɮ9^82g@v{vؠQĺ;Im%6(c 0s/i'WA!e)k3kN\_ ۧXo85N_M7s1\I(e Zz$xEmW:z1A݌;:qǏ {;1eퟴ ;F&G"wrՏJN DO 0 ʩ,hVW73K 9rs+Uѱ= *>AЄ| A|NYSCZ%kr^f e s ط|a'+v_Wm]| |eڝߝB0_mւ~C}Qξ.R2o_ʠT*G;g2NC2gcw{{23F 5DP,s#B~"fqVX[uoZ/@,U }4| UJrQtZPi!uEy(s,NV, \Ց?Ty͛M-mg(V,LU1p :+6C;Р$f76 QlZ59T+5ό^p&6sNnɌ'V6Q9;EP/ߚ:&Mz; ǖON=FUJRxM5\WwSfl _4S(ڌY;0!v2ox IEz;W(+iK޴ 'n2b[Jo_bNر93WkZC8͓>-_LzSR' 9^9kLWXa@䭯}kiU3-ّK9T]ƆHCԶU/Faf@r^b8mmނ*1YCً}S )_E3hhePTH:{]nz[LP[̤k12vWSv*B'pRP_o @GĸsEن5D4BR]nS n˃ CپcM6nT$=ivZKV<^mh!M̍ , fձ8&/۔Ř5KXt.LݱG d]n? ::Su@YH}RGt.TC F-@}m|D)U߉pϵR(1NA`?3ՉO\[Qz`^8yћjF] A DY :۟`yMMtg3@5|圵FnMuМXw^n4g)L;poI8~{]Ϲֳg5b&*< HPmO%sSjLfE;{)t#{kK&db Ͳ <Iꇙ})I3^ed cրYkYխe%)Yv iIls[CY?n}UTeĞ<,B׽i 5Ss ?BK1=wj'zVdF34'"ySfVSvN%G^n'ҠX<'޺{1xݜ7FjLF{Ւݘx 3)tZN=_f[Uڮ/#{cO'?v@Ь=p $;BB`+pIc\ȺBbK.c4:CƱ,$xoK!>Aӯ|ID9^JIJmmԔ`4K3{zhկeM>b Lj2a?bZpe]/.ИvmJ5T Sex;@nW(É%ೌ<^arM8gԖ*dTgQ )n[B-H0>##Yq5ik dΞT;KF{YS~~Ӫ* 9@6ǵ1z8SS'p!tُ?yr0O|} `A k.XewLtM+hc 7b)TLFO",vja~Io !zWwma id{L棹EnMֿsB'8?~|C,p='LES2:k/U`k-? mz2%Pp$?7ޢg $'A>,ɿ{Xp~2]QU }ba˴N=RP=XJB9_yb,_G|05-vd~$e7V_zIm\!jTqAFuzf\3D{8=z=R{'Uk ZBlVxPpwcq╿j{5=@E-a߆reSoVbfCYsyx5~`^rUeX2Od7d? !(o U};ZI?!J!_ĵȐneb>p- ?txÛ;а^U2ː+9.aa!. 2Nuy>^[ Aӿ/iۊ&\kJq3xn'UJ-wh>J;TgS`L(7x"1 xd,#,3Qمm:w 5р=2?̿!O$SS2kk!Q0fC8|7qJclsq'lq<}_!kۣ5DkH]]d,8$ !mT id\krWg$eDZ^3By7(RѻϿFRPdp/ @u*/L v>F9 FXt:@Fm{d㿆H>oL,q2V"Fu`<=?6fSuˈWn]{HZX6m ;;N'.C᏿[l%zC3-"~WJ ٌ$nōe`q.K=w)LZ$n&nzz/Üċ&Y4x;v9w0NxyRkG v*wS]à00úfayZ7hW *檔%F^cK@`bR3EEŵ&Ӡ_u`^(O !NJ?'&k;!`Iu1I%l/X3. -X~v')1,;]/ TvԁbJ6Dg~mM`zz bOp|F%GH8FZ|V|S6(!vΑT''?[ӎ5sfpiddN܅eR(NeP XK(k]{'6BA2%0Ha$]'%rbSdkF>0扝1zqEu5+`CUZ fb)WD gݕ;Z%-&Ij#$Xn?L&PgBY3!ҭoE1nl?o_i.$ svϗuya $5BxgMJG6bdǼ[N3Hs6 W7}xea6i  XDDҐ]qA(lv2Mv<~LڄĩN  5O,BŐ㒿FދֻiX~{6cӊ[:/<9~Ȳ@G!EHu@#C- .Ncc84M M5:ku/l.5v9/&ŗ4m֎9䮄aeDİ̩iAN29kn㟋J8#8[L۷Ó iP7/LPMjW*6Kra/}CpğȼZK*"|GDp!pd}cf "z=Սrt4Xe/`'N,Z7.19>ZAyBK\LlcF`İPgԨVMe:}P㔺@T̏8.h`p&H19 2P׏]bl$Uk@aYƞ{tBDxHS1_b6k@;u b1K)ZE~~O雁8{R8_ʄp=[t8=6{Ji4/7C =.D`;3`qO|)&;Y?- lNiaEJ˯M^>1 Pnֵ$7w VΑE(W׃ZaTjg5ԓn(dt|#Jr?ŠNⰾ(KGNi?"Co-]5n}Ͷhee kOZWk]T qfVYMT34ͣ_(:y^%oF5fo>lR}M}Hs_牃b$F I~R !󽉌m*9jaY)Xyj: "|4E`*G~"s+Kx9^a <*֚'%FK0z%`rr0irxU(f'e' R1._c{؈p9.∄LY]v0x5L9 u`罔;hzUd6'cܱFXoj脫^yj2U:!Q]Icvs/?ݶ@%яrŢXB1 ̉i:x6&/AZ R]֞ƍft(+?&.\5+XҰ 2]&ݠIiE.l%1o(cvas(t~`p7)HIde-/7 JzgL8l{}o6(wM|lB\;ڇm'-eKg z.rw&֘ۢp+RC C.g#عE.ݤMaNث-^KTaϧ!wHCYD@^wԿƄ PwX|! lL_<^Yov!(&3-- 0qÖj_V1ȋ;+can`6.~k6ȵ a[ICа+t~["f쫮.|zJ${vx&)jQN?uOz@}AӋYO܀}/AYmE̩f O#TNZݚ6O_U R}'/NY]N [>pBff5VI9XW?^' g=xC_#\飛f;ڮM72ZtBY8?e2X׉c扐ǙXe"9%LĎu߼2`#K><6ls oz Uһ U-e҆A7NcRVF z媮Yw?pKlξ0JP2+-rVɥaWIC{d+>(u0`=,9V}XtQ5u qy[ׅRS1L -l[F `&c*l 1-5:X?B2)Y/7A*e#w{$Uѡ$v aGW%[>T2H Nh3coG;RH*42Vm=Nb) 1z+YkJpt_[9!ɨ1GC/Q:4?Wޜe6E[P:_~߻6e; 9qqҗEm7@o"Uk -{B;d7vt-]ڷ7hډypx<^τb^VZ`V&SoT.ȱ2ˬ;䝛 x2aٔw|]C)5gms׻']TK1y]~-%LO>F(يo4 qހ}, ;% w2MQ' >0Ԋ:"Q^/`Nx s?"(O$ c tTڇAi?eKYP M=-*3y)-&/|Շ,Rrs%5>;,Tj ĺMIGFS3;pj-`k~?Z~2m c05:4?s8ͼz /(siK:^I:ϩ9œc6G S.}:!n[( ܌__toȴ c Xi_}pZ q? 7{"!aɦgTjL9 {f5ִLWbwz߯5j}Mi_Ҹ01j%r2'm1XM{,DAݯm(<,D@¨DZT+_ n2 ܦS(5$ ]WJe V33}_mkڑ}⻪_s`&QG"Dw+WdO0DsQ1_o%F2\M90Ky#*:n%eka# ~ x,ʑNLdPdH<ڽrˮ7RnО@ Ϩ:籛(wcDbcOgN9ۅbP0\s'NOh=vF}<;#uG\ZoMFFs3\̯,v,셯7; jo%`Cq\93ERa3g,ڢL/^m$1sbeg{}%as)GdúT?J ; }[( ..(k`Ƀ'2MW1{bt^=b1ok?۔|Lđx!($E) 2Dʺ_4~cx.p_|<"_[%)20roݱ3ls lƫ15+X  XiZ;{WB8Қ 07L*/נ!P#yR5V[w !Sҭz{M*ҞfdFU=oPHBiՋ.Qƹz2 P$M۵j_\͖+4`E[ F 5a-R~z{#RzT}PƒSgDLE\ STi 26D7"/vYqX oL:oS$Dԑ=2@ 6s+1S)ol}j̵GH1m\[,o͂8< >*%惛j QGq6-]9z\nhLZ4b>|كZh˄ ^}4yQĝngL)$)7QL1vVSQyEwu `{3Ame2L%>‬ 0̡?[c rW@W~}&vc?znCo~̈́v.,VUPz,*Y? Ath5+^&ne2*gl!\!/u@3npB712~ư2o&cشx(U6!gJ6wN9AVѨPK%uK}׻Uvw Mu#7|l l!̙ʜ#o^p "O<PGQX;^s^.crg0!b,0-)nǵJdlTpV;tO 1j_#8@Է>1=cxU%V%݂0e% +0KH~pP|%Jb2BV-Em&\r:]Wbb7r8};; VLGh$ܛrpuE GK,N_~ű0lL@};w0(,̝W_PƁ$U|k23H܎=/S/)cLUI"qC k{7_LU= i".x +㫫~͌ Œŷ¨r `_An:[iD #b:fwwD3w/!ls$ځz{Mv~3ϫ;U_H&5/ ?>ᦏ wS>ݬ*j%Ł drZ6߷ÄP%#XG]YT<'=NaDjy;KnE'нBʿzvCn.B̺M #]'q͘MX4V`ĺ-V 1^hNј\]8-2*ǣ*?Wڔg:2YHO<Stkxx#,LY\?㗲?P|JaΖPՀ871~,U@N8PcĖs՝ Bwϼ0*ЊUXm1֤}cΓ.~~䨓 w᥹e ێ7Ja nD{uhA}( 0 )&#Q8 NN}ƴz "yKh63*o%YcѦb~{_lij|T<P8=/& -.IbvfЗ+եcoG_bl9йnGn]*n(d +-eH3Zӛ9u͘l> `6aOS9+9s9 #-@]S-&`ABX~(hȽ[ldٝNT]>֧d ~ aRQb#wQl"tkJ^J{b U2/>!hf(<^RVSGw>oxey\ U4h.gCSpsBM5XJ|2 `=܁E9!n#$NްF'w Xo )5QJ\*B3` )xlsA2Qد٪ 673YiE ''X<÷;bx_o}An((%ы 5,?t;<*lTI*;6lI@\:vZ F4_T͝Js)NMiYc2aV"W%YlP ?keOZw$=ӫ%+5spO^XJVżgQ&gN97 hKAhy;M\8r+"+ݯ:舒m-nHb8Y`|A~*X lBC@46wB'D?
.(fkR~Zum8Eْ\;{uҰYP ݃;tk"ndSΙEU/_WOsƗuM%Vˑش4jpjUv@a089Fk[?<4{S#F܃5d-^J3kE]p˔x麌!TtŲ@\_Յ"ҫ}] TZێK'UdyU͒xd Gd5N- TІ[mEI0cj"ʟu&92w,;7^&k=ѷA9rbrm.J/XJ?9@2  tb'7Pl=JIvfE枀)a #0nI>fj@-+ln`KjI~{ryZ@p*L}I;]S?j*hBr%/rC%Bl5h `6V[~=D;N.hgTC$m>W:5tt Ba]#{d$9b xcpORph۹fqOxvOܙö 9h;~k14D$B~^ew1!VΈo=4T!>xh )dkN&=\m!zw8(H|9a:@%p#ZM S[`txƼ[nz v'1 wПNLs˶D'Qq`\TTeW+9^<Azcms`Cn2Q5fb)m ԡ"f0HJ'_͖ab?цp$uDE16sb?Ʋ؛GJ:*C|ʁXr남|7]OT{EЃ $86uR\=Z_v>zl~kݸrD$ k`,UA$}7髵{!{7֒,y.د)$b UQ9zX]b}P$)!cKя ˫U(@SS%wV#?a@İ4]Hgsg;e̹W9W۽V>Yr}9.L}4Xl?v}1;8ðcD ? xp2UfQo&;oB!D ;cA:1׃*7g4smhP@]n]ۍ P,5 ({NH YL(3cK^miAl'$..WJu*hQC{/1 6dE)ĨrQnx~OzIÔqA /0b7 2Ӡsu,OdZobIGSUޛœuV¹|q #!PIio 5b´d/dp ؙ)R:0"z%>>$v2R/ݯ|[vS<T]wѸ`M .&ks-/qO^_i3s+?C*wټ1?:F2 h,T]>v0^YQ9ڽ|[u(**/Yyů12{ vhױ<{7Ԗw$=J-4#>,kԁ`[1[)F&JKH݁Léy xi/ɳH~><g $[x,;`htT_"U0 o= i~%D07AEGhTj@@icLjӾ|dà)#]#w/t߁*@ ѩjoO 瀞Uyi"fBݢ0ݑ޹6/ QA\9M 𣑼u*qmTZ>"NЅrͫ'AtPߏ$: @&XfG{#x YS KBα|Ođ$L^ˉA$͂!k '^Du= i4hipʟf3E˞{[S%u|_eYDdMoW-e;1GEpi}"wXD!'%vb#Ng6u̿Bs53W!;Giu贉Ēh\޲+#ťả,BLp/* ɖjC]bB#}'\{q2o`k sKFqDϒ4@ss,x-T$v;ξ|>]\~nx٩@bm4+q 5Pb ^P=)-40P_yY H{mVӒQ Q0$G@ E4v"MP̋K\ gyg+=~o=aiFA9;21[m)Tq xPH{ t ܔS-(Y f{Ó[@MocOXݵu5WN 27ψǜg=qbôٍR4 ;tOQlmکRNP $&_i^Vܘ #2ץS]e(wp\FS s3) G؁2"6"D:Ҝ Fy@A#aIwM9 #.ZL-G!+€dh`GY[CI1s4>/N=ZnH۪=(ĈPIgN;S0V$tC/K&;&E 6l֒[K El *Hi>;Ǥ9[0qe,IoeaA} ˋXj>l />jHP(q~V^(=5 bHxVwm0;1WDǽ yj"BgCH4Y!@³~ Y20<:,4 IiT9yQ/P* Yٓ]kٕ^jsgwW|O$7A K U)ݯIEؼ?LA$K )Z_ SKO`AGB;x#2 UZ:)|tEǶw/ 0)+nȘj P#?WYQ4u%%SNy~ f3}N,o_nI%襷,mM.Z0x=v良R>P#82(?ͧ!wg\-01Yiţ-y8P҇"$|FoMFZeA=$RE 7ˉq#l8𻰨!<;8wQ Cy¢IRlxoaiX1*~4i'@j)|yFO^** UU%Qal\ ћPS]ނ{ZReQ V +ͨEɣzŀ7ҷ4LNdb|FbPlE9 Igl[ULlFTRtPٗ{&%ü)ʹ?l D$;v>/6ơDx@ןowm]W"Fq:4A =̳8K3ܱ#Q|4h[E}25sgʹ+ԓr ??o0tG#Ri} ;361Y\۲K.B!7#G;Fzs34,4 (4Di9Amq$y&30=H.ך<ħdS22 E$^ځIXP^~UU=tFzQuʾ.OIF/- +pq!P`ܺ&IG)sijYxՇf4Ehֈ=8pyG +1.0 վyx4 WOҒf7aT)P|˫DG{HzQ>7}d) n3F08-[NiqQ7H9*/VM eK`:ogAv?&uGC2l^KfP#{.XX/vKNDaF>$wi׸o"?8PxFGēK/*/֫`:~lfKfZ/ik1!3* L}E0m'­;uf6jF~G@gUp~xeB?70$b*%Q`? ~T69@KBB1}*Ƒ bf g}ON2.s=5c[Cf̿D s{.$ELcU-`ɄQlT7(b_M>UZcv#n/Pqvv2|]DH \}]||5,?Ӟ2 R _X2gjj`k'd6q`pE {xdhy„{wu)z߽7/@kE` va n~_WFUU՚$U=Q~a!0d;I)Nd:D}.^jYrvBڲ l|Cz[ t}tf񊞽2PLQi-c~ Nq}tB F]qEuCh~'Yn4 k&P4&͎_p ӥ<m2hq/0lRX{߿ +(&h<Zڰ*e- ^*_(-L#K Z^~5?{cf" R/ gj/3NsVfB:cD~!#6؆C߃ g*|#XcuQL)t&FQ2&H4=5~edBy;>(- RRڸ#hMRJ(x -p0L]1z-?kH.aJ_Dls,"Wl$275N]f[}_auunaԕLzUɾ}#,x2nNe2Jx,@nn7/hfA:F1@Y_5C&aB)u`ӼUϖI}>LFcm\Gb) g`NĄL]ԡ_3r#gM`BO6V}} hbi"_smC,Wʋ,XstYimHbkX֯]2+5n")NlT8kwP,>e?u 'SY֓{}075M ;UvFoe9@AV}jõYbcgn|L.B E{fx}.搌8L'/Z꧍v{kz,  Vř0꧵"f"g4LԜT1 UG$~(Ѧ2>L(F4"C%:DtcBW3M F'Wez,Ffw-^ɪxN)toUp >&{p5 %FɣxƼyÝl^࣯я$Jkh,!baʾ1Im|=K}fns)E`X#\5D-\ :Hުs{ua7. vl]Ee|s1 {Lhi$&W-jL waFt=` ] vXlaNr-p>dūNKu:&`teP\m>39Q$.&eğgu}D֘P_ޘ&dD+ŢmtṫScuYtd3KhX{k(]WA _^ixV:p? l >_Evpa/)d\|yQ݈-@m|/រx_E6=\ҠX0؝n`ˑ0ŶtN Q~oMތ_Ѭ놢]o2`(sUQ%(_1NANRqqyb7`d92'IO$-clp$6~m7@sNe|G5U`zԻeWz2+P: Зs,SW:Fym+WS1DI}*D\G `7 V鐔R.%|J)3lZ*D@[Z={ͤ`x{i厦E9W ?6!m6>ˮsO[*a;How*6ZhA c03 l,JEh<&#CN=d]NMذ%$"_sG2luFKW<ɊlKE"\J*ȋI`C]+9J*Vx?TI0jLJ`gCZ+s[XaGPchah TU2zһ0㶘<̘uqr=J }nωݥ 0oGɲ/ "\qf6'EzI1kY||bBw#D+;xЀPV룒p.io=ou' jA号.G{uW%4Xm:S(haHxoPunPV$t=٢]M>Ua4F;&pQt1Ċh%<|+bjiJ"&n~yS*Q!:7`}JHˠ<Ev`+Ƥ 2i5LT'wp3<GCi.v"Dl n_AۭyiIneKS'rDI)( VEāzCIr/)T͍[P.0wF-pNr{ t S!$w[ӑb2A0XPn]ULE ի5?CQ\G7>{&o;F`J-<*'~ڞ▹ rMA 9\;]PHQa-1J\af鯖Pnr(@\إ\ԩx"Vcwek G~6Yzlf3$>K_ӿ*8ηuk玳K2Hos=9Z+dhņ)e~f2 jՙ|ں-$:֛[VWʄޥ);rh&CO"vI lTMxy] =ho˥+toTlbҿ0n"HlP&p6= nZ'yeJGO Z|* #8[;_9pMTe`̼}I8nG#rQvBi^zJjo_G}"75jzx/ L(&TH8 A-sgXس2.U?VSڽZ#4}G$7>'0t O7NL7xi vFWφa 0Nc0ExAL1Ѫm+Dj]{s1bOWJƩ9{-\ | .KGC˕vN%ey<&Me:. ICD)qW kv 7d^ZL a_xl,\@ 7~e7#gˠ6t-* C~a,w-ff^$+/t Ŏ*\9π!tNEPYsk)Oۋ LhlWntn̓ݻcӝ0?ѫs[${.YަO[,kEewн1KU,=yJQF<0DsH;ihy Spt6d][M_* ЫgN*%7,ϑĀ"r,O<`Lg. b.1X&z6D+;/BؼE'-PV4ˌ)agԅn=$S\` Q!Qv ,ˣ"뎢" :x|v17Jk5BE7# AݽyHqjIP !% @=w~0m)l* RD P񕹪48Qwx9u"OD9TBRQru" *3$J[N5PX"FO _W]6H(L1=JcgS;2 OS͂>ns1=?ʓ )W*e~T?jfI\j!<=T7eT89OP.id-w~2l \@3Z{sciU$Za[;B{G]97E"#қy $>Z&[d&˷I˻숭O2 lqL-߭>CG&#qU{W#ASSR'eoXi",5Š1_qk ygbs8k]Na(T!l#˥CMMf={s0&/}j'Xj_C_nJSQh3agiRt@ZJgv9.po tz)j9 MF@i(D~C \gDU|+2<=9-ѥd >~!m𷶄}f8|6Lb]\urqk$q! )[AmFdo DA5QdMs5HZ=6D={' Q:%\WۛvXVC vflLtF}38SN7 * *All:_ʣ.BƂo(뜝#k[0C"S6Ui45F6,iVz4* v[9&a"15N:*\/t. ծ ׳j-QkcBt4kZњ~,p>MkºK z̈́%3=8[c۞?'MSހ);VE˓SO}@T˷J! v"!JE BrXG㻅<҄]*wdTF~)-Rjc Uf"kiwrNji(ÌBձW1ȷv*131> .Vj Hg]_LM-'w6za !%r;n> 9tUM}  'cIE5v`5]N5=W}ٟ\_t5E@R6o]JGl+w``:$!{7~l'1O*wnKWs0Q֩/#T̉bu<<|b=LpZTCZ-(EF2'dG_I JD*O@kp{N>ߋ4n3<6R/ w 4#R ɚlřՕS,|!zas.s8-ύH''ҷ9mZHDRm2Z3s%3;nrmVÜM'1Gq/}7&,NK6Ljg#6-`ioJ@as2c7w#k. WZ}jjJh:(plTn* L’MgiaKꄶ]nhIDNXJd0挗/?Ŵl#Ur(Cz7yu UhLLEDU͑g .C8=h[qh_&M& فaO9pEwa!8Ў6_(Nh[ozQ0GN$ uvI4dw@GC;8&9̹r ޱA\;֗KwP&c 50uE-wdצEdKU% 6R?\᛼(: /QǏ1"_4.(pQݏ{ާo#s bqBlsɞ~[T>ٛĻ9 UĵXy}Z|, :`Y׺dfc,CIa` ~;1ymڣrɜމT x=ӌo7Zvκ;r#GAB4 /d֊>x@w#h650S:e?ҷ[jhCyViMz%3]N)$e\x9ERP _no$4'G5[7yQooyxo')X4 &qTVVbܧQ*4z* s<nj*@dlK7B|/p; OEEX; _}_<&@f綂/Mzm ]Wj!Ϊ|@40 8\Y=C""E"-Bğ6AH J8aDvٕ&o|)8l)__Mt* uy`pUǁ#㢙% =AQ2 IQI9,H`|Iq],LJhE¤WK'qHAy?d_Cee -durDkO:JPvW1ǭIU-R5_&Se&JgT5i%+@jR)zl{G,(Jl*(h{w{l_1qcT1 .+2Wk aOX~B3ڶJLLJKL:~c^A]NNczPgܤZˆBv9e"@Xv<_ȗ"j,_U Uj>SQ o#ycP)h.d;(Lռhc@;l V (x"kی{Ix ]ZV9MrFY-hwAE$|[-a.5 ,&;&lY7n1ʨDAF90sE6`*1Qe}@si1qH]Bh nך !!M8iΗBdyFYyg`fyC iL?H@;6,T\s'*وKsԘ]Fnl3E)fg@;CGK4QNH -,@yBB6WJ1l+vy{"T$'+s}&o)$imx(Bjʝhq<\"׷GA[ⲖCGt7W4]h6QL6lMhH ݕ;(S#&0R75 ?hR,86TSxHHooAV%;nBʩCXd^%]@70hؒ(%85/bn!njSڌFG1o#w|E 3B<|#R/sF/qO_%E Gb!N@qL5QB2R^lJ>hU;f)ܸQjhrt,|]Z_t>E_B()ѱsZAdF+"b0 #3n 5ng{eKrkp@XoJbA8 @iKI= {'A]Z3 /9Rպ'B@seC9z;0 C‘%3̵T֗ =?4zܺk.ν'C uyآ{<\MXa4 B+Y?Jh5L>凄eǕWuHֶ~_*tFPB[}W+Y#E9J i^%cqCĆܝ,]f^~׭IMjfZQrA Y1@-+Sy44&;kFz&vX)̠TyqCo;r31\_cqb*Z5Df -_ p[o:[):YrC-mU/-Ɉy=B8!ErP0 Z4/^}\l;L@DQ7ڳX V Gb$Hk@;U%Q:'3ŰG(4b{ϳ@Ɂi7L>4(9g; GVKc{R.Z+Pw, WֿG0ol6k;I.@UY!,1S)#vzU̫ҰݞOL ?]`s~Qh" Rkj]>4I',/?SUh`.JFcsb_ңJH4A~$PA:nZ"d#ēex _K9dz|?;pɂyy/Ĩ"ԼjB`<CmUȔYޕA%^̾*5Ye^$f]~U=f}q \:H]6w=LF^$S81o.: |%*hVD>5s'A~ Cr +o&|DS=׻/9fM6_DnL $S(dxLԬER][@ܞˇ0-+vyX>KF85>9~eu,l~m軑6ɩ븫!I̕zoV7"n~!~- S"lI |30;ˋGbgi+ZieRuΎF0kdBy)n=%kg`c#-Ȼ8qY{nY j8,揣arPi+ LqGB}VûvT lqd{LY*Z Dœ,a-d$ME/(>Tm.`j5&t\,ORGوD6Z*ø.ft{, $z7S,>;@ lYR)lV*xr13mS& Btn/V͟ԎkWG?|@&67J#J+Ct '2sC fiH_a|[/`f~S9%,s98atKD]d7{RN 3* MW쮯ݛ(5'SyZ/U3Bo=#"P1%0,6Y1a˄]>OncY7!WoN3 I_-gHd @RK@>YQ\Wɑ& !lׁ}Bvțb`UvxK }аkU"RyM:6O^$M2:'d?d38xU'֙6Np?[V(R-"!~ %ڢ"S7A_\8`%^?¦誒 ba-隲\dhGE52L䂸a,l:1ô_PpsQ6aqIY;@3:$5EA<0ÆF++e{KYNһ1sˤ6&nڊotO2Sw^P1O=s+臹hc 5J ]Kz'~}k~Y#Exȵ>t0È#mzsN;L }ax^ǍuD\k`3bװ}s:1@Q(YkD]݊oL,m EDBF9|DcРfqCUbtZAb^p}DPx6f\ps6BKcYa]^h"J>YM˯[xԣ1mhS?>d1 7߳$fEv-:i녧4RRV_=uz2e8)H>N2'*=~<59*(ePS"<#)vBɒJ/#Lzw@nGA1R͘z+`GFk +NBaأ%nl[fR\Q@:J'{T.LfwsTp~S44:ح'V׿L.?K1ol"?}n8 'vQתTr/ J0^3X8),)ҴTŋ8;TOa_|LヺL=\X\jja☩F/:T/ᔫTK5~L↉7F 5;2cѰ{c&aH 2K h>-`\:$]us' ~/cIwߠeYoN IR 7e\~zpwFH]3bZR"B<#K|*/t ڢQ(}8?<$QF#J(kULFw)*Yp7_Oz6I;:Q.D}b2^<'pZ&H(= > è{?ڬ{К' h(P-lahJ>"<Zry=AU0OM*fHrͦJb>n%r O+ηD[-oқ.MP|4}4F&ƫ*į+~Y;src)=/Dc׆C3TԗEf8Ӽ[^}3AǤZҰarCn}8vKAZO[˒X~RjG"9P}OB`F HѕcxYh0.ǏjWp gryP$io"y;V~§ Wo<eY7u+Bg[AzNW(|(;LjEG5koTW kCJ~A[d;.+:ȖT V^Kd|^@`Ά3-܍sEJ.ԍ,pi'E@оknЇa G9`$;-$$1 %I5'(fŷ Tr0}Ⓛq6·suD"8VL~xͫZI6;CF\p/iq¹ 5Ryeǹ'y h3Ϛb%$Χ@wka W$)b.AI.vƔ#~T7a iYi~B% m[a^6d|@t}7h.@(j?yNxO!oX*HHfăzަlp BD6]R%?hhHB[6XΡ~,CYqR^7UEo?O^%+^@B~OL13dg&ٳU^s&nEy$ϓff\9),)tOxafӽamtz'3ʲq/)@NTdO٤~xy _/wv@סb\S_R;;ֲ{!:2M,?ǷP9D(e Pr~Cp+{wz1@2 O*fr>,a[؂84'7jsћL.;Wi)ԓeKjNDg4Py%uv1aʶ_(1IlK,u1[xB$bfc'?zePD8(1*T*U>s7˸ $6bL6poFkßNQ q(qRHqAGT`_$+9QG |(U\C>,)Oܳe)p6>,N.\}G$SN37i`h|EohR2оBe.ܠb!IՎن=`0D,Pڂ :ȟEY޲}:14͆rLݱ@򤘼ZΚ=s-y jEpg\ J#rcݶ26WL ;$^GZ?c=P#'KԮx8< rLKTtv+U9 N r2; o*neDj5QO5$ Av'N~tfŘq%3V11ddgΘ$O[E4[ ׻q lNASo!&M-T <#L L x8( Gx5 /k"S< ?WAKT%9]V_Vkzoky+͵+yv"!P]0mJG2ˌPA6SSIҒĴ]IUXX@$^&w_j5ĎuX ;5]:e bRMD7 io!"Y.FƲ+R26t+u8o_SXUSXu’*l>]}A'|]h/ۦsC(sCy[ Et#L.oO&>r7@XX7 [pCoA)wAc"F0"`uD0Kw=y2>y~Kvhay .T;UՉ@0t1#!h༏>Q VۢeƟBjULhokԾgse\4@&,s/ [tV6KaI iqoa<ki.X?0 ږ0}DN `ke@[>@lz+} ?E;mzYJ ]G]GmqOŨ ?6 #(ϟui@xe4 or@ekG3'0p/Z# DV*L% _Sksu٭P=[1sKδ~W#q`M?vy("!J6wY}ɞW HS=?7Q=u$nVP[ϩkuG)J>q3w!AX a+rYUW:aXʅtDHV8_).' pϗȽ(+"{'ƾ# KB{IJL8\12<7`}9sNv` ެ^Â}&(ݡoh.$ǺG"dp+ d׮ 9pާV!j |&?^rpe%lujC2WsL xnFSDqAtʸ4ꄃ7[RL8okG\Xwu &|#QYa]1W 5zbT/p7205?kqOSrc"a̜C%ȯ%[Vn֢ :k ,]JWz^)<f!6g0zΧ AW) 7\.]]}c>A(4X`hfGʕx:Nz"1WZ/t@ -̞n HfQ$5>;֏CTUggf& +дDGIr16cs> jtU-zӫ)qEpuH+NO>.-ty}aaC-^K{捫#kO#?Z"bnfoa}D>y'^ D8@8?=(JF֮D೶ eP37>{g蜾e_ wx 'U$lone+wXRq92AhɓV4Xh[y%rkrȌ! KPh?1չH1牝ޒe)mczDן'P@D,v8sB N̿/g,wnc5B̵ njUVzT ]p]YT+0@C|Uj*: T:%sM-TU}r4,*!F0UcAR z. k,R.7Â$3nXdP3أh*;]Ii0w:oH~Ĥ'LnN_I|TZGb(i'xm)X$Y 'Crݗ 9b*r nc-ȺDM !>B;3)v$;[Ѵפcx9V& {7Ly,s׺R${x, c[HJhϨ1&X;JbsSLh=xd#&px;w Kgɀ端S gg TgDPߢ]4!Hȶ-:2?-4_) ۖU2C'k4+brQF\>_ϋe˘e=rBũ rB=$ 0ӫVa8*SSy!%[ M=Cn~03H+ARau7SJIah"qt 7¦uIGIXʨHK݇ҭU!!hv~>NT4#,3owF(O0o#wm6ݚDd9V̸w6]-Nd\U,w0d0+",bs_G>ǤEyAWJi w/jcxSBi$Dna% _$Zr‡9Rmm;~Ce"8茌)RL=?7Ie?Ub"]MT`>ZeomГ(Qy&*jA% 153G-5ȀKx+fk,PhHX  /%f`hD ?B3xA{i˦k̡9N^8+&]C(Z~stOR61 ~{.@ hWJq%Y,:1lD@e}o #ld;0f$vKTA_BasHrhG #F\RR4 (+EFQ4Dgrp^P[0N?I\咸e|'(Ѝ?C'͂B:fg+p|QqTTӡI-a.4^%IJ۹lE:RFgN]==mB_V=/.WOT~!^rWs _>N*rtLWBy%e#Bl1vWI'1@Wv6\d0C'fV* .yog?99YYDw@"ViX d>mN) <l,A0~X\~&8 !4}}ȀVOUi:(U%ԮH^Q?J -G WfƘN˔SF۬n3Ee"4!"q/ݩ>|])7,퇜,\DRfdO LFE(Cda-=ӱcL[1E[mޢ-ߖ<#.ZXHQB_l3JSr?]x34ѐnb \7BW+rV<\1;\YR) 4is AXr`73LQE*4u s<;L'y0̠{e0KYK_n=F@NkqoŠ|H E猞ub4,IUF3zWVT-׵C8p6gǹy, z̷˒ArdsNDߜ?R>3bE9dTi+6AV:OZPtcHPv*ɯad_ɞs%ɮQӷ]<(tf|ocmWt|H~%:#| 7Sj |bҢ 4 N_D@.OEֶ6tOvJç5 I]?嫻dYI 2'F®PѺHoyû ՜'l@e^&8mM6=Ar > as^Yocۅanbޕ3A1:K b"HRV9Q?mV "OƆQ*8s?dz3 G7ߌHM;wF,yvE&kB 9?t$U`gu@.9!EJzтMωߌxk.o }\݄܋RLCD"[ߎFȓtk`e(ѠD=(tn?c D?ؒ%GJ86B <ъV*aߢ_G+(ڀkӚ]VSwat' ~Ph9ZR0O]jI 0qHM8Hg~ݦm7 g0*pŕL:UʭsZY2etQ7sS漽9zl5Z@X\ hB1$J[ӊl氧G"n7tcX{>v}'ԯ@$5pixͽܽtq-"[$'{%_\Fu]ݛV&I A(dɏ;z4P?m2t`À$Z^hIh6ۗ*XEv]k0_ $)b#?)N{)01S=?.y0況~.C`2OF i/ 0zQ55l{Su3~AӔWUW,PutZGÈ{aJ-"A,OfR)@w0#ECĜF\i7206-%pH<$HAzC4N9^?\Ȫ Ie6}PP˜284A-a&J:sQfg*:N+/~Hk8T9@Kګ?{,,3%mb e;HN,YI}bE(}`(⑗iG aucrIKt?wt+38͔U([rvW0g;=2Dʪҥc(_Z^W?%#*!swy^LOKV=+oW[Bde`2sd1KRdL$zYI푽E'<ԓʙ=ݡ} S GMnRÍ|+Mʻ||߳ކӬfE4T.u\_h#2!GxJXb^Qx[,\LTgXը"aƫGV/Kcʣ:oK3TO^\wUw,2\QFH=9'Vӥ=b<̇6lJhehBa ux֬ZQu n:_fD]|țc o_]s@9J]<5DO%_iVŸa;Њs=>z$]aE9V=VOq&pJQ qgva'$39zcckfdپqVf 1Q eb؀uG#c ?aY=DG'fq/ j@9uy2{K~X]/M,*hHAM◷)d2M7oT~;fﭯ8X\Ѯ(K~ sԎ0V5o-jսׅWw=Ds˴uXzە7 V,.a}A6|Lhwۓ<|ɥo^zי|},gB+\C1Gjܺ#N f/6QA|3NN833(9B>n&ST`GG!]i-Nb-0 omRХ7~z'|XKx'e3˗uBoBEǖ&Ĉ67+ gQɼ1 ̦F'IQfO[k- R9u[B¸o6I1yFQ8بVݛcjV4M`$ǞtPH !aV#eH]*+[r)TЫ"jo<ӨHiK[9@,C65[;%bzD9]z5c rR%o=|_h^X>z#di]d7at `@j}9 is" dž6&`b93Fh11t)fd1##Z!bgV@ZDD֣1]7@'_(-uDKnγ"LkdBonGdj`ۿ2+=B&pϠאܶ )vȁ}2{+%VGJ ]I1!y%i`~=§UI?hto+1O6ij=8T_u"Zz2Et1֐_yU7:S ] 0Jp+?x;&x6-kd)$SEԙ[)Y*-nlz:d'Il=?'i K?̙5E2 Bf )Bt䠥i ( %PV; Ź/)/!M>NiԭMާ:3R30u\9:n`|VfgϿp1F {Mg/D"y4JZoBQmHxٿԄ;T:#>krS u&saprWRb -^ v6tYIxNtFW J]MADHLoQr@ZDOѴS]\$f^T£TЀU&A\UO>*zWΏU(՛4Ӂ=eӸ$njOIYYinlH.=0Im.cTU2#2Rp2%% M3dVKQv_0Z5)59]c@z?@UE{ɘ[fqcPy$>Ÿ|bzPJ׉DJ*?AU4c~2KN*X' U+/L^/z7Ů2QrsHx/Rҳҿ1{x5~0 @,ܵ@*j=Htc>݁o3P)z7н,ϿԖ0XQ,A=w83ú&ڂ>*}~D&;'o./7ב}đ &_l(s_է+WvZ<G차7o&an$ cPqS^,r%7T{vLo4S%{{/CC^@x6cKn mt1I%K|1B, ;svWbx,n3]v>OE@JL pKߨz3w>d@e7&eT;DT\4})r?ʹS0>Pxʴ5__{_hx~Spg]#sU emcd9 ψqkD&O^F!04~VUx0Dž.q}=4kV3쁹gYVBi5a3CΨr1=tmwMFL-A9Cz 'qV~QZYm|l\zC6&!ZHjq'.gf P:xA_7&ljQG(eh k[7<ܺLɲI$$;odOuY5^t`ݳXpSQ9\b>)FeC-/ aYC s.-!QuT@hpMiJ6N8e0l%E\u F QA$&>32ΐ."(EA3.ȏ2V%5Dv$*eSz"?jd"ԞIڂncٞ,L Y=ʨPk aw 63iOs'cEm\H3{j1]Є,zab\6k]Xt<<&.C>-č5A3u~o:*#V;}qձG=]InUBHQuiv\qkZ6Mcg?U&,iw'2yfV΅ . kt2ak_8<6¶ 4 u5Tށ>?ׄ'o8m .X؝ar@ϼ)q랻AIS`TI]fr1*=[+fCͨDs H;eKYB<̞7Ƒ<]F}3etD;y]C6(-;"oǮ$cIEa,ȩ^v¨+{/!E8ʆi{KFª5#_z]$Τ;'myվW3Fmb:m,pV$V!TLho>4kӢ_ĩ s"@;5' -C;@.XnN[_Ք]qq t~UV3OWw'U,.vFBCV i5NJU3 9H&Ǚzk &bVyo =T<@ ƎPZ(|ֶBb)xYf$V,8r}[H4'"j! (vLYz4G(TZ-eIhݠ<<'&7WЄ5S5zf##ܺ| XoSpO!O}.ΕpʨTgkK*=ZD%EUڣ4ySXq0؁S 6s|uk8'$l*U=e/? P d[q.,++BtXaݷp8? . /^. le{ٮ @sTC#? 04vH$} Dxf pZWm uIeyea3^|mA30JڃvɨЙAYkV%M ]i綦;;SZDP eV! 'Yt =AGo;D$,kq+¤ԂM)Nũ3@;b6Rdo22H3CcjkȆ2=aT~Ǐ=8Sٌ0j5ԥwv<g6G6?|J@rvN#2_$a7(L5ĭY5vK@kfl%~6Wei QT(_EIz,xQ[ZGT-h,i+<'˙K/dpDGiU!BȯCG0qs(h49!Feu0 UH/B5by#oX40$6Wp`с Tk =\L"W9qZMbMp/JQ`oa%Kf4EkoNqA2N"jPn_m@:xur+_")taUʛ\&(o$~Y5y_H6 :ȖUTz4w )xAfW }c>viti[@%$qݡW򰄝\+ۈxb9?Y-$cNIUW@-b(u<).2'X'|GX a_bԽX} zdT`ee# L]IwM l*oW׵3PSM'ں- ۩N /?xx|}졪)`m%ySKa!ڄ&ҍh&:>CHkanM 9цy."Eq -M4z;ͯ 1Ǐ]CPq;F|:!qo"2e4p)YF5j +VaX]{Tt䯧ېq,p6jtTQ<]qOSx;DdrSuBdC@,̟AC};$>5ck?Q'Sͼ.;X^~wТ+3)?qSQ?S ҽ`)m&HJ"W]b .SaT]pThVbAd-k+(\யV5A$M|{"# H6(qKÆ]{|lFH30/hYCWD 28=|AYVK[\2* ,ZOJv nIՍ@}ϺK-߯*y # jdt%>Wyd]25%6xSW=)2=n$» pKP!vi:=TyV)z_{njk*TA@~ٍdLf7cٗT9|}]%i32JD< 7:~"t<EfSgq#S6f\x⅀ Zc+t)) \)X^TwE\jkx2)+؎cUEqel4]+2&K>8P 5ۤ "x D175% ?EUol,"@)Msf:BD b(A& L^|/{ h0;)( ̍wri+h#?)A(3 %d+ynZ`# SS; @ѝiT=]_FQ-^Yw5$)ķkh߲Kt\i3f eOw{З`fvPO"SfD,|felyTŶ#O_9a]8v zf@jLL>8f\xj3lVk2<"5eI6tF3}1 ay+Cu>g' Zl?mJG d  A1G:ߗD$ӤVcnOF[L# 1dQh]Ɠfjtf ؁ qD/= Z NK42Inr( "Lg#ͨN@}67%uz?D3#{RC0d[dszH=}hWr^C$Sr4D$z֟dCͪ"%J۲N9UC-;7KQKC@Y1b=f"H\\o-J뗷e~e׃t)\W^>a'z'5Ks'yD1k[a]rkp(yt"E'|ijHhuF^#: ar@.Q+h`SZ@;Kͪ`RA\ YQ'٨8ƨ9$H8^mnȅKb/*Bzѭ2NK1m)9~=oAgw"#M<7&[XPM^HA4a_5_jų|>:,f>)]wPgϱc7j.,*g7Caaz>*[ӶٶINLT>yi;PZ 񜻘:A`h_Fc3>tl>pH)qg2hncˇ?TQV Xu1JmuwoXl!>swZ8o) <6, 6jW&#՞'TG)dI&tя1樯ǭ*qDtъO///gH& {D%?T}o=E;08n#SDŦȻTBj.=d$ ׹JU*]CWK$ *G״ݛI^۴/,1}kUn׹i`a#|ј~6昑[®d~. +<תCHҁ:(Y`ۗ5*ȳ})x#DW+ 7'Op9LA0iB-Wg0 >ROV b[_|*X'*(vЧ7 :D^IqY3.)77`b.\J*PA1O %@3hGK3ٕWK`ke붂5*]BX寖ǽsZN"7{l/k;x3v(poWѹD\brpVT(@)wmZTV8)NܕqnI Zت meO5rT1EoI/ݪg [Rxߠc.w ;`1ij~Av\>dDxe:Z{]p]$vL&ՙUo^XBmӟʤe [b,fy ,Cʔ fڋa+7Q]-( .nꓪ6|Q_vP[|߃7MU;= 4*QJhuⴒ;3%4+TLŦ"Bغ<)zgޱWU?]j'p2@eIޛ/ aN );YMSv :Ơaor4'G*EᕠS|@9 ( b҉p vm,dA <~_Avmd  gp+&&L1.N IkᕀQ B.]kaPI:oI Fy\oTf]e %ˏ׿BuNubE0:g+Yoot$.1aim㢾fu_mJcJk1"Gb油Bt`>#|K!YSәI G6pB׏a(DZ>c3}4zWfb= IWqI_'֦sՅ\(~/)Kn$gcjT)"\ pӤo eb`Iq@KoD'GK8KKjZZPlE} 6T+ιV̆n|+yىcYRƪ-i傿}o0gǀJşnsc[(MO JF wB LSI 蓐bg^"<@fgλ.U~6G&aR|BG;%ۊSwPlQf!1QsXi-[#ҵ/Y$:SLMH39:x.(E$ mrc0hP'[.Byd7(B ߎ`PCέ` U |TdJ"豛3\5yک\Ҿ іŌV!s{43]'9dg: ߈;^_~6S5/1y%J XKb+#,y7WFM:U)ņM~2s" Vܸz#+/Z>*Wzy/P^@ 3lr~PE f6r$$cpI®c@tٙ5 {,bI{ֲ˟GtW(TZT} uG8Dgi#=mOC3Z%@j)!}Po+{>|NuU66I7X8\5-+dFB)m a[;x}0~9u2MZ˟r8 _>LһVh^ua2@xx:إ/Qy}gT5%^U\'](LT`RKmTSbh%vb 3h&i0t!l "R[#é]It_Ҟ>ϴdx;?`A> o 5&{hrkt-Gghnz/f]w)cȗ%7~A&KȷO%.A`y2O=J=g%t,bp %<)!΍jv+do6W=}'L?fR?Į/뼼*=wfrVɁ뵧`|m<ş TK.!Ko] qZeLTǯ!_kZ}=0*ׄucDBa iD ٍ%so:o(ʌ>0󽃠GXCZ^F2@O]I$p$9AB}_8R1>,`PD?A#s(%T۴ $;S@n,THQ]WDΦᲊt/] i *r/ܩ].?INi>e&,B)G]2* _,7̧L,?rsn ,2%P542/%Fb)kph :B?+Hfv͞Vuc6~uPf($bTځIDoէ$ ꕰc;ZjP(Sտhl3-xEd&ts`u&8]xx.-Lk:CJs%M|$}Lꇖ{"ُh'Ckgwfo_ {<zOxi`fx4ۛI!^w ˡ aK;}\'յFU+܎/-TGst9O Y]!¼DlT@F 4dfn>_qLMm$SԞ5N-ʣǺ5Yc=J~{ؓ[FY+& 0ΥC7kb \kī`C&[p+3/62\ a*V$jd68f}蟛Gڝ7oa.Ev=9"v!lޔ"1Y0+ =!q0Rn] "bեj^vfU?hX[iOIpy .RKY'86onX i$A4.SKAb)Kzcn (YMs%Q,@ժvNC[\m,_0@rJhi+x9}:o/.^TBY [%*COJ߻ryGex:tr՚<_ܽ͑YAٵJM. ΩnB {`G@ܨ銅+qn_夸d3dƮ_o)Zn}%S.S>8 9(."mFfVcyֶDXZ^!3lSX#n4 90Wg $[E=D(QY 8t/ GVi.* [욂r8m<[Ն&i4(hϒ^hKPL3NFnu}u)Jq@@z*]XFB~Rax2SU0GJBޑJg6JJē.8#b\ At=gE6qM6Y34 ]wV\P+swʁ %ȆO\֩:8#M¿ +~d{ ^!얍>~W@~kS&Azփd0 ;#g Y(?aZ΀zYLFrG tnM# X 9[*e:Scc*}?ѧ0ג?=x̩ +6<( bQ5h2&Mlff궎)dw lcfuחժ|}$m5`͵ܸn5 D~ZA+@UND ɼ-G=N3#ѧd }#ʖ}G4Y*Ga!)-Veo/{k3evԳx@ X̐@Alh=Kk"dÛy MBW\Txr>.\V&}cmO fQd&b[׭}/?D^^R6Jivf1Pz a#R7}ʣӜ0.1xu.` Z)dOEw,}$^[~O)a\Uӄ H:d#T!sixy~ gwC3MS!g5Ut3a>6Q{GT{GTP">d3XdlQf{SbPXG% `%{ C0C-KX #%eId.:ڲe]q4U&/ i@/,YT󌛯%,le4?(2FqUҦMP \Ĭ=G8qIFq{.s *Nh'>]UEځr$KeJRkȓ?r=r`[]gsiأlIxP&4lJv=+_cTAEX) 3L/ x%*֯[C}OĘcĕ:{7.u@(*³w8X6r靟αߘUKm8yRRy+.ŸspӀP9+F3hFFgZdyH8;ٸI(LYͩ$eyyt&QIs#|SLl59L;^Έ&=U+]SاM͛|%`7,.l H4=U,>[jX8L_?Qf}K7O`TûP""bU@0^O5i(L>^?mjƎT=q(%Y@{N tz?nzJlJkC7y… ss;{ ފ[P 2z,ESiCuaܐSe!:/sZv%&fO YU&8MǓ +e.Y8~_d-xWNvmDHg֏L͌laɱĠiUom(/926yYs#sMK[:ACބ@I{pV SOK/f݀Z7J<}6L #}?&@32JLj'Nw 6ŧspJ3UwxGpЖ-ؗ8c;x ӸSv ڄ:Yy֡f۩"=w>dD#3uzМ7tIzߞW iMFnNC<.ԭlQVV/)%)?S4фV3iIwJ:+`QѿގKxL7PZC d𭕆;%y?N/ 2/T{meki3[$ ]fi Y Lݢ9C{O'_Rٓcߨ"Aۍj˻_5IR ڃ!|³7*̉6kӫɣFA0:ڍUX"TGyLvlASƣͽ[b~g{匲=tRD FRjgeF XG= 0A1j9~rz55JVvkNܼT,~e&#l\i^9=QPABsj܄jͱ:^[nshgbJ+HAIsZ>>]K <Ʀʨˑ@ # f:ej`A-E@NnLf ^ Ea6*r5`oW@)E9RtȪGm>˜XAe%pHv?_Nȍܲ>@x=(3˥ĺ1  w:)uDwH{֤d%6Rٰʏʙ,.A8xhf$ ToރRHJ)pFqz!Y#TVCl @_p 68=GC[̾DISJpIFFa!naU }G7syTYNR /Bm"%Wy2+YPp:JN#`MfVCkݻ՗P.{z3j"P5*i :"xHx*M;6||J8!y峈u?g6]| C0IWN:S8#;`?b),6=k25Ӧ{4ƃsp 蘾0K$e6>DGJmyQy,WXç뒑ym{ZiD.Cx^j=َn:bI!k,$#p"SY|2ag>7'<  DeR閭wtIYvifF2 |+, x=ȀW?xc2Lws0I/WnPAhkԒ}Y N&3Ǘ\,||>q]k%:j8 BsJvk:wB,"5HuhJ;8;#d6%#iD)O VjR 肶y$b Pǂ`X q hq0@:/WUڞMxUq}eDJ=c"HSpe$&pVwP/bmGUmNA4۷2moR >4r%xɁoFŢ*VJmGDU9pZFZ5HVB/tEeis42fxg4Pf.8ⳮ;CFٞb^@~ۇmvV5 uMWۜEcwx&}оx <ɉI|N|x>lZЀ^Ie .% 徱4{ˉڕUkAկ(R4w ezX{䦐iag6)*g^tVS SG-g_tEkZMI>1`%@},}܃~I#0ehO( [CEZi#q-ϑ.gW »9mϯI&AowV`q4*Ѣs E(}-PeA|uH |EOF(@[Ew۞Ec8n~3=]ũ:hGނZ\$4>FOZSrHSO>y wV]-)VC_hZhkV'ӎ^?5iw+cBYei}S A޾Pц&6ӍMe_,@ۙxb'hd hr"}SC0dz`Qe+h:DVݏR#ʪ-ӟ+őwRn\ Սp.`pT.LYOBw&~_wwgPb\`5M\8 4r.j,_SMLD$W,+K+m#V{ WTD WG=TcG2,a.j~MȎ!<o/M͜t- ȅy.Ӯ>osf7@5uubGǴdCS\@jT?wfu"BD!qQhW`FF ][;[`[ ]^tll 'ݚZWcKu_:rʙs("uZ#.Ǻ۰).sP/.!,bY.l[M6lW}rfT>V]ZYΟyR78T::08\6ܕ_Ap>md¡d<"%$>\@( ZZ/e%lchSe0DSRC-Q-,u*R9s=M-F+lG ӯ7.ώ9F ŨoiCk,\tiߟ>*LBHGG0< hBS;cgR޹ rpd3~X%'٩\Ct 8ax, ]NvaTT.7JnVhɤJwWkL'p19BX ⭦>^}GhzwXQz՝"!_=r;wa/F7)ֶM d>`H# '?%Tó:wnS̏T:_kQ]ih_3Ok #@%g.GGEH.(".4nz.>5p 0- ;"Ùd+5?IYX4*i?'w8ڑw/SPi+̃x!,T>6MW _L#@.ԎE24ĵl%˜`VsWUtruȡ8c^s\1ձf̾VEɆ%¦ZuG{`6YtΝa0{MP8MIB`Wbᕖ$7$2nXO'(og8`Lzc*?0$i`TЦ;_*Z~.gm{X΃ȧm#fAr&42p 宄'pYrDCNT(I&eҿͦe4@2E)'M>LE&1S8=Ν"OSLhS7QLn;*+sRZ̮udsDLXv=JM˅VMAnr0E)Zj Ys%<b~z$x|RJ1>5+.4IAG -olKTF㐶N&0XZgj"Xf~^ ['pf}Gl ;/:K 4w_,bip.d i W5`uDm</oeW4b=d7P"zy=^22X8f2?|MgAF9%R CTq5<zbBY,|2Y8aԞV(~fa40R,&eXpSoXX rI:DǬ.D.-@p_]_Re_\O P}<(' pӚ7/yt1 7Y{5c$-Gbl`u_<76gmyh:o1.).PCJP.MBpQ"/4HՔ9BgfvJTvbQaShwQf,MP >w-}v,*ZqTb`қt,/7j+ 9p@"CJSR9q~S%u_G\Դ<F% a:<&ӫ)DxWNOMZyهb)x-e#%beO:N4PDe; G}yJ%|GGp$E}.#yC {{Ji6LS HaoE9l~/߷@̶8ϛ,|Z{.VAiM ~ l>l@Awe H/ ΋*DȄ2]mӢ]eU췠3{E *-C {-<5qndmHhl3QA(23fiΓWXᰊ@]>F#z[$YcEښFմC|lw@Ceh| Kbr&?o֮[uR V&UWݼ :?T; drOO3bʼngOv{a+}=qB[h) .0J#T*OjTm|e﫵Mm4$( 5"BƜXӺ]$>43?@ =4l $B}qMQ\ wPLڅ,϶oظu}|%ߔAJ%z1qXA,$fTkxm[=Լ•m~PrSVctk̾夓Iz%w,&E _t|>3WEٸ|m0ًjKcUYTi>s[2t;I$^%{y\O25K{vsXX2+tiKNRlI^LڡdxGޭ` a3#vuN=b@?a]pħl6lt t_5ޓH<^dAnsB5u}"oYtb:.sq T^ȲQzܬPl̍+<ۚВeJvMeGHP$I!cɁupXBP-.,>%ܔzEC8gW@HGdqN0rt-/%S3|5ĝIvmմWԼ-)u)U#er3.p}.#7{4BUh[6|FkJ:Cκ B3U5ɈhB\k%ݾ-d`#%:{NUp9 ީR*ܩD v#'Vl0ЩNܙ5UU NV՝̓Ny"ݿN|N=x ji^>Sl;A@>B*HSx>K,tdI/izaٿAN\rmo 6U*3Uhƛ![1r44d1Pt"9 E,&SKORAAGKljJ{FϏrz ;9C|NB`5m`*(Li4rko4Dx$d+Fk{YC%{'ݕ01X|llшXyӄ_#l08 XP1*JjY\Y1J ZrE [4oGE/N@3Ƌ ;d16hoG m'#wGWt hz<ӵe=0:@6)G5H? hB"G3LT- b蒹9D? u]>rW;%XAZ+ u,T:ַ3D{piR>i=2ugB=ޝJB* XskVĪR4z90I򾄕4 K:9~XC/nuTciBEm8\- )1BHt\!p1q3d >HQ)MD.l,DWp 㹥i'"Z`ݳ-/&ЃG-05zߒ05ICTDJ4׺T-jg,H?. ^B%g#-Zw"aX$ҝ UfZ JZH$ĻLO2?d=_nr5x* / :6ZbP@h(ۦ樱{[ƬV΢@>*P_B7M(F P@AW ͏(._s9u_⍩Y~ToBa}k(쐁\ u_ Vmd4z9u^>ܾGQ,-fUT2*uCK^.zcF4WYÞO4 YY0r'7!C` !CoǞFd)P8TzQ3Nzjw;}&}"C{ WO٭?E{B XdvGYb0[jrb(' p?<ىS:+ۜP zòKjgOh(aLKAv2[)\dE5OV Pj av$/SQ8 FXL|˖sM2he&bβ'%deJ$4̃!K P4Y0'6.#fo`R^y5V ئ ث U qkL,t2 yspga]-J-JN'#E$z# 2XóPhG!$0Ph=p eXTݳ۰|FіtQe#f2|lLV$;vlpH>D"wo,X@ ;ʚ؛Eʩ.wޙfg ~ɤUb?`4-Yڧ[v)!+OTCiOƔ&:oPz;壾7J~ e[N 8H * ŕ8^|:Hq]eӤ`{7wg)om ^%ـITzaerɲ g<=Fdӹ@$zZqM1*eҔ 蠝eC%:a蘣rm^HPh "`@_l&ܴf*2rD\E-uUƊ߆`bxH16rHmYviYʈ ޣ!n>R#d3ߕ[BC\IM֣!?=lD#Jk']颈\E M)-,%}ʓ;xl-=N<cv6t@ YEڛO _&E%|ãQ}H݆ 3_GRJ`k#X|*eaҡ;$KgGD_;&m>ƂVG,ۂU:& ZIPgFFQ`J#2b&zߍV 3|rCs#c;y6>K3p^(>X)L;s(UP:oNmoI gtu%GZн~O[UR$;h9/ ;';$1REF^(thZs$r`*&g+5Rx<%,ˀCIFHnqΉ5"@l=`muĨbIn@>bP]А" lp; %mv{.gLS0e~wGG\o)I@FSgR:'y$\Tޭ|ZF^w0l$kLnOD6~ŗ\O"Bm)aS{_vOQ.S%$T ;nEB_as֖*ڣ(KmmT:F[$짒2V1d:Zn#-iU8}fq T 7в6jʶˠA0|-9Ώ@I.sPطS`=+łh$#m Vj+cyOe7P&:%(gTUZzSLqj?PqMFO- 2$*e珟2f|<>LrVI6.x1DLUHG5cFO5.ZV2.蔌j^kS V62&nA}op8;*-yꦬee%FlmZi3 G1Pݦ|e[ ,U #w<#mHx K̺qxℂJN<*Sm(BtÅ᪪6,/ Ϥ }IPfsj"Hm撌+/[# fq_6WRJΏ1*T(Gg'27m.].d6nߡ{d`3[̷+6P'gD撹>cEWwe ~DT .w u̠ # 3\Bq.s=ZIsC_r(<˹2+/Fp/)x!y*[_%m{ZMXޟq>f,(j:YGȐ|f 3Wh|R͊Qw朘L_qG=oZ:ɇ ̕N}hp9ioxmr˯Ue[ip#RZ!Kw3 7x*ZQ!CUyW6t^DLC Fˑ`„(r%0|+)j|Hcm$J%4oYl`G,=:LLjx\LACrGVC5ɝQ}Av c9e4آaIN+ߋ1$ BuZv$^=[NΚVM^L~U ٬B & \1z+u?ONȘ z)Okh؊겕Ytb! B6-cFұH6YN9_C50gaqpzIQ%s`Q2$ b^50T_/`xiջ)UE ,ЎG?Q ` ^ CdIeS/X$vX9)7=3j?̵64G/:7L>JP-| GӴz|IٳQƌuL;Ac5=JHp9;ܘg);D. Q8nϔhg cDzz5xH^k/!TXkߞXWH-1 Vs\q!#,"UJJ {}@x H0]$W(r /ڵ1vvE=Ҳ]Kz B" MZH+*`EKn97OBXC%ͫ6(M;zU$/ًSa4tu>ۓ7U'ŀ sfEC 80QZ Y[7|smZ3<]VQ/vf F^Bvٮɉڮׂ,UK4GR"rysQX]}73Єd!nV٠6Yl[HC93y@qM/KNfa a@ `a)O@%%Yϐ61k[lI}4 sp!ȱ2=|}+"QDY!TD7-TBgՒ\/}:&a#v}!ir \&T9++58ⅣL ?TG=Ζr=}J{HS/T|z\}0Nj^lәm2k@WPFq7e W9(fUbRo ٙ޲.?: I5'ZJ˛`P$vݫ +yP[ F(_$M:[*}dS[p)Pah+6C҈H]Ug_*ɼol`쎜T֫w{-m 7~8k )[^ymh B]Cj-v`#vFsI`Q);e%Y3®nפ6cb4䷅]`CWxyV^jJ6!5g/Gi,t^{|a9OAM i#.$ߜz}@,elCI lQj쌄EK= 7`eg|TU qBL~|٧f%ewOtѯ:^ '= 3oI+tC^i5NvcngXNA[)|O.I-ṛ^@ یg _k*CQ8q7 Je󸒩NZ0'})S8kSA6\/SχX5[XExʋ5_iUE쫫OhE3d4r7p:.Ս% ŻOɭ `v$wgpBK'DLޟ,tFQL5JlX܆6֒N2&`4i|+|   ~so:*DYkO܀C[H"YLMLQ`sa .[JKԝz tV)胭eRחj\ݢ_I- pV^[N6>Xި= x SE\$%^UP3l2v#crYsq0-MxƷm!%pu=u򚯻0M-0 W=U=+28Xz]yLV[5x?F0?'b.niڽX PpD>]uW(+0%_ pV1 b! e0]bxR |iE~,rPܰ:d@L-7 [om1w?ycrzs c1Ȇɪqj%6$_)QfƵ!O qk:dYjt6mӬ2A7,>_@m6#KsYDbSc1- Y%M %A%JMGNo_Â[N x6FH*T0 SŐ ?rg,wH~ъ) z , Wg% WYXi'`Y.ipšC W/[މ읤><*Bo03"grEz]us6%m>->:ln1;f0O ֹ_G6BL<}fs:lP'֝`lň6{aIi0)(GD!̕O+=0Wv\<}q{"d^[Ҭjgr̜+'9ǢAnrԓt7~gV&tR*,J[7e"{0 (S"L&%" Q oJϞ`|a!rw6)̲Ǥ,P9'mr > s2WPUG3F!$-trђqjϬM45ο@-SMm8dkD$urhP*+eTU wYS de tCDfƞoA6'neW1gYd9jѨ%>xM~b,7_-F^urmN+Tm:z}fFKhpdh3ZrG~6ҲUHx?֟ySS$;D|k uA#?4l FQ VRWA1\W2ע?ɺЖ2hWߌlMIߞBh;\c}+KlZ 붠 KIK)fc-E)vTEf MߜJ&,rkK'Ħ;|JjJEםSfAX$RlfmRJȹbGJN.AtZQ mR㙚~d 8&Er:vv B27n]6b誁H7jlͺۄpnSm,B*^X嘮B97U-zĨ9}=?yHㅍT }/8fL<4yȫwo D;1lA&ޮMdEXIB2hI3cH*៖Y禲W Mټ5s5Mp˸za!>~YVqĆc2X C')yL>%LtF6񃦷t@<,t+tywCX\#ٹٹS^EBh~ iG)#rOd&4wk jpfz/J$yĐ= um#)_pRKGPY]TۧP[Qs>u2U~i#j&DヶBW 4D顸=_f7Xtkh/˶4<٦!<{!TO4)T1YX62ӄR丷~Xۥ5\K _/[A.jxۙ߸YO#Ǡ>2 Sf(VyCf|B;ݔ2I%| /KO4]I4Pp3Ob9m=,sm}A[`@$SvOu'WX%BWFAiHI^g#YB='=XS>u)ƺ-'Ubn Q&,B6zmEsrm9XZl<戠SNCY܁γvL=/C˪4*YgbꂲQNw$L6=<nA7Qnzjnƥ"R=>̕:_~&2Sx]k0?MBzz@OٖX9,*COf ^HNj~k48u'M4=Pܤ.= ݟҜ{yv 6G j̣$ [z>stBKsc?-ׂ16lj{lK0 [#J;Z2etQ{#s9ݠy~e\}h>/WC'=wkɻ,J(O&xk+zpM|}83&nK:ؚu.ISޣ#e7L0q5rf{ `ժ݁MKx^jU"%XG.{b=-8xmnz@H@5;lL[xA^(щ {JRsH"q3@@˷Od=uщɷ\sź*GzM2;ӛtcK 3)Dyv w?2eUq!YȮQA(/o!V.ZLDoByY-瘑o8?1-dQ岚B N5~o;)fO??Knˆ$_3͠vкrK3R~5mbZz56V}Z}H0lmvfW♟ѠsNǭdD^<&pyEގ"uchpAKvZҬdWRFFߥqL'YGf#_TA]pi4fa=i/֟KELne\(ڍ31T=h mw*P`qL¾oiF~-nqOiX0; :JPSBmڡqGy:Z"HiM:9g8j j<Z.I;AY+Ch40P#>t]uh1~}k̙1ۜMӓH%$mC27HZ{m ?n4$E> ֋HMc/J9#5,63hSMx~t \W;;H$.[Z밃訑Qh %EVy< }Yr;k r CZ'K~𖘴_ȉK!#&g UX 0_wu*vMB&4z݀h-KXTv%!s{I:#_ wI&0tk TPCT l!ʬwK4o[eP.L_x ڲ*$$ek4x[FNP"AgN6)O\^``̕ri YEL&&Vtt]+V]g9"K%=O3زX˟Fg"'& aϧX |p|]=fzg3V| rCXh3W)ǒ%bWWctzЗv$y;@_$|Zbaӽ9JlvDGG'dCB!e\OQ-`ʴb= vnoFQ* *1t̪9Thg t FfF30(]jFwY;r=XS_RJib7' M7OW,.(y6 A< W}6l=CpwGH8^eTVQwf?$"px!;1P *8%0q.N¼T.k$>QDrǻsLofeF`;NIh58iA}DG_/$jom)=,x\ m\/j߯hh+g_!8.{Yj&mPr5@B7YT XL16q A;[V1"~/;+bJN.k/>("Sƴr ‰4c>wE-9[CYY`L/ 9x=m8wV KN9֫htW]3Q |¶*x+O h)D4JVDuoRrAz2|Nջ. *J +y&dJM8<`}lG2ppBENxo>4w }DGyA5kuu\bEM!_mJR(q.PZ i{Lg::FѵP"Om6a>Qmܖh*LyA9{8ˣ"%̵k?(D(oӬ{o\`h-_&.5v4'ErU^AO : 䩒klVgȕNôT^.}*+6@Iά^+pVB}ɣ3\ϲq a~*YFy[$n Cf-ʲ,6|rrmI|T}N~b2c$UBjGl܆f3[/pPxeSSُr9ɣXQ>V DW2Ub0_ 4H&> tP)CX0/A3@3` gH?_mPG;/'kv":gݟ.?b.5S3Vy/go:u/K$5>EN.ER֧0Gyig:ٔJz % pH!F%)Ou UL3.lCJjǍU{<y, ;Po S*,ን2% L8G@9jo[ʃ=6f4S{v3?PcTmPXy]SA&xUgConX]Ӯh \,m@%۱,&۫XX2\g//]5PIqhJϤ4ʘNLБ™nXB d8K=PڊD=oص υK {$lyFb&Osرo5=fL7YUS,+I.ec f924NK5t^[-oD%:W6Ϊ1irm:199_\[CL4$T)[c<9lCXoBɩ t3fE<.!u6&[T.lD%PWSA3u||4ދqISg:4Tf>7%"&R]X%#=wsɜhwsO=N=Wjx?#4 s? ®ݝ|RZe.;}5[wWh)MS3OE]Ic@Hϒc0\ef-G;ƷRE'eAMe:#P |[ s^f=jݵ"LSEs W[d@6癮XKڥ*yJG@n.8dy Kf]3ӀR2mE}oϔu60pSaBcV/Rm=M7nV:NJ ~F;ljy`HYb$s/JP"1r1GC~18ՂN0/k@ù2V4oȔ7{K)W%i q;d iBK1*&;C+i_3>8QE޼4}~/n򬔩tRp3N.^q63O%P&0D\h8 A0C[dg"&DS[X("iPuL!)l'7]X2̏?n `Tb1DTmF\CrEl͡Wz?pjEN2P)(5; OV28Cr+̶Gvqu-I;LnDsv >3ΏI&tD3 ּS"$}4qbʰzj6Ȟ7X&Dz^N&nS;\Dz0XJ0P:!?-%$Ӌ1ڑe>y hc>&%&:u%U8=ey@ct7$.db(CnԉGp2o* n[mC*DH)˴;AGb 䩂\ʪ'؎ͩkݳ}@ɇǯtX7cR iq^r-Bց?x9f@#a w@."gګnnu{nzZSv#5ϋuŹԠM]B/H\q!E"S\ԸS@/ kpkx.L#+c Zα$&t>J?Ӝ]8R>yP\ hX`Rõ ޻MӂV C|U),d/۴s6ONѹEcKzmvJe<>g/ JΎLJ;xk #9ٰod]g` F'r+=5~ïW/cqhNV^>*{;NӲ#/w>ڬ4PPlKӦQ[hZͫitNȭzݜK7oZ.XCHGs{/lA:D?YgXƲ3}'þYB.SP;GAW䘒@ig5ޏ~hd  ºe灭hDnu^1 , Z66MhNQEKj 1! f nU5 D+A9Q,2 *Dk"- KcXL\Νwc2#<*iRpe)j1 z@U;7iN/Vo % D%a9rxͮ<4~ i,'>{^j 3, D" 5x~@:'şKgi60Vdi"" ##Wõaͅ;TY(Bb>Yvlr7{D,os`5~/~-E3d9eCVhA'9i:@$;?0@<Úy,Oѻg;ȄW8(T*}/@Gm*koO_/w̄fӚC0A^[z7iWIlwnjN58pk<-%IC<`@; c#.巿^m]_*Q~gKؠ wf+wRl{:xC:mlhkHk+ː2hq 5-~oGReSׄHGw{u)X D.ĞW\I4bc ެTSPBD F="*pXKT*҄R C[2j \JdGq^"={Vٳ Z/TQwNNC"D|=_pQi'֔Kks(|mlz32i*_mJ!(ϨZS8܉u0b>F2ycW0l$OU+7tԷqN&7@MbKZzj7SlZ[ݟ!KD=" %I-Mܵ ! yMG^T\C';`I2K-WA3C@t(X#1r4gf)&vT\ 9oq[sB9a~:o@H71 A6Ą`zzdӶ w!9tzSlx*_b3kbn8cE ;R;R%l/hYDɃ[;x, QCd^,uc45H'DJf\႑=OhaZHU7scj/pntP1 WMxk#$J9Y'i+2e6 g+o߯`|zvDy;1GTR+w!aG|\ V[YҒ)'jjlc/v-f k$40YjOD?pztW.*R>Iѭ ڙNS $Jy~{Œ8;lń$GnDܾBGkTIf eѧxΦii VJm]vJ:AI!IcEJAmm4Y*$w8'#]?g>o ڗԄ.k"/U"M $ઠ[q Y>) FS00 Q7Ź&)6]xĴm͈@%H 9I=H>JIOSofouyc,e`X%~?Xf<`E-}S/zbO@w- v6,/op4$d7煡:`]G$ zBRyxOgWw*6u[*܃B?\ bV =o4tF@%)X5@JG. ~ 7 [!l=ԯŘ&뚯7f 7-ߣ̸Q"p09J#3 FJMe ܪ/%Ǝl;y]on:V֫8>`j&u@wr=戄ny58_TG(E׶Z^wMw>i8$+si×Vt~8QeK@:B2' Jk绌C;98<4=%u"|M"F[53)KHJmD XmoD1GkQwCGzUBد*>womE7Ņu$ś _3_y<"#˽/4O߉82մo= Q8IF3IPŁVcߗ"-?ƟFurݫ~^.+m$. F+P`1KX>Fdi>!/Y+u`rԤb4}\F6O`ysh-g6R1[RvxчB4"Wp.7xr 7[`;GE`%< X¿S@b}¯AH, Y-$ks2^h/U!~U͡V)bRdw/}B`ĪֲeR_sEy&?Z%_ELV>v@YIHi4l~½)؀%e(:A t y9a(ɲ`R_ßK*؄]Ua5bQx5MZ`E: 6 7 |HЁm>GO(=yUL0fP3TxNV='|%0B)kD"ʲt%?p{D6-rք' ʪSrzkG6P9(0 yu'?^/ղL0TGċ$̮#8 ҟkOc}ȟ)z8TCSw'?ċ~e9j0 *!GNpZJ7LH^ 錌)+LWgПeIkP gi_3Re䞥z>q(<*H1AB*Q =?~sƝX;*>`p%J23oO6EReڲ8dLN;՟abN&~åE3e;m*oNXL"Fv\#31]E>h/^ Fv߃H|eKNwVvr%Qw30S';p$ #BZU)p5)KUmq r2%Zό<P|K=Èx6޵Mhq4Od A\4i? ̙N1F)|!ukzf3T h kf\k͹S&Խ DzJŝ7J1w4KP>|- A 4ފL 8ȉ,oضϩ)a x>Pcdp8^q<.:|Da~N]#IslcuB5vA-S0u&@>bE1?vxdj{Xo\E)zŻpWibx=|{U q0HCVM7Nj̾Yգ7Z&CQ "1rA>t0f'sۤ#dA,m>JPJ9H=|^IB qV6=Ol⃾/kM9-?:K֨ZhH6=Dp?*DR G݊ -|Ȍ5e.>W+?{?T%Z^v*Gj$t?WH'YkUĶ3J1Ww(ߑc9.WƒZ36P}\4ZpKJ? XSclgK>qlsM" >JMGMiumYe+GnM15 ,jFxܞV&JpO@I&ǶEXMMexV "yu6cwXچdJD>dKK!meY { *P+,~'%ψ`kk I%Im}{/k1 &}@DeExwsgE)tO~,fX (]' Ǥ+M2h$j 7 [NN(Zܚ:Ca5e [UG_ H8= pYA~`km !F9ڂ­*y$:F~P2~m RQjaH򨒖{?MFş5Oc )"Rim`㦫5PUq.vf(B `KP@"p9݁/&WBTusog NNw˄f24@U${vvfˈW]@_KqUHgX~O? &>X߈pEhdvnRU_ S|B*[샴7?dYr "34_I9@d noDQ]ܶPsB'+b-|?J1x?F)JSpY53YiTud70>h,GZߪi?RReXj4Jk$$BA ?dO=>M_*"G\"2,,[|b1{-p4˒ 2T?|r(a)^-8Ֆ 9BʅpDjcf~N'݈~{%W74JIa@(JcW3kwZNX74Xp; ^ZmHxY{EN5 n wl k Gò!GHQ0k$kVk+3#gL.aU"X(eZGF^(CJD֖7Vqel+bd_wcu#CDPiZL‘P(6*&͈3YNE;c[d1cm;nns9*''4'gȆ+b2 ))(. ?)mfZ.:u- K{FIjc{\gCHKZ-ĠkB^0CeNv0HZAD4UE!&" hh <qϸx*ak mn,iN4'k#OZ}HkDb"MSa}.?BxN!`&#m -rppȧ9zŜGcR;B mDXϋ%ux0vٖΙ `%> 9Ιx;ά1J-ɹE_ƻ@1FV WDN\+x1HP6$:^NYjQj7ke.Wb  ]l7! R5\G q^9HiYV"' gKYk+;Pshf_T77U|H@J= s5Փ qlLTז 3iZ-z|| ]\G"sj70q\6zlxMQ,J(#/f\ _)Ї%OmSnŭtB19s(YI^YwZ_irc_l;m[;y8s@QcW"#P=yw,?Ё0hQYyH$!_V}lT^\3oy 5s t/( 3h@AV=4-hMr=طeI$>BJAyKA;c&G%(4qw]5oP(D6]2,NA;O0zuE8tˢ+(w\M }q^|*h7a\\&A8Ԇ\&Kfr-=zQYVs1׏BUܓktx ԯ穽Db=I.`6G2jJ7OLAv>TwR@FfO㿘7[0bjTۣ[|xVٔ0w!C𢬓"b,^۵g@ʭhGmOaqQOTWve֗jɧdR OfJ Q]uU>_ ϗ_sS[3'#B~'߅laA,̾v$Ai~ʹq4Tl:S^Ɗy/, CkˣdOC 7uك1_To'c\$P'#pel'D=9.v8a&Vd ]Vp["i[kM4,#m7WJ0C_-gҧR.H*="zׁ* S7 ؟uׅMSt_׻-?*toTrncw U'Ҥb.E5@E#@OoL%Y[ J+fcq/ZyDIAGA qO=:4-2-wdPUuBfzQ'Nr #Ʃzѕ=Mtk֏υ+ ` ;3ڬ[!m4"Sr(b۔q/M|Q5eyc)-unJ)I GGӵPp֦eKz/3O\.l\ia[jN봆PT$ܔ" XҦ$11(2[B+ l#[YſtIN~SbԉSx։P$r; "+AWKG? l,JFci(:q=KKˁ]tYʲp33Ms}a:L .xH{n>~2'PI0l3KH-ҌI5G(m[ME ܅@nJ'aC+7ә4y4 G+31+/jW}@^U-uEQ׫d.&&3CP 90Ñh+׾MiOR=˵fCD0h` *MdJU!]^&Pq:]޽˴.&4,r0=`#vؾrZrA |>A |UHMɈ2\BIʼnҍ#ó-Z>};f_z7Gs$#|ݭN2=vN2oB_6^EZv XW*W {"jfK/_2Po XyœVYdBIO#lB7<yd^Ct(偓طD=p%KTpA<9@Z-qg{س6|t_;X{f`pD5<|2)+VU4qlcP5oI2BՊ?-q5=> N,lSFzfAO"Ѹ=oJPq MHе]H}~Qn_+e3[z.;rmKfB5L6 gSen C=pP]a8oqǯ0)ZO+p!udSr/{v# ϱ*?K1*vGb.Wv@c}9fij|k;CZg|y a;Zl\L0hRp 8eZTՍз?Sm+xũ}׸49Nn"$A7CPN4>xG-hνK,GNy)/ 'foyЅbbSmtorGb'^a4>!7ӹe w9(3Zp0)p[Atjv tT_6^`X^g# `u;藺FB9#3/ :d|/'; GJ؃`KpD4l*ڞT'I7A*O 3|X2Do VN;lk1"5zl KlOu! dݏv r-dzv[mÒ*XllKf:EW6US'σoVHi{ jQjBWOoM'vR~K#t!teX`&|EJ.(|RDZ*{UY@`=$ e;n͓[[?gN6߷ehY1BYO{ ZgajH"z!| e L' d1#A$ࡴk΄(d|X]Cѫ:ċ,w4 u {>~>+?GNf@?. Wd6ZX?,MdO>5Zx3\CLOpyV4l) RMk %_bCfW,"'ԃI .Juq&gR5Na߆4OE'ё,3(3H=bQj[A^S"olkyn+z/եg)W VѺbUSLԣZV\|ٍ)jf, y8(صQlDfgvyges():ٔNEd#TkFzT״S]6z,כ_@(GŬHOM+n-nɥXA\pIkb7vAt\8. Ec'z,~ŚAjE?]qN@Kx.bu%So"?YBTϮ/^MVTM_rK@V\Ls)1r`Eq/>CRg!  糃!0 9oa9XKwU1WzDT#Җ ~\Ǔ]H)ch{] W {&7>RcKqAɇ^LB47ҁv$2~xtH_tYv,$ 8I-:UfX7!n,Qݧ&AQ+[qoDWJG<^}KIU'>)l&op.`4i]?T>KVB;*"|,7dYW_$p9"[ vSme'Q D"f+8g.ѕ[|jG5KvY*&3dHnP䧬q$'at+c@<&\n['v8"tF8 Xur]7E xkV&M pzH),(| zl'`qeg, +ϰmA\( whBKM^-qjdx[?^%sШCNm#R-#pɜft⴩)e6-d5Kw?!ؽu.Y _6(tMl/K(͍u ZS5@-w-[.Θz'3JNuneHUw?ΒBs6j+52D5PZwXUYh2rxw2P:`2m"-F%g x[OT5KZg/8P?~5z[akϜPlww_Üu_%WS_s;)We|oNjm֔h '[K0k$r B./&&!QqG׋2/^'6<2$_N9؁˘)[죩Q#r!xw9,dLאէbX~x^uԯ#z u U)hqP܎~0Uԩ`J0Qa۳8ZnK yM' #|8!"pa̺ч]H!JİɮDfGHaJ:wF@Ru4}&tg! Cq<) CP|$YD;H4 } ,~t̷ /&G$@35Mch.cQ.!Aȸs (a7YU_溦^˴eIAP>dzЯԶ LN^ a1Evi^WvTWe )˙ASQgϞZ6z=(8B0P(H1f {s= oGNX<6%-H6nMluO?ir{  x -t<^^,%9Am[:Kcf4))LO(%mo?oHWcLt*@'^ 05MEaW0/cJ]=:*h^@1 FcpX␌a9,ޛd8[|"V`rȗ܏0dN8hkf v"^@ǿ2ն#e44U ; `[72,BǜբKX5J$G rwη?'U2t/xrTX.W \!6&Kwct es[88G^tCG˶b?\Wgd($g?%wM'O/q@q[Z]mfagQk_+ZfFThW/ 5U0'%@ďgۉ{M~!VՈ|/Ias3Au'yUGq[Rt‹GEy͂A FLUӋO۶7?"nP劒* GO>J_: >`MvEb?vTG+vM8\K* 溙ՀX aa+ONƲ$–.At. C""q3b}7,$?jqd]!^YG*t7?0~VjOצh[}55 +bvKYC7DNi`cNu$'3kßZ8a5d/FW墱u"oYlϊ8?r5VF-ri(%8 ǰ=6 gi mAo?@yYq<ʾ"M,kAXW<\j{]B߅jsc.NckP\-Z?e|ғ˕aM345IȔhf&]A^Dc$m@=V%<-@&onC<LbpN '5ž2$DӚ,HWux=-0K3fp!+Cr8>Fa)G23\3ol2w›:Q@j J,ZpU[e@p߽ 1)&/w$*j<OUgr;yf8Bqh}=f`Lw}BUA.'7\jC:,ax,>?nRqN5Fӕ ޫO+O:ům{N~t1)ڈIr"zµzg!N'FnOlŊxPk9_2.bW9bmu-Zs<_L<(b*L8-PEmD@I$ @$,Yat+HCQ5)hX/ zU6 @ K;P'{ۉq&ZWyqYSEFx0&,`0Fac{v1`ks* OlH`,FC F)D5z:0klLT(λ膆=F:PMndUVeﭏEڑ휺 VOQHeZeO,ͼRNa7S ÛծO& (7h:3LK & pV,u&ngYϖA2Ɗ[*{j01q> zG榻6XaVFק7\W>(;vysCޱ1Yߔ*VhQb],MU#`hzMX>Pa悵6p\lLcɔ51s0b܈$wRn+hp8X佲:l9eB-X8jkȭtCewjxb+p94V/{Fr]>>'7fPά*Ñ)#Zvx&_nt&^.4#[կ= CC(*)=ӺC@WSRbm:.Q;d)⡲j3M|/` 4D-KbtM fGB[ suozPE3b >yE~; -}ʓȕQj?B˓ dH*3NRk}ѽBuč}ǁ(B!?z] vzͿn.gz1fg`ո/wSdaDۈZւ\<͝8L<@t͎{4A0ys*sV)WS 4$5#X) Z\|cO f7M aBX]EщSt)5.vMTBn6Ymfa{7[FkDHPۭfdt郣Ui 07|9p) 1 }X(kP"s7eS:f-P("q JW6b"c\,zꮭc>~ \'/|'ۤ&(AqBlnHGH7R ԮaX a_JQ!\)_QWFn8tLSgQya| uα-ņ$K>[`SrIcS/?x%ɸxۼ7=SmQr a?J 1rX>7]69qJcj6iβ-趠UZxJᢚxz^khfLbt.r ):`i0œ+ͭټæȍ&@Eu:8F3NUOs 4s!ԧMfjd~_Ν,?sGkmmsW}Z2V_Hzİyu=vLN#L$an'J`ݔjWT$_ O@܁_$×NYX.疵!=7>4{(P6 g~ Hgw@fϋMH_\X6ֲk\gdr.ָDD @O50 ;<= 4s!r_ 3)" gؤ|‰8E.<*B ! &'5-5ZC two ǰ{bdR"UkPdd Qhuu\ :Ŝ: 6\J~x OX#c.tڡ (Xs1_罄6j(WD YN0o1YN%/ [( j$/nEaJϧZ9PU2Kጳ(z㝜 &k5 i, 9N{Yv(vV?viФK?%4ܧb]EWxUOka$d I\}SIQn9yX m b.6K+fTN,>$13תHNl.)C{fp~Wxl#lKm>b- pЂF[ʈ۩8DķG}Ұڠb(Z2Yu_x^WdB@Zg;ǐ?.r9 Ͳྌn_"a{y7p7(u(f35bpP_rƺs^u`~>]S/ u,3dWn= 'WDZ^0䬲1h{=spҊW?OWX4sڢO?tVDG]|]Ƀ9Xۃ}\ M82pAdÞK!!SA)u\~3ua>۞aCk3g*_u䤱{0hF.E^I70]2Xij>XM KN\ljvU=y9<^J8Ok/84&&^aϛ`აN<|JZM7ހ&cD4eQ,Ǐ$nQ$Cn|`B#4C\qT:[ 8.4Z\%|; vFB_ 8~׾НLĔi @1fqnbh_q x^zel4/@:ycG1D.FP-B;@>?: T j@ \O^wnCղ{C&n.OQ,?i;fwfs4Lr9MZ]D<3W6]`'@ G$0h/MxmչӦrt%p"R<¦8qw|d7~b[WJr}(xT1$4O6)jV2<_V*I!yQ%7Lݗq&h;ODN=5esxw H lE(GJxEVƟ+c]̎-gn^8%- Ty;70o,1!9/_r0E$Who> C0JCx7oFWWD*Km xLGL]ci=&f1 kC7-ĦKa>@Swmf%ʺ2p.}&͐I=iiR KM4,PrIoi!$b81ƟOȂ:(le[߮I D;{ &PP .bVqJ7ځk4EȅYV5U>F\+"]ULkq7͏; 0}P(?J"r𛎎2pUȇdBj z[(xuZK:j6 HHTLʽ01w ?hzd7 .$~$J,=`iKK] v?HZ _A"dTT5U R,9g.4W =#dT!Č0Yp + JO)ZRn {R r)"*O[pgR,㯄R36^ZL#?E dj_47 OC 9TqbsYϕ;"Hq:oĚ$ܝd6:S5+o/<yF6uU?(cH?i6hϾ>3\9-e2Oe-^_Vi0Tc M׭U0c'{GWaR|6Céy+L|x:دJxVH#oVR )Ssd$/n :_۪0Ɨa.Gqb78[(g{k[F=LOc"ଐnNV*bBV@EXra;rX7ʘ ē?p1j{p_^s,jėKctkG`3rˍ:CǕ& rT]RzE ˁա ƻbնo[˜ĹeN+7˕ڰ!Ų,)Ϳ yc I71r_D'8XMg`t 25Qb7/XIQotG2ߚ~\/WsWRejy2{Yj=]xHW ]<8A-B?8+}JP\/ fdDV N1UklZ7dZp xL#`l&-&@,sAB!#?)|Շ\< ̖nWL>UF\Ow'4F -U(Z 0 OEewvx.U7ځG$E꺗B YJeى 7l+l'Ӹ]Tu=/xکXSEKʙ^厱X'_ 3&ʍzL7*%2:zhHf_R5EO޸@yiASӮ#󚚳@X>+ܔ"׶Hrj]lJŢH3˹ʬhtTf,ȚHxg&aʟFNG=ͅaCWq )Q\ JmÃpc#'K} 1ֻ,@Ƈ07 &aLBP;DŽ;iٰN{7ugܘ֘0=[ecMα\JŪQ yVPȂHcY? ǚ;$}`HJNW߹'| E/~hvHOj`Qlq%|Sl7 z5) rѼ,6sO;Y)ӎ1hBU,aҕQG8:ڞ妘U'QV'\#UaY$%w)/ OsAI;wp9ލMߕ. )1[Fl;~Juۑ(k8Цh5QΧ%qX@1\L?FR*mdgݧ`8Uǝw[ 㐍WM y8ؗKG{*fqlZ/nsWDo GaXMHF)$otquт'[8$7} Ӫaf91z( (?gֹ[تRˊtbQHpt >͕ hi Ԓ(0Ūon$[''NgXSVf;ҍ^ֳ氊CQiWxH!f'!wu`%%nlI*c,][)'c}>t.pcH&Wa$gUĸkjuJf_2W\—ujt+HgZ'QmWw tBJ+l(J @?奝C6"SKyǰ)a()O,Dg!X\rě$Yܫ5C)Py}ѪJ`N!٪yR;'tVjm۹ePܷΩ j%vC; ‰]r;? Q;W1UfR?-X].-e "kݞ#eo)\mD(K[Dռ|H er?5|0`,9!XS$T$eX#(."hC  笲KZ@xuQ,^P2|AUeSu Xjλf [}i!.q8de*.9`]4^CHiNὈ%dɍ 1h{]9s|~*#`>a~v`FPNkTq7t-"98r-0/%G:Wp><;!w`~eLJ_^(>)X_t5ɻ>%ĸ^,&엢]6ȧH׻e5R,k t6B*@ =C7ʛf+g3ajgI"|Gh߹UptaԤƨP|jZdYzbZVʑsgksp J= +k/yŝtqJ>}Qf611.Fy-\]PK.hd8R T`9vrẑ*= yLEf-`PӅ-@U\`Pl(0qIvYzvKM]0Q%xd32M1 Yx$IOgCxCs_n^uF7zD(_H^|G exmtsYH[I]{K֊ՕJq%ໜ]t< ZGi,|"^rgSHM'2#AP9P2m6Q!(-Mh_!j@in 6?ȼ{hOĥi,ޫ9e2*)y+KNo̲|9Ȼq΅!. OKj^$0),7NIyw_=#;vwXBFGQ:t=q^7)mNz<ԅR@x{c+yYT]-1:l 5餘ɿ5&DZ8e0GRI1fԅxII`5 #XQek(D_oORZ;G-\K=z"P.YU>\zUuSMEon,EDgL a5dք}H9!u،;pF\uF6_eؚ#b0ju262~.rBx]cXi>uEyLn9=*&;Աt[& ps6+àYOBXsyl&AP4^k.3YMn_,UMr⫤~MYbo荧sS֧+LyݞH/wl|=^7ݐ)eN;you•'HM[ðuKߋuajÍvu!]qM0ޖ48 8(!XK3~thxN8l0qAON6D P+p=b}(v(Ф")\ `*=> W_ڛ5Kᬕ`dA!.i(G :nʖ"b2<e*/:Bse`TXN@fSIi֟#tKSڡ"_.PyyRG'PI9?((Rc5_Viou>Pͮ5j{j[]ky) K˚pZm\7԰x}E)b/3 j*P/'tBwI!dJ+LnydPoЦ(k;S ` {Xq@1s,g{K@BM7ۀ5{B *jC:i,z}Dv7.P[bTHSnԽ5CGϫ0XpGR%^wb9GA9,1 h"+ b@0xmLNl;m:KZsЦND'p%(mc*$]ZV #ZGGG,fo۰X^+鸕-:2hص8}(-@o%b4q cnr\-bEk]*`n$+Tr; )7@+]1ѐ> +[ !:ov)݋UE4vexby]1w"@dUv*S/jϢ&SLmVyB8.o#§>RFYDb6_p*J۝(C,/l2o~^e+v-KnLb{TD@6\a ŘsŽ7*qN/ ?^*(`DTTND-ֱ 0m.< O:D鋠Qxö֤|zwaQ8Jg4 w 0ǰu5m(4{b=;MF| |nQoM{ۘ7И*Έ*g]\Ő&k[\1e'o ٖGNIۓKϮ[Jk"&>#b6$pdjjv@EO ,jx9lSב7\ ےWej5~ax5DExj._5"A^N c݌?l% QCW&:Ich7a$Yثa:/^:0l~+pfrcd apDgZ_Brm2by?76][ ϹC 9j~r8u 'O}11 ^/2 A<w2&q(=]fd'ʒ&I+ZS6<5L{T!ݛe9$֎Hӱ?~c浆fNC1$\ NH&O7WRsoKG/wxLYgI6!ደрGye;;Ӯ |2Bu/UվpS2 yD)kP۲ZaC+Z_eMG s`3jM[A5a|3n+ !E3Ґ@׀. (fM0^@ryB ,w2)28ӖA%Y⌇3y]ЭK+\0o"Ʋ6*T`T.T2r3&)%fR'H~`ܽn&i}Ð BLz'(`HmbR|\Wk aTh.b.kKd?'qG1$th =BGmS`Wsy@b{pB[[%ͽ ǫr4V?5\'u0!\c~{L@9`s6nL`Lx$HZV!3 vL9YdET<& ܢ}F/R/,6kmF4,<6눍t%BWљ:p=w7[zb1sɨey#Oˈcs>l?5tqPy=4-wXMRL ;}ЀtW>"|) NDi_o~UI'X[07 mrWbG/2qN" vRLz%;T59V2Z^뺗Z&cVYur0ņ[u'm^h!e")wqB Y3.Zж&3X2׿T@ U7준g5ϽQs "=hӚRu\ <,s ZU۫f?[,jS`C3juIxzڹYBu{Ȧ-P1xtsOoJ*G6&ׯaPgMI}ݛ3C<1[}m_K͜E֏0a%$a긽ޥl@;Zny_rNvs$U+h>Oa*1kJ-Vy؋2 m_'oJ=rzqTOe݋>>GEnIG Q@tp-36)4 @vovfG^#7܀Bk]y7o'L V%'Wq"4j]!^y9]ܚZ@,֦2Ygbٓf3wW_8efM¨X)X }?xEX'D4(_?Ld̹u5KZ1v Pwٸ>i]u$C!hP:#re~'X02&\=gh7|3n*qBJÉx=TgBU?r߉FB`GX`Ng ?8d¹'E`rʂ_"MA$ v$J4cloR[CW*dsy٭J"@(fL "` (]O0/awv*^i+PBbxj qwWNR yA]~;2pGW`fcOɞ7f]:Pn&R'@Ml΃@!bV/,xibbC`WDH:YرG?t^}gdvŀ3bYAM^+a˂x.6n: QR䲬4m.dHk. ~>ڸk|Ģpʼr,93_tx0MkG}+= :7r O]FHӮM|mM3?-*WuL̦UcA<`X]/D|* kvsH//B>ͺ*S^ N_&`j=N_o(/׋D #U+'s2Huw)J JVՕ@ުrE-։58x=˟"QS H*`9\*HwhBLЖ-x0E9객Sƀ8JqpEUՍX[??C,}MS흀Ct+cXli1_ɭ]Mt2eK=1%!>H<>|xk#"L7K^v_aVTޅv2!-)S5k©6\Bp+2h>w aKv7Eux;}:i^4' owd!8woݘPQIb }u3M *D+-?f4j=נ(X!*=`:3W`Obͮ P˯ifa,h|o˔}mi#t_R.n=h)>Zۯqy饗@1loޅRovh9N3,@A7sc(ƩB̤ PFd뉖I9ܡlݨ_BJtr[nP0_B?5D\ AM3 =L—F_%w;Aqr, UjxIhb^~9|FNǜIlǬL; $r: );OA]n:euw|ۡR>[vRWrZ܏=z+3|.sk82o lPo7Voz9z6E34ڎV~ ZQZT@to"˦S:LlL;~R;Qd=2OXGt~gAEpصİxKBī'wL΅NU(OʵS:Fot袧:y֧^.mXORnRv-&1)0 9^Ԏ!g毐h:""P׽^~,z”mPuv/l^&j6rEWx{# X~Prn3yEHoxI?<k_ )H5=Oeg;@g%x8h5ɉD`s;cr1Gk7Aܗe]l;O1"&[Q#wby0q6^n52~ҽg M VW#X{FZԝ]Iw](@bcjXǞB;#jWp+'z_O@<6;wH_ia sfQF"ڽj=y(lHͭ=a< ?EjۛP:$lչ*OW: Jȗ (|Y`[xW+OyI4 ﹇UoU)aq@T;^y"E OUs]5A~־V4S SC8tWuuU͗2V%"fΒK*)Br86B.o@%?Y牍tگMRL;M}W*U~y<[R+m-۳!ލ,Mxӷ9 I揀%2);3ɼ"KO?6tWJLT~U}nЇ7ق&9l_A3X, x/E&!a( 3,\1P(@ wvPv5ȾH jC+JWὅv7 n;)ְZD4m(2܊♇( רPfgݛm|7L]k%X0~-T=1ڠ8})%mr\VՖ , J/95x F!xYч'`ak؈: ^əs7 :U k%]=rnr6bmdY2hVypѣ( 0ҬkP5,x×I'm8JF@.וnchmA0!ϭlv74kӃ(y`,Ri;տ.Rk|f4{Кc^]v8.Z t i7u)z[qbߪ(x1*)C1fOdV)?y tL @q7,$Zs9 .2el!ρAj RL2#ýS<>]4^/4rY4Ij6WJkښ,)` RY6f%{lI/ytZw$ rE6Mi;8d PR٧v8Xyty8M1PFc_r%Na͖xkfw΅(\z8C.(x a!Fd=wҌ~KL liz䝀Q;_D0q| jQ@pf3ūw#sG56W55+] FÁR^$IՇ̷-~er((jf[,IM `]Fq7/K}q hEw}w p(Cv0GƖf >6&zOxX|*uRdpHAt/6 K_w}8?,-Lwdl 8ܐ$n4nAԽ*Y:[s3ԣ}JŃls4c5* "WЦeb>6V<`%iK:2G֡Ž/hgy>SźiF<1|GXn\ 'vF ĺDwzP\%^8DL:"0qw?ĥDl7-N~,+n).Nk@TGB|itP yėdrYjҕq]| Ev y A4nĞ]/e+|ɞ! r)lՇ_ogUo ~Am9vdJz䅠7ڞ~^TI߰KC[3U+&M } uj-a5U Oc?577TH[<Ίgry o̠yH5E0"">6T&%#7~#R)+TU2G?㨋zvEa)36-?F* w?]嶀l'ǜ,I8S{3&@ÓQ,\gVff3*=g}/=Tq Xla>x++%Ә2*s@Olo[@I - lTì@7d?j#9 ۢX b JF_@ [ENܬ&*nTTkfɆjtaFj"k?S-U}RHn44kL xnA.;|;BRyZ0TB'cOT\ݐMhg "RnZlSԍ/0|5rc']2ÄqOftQHj1Y$&7;lj,2`Ӟ8S!w!B8)ؙ(eQ/Ǎt+bj{j=;cX3s_GgIΖC \ &]<E[pr9'x4cQ6j/ڡhҎx**Ҫ96!M=ϪCh S_jOWj=4Q_[0 G#V 8>u=B Ǘ0 yƟ r 7>n<|'z*MoAdB ^}% Y&D`۱gwbIkN ͓F)HEM*1-kK{NbWt;)[Ŝbxm=ܴ0וnYwuK%2=%xз˘C7{ s,o[z}X6x s'P̔Fc3\7hb%yg4sqbN%宦s؆&HqV:ڌp<߽IEB|BBAf>]YVu6qN=f_oI Կ>l$?㹖u"=o#yړR4iaۏhjafpY,bIr9j-=PDՂ(g6kKْzC:Ql]Cfj:}'ׯy"O3>@V[͝fbR׋FiX~{@~&?"W~w͗74OL(tay&Q["m u!dejS٨rl:o-7S$BYi"QSt΋}u]|W4Nt*sV5%[ɶ Îa ltݸ7CڏYP7m9gE\QV UXK=zm 0l“Q`(M%BFV\CQrpLr$>IB:ȴ=$l/\褍O<,| !d$*ggi -X_aSC晴+)a[˄B=6Cd1|{|}Aѭ^;r[jcߜO51UXm~ւl_cj G RR rԢёU/FTۦ"_~~G?EOⲱ8$slA 5LT1,L[2hrH}Z`B[LRPl\_@ڳ^P{\pk,Y1ҡJͼ"Ds{G,ًQ ˉk&˦ głUz吊.t1Sr_sLĎϴx찮H8 t]v)h-!^ g(䖜{i"0W+]Qw"f]r;q|)ۼC J9N <3peܓCGO460PwwM`DҎ7 ms8f^89;OX|(##3QW}sQ.&|>c%I:MO|o_[ޙv*d$s[sV>=YR=.L|a rlb;<#-.b{7Xg~%櫾HWG -3b,E$d{ X Kyb4v٢ ? |njXhVn2O9"Yno4Od_ډ1hBFL'9 ǽ 2 b YZ