sqlite3-3.50.2-150000.3.33.1<>,(hA/p9|+825M_Xd} `Mũf̿7_3NJK+z %-d$3ܿWϢ' yo2EmkDq)t7k}VLy=O9Ğڋs53>+P mLmE.j5iwWVحI9K3'B$ 4X TK\0ћ%Mg $fݯA?d   >$(48Qr     z |8F(r8|N9N: 1NBFG HIX Y,Z`[d\l]t^bcQdefluvwx y(zhx|Csqlite33.50.2150000.3.33.1Embeddable SQL Database EngineSQLite is a C library that implements an embeddable SQL database engine. Programs that link with the SQLite library can have SQL database access without running a separate RDBMS process. SQLite is not a client library used to connect to a big database server. SQLite is a server and the SQLite library reads and writes directly to and from the database files on disk. SQLite can be used via the sqlite command line tool or via any application that supports the Qt database plug-ins.hA/h03-ch2bPSUSE Linux Enterprise 15SUSE LLC SUSE-Public-Domainhttps://www.suse.com/Productivity/Databases/Servershttps://www.sqlite.org/linuxx86_648큤h@h_4c9702721020f7b0196351f75cb7e78a408dc33150c9fd848a7b36834bf624ffcbdb8f8a4b193b6fcd34554c8535142fa0731ee9a77141deee71930c3fff64adrootrootrootrootsqlite3-3.50.2-150000.3.33.1.src.rpmsqlitesqlite3sqlite3(x86-64)@@@@@@@@@@@@@@@@    libc.so.6()(64bit)libc.so.6(GLIBC_2.14)(64bit)libc.so.6(GLIBC_2.2.5)(64bit)libc.so.6(GLIBC_2.3)(64bit)libc.so.6(GLIBC_2.3.4)(64bit)libc.so.6(GLIBC_2.4)(64bit)libc.so.6(GLIBC_2.7)(64bit)libdl.so.2()(64bit)libdl.so.2(GLIBC_2.2.5)(64bit)libm.so.6()(64bit)libm.so.6(GLIBC_2.2.5)(64bit)libpthread.so.0()(64bit)libpthread.so.0(GLIBC_2.2.5)(64bit)libreadline.so.7()(64bit)libz.so.1()(64bit)libz.so.1(ZLIB_1.2.0)(64bit)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.1hqhw@ge[J@ci@cb?bVbbwbjbBb1@b-b@aaѓa@`\]w@\@\ZZ@Zs@Y|YYYC@YC@Y:Y&@Y"XDXBX@Xp@Xk@Xk@XfL@X2XW;W]@Wt@W@W@W and ->> operators for easier processing of JSON * The JSON functions are now built-ins * Enhancements to date and time functions * Rename the printf() SQL function to format() for better compatibility, with alias for backwards compatibility. * Add the sqlite3_error_offset() interface for helping localize an SQL error to a specific character in the input SQL text * Enhance the interface to virtual tables * CLI columnar output modes are enhanced to correctly handle tabs and newlines embedded in text, and add options like "--wrap N", "--wordwrap on", and "--quote" to the columnar output modes. * Query planner enhancements using a Bloom filter to speed up large analytic queries, and a balanced merge tree to evaluate UNION or UNION ALL compound SELECT statements that have an ORDER BY clause. * The ALTER TABLE statement is changed to silently ignores entries in the sqlite_schema table that do not parse when PRAGMA writable_schema=ON- update to 3.37.2: * Fix a bug introduced in version 3.35.0 (2021-03-12) that can cause database corruption if a SAVEPOINT is rolled back while in PRAGMA temp_store=MEMORY mode, and other changes are made, and then the outer transaction commits * Fix a long-standing problem with ON DELETE CASCADE and ON UPDATE CASCADE in which a cache of the bytecode used to implement the cascading change was not being reset following a local DDL change- update to 3.37.1: * Fix a bug introduced by the UPSERT enhancements of version 3.35.0 that can cause incorrect byte-code to be generated for some obscure but valid SQL, possibly resulting in a NULL- pointer dereference. * Fix an OOB read that can occur in FTS5 when reading corrupt database files. * Improved robustness of the --safe option in the CLI. * Other minor fixes to assert() statements and test cases.- SQLite3 3.37.0: * STRICT tables provide a prescriptive style of data type management, for developers who prefer that kind of thing. * When adding columns that contain a CHECK constraint or a generated column containing a NOT NULL constraint, the ALTER TABLE ADD COLUMN now checks new constraints against preexisting rows in the database and will only proceed if no constraints are violated. * Added the PRAGMA table_list statement. * Add the .connection command, allowing the CLI to keep multiple database connections open at the same time. * Add the --safe command-line option that disables dot-commands and SQL statements that might cause side-effects that extend beyond the single database file named on the command-line. * CLI: Performance improvements when reading SQL statements that span many lines. * Added the sqlite3_autovacuum_pages() interface. * The sqlite3_deserialize() does not and has never worked for the TEMP database. That limitation is now noted in the documentation. * The query planner now omits ORDER BY clauses on subqueries and views if removing those clauses does not change the semantics of the query. * The generate_series table-valued function extension is modified so that the first parameter ("START") is now required. This is done as a way to demonstrate how to write table-valued functions with required parameters. The legacy behavior is available using the -DZERO_ARGUMENT_GENERATE_SERIES compile-time option. * Added new sqlite3_changes64() and sqlite3_total_changes64() interfaces. * Added the SQLITE_OPEN_EXRESCODE flag option to sqlite3_open_v2(). * Use less memory to hold the database schema. * bsc#1189802, CVE-2021-36690: Fix an issue with the SQLite Expert extension when a column has no collating sequence.- Sync version 3.36.0 from Factory to implement jsc#SLE-16032. - Obsoletes sqlite3-CVE-2019-16168.patch. - The following CVEs have been fixed in upstream releases up to this point, but were not mentioned in the change log so far: * bsc#1173641, CVE-2020-15358: heap-based buffer overflow in multiSelectOrderBy due to mishandling of query-flattener optimization * bsc#1164719, CVE-2020-9327: NULL pointer dereference and segmentation fault because of generated column optimizations in isAuxiliaryVtabOperator * bsc#1160439, CVE-2019-20218: selectExpander in select.c proceeds with WITH stack unwinding even after a parsing error * bsc#1160438, CVE-2019-19959: memory-management error via ext/misc/zipfile.c involving embedded '\0' input * bsc#1160309, CVE-2019-19923: improper handling of certain uses of SELECT DISTINCT in flattenSubquery may lead to null pointer dereference * bsc#1159850, CVE-2019-19924: improper error handling in sqlite3WindowRewrite() * bsc#1159847, CVE-2019-19925: improper handling of NULL pathname during an update of a ZIP archive * bsc#1159715, CVE-2019-19926: improper handling of certain errors during parsing multiSelect in select.c * bsc#1159491, CVE-2019-19880: exprListAppendList in window.c allows attackers to trigger an invalid pointer dereference * bsc#1158960, CVE-2019-19603: during handling of CREATE TABLE and CREATE VIEW statements, does not consider confusion with a shadow table name * bsc#1158959, CVE-2019-19646: pragma.c mishandles NOT NULL in an integrity_check PRAGMA command in certain cases of generated columns * bsc#1158958, CVE-2019-19645: alter.c allows attackers to trigger infinite recursion via certain types of self-referential views in conjunction with ALTER TABLE statements * bsc#1158812, CVE-2019-19317: lookupName in resolve.c omits bits from the colUsed bitmask in the case of a generated column, which allows attackers to cause a denial of service * bsc#1157818, CVE-2019-19244: sqlite3,sqlite2,sqlite: The function sqlite3Select in select.c allows a crash if a sub-select uses both DISTINCT and window functions, and also has certain ORDER BY usage * bsc#928701, CVE-2015-3415: sqlite3VdbeExec comparison operator vulnerability * bsc#928700, CVE-2015-3414: sqlite3,sqlite2: dequoting of collation-sequence names * CVE-2020-13434 boo#1172115: integer overflow in sqlite3_str_vappendf * CVE-2020-13630 boo#1172234: use-after-free in fts3EvalNextRow * CVE-2020-13631 boo#1172236: virtual table allowed to be renamed to one of its shadow tables * CVE-2020-13632 boo#1172240: NULL pointer dereference via crafted matchinfo() query * CVE-2020-13435: Malicious SQL statements could have crashed the process that is running SQLite (boo#1172091)- bsc#1150137, CVE-2019-16168, sqlite3-CVE-2019-16168.patch: Improper validation of qlite_stat1 sz field leads to division by zero.- Upgrade to 3.28.0: * CVE-2019-9936, bsc#1130326: running fts5 prefix queries inside a transaction could trigger a heap-based buffer over-read. * CVE-2019-9937, bsc#1130325: interleaving reads and writes in a single transaction with an fts5 virtual table will lead to a NULL Pointer Dereference. * Enhanced window functions * Enhanced VACUUM INTO so that it works for read-only databases. * New query optimizations. * Added the sqlite3_value_frombind() API for determining if the argument to an SQL function is from a bound parameter. * Security and compatibilities enhancements to fts3_tokenizer(). * Improved robustness against corrupt database files.- CVE-2018-20346, bsc#1119687: Upgrade to the most recent version to fix a remote code execution vulnerability in FTS3 (Magellan). - Drop sqlite-fts5-link.patch and do it in the spec file instead. - Version 3.27.2: * Add the VACUUM INTO command * Issue an SQLITE_WARNING message on the error log if a double-quoted string literal is used * Add the remove_diacritics=2 option to FTS3 and FTS5. * Add the SQLITE_PREPARE_NO_VTAB option to sqlite3_prepare_v3(). Use that option to prevent circular references to shadow tables from causing resource leaks. * Enhancements to the sqlite3_deserialize() interface * Enhancements to the CLI, mostly to support testing and debugging of the SQLite library itself * Increased robustness against malicious SQL that is run against a maliciously corrupted database - Version 3.26.0: * Optimization: When doing an UPDATE on a table with indexes on expressions, do not update the expression indexes if they do not refer to any of the columns of the table being updated. * Allow the xBestIndex() method of virtual table implementations to return SQLITE_CONSTRAINT to indicate that the proposed query plan is unusable and should not be given further consideration. * Added the SQLITE_DBCONFIG_DEFENSIVE option which disables the ability to create corrupt database files using ordinary SQL. * Added support for read-only shadow tables when the SQLITE_DBCONFIG_DEFENSIVE option is enabled. * Added the PRAGMA legacy_alter_table command, which if enabled causes the ALTER TABLE command to behave like older version of SQLite (prior to version 3.25.0) for compatibility. * Added PRAGMA table_xinfo that works just like PRAGMA table_info except that it also shows hidden columns in virtual tables. * Added the explain virtual table as a run-time loadable extension. * Add a limit counter to the query planner to prevent excessive sqlite3_prepare() times for certain pathological SQL inputs. * Added support for the sqlite3_normalized_sql() interface, when compiling with SQLITE_ENABLE_NORMALIZE. * Enhanced triggers so that they can use table-valued functions that exist in schemas other than the schema where the trigger is defined. * Improvements to the ".help" command in the CLI. * The SQLITE_HISTORY environment variable, if it exists, specifies the name of the command-line editing history file. * The --deserialize option associated with opening a new database in the CLI cause the database file to be read into memory and accessed using the sqlite3_deserialize() API. This simplifies running tests on a database without modifying the file on disk. - Version 3.25.2: * Add the PRAGMA legacy_alter_table=ON command that causes the "ALTER TABLE RENAME" command to behave as in 3.24.0 and earlier * Fix issue with some expressions with windows functions in views - Version 3.25.1: * Avoid false-positive error checks on ALTER TABLE * Further ORDER BY LIMIT optimization fixes for window functions - Version 3.25.0: * Add support for window functions * Add support for renaming columns within a table * Query optimizer improvements * slightly better concurrency in multi-threaded environments * The ORDER BY LIMIT optimization might have caused an infinite loop in the byte code of the prepared statement under very obscure circumstances, due to a confluence of minor defects in the query optimizer - Version 3.24.0: * Add support for PostgreSQL-style UPSERT * Add support for auxiliary columns in r-tree tables * Add C-language APIs for discovering SQL keywords used by SQLite * Add C-language APIs for dynamic strings based on sqlite3_str * Enhance ALTER TABLE so that it recognizes "true" and "false" as valid arguments to DEFAULT * Add the sorter-reference optimization as a compile-time option * Improve the format of the EXPLAIN QUERY PLAN raw output, so that it gives better information about the query plan and about the relationships between the various components of the plan * Added the SQLITE_DBCONFIG_RESET_DATABASE option to the sqlite3_db_config() API. * Automatically intercept the raw EXPLAIN QUERY PLAN output an reformat it into an ASCII-art graph. * Lines that begin with "#" and that are not in the middle of an SQL statement are interpreted as comments * Add the --append option to the ".backup" command * Add the ".dbconfig" command * various performance improvements * various bug fixes- update to 3.23.1: * Fix two problems in the new LEFT JOIN strength reduction optimization * Fix misbehavior of the FTS5 xBestIndex method * Fix a harmless reference to an uninitialized virtual machine register * Fix the eval.c extension so that it works with PRAGMA empty_result_callbacks=ON * Fix the generate_series virtual table so that it correctly returns no rows if any of its constraints are NULL * Performance enhancements in the parser- update to 3.23.0: * Add the sqlite3_serialize() and sqlite3_deserialize() interfaces when the SQLITE_ENABLE_DESERIALIZE compile-time option is used. * Recognize TRUE and FALSE as constants. (For compatibility, if there exist columns named "true" or "false", then the identifiers refer to the columns rather than Boolean constants.) * Support operators IS TRUE, IS FALSE, IS NOT TRUE, and IS NOT FALSE. * Added the SQLITE_DBSTATUS_CACHE_SPILL option to sqlite3_db_status() for reporting the number of cache spills that have occurred. * The "alternate-form-2" flag ("!") on the built-in printf implementation now causes string substitutions to measure the width and precision in characters instead of bytes. * If the xColumn method in a virtual table implementation returns an error message using sqlite3_result_error() then give that error message preference over internally-generated messages. * Added the -A command-line option to the CLI to make it easier to manage SQLite Archive files. * Add support for INSERT OR REPLACE, INSERT OR IGNORE, and UPDATE OR REPLACE in the Zipfile virtual table. * Enhance the sqlite3changeset_apply() interface so that it is hardened against attacks from deliberately corrupted changeset objects. * Added the sqlite3_normalize() extension function. * Query optimizer enhancements * Various bug fixes * Fix various issues reported by fuzzers, including: + CVE-2018-8740: NULL pointer dereference on CREATE TABLE as (bsc#1085790)- update to 3.22.0: * Add Zipfile virtual table to read and write a ZIP Archive. * Improved handling of WAL mode databases * various improvements, optimizations and bug fixes- Update to version 3.21.0 * Take advantage of the atomic-write capabilities in the F2FS filesystem when available, for greatly reduced transaction overhead. This currently requires the SQLITE_ENABLE_BATCH_ATOMIC_WRITE compile-time option. * Allow ATTACH and DETACH commands to work inside of a transaction. * Allow WITHOUT ROWID virtual tables to be writable if the PRIMARY KEY contains exactly one column. * The "fsync()" that occurs after the header is written in a WAL reset now uses the sync settings for checkpoints. This means it will use a "fullfsync" on macs if PRAGMA checkpoint_fullfsync set on. * The sqlite3_sourceid() function tries to detect if the source code has been modified from what is checked into version control and if there are modifications, the last four characters of the version hash are shown as "alt1" or "alt2". The objective is to detect accidental and/or careless edits. A forger can subvert this feature. * Improved de-quoting of column names for CREATE TABLE AS statements with an aggregate query on the right-hand side. * Fewer "stat()" system calls issued by the unix VFS. * Enhanced the LIKE optimization so that it works with an ESCAPE clause. * Enhanced PRAGMA integrity_check and PRAGMA quick_check to detect obscure row corruption that they were formerly missing. Also update both pragmas so that they return error text rather than SQLITE_CORRUPT when encountering corruption in records. * The query planner now prefers to implement FROM-clause subqueries using co-routines rather using the query flattener optimization. Support for the use of co-routines for subqueries may no longer be disabled. * Pass information about !=, IS, IS NOT, NOT NULL, and IS NULL constraints into the xBestIndex method of virtual tables. * Enhanced the CSV virtual table so that it accepts the last row of input if the final new-line character is missing. * Remove the rarely-used "scratch" memory allocator. Replace it with the SQLITE_CONFIG_SMALL_MALLOC configuration setting that gives SQLite a hint that large memory allocations should be avoided when possible. * Added the swarm virtual table to the existing union virtual table extension. * Added the sqlite_dbpage virtual table for providing direct access to pages of the database file. The source code is built into the amalgamation and is activated using the - DSQLITE_ENABLE_DBPAGE_VTAB compile-time option. * Add a new type of fts5vocab virtual table - "instance" - that provides direct access to an FTS5 full-text index at the lowest possible level. * Miscellaneous microoptimizations reduce CPU usage by about 2.1%. Bug fixes * Fix a faulty assert() statement discovered by OSSFuzz. Ticket cb91bf4290c211d * Fix an obscure memory leak in sqlite3_result_pointer(). Ticket 7486aa54b968e9b * Avoid a possible use-after-free error by deferring schema resets until after the query planner has finished running. Ticket be436a7f4587ce5 * Only use indexes-on-expressions to optimize ORDER BY or GROUP BY if the COLLATE is correct. Ticket e20dd54ab0e4383 * Fix an assertion fault that was coming up when the expression in an index-on-expressions is really a constant. Ticket aa98619ad08ddca * Fix an assertion fault that could occur following PRAGMA reverse_unordered_selects. Ticket cb91bf4290c211d * Fix a segfault that can occur for queries that use table-valued functions in an IN or EXISTS subquery. Ticket b899b6042f97f5 * Fix a potential integer overflow problem when compiling a particular horrendous common table expression. This was another problem discovered by OSSFuzz. Check-in 6ee8cb6ae5. * Fix a potential out-of-bound read when querying a corrupt database file, a problem detected by Natalie Silvanovich of Google Project Zero. Check-in 04925dee41a21f.- update to 3.20.1: * Fix a potential memory leak in the new sqlite3_result_pointer() interface- Update to 3.20.0: * Potential incompatible change for clients incorrectly relying on unspecified behavior: column names returned by sqlite3_column_name() and sqlite3_column_name16() may return different names when views or subqueries are used in the FROM clause, and AS clauses are not used (as they should be) * Text of some error messages changed. Applications that depend on specific error message text may be impacted.- a little less packaging cleanup so as to not break SLE 11 SP4- Small packaging cleanup- Update to 3.19.3: * Fix a bug associated with auto_vacuum that can lead to database corruption. (introduced in 3.16.0)- Update to 3.19.2 * Fix a bug in the LEFT JOIN flattening optimization. Ticket cad1ab4cb7b0fc. * Fix more bugs in the LEFT JOIN flattening optimization. Ticket 7fde638e94287d2c.- Update to 3.19.0 * The SQLITE_READ authorizer callback is invoked once with a column name that is an empty string for every table referenced in a query from which no columns are extracted. * When using an index on an expression, try to use expression values already available in the index, rather than loading the original columns and recomputing the expression. * Enhance the flattening optimization so that it is able to flatten views on the right-hand side of a LEFT JOIN. * Use replace() instead of char() for escaping newline and carriage-return characters embedded in strings in the .dump output from the command-line shell. * Avoid unnecessary foreign key processing in UPDATE statements that do not touch the columns that are constrained by the foreign keys. * On a DISTINCT query that uses an index, try to skip ahead to the next distinct entry using the index rather than stepping through rows, when an appropriate index is available. * Avoid unnecessary invalidation of sqlite3_blob handles when making changes to unrelated tables. * Transfer any terms of the HAVING clause that use only columns mentioned in the GROUP BY clause over to the WHERE clause for faster processing. * Reuse the same materialization of a VIEW if that VIEW appears more than once in the same query. * Enhance PRAGMA integrity_check so that it identifies tables that have two or more rows with the same rowid. * Enhance the FTS5 query syntax so that column filters may be applied to arbitrary expressions. * Enhance the json_extract() function to cache and reuse parses of JSON input text. * Added the anycollseq.c loadable extension that allows a generic SQLite database connection to read a schema that contains unknown and/or application-specific collating sequences. * Fix a problem in REPLACE that can result in a corrupt database containing two ore more rows with the same rowid. Fix for ticket f68dc596c4e6018d. * Fix a problem in PRAGMA integrity_check that was causing a subsequent VACUUM to behave suboptimally. so that it works correctly with foreign keys on WITHOUT ROWID tables. * Disallow leading zeros in numeric constants in JSON. Fix for ticket b93be8729a895a528e2. * Disallow control characters inside of strings in JSON. Fix for ticket 6c9b5514077fed34551. * Limit the depth of recursion for JSON objects and arrays in orde to avoid excess stack usage in the recursive descent parser. Fix for ticket 981329adeef51011052.- Update to 3.18.0 * Added the PRAGMA optimize command * The SQLite version identifier returned by the sqlite_source_id() SQL function and the sqlite3_sourceid() C API and found in the SQLITE_SOURCE_ID macro is now a 64-digit SHA3-256 hash instead of a 40-digit SHA1 hash. * Added the json_patch() SQL function to the JSON1 extension. * Enhance the LIKE optimization so that it works for arbitrary expressions on the left-hand side as long as the LIKE pattern on the right-hand side does not begin with a digit or minus sign. * Added the sqlite3_set_last_insert_rowid() interface and use the new interface in the FTS3, FTS4, and FTS5 extensions to ensure that the sqlite3_last_insert_rowid() interface always returns reasonable values. * Enhance PRAGMA integrity_check and PRAGMA quick_check so that they verify CHECK constraints. * Enhance the query plans for joins to detect empty tables early and halt without doing unnecessary work. * Enhance the sqlite3_mprintf() family of interfaces and the printf SQL function to put comma separators at the thousands marks for integers, if the "," format modifier is used in between the "%" and the "d" (example: "%,d"). * Added the -DSQLITE_MAX_MEMORY=N compile-time option. * Added the .sha3sum dot-command and the .selftest dot-command to the command-line shell * Begin enforcing SQLITE_LIMIT_VDBE_OP. This can be used, for example, to prevent excessively large prepared statements in systems that accept SQL queries from untrusted users. * Various performance improvements. * Ensure that indexed expressions with collating sequences are handled correctly. Fix for ticket eb703ba7b50c1a5. * Fix a bug in the 'start of ...' modifiers for the date and time functions. Ticket 6097cb92745327a1 * Fix a potential segfault in complex recursive triggers, resulting from a bug in the OP_Once opcode introduced as part of a performance optimization in version 3.15.0. Ticket 06796225f59c057c * In the RBU extension, add extra sync operations to avoid the possibility of corruption following a power failure. * The sqlite3_trace_v2() output for nested SQL statements should always begin with a "--" comment marker.- Drop update-desktop-files BuildRequires: this package contains no desktop files, hence there is no need to handle any of them.- Update to 3.17.0 * Approximately 25% better performance from the R-Tree extension. * Add the SQLITE_DEFAULT_LOOKASIDE compile-time option. * Increase the default lookaside size from 512,125 to 1200,100 as this provides better performance while only adding 56KB of extra memory per connection. * Use compiler built-ins __builtin_sub_overflow(), __builtin_add_overflow(), and __builtin_mul_overflow() when available. * Added the SQLITE_ENABLE_NULL_TRIM compile-time option, which can result in significantly smaller database files for some applications, at the risk of being incompatible with older versions of SQLite. * Change SQLITE_DEFAULT_PCACHE_INITSZ from 100 to 20, for improved performance. * Added the SQLITE_UINT64_TYPE compile-time option as an analog to SQLITE_INT64_TYPE. * Perform some UPDATE operations in a single pass instead of in two passes. * Enhance the session extension to support WITHOUT ROWID tables. * Fixed performance problems and potential stack overflows when creating views from multi-row VALUES clauses with hundreds of thousands of rows. * Added the sha1.c extension. * In the command-line shell, enhance the ".mode" command so that it restores the default column and row separators for modes "line", "list", "column", and "tcl". * Enhance the SQLITE_DIRECT_OVERFLOW_READ option so that it works in WAL mode as long as the pages being read are not in the WAL file. * Enhance the LEMON parser generator so that it can store the parser object as a stack variable rather than allocating space from the heap and make use of that enhancement in the amalgamation. * Other performance improvements. Uses about 6.5% fewer CPU cycles. * Throw an error if the ON clause of a LEFT JOIN references tables to the right of the ON clause. This is the same behavior as PostgreSQL. Formerly, SQLite silently converted the LEFT JOIN into an INNER JOIN. Fix for ticket 25e335f802dd. * Use the correct affinity for columns of automatic indexes. Ticket 7ffd1ca1d2ad4ec. * Ensure that the sqlite3_blob_reopen() interface can correctly handle short rows. Fix for ticket e6e962d6b0f06f46e.- Update to version 3.16.2: * Fix the REPLACE statement for WITHOUT ROWID tables that lack secondary indexes so that it works correctly with triggers and foreign keys. * Fix the sqlite3_value_text() interface so that it correctly translates content generated by zeroblob() into a string of all 0x00 characters. * Fix the bytecode generator to deal with a subquery in the FROM clause that is itself a UNION ALL where one side of the UNION ALL is a view that contains an ORDER BY. * Adjust the sqlite3_column_count() API so it more often returns the same values for PRAGMA statements as it did in prior releases, to minimize disruption to applications that might be using that interface in unexpected ways.- Update to version 3.16.1 * Fix a bug concerning the use of row values within triggers (see ticket 8c9458e7) that was in version 3.15.0.- Update to version 3.16.0: * Uses 9% fewer CPU cycles. (See the CPU performance measurement report for details on how the this performance increase was computed.) * Added experimental support for PRAGMA functions. * Added the SQLITE_DBCONFIG_NO_CKPT_ON_CLOSE option to sqlite3_db_config(). * Enhance the date and time functions so that the 'unixepoch' modifier works for the full span of supported dates. * Changed the default configuration of the lookaside memory allocator from 500 slots of 128 bytes each into 125 slots of 512 bytes each. * Enhanced "WHERE x NOT NULL" partial indexes so that they are usable if the "x" column appears in a LIKE or GLOB operator. * Enhanced sqlite3_interrupt() so that it interrupts checkpoint operations that are in process. * Enhanced the LIKE and GLOB matching algorithm to be faster for cases when the pattern contains multiple wildcards. * Added the SQLITE_FCNTL_WIN32_GET_HANDLE file control opcode. * Added ".mode quote" to the command-line shell. * Added ".lint fkey-indexes" to the command-line shell. * Added the .imposter dot-command to the command-line shell. * Added the remember(V,PTR) SQL function as a loadable extension. * Rename the SQLITE_OMIT_BUILTIN_TEST compile-time option to * SQLITE_UNTESTABLE to better reflect the implications of using it.- SQLite 3.15.2: * Multiple bug fixes to the row value logic that was introduced in version 3.15.0. * Fix a NULL pointer dereference in ATTACH/DETACH following a maliciously constructed syntax error * Fix a crash that can occur following an out-of-memory condition in the built-in instr() function. * In the JSON extension, fix the JSON validator so that it correctly rejects invalid backslash escapes within strings.- SQLite 3.15.1: * Fix the VACUUM command so that it spills excess content to disk rather than holding everything in memory, and possible causing an out-of-memory error for larger database files * Fix a case where OR-connected terms in the ON clause of a LEFT JOIN might cause incorrect results * Fix a case where the use of row values in the ON clause of a LEFT JOIN might cause incorrect results- SQLite 3.15.0 * Added support for row values. * Allow deterministic SQL functions in the WHERE clause of a partial index. * Added the "modeof=filename" URI parameter on the unix VFS * Added support for SQLITE_DBCONFIG_MAINDBNAME. * Added the ability to VACUUM an ATTACH-ed database. * Enhancements to the command-line shell: + Add the ".testcase" and ".check" dot-commands. + Added the --new option to the ".open" dot-command, causing any prior content in the database to be purged prior to opening. * Enhance the fts5vocab virtual table to handle "ORDER BY term" efficiently. * Miscellaneous micro-optimizations reduce CPU usage by more than 7% on common workloads. Most optimization in this release has been on the front-end (sqlite3_prepare_v2()). * The multiply operator now correctly detects 64-bit integer overflow and promotes to floating point in all corner-cases. Fix for ticket 1ec41379c9c1e400. * Correct handling of columns with redundant unique indexes when those columns are used on the LHS of an IN operator. Fix for ticket 0eab1ac759. * Skip NULL entries on range queries in indexes on expressions. Fix for ticket 4baa46491212947. * Ensure that the AUTOINCREMENT counters in the sqlite_sequence table are initialized doing "Xfer Optimization" on "INSERT ... SELECT" statements. Fix for ticket 7b3328086a5c116c. * Make sure the ORDER BY LIMIT optimization (from check-in 559733b09e) works with IN operators on INTEGER PRIMARY KEYs. Fix for ticket 96c1454c- SQLite 3.14.2: * Fix the sqlite3_trace_v2() interface so that it is disabled if either the callback or the mask arguments are zero, in accordance with the documentation. * Fix commenting errors and improve the comments generated on EXPLAIN listings when the -DSQLITE_ENABLE_EXPLAIN_COMMENTS compile-time option is used. * Fix the ".read" command in the command-line shell so that it understands that its input is not interactive. * Correct affinity computations for a SELECT on the RHS of an IN operator. Fix for ticket 199df4168c. * The ORDER BY LIMIT optimization is not valid unless the inner-most IN operator loop is actually used by the query plan. Fix for ticket 0c4df46116e90f92. * Fix an internal code generator problem that was causing some DELETE operations to no-op. Ticket ef360601- SQLite 3.14.1: * A performance enhancement to the page-cache "truncate" operation reduces COMMIT time by dozens of milliseconds on systems with a large page cache * Fix to the --rbu option of sqldiff.- SQLite 3.14.0 * Added support for WITHOUT ROWID virtual tables. * Improved the query planner so that the OR optimization can be used on virtual tables even if one or more of the disjuncts use the LIKE, GLOB, REGEXP, MATCH operators. * Added the CSV virtual table for reading RFC 4180 formatted comma-separated value files. * Added the carray() table-valued function extension. * Enabled persistent loadable extensions using the new SQLITE_OK_LOAD_PERMANENTLY return code from the extension entry point. * Added the SQLITE_DBSTATUS_CACHE_USED_SHARED option to sqlite3_db_status(). * Add the vfsstat.c loadable extension - a VFS shim that measures I/O together with an eponymous virtual table that provides access to the measurements. * Improved algorithm for running queries with both an ORDER BY and a LIMIT where only the inner-most loop naturally generates rows in the correct order. * Enhancements to Lemon parser generator, so that it generates a faster parser. * The PRAGMA compile_options command now attempts to show the version number of the compiler that generated the library. * Enhance PRAGMA table_info so that it provides information about eponymous virtual tables. * The query planner uses a full scan of a partial index instead of a full scan of the main table, in cases where that makes sense. * Allow table-valued functions to appear on the right-hand side of an IN operator. * Added two new C-language interfaces: sqlite3_expanded_sql() and sqlite3_trace_v2(). These new interfaces subsume the functions of sqlite3_trace() and sqlite3_profile() which are now deprecated. * Added the json_quote() SQL function to the json1 extension. * Disable the authorizer callback while reparsing the schema. * Added the SQLITE_ENABLE_UNKNOWN_SQL_FUNCTION compile-time option and turned that option on by default when building the command-line shell. * Fix the ALTER TABLE command so that it does not corrupt descending indexes when adding a column to a legacy file format database. Ticket f68bf68513a1c15f * Fix a NULL-pointer dereference/crash that could occurs when a transitive WHERE clause references a non-existent collating sequence. Ticket e8d439c77685eca6. * Improved the cost estimation for an index scan which includes a WHERE clause that can be partially or fully evaluated using columns in the index and without having to do a table lookup. This fixes a performance regression that occurred for some obscure queries following the ORDER BY LIMIT optimization introduced in version 3.12.0.- Fix SLE 11 for previous change: noarch subpackages not supported- Reduce the conditions a bit and sort with spec-cleaner - Remove condition for old sle10 ppc machines- SQLite 3.13.0: * Postpone I/O associated with TEMP files for as long as possible, with the hope that the I/O can ultimately be avoided completely. * Merged the session extension into trunk. * Added the ".auth ON|OFF" command to the command-line shell. * Added the "--indent" option to the ".schema" and ".fullschema" commands of the command-line shell, to turn on pretty-printing. * Added the ".eqp full" option to the command-line shell, that does both EXPLAIN and EXPLAIN QUERY PLAN on each statement that is evaluated. * Improved resistance against goofy query planner decisions caused by incomplete or incorrect modifications to the sqlite_stat1 table by the application. * Added the sqlite3_db_config(db,SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION) interface which allows the sqlite3_load_extension() C-API to be enabled while keeping the load_extension() SQL function disabled for security. * Change the temporary directory search algorithm on Unix to allow directories with write and execute permission, but without read permission, to serve as temporary directories. Apply this same standard to the "." fallback directory. * Fix a problem with the multi-row one-pass DELETE optimization that was causing it to compute incorrect answers with a self-referential subquery in the WHERE clause. Fix for ticket dc6ebeda9396087 * Fix a possible segfault with DELETE when table is a rowid table with an INTEGER PRIMARY KEY and the WHERE clause contains a OR and the table has one or more indexes that are able to trigger the OR optimization, but none of the indexes reference any table columns other than the INTEGER PRIMARY KEY. Ticket 16c9801ceba49. * When checking for the WHERE-clause push-down optimization, verify that all terms of the compound inner SELECT are non-aggregate, not just the last term. Fix for ticket f7f8c97e97597.- SQLite 3.12.2: * Fix compatibility with some legacy versions of sqlite database * Minor bugfixes- SQLite 3.12.1: * Fix a boundary condition error introduced by version 3.12.0 that can result in a crash during heavy SAVEPOINT usage. * Fix views so that they inherit column datatypes from the table that they are defined against, when possible. * Fix the query planner so that IS and IS NULL operators are able to drive an index on a LEFT OUTER JOIN.- SQLite 3.12.0: * The SQLITE_DEFAULT_PAGE_SIZE is increased from 1024 to 4096. The SQLITE_DEFAULT_CACHE_SIZE is changed from 2000 to -2000 so the same amount of cache memory is used by default. * Enhancements to the Lemon parser generator so that it creates a smaller and faster SQL parser. * Only create master journal files if two or more attached databases are all modified, do not have PRAGMA synchronous set to OFF, and do not have the journal_mode set to OFF, MEMORY, or WAL. * Added the SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER option to sqlite3_db_config() which allows the two-argument version of the fts3_tokenizer() SQL function to be enabled or disabled at run-time. * Added the sqlite3rbu_bp_progress() interface to the RBU extension. * The PRAGMA defer_foreign_keys=ON statement now also disables RESTRICT actions on foreign key. * Added the sqlite3_system_errno() interface. * Added the SQLITE_DEFAULT_SYNCHRONOUS and SQLITE_DEFAULT_WAL_SYNCHRONOUS compile-time options. The SQLITE_DEFAULT_SYNCHRONOUS compile-time option replaces the SQLITE_EXTRA_DURABLE option, which is no longer supported. * Enhanced the ".stats" command in the command-line shell to show more information about I/O performance obtained from /proc, when available. * Make sure the sqlite3_set_auxdata() values from multiple triggers within a single statement do not interfere with one another. Ticket dc9b1c91. * Fix the code generator for expressions of the form "x IN (SELECT...)" where the SELECT statement on the RHS is a correlated subquery. - Remove sqlite3-link-binary-with-libsqlite3.patch: replaced with configure option --disable-static-shell- Enable secure delete by default, this matches Fedora & Android. It can be disabled with `PRAGMA SECURE_DELETE = 0;` - Enable more extensions, syncing with Fedora & Gentoo.- Fix sqlite-fts5-link.patch: link libsqlite3.so with libm instead of the sqlite3 binary: the library is the actual user of log(). - Add sqlite3-link-binary-with-libsqlite3.patch: dyamically link /usr/bin/sqlite3 to libsqlite3 instead of statically using it. - Move autoreconf call to build section, where it belongs.- Enable FTS5 support. - Add sqlite-fts5-link.patch to link to math library because FTS5 code uses log().- SQLite 3.11.1: * Fix an FTS5 issue in which the 'optimize' command could cause index corruption. * Fix a buffer overread that might occur if FTS5 is used to query a corrupt database file. * Increase the maximum "scope" value for the spellfix1 extension from 6 to 30.- explicitly enable readline support - run spec-cleaner- Update to 3.11.0 * Enhanced WAL mode so that it works efficiently with transactions that are larger than the cache_size. * Added the FTS5 detail option. * Added the "EXTRA" option to PRAGMA synchronous that does a sync of the containing directory when a rollback journal is unlinked in DELETE mode, for better durability. The SQLITE_EXTRA_DURABLE compile-time option enables PRAGMA synchronous=EXTRA by default. * Enhanced the query planner so that it is able to use a covering index as part of the OR optimization. * Avoid recomputing NOT NULL and CHECK constraints on unchanged columns in UPDATE statement. * Many micro-optimizations, resulting in a library that is faster than the previous release. * By default, the shell is now in "auto-explain" mode. The output of EXPLAIN commands is automatically formatted. * Added the ".vfslist" dot-command. * The SQLITE_ENABLE_EXPLAIN_COMMENTS compile-time option is now turned on by default in the standard builds.- SQlite 3.10.2: * Fix case-folding bug introduced in 3.10.0 in the LIKE operator * Fix a use-after-free that can occur when SQLite is compiled with -DSQLITE_HAS_CODEC. * Fix the build so that it works with -DSQLITE_OMIT_WAL.- SQLite 3.10.1: * Fix a 16-month-old bug in the query planner that could generate incorrect results when a scalar subquery attempts to use the block sorting optimization. * Add SQLITE_FCNTL_JOURNAL_POINTER file control- update to 3.10.0 - spec-cleaned * Added support for LIKE, GLOB, and REGEXP operators on virtual tables. * Added the colUsed field to sqlite3_index_info for use by the sqlite3_module.xBestIndex method. * Enhance the PRAGMA cache_spill statement to accept a 32-bit integer parameter which is the threshold below which cache spilling is prohibited. * On unix, if a symlink to a database file is opened, then the corresponding journal files are based on the actual filename, not the symlink name. * Added the "--transaction" option to sqldiff. * Added the sqlite3_db_cacheflush() interface. * Added the sqlite3_strlike() interface. * When using memory-mapped I/O map the database file read-only so that stray pointers and/or array overruns in the application cannot accidently modify the database file. * Added the experimental sqlite3_snapshot_get(), sqlite3_snapshot_open(), and sqlite3_snapshot_free() interfaces. These are subject to change or removal in a subsequent release. * Enhance the 'utc' modifier in the date and time functions so that it is a no-op if the date/time is known to already be in UTC. (This is not a compatibility break since the behavior has long been documented as "undefined" in that case.) * Added the json_group_array() and json_group_object() SQL functions in the json extension. * Added the SQLITE_LIKE_DOESNT_MATCH_BLOBS compile-time option. * Many small performance optimizations. + Enhancements to the command-line shell: * Added the ".changes ON|OFF" and ".vfsinfo" dot-commands. + Important fixes: * Fix inconsistent integer to floating-point comparison operations that could result in a corrupt index if the index is created on a table column that contains both large integers and floating point values of similar magnitude. * Fix an infinite-loop in the query planner that could occur on malformed common table expressions. * Various bug fixes in the sqldiff tool.- SQLite 3.9.2: * Fix the schema parser so that it interprets certain (obscure and ill-formed) CREATE TABLE statements the same as legacy. * Fix a query planner problem that could result in an incorrect answer due to the use of automatic indexing in subqueries in the FROM clause of a correlated scalar subqueries.- SQLite 3.9.1: * Fix the json1 extension so that it does not recognize ASCII form-feed as a whitespace character, in order to comply with RFC-7159. * Build and portability fixes.- SQLite 3.9.0 * Add json1 extension module * The CREATE VIEW statement now accepts an optional list of column names following the view name. * Added support for indexes on expressions. * Added support for table-valued functions in the FROM clause of a SELECT statement. * Added support for eponymous virtual tables. * A VIEW may now reference undefined tables and functions when initially created. Missing tables and functions are reported when the VIEW is used in a query. * Added the sqlite3_value_subtype() and sqlite3_result_subtype() interfaced (used by the json1 extension). * The query planner is now able to use partial indexes that contain AND-connected terms in the WHERE clause. * The sqlite3_analyzer utility is updated to report the depth of each btree and to show the average fanout for indexes and WITHOUT ROWID tables. * Enhanced the dbstat virtual table so that it can be used as a table-valued function where the argument is the schema to be analyzed. * sqlite3_memory_alarm() no-op.- Update to 3.8.11.1 * Restore an undocumented side-effect of PRAGMA cache_size: force the database schema to be parsed if the database has not been previously accessed. * Fix a long-standing problem in sqlite3_changes() for WITHOUT ROWID tables that was reported a few hours after the 3.8.11 release.- SQLite 3.8.11: * Significantly improved performance * new interfaces and enhancements * Important bug fixes for CREATE TABLE AS * Fix the skip-scan optimization so that it works correctly when the OR optimization is used on WITHOUT ROWID tables. * Fix the sqlite3_memory_used() and sqlite3_memory_highwater() interfaces so that they actually do provide a 64-bit answer. * experimental extensions, not enabled: + RBU (Resumable Bulk Update) extension + FTS5 (Full-text search) extension- SQLite 3.8.10.2: * Fix an index corruption issue introduced by version 3.8.7.- SQLite 3.8.10.1: * Make sqlite3_compileoption_used() responsive to the SQLITE_ENABLE_DBSTAT_VTAB compile-time option. * Fix minor issues with the dbstat virtual table.- Update to SQLite 3.8.10 * Added the y format string to the matchinfo() function of FTS3. * Performance improvements for ORDER BY, VACUUM, CREATE INDEX, PRAGMA integrity_check, and PRAGMA quick_check * Fix many obscure problems discovered while SQL fuzzing. * Add the ".binary" and ".limits" commands to the command-line shell * Make the "dbstat" virtual table part of standard builds when compiled with the SQLITE_ENABLE_DBSTAT_VTAB option.- Update to SQLite 3.8.9: * Added the sqlite3_status64() interface. * Fix memory size tracking so that it works even if SQLite uses more than 2GiB of memory. * Added the PRAGMA index_xinfo command. * Fix a potential 32-bit integer overflow problem in the sqlite3_blob_read() and sqlite3_blob_write() interfaces. * Ensure that prepared statements automatically reset on extended error codes of SQLITE_BUSY and SQLITE_LOCKED even when compiled using SQLITE_OMIT_AUTORESET. * Correct miscounts in the sqlite3_analyzer.exe utility related to WITHOUT ROWID tables. * Added the ".dbinfo" command to the command-line shell. * Improve the performance of fts3/4 queries that use the OR operator and at least one auxiliary fts function. * Fix a bug in the fts3 snippet() function causing it to omit leading separator characters from snippets that begin with the first token in a column.- Update to SQLite 3.8.8.3 * Fix a bug (ticket 2326c258d02ead33) that can lead to incorrect results if the qualifying constraint of a partial index appears in the ON clause of a LEFT JOIN. * Added the ability to link against the "linenoise" command-line editing library in unix builds of the command-line shell.- SQLite 3.8.8.2: * Enhance sqlite3_wal_checkpoint_v2(TRUNCATE) interface so that it truncates the WAL file even if there is no checkpoint work to be done.- SQLite 3.8.8.1: * Fix a bug in the sorting logic, present since version 3.8.4, that can cause output to appear in the wrong order on queries that contains an ORDER BY clause, a LIMIT clause, and that have approximately 60 or more columns in the result set.- SQLite 3.8.8 - New Features: * Added the PRAGMA data_version command * Added the SQLITE_CHECKPOINT_TRUNCATE option to the sqlite3_wal_checkpoint_v2() / PRAGMA wal_checkpoint. * Added the sqlite3_stmt_scanstatus() when compiled with SQLITE_ENABLE_STMT_SCANSTATUS. * The sqlite3_table_column_metadata() is enhanced to work correctly on WITHOUT ROWID tables and to check for the existence of a a table if the column name parameter is NULL. The interface is now also included in the build by default, without requiring the SQLITE_ENABLE_COLUMN_METADATA compile- time option. * Added the SQLITE_ENABLE_API_ARMOR compile-time option. * Added the SQLITE_REVERSE_UNORDERED_SELECTS compile-time option. * Added the SQLITE_SORTER_PMASZ compile-time option and SQLITE_CONFIG_PMASZ start-time option. * Added the SQLITE_CONFIG_PCACHE_HDRSZ option to sqlite3_config() * The number of rows in a VALUES clause is no longer limited by SQLITE_LIMIT_COMPOUND_SELECT. * Added the eval.c loadable extension that implements an eval() SQL function that will recursively evaluate SQL. - Performance Enhancements: * Reduce the number of memcpy() operations involved in balancing a b-tree, for 3.2% overall performance boost. * Improvements to cost estimates for the skip-scan optimization. * The automatic indexing optimization is now capable of generating a partial index if that is appropriate. - Bug fixes: * Ensure durability following a power loss with "PRAGMA journal_mode=TRUNCATE" by calling fsync() right after truncating the journal file. * The query planner now recognizes that any column in the right- hand table of a LEFT JOIN can be NULL, even if that column has a NOT NULL constraint. Avoid trying to optimize out NULL tests in those cases. * Make sure ORDER BY puts rows in ascending order even if the DISTINCT operator is implemented using a descending index. * Fix data races that might occur under stress when running with many threads in shared cache mode where some of the threads are opening and closing connections. * Fix obscure crash bugs found by american fuzzy lop. - Other changes: * Disable the use of the strchrnul() C-library routine unless it is specifically enabled using the -DHAVE_STRCHRNULL compile- time option. * Improvements to the effectiveness and accuracy of the likelihood(), likely(), and unlikely() SQL hint functions.- SQLite 3.8.7.4: * Bug fix: Add in a mutex that was omitted from the previous release.- SQLite 3.8.7.3: * Ensure the cached KeyInfo objects (an internal abstraction not visible to the application) do not go stale when operating in shared cache mode and frequently closing and reopening some database connections while leaving other database connections on the same shared cache open continuously. * Recognize that any column in the right-hand table of a LEFT JOIN can be NULL even if the column has a NOT NULL constraint. Do not apply optimizations that assume the column is never NULL.- SQLite 3.8.7.2: * Enhance the ROLLBACK command so that pending queries are allowed to continue as long as the schema is unchanged. * Bug fix: Make sure that NULL results from OP_Column are fully and completely NULL and do not have the MEM_Ephem bit set. * Bug fix: The %c format in sqlite3_mprintf() is able to handle precisions greater than 70. * Bug fix: Do not automatically remove the DISTINCT keyword from a SELECT that forms the right-hand side of an IN operator since it is necessary if the SELECT also contains a LIMIT.- SQLite 3.8.7.1: * In PRAGMA journal_mode=TRUNCATE mode, call fsync() immediately after truncating the journal file to ensure that the transaction is durable across a power loss. * Fix an assertion fault that can occur when updating the NULL value of a field at the end of a table that was added using ALTER TABLE ADD COLUMN. * Do not attempt to use the strchrnul() function from the standard C library unless the HAVE_STRCHRNULL compile-time option is set. * Fix a couple of problems associated with running an UPDATE or DELETE on a VIEW with a rowid in the WHERE clause.- SQLite 3.8.7 - Performance Enhancements: * Many micro-optimizations result in 20.3% more work for the same number of CPU cycles relative to the previous release. * The sorter can use auxiliary helper threads to increase real- time response. This feature is off by default and may be enabled using the PRAGMA threads command or the SQLITE_DEFAULT_WORKER_THREADS compile-time option. * Enhance the skip-scan optimization so that it is able to skip index terms that occur in the middle of the index, not just as the left-hand side of the index. * Improved optimization of CAST operators. * Various improvements in how the query planner uses sqlite_stat4 information to estimate plan costs. - New Features: * Added new interfaces with 64-bit length parameters: sqlite3_malloc64() sqlite3_realloc64() sqlite3_bind_blob64() sqlite3_result_blob64() sqlite3_bind_text64() sqlite3_result_text64() * Added the new interface sqlite3_msize() that returns the size of a memory allocation obtained from sqlite3_malloc64() and its variants. * Added the SQLITE_LIMIT_WORKER_THREADS option to sqlite3_limit() and PRAGMA threads command for configuring the number of available worker threads. * The spellfix1 extension allows the application to optionally specify the rowid for each INSERT. Added the User Authentication extension. - Bug Fixes: * Fix a bug in the partial index implementation that might result in an incorrect answer if a partial index is used in a subquery or in a view. * Fix a query planner bug that might cause a table to be scanned in the wrong direction (thus reversing the order of output) when a DESC index is used to implement the ORDER BY clause on a query that has an identical GROUP BY clause. * Fix a bug in sqlite3_trace() that was causing it to sometimes fail to print an SQL statement if that statement needed to be re-prepared. * Fix a faulty assert() statement. - Test, Debug, and Analysis Changes: * Show ASCII-art abstract syntax tree diagrams using the ".selecttrace" and ".wheretrace" commands in the command-line shell when compiled with SQLITE_DEBUG, SQLITE_ENABLE_SELECTTRACE, and SQLITE_ENABLE_WHERETRACE. Also provide the sqlite3TreeViewExpr() and sqlite3TreeViewSelect() entry points that can be invoked from with the debugger to show the parse tree when stopped at a breakpoint. * Drop support for SQLITE_ENABLE_TREE_EXPLAIN. The SELECTTRACE mechanism provides more useful diagnostics information. * New options to the command-line shell for configuring auxiliary memory usage: --pagecache, --lookaside, and --scratch.sqliteh03-ch2b 17536945113.50.23.50.2-150000.3.33.13.50.2-150000.3.33.13.50.2sqlite3sqlite3.1.gz/usr/bin//usr/share/man/man1/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -gobs://build.suse.de/SUSE:Maintenance:39713/SUSE_SLE-15_Update/0a4769f0288c8478300adcb174459172-sqlite3.SUSE_SLE-15_Updatedrpmxz5x86_64-suse-linuxELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=f020df4d2153d5574fcfc7e8351c4646aea26b0c, for GNU/Linux 3.2.0, strippedtroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)RRR R RRRRRRR R RRR RnvCdFhutf-88451c1e117e3d2e49e57e1378b9e8202bcf9f2db6bbfb09a8f811dcf542766aa?7zXZ !t/;]"k%f-Q/ިykIupۋE-E& 1Ҧo Y?ȏy~K sMSnK$L%[>+4#ɄiPY3u-MbtXw'V|g kIj@&7[K&X8' M; w=Ft5ߞAS[SS׈s/NB}L@]gs܉U܀WE5Q DG Aa4Ӕ(%P*㯩w'>Qm2`^|O"sxK^c׃KC sggK +H{\Ղ(`Hz]>dki%O7eOdQǦ[-$2)QߐLY~sd eBNhP?,!9 N7g^XiT_lT4Lb+/fG9(h-ŔbXiPc}!A *3+}*M)rr@#Wv]ƏyWWrŜf\.麙`n+0EV3Itoˊ}9=g.K7~zЂP1~.BBUuT? h̫DO0"kk[9&5 ”,9l MuZW@si Bc+Ξ0{%kڙMĸUR#A Z+% E%@*Tmէ }OWUxEosk՜#>ѻkPE>e&1[C?۟ҤpR$A QV0}X[s1x2Ewè"sPK͍<F@N>A=~Fq"Vݵͽ~JZ/ꒂbP|u3YgҨW&Bp-Wiv&ɘΩ Ab}b,2H~Sc7b]'GP[q} cthK`TiՄ6ݴ3Hh1P>e?ƃ*4tG:4VczˁЈ,9OLOݵ &=W3.6YꖙbO!}{õX&p˓k&2hsW#l9[X.&ƘpBo))+iƻw 9oo=s׏Apln٭>x}y6PRw\ƉE&  ·{-̕W +.ʋwܯ]Rޔe$V3H^m g0tA(hh#w/R(r֍TM-'rǔ^Jfyp"4t[[A3~X IhP;p=/>mc44WĪ.yQ:~;b >Ԉpu}<;eEk-s[Ѡ [)a{>9!"KOGD|iL̸U " }y_Q ,[׮lGZT]Lve8{ɖE%z-w*/u (275\YFZL|~Ʊ9f#c6/kl _%?a%PpsƐ9Bo1.zNVPΓQ5΋|&6NJ:䵳Y9F(|{ރ&EUJ,6̢Jq!LU 3g?Ro`H?'|jZI)%st[%#bH0qk-paPE46vB6vyh%dEDaPHuLg>F Ca|z ]oKh㭰`UIrdo\j;E$]KkZD.:aLJ&zZt];, 6HC"ʬOJd,@ڙ[-xhW5?xHN}+~h9M</Ҋlg|[l|ZԜ17^4I@1lvp\bʗZf;9i*I Y7.T Z+)/?%.0:̷&VGxi1d@gK%{Ֆi^;}7 zv9!0D`A wRJ{e/pQ1*:cbtWi +Pmq)B5Tf~~dnnހkL fM^,zp0mRВRiBwl1"gԿ7R~ȧ뵛\ۇr z;C<^jy_-Z7S)7w4O c9UO]vw0Ѧ5f}ĊtjrZR6YP;Ѱ<ɭYBdv3H?"J#ۋh1= p]x؛L5!&B' 6 0siQ-]/f-pGOŒsLCT<k9@46t5N; U0n8>Nlj-Ԝ#+?4 qc[?V^9?H>@֏K:w rino#dN!t. }CY.3UВ].{ddE7l5[eTn= j,~gc;T@IT eRWRY"plxpnWݝKyJx)Ah1x6 Y좠"7\ӹezM^0;Yj"Nc^qiڧ0%}k0 j iw!TvAXF-ƋT<>[ /Oz^?!k0 6dG KJs_Le ,z IQ}7#q?\3V`4뒅JG;SA2kP1\XQfb%Jw~]ז paCRh%>'/#'B#. (( C]>0jSsƤ=i(2t瓰8J.XQv~զ&/-!H+TKs݌;{w\>(tR фw4E@ЌO1>휘ZkлT=QJUF$7)n&߯*!bI]܍TbUO{1͛ƕDelf=4U1K03TCP9 i$ >Vll ;uӵ]|ŝ`o%;5GtY9'Ɩ㪒8Y abp/ҧ6e_(% !ϮG~8{yC[HZ oNLJ>Ԡс%XX !"` ᡆdς/sX40_">h3,s5uTú g GɎ*֫btI{m@a2[>Q^?:,6T݊O5 I##f-^X,&x aS(z;{|@*2 UbqWV`O!:;g!G1D{p4 )^-!;smqWTkJek` +.f?@( g[FB,zY@<_G@ 4(qUX0*OlG%XB M'Cێ-xDgcjPh;INN4\Ɣzٿ,qLB4Zo'Oo2J98~z2ɽ,+' hwQbӃ+@ɳHãYam J$E4+Aӿ&3Gi2N4O;t"_"s`A!shX9ɆVhP7Xǩp+rzQ^<0SnOLPvw+Adccj2P?y9$i"AlĐMzqUL Z('Dq$Xnan X:H=1ϲE푐cv,K qzJYx<u*9@['|/ ƛ3fy %w [CI+uZ9|%bK2oq ye. 1NnE\kM8AoՃGOmڈɔu,f"d6j)Xe^.Ӝ/ڊMoۍg:n0T.9nOB?E&d`AN!0 cUE8zYohZ):U:퇟# +ٗZCg"e O|Nz5D&uM_3VuJN90L-#߿b/Hw!~wAKٵA%Ġ ERe'[ RQ1AUSly$2=ΰħ๝dXc/"EGLț}͸();*JZ!|xoN; f|mc_>xgtI5 #wr.kDP[/s`Î\M+R AůL2s#@8J X֖˃|- ?dz64(fRE~8 e2Zms s(3p y ЈJb_7%.rT8M3û6tfor,Oу&e[gSPUK;.\)ˮKay(!2aizyJ/|?A+fer]8aci˯X7GNЬUďFxpI(6U3۵7Y LO3hXыc#K]³CWT&Y×b<_4(T=M3HrWz[ ԩtZb#%@;(6Yޟ  =ZPN,53kxig%Ԕ )*0*Ym^&Qmq ~m')2%DWl{vuZ_<$ H/ڐD0}^u5Ho,"ٞ /}d2GTxo&IN0v 矅Vqj+8נp=,CIf⯚B_ud?އ vN *WԀՐd,(ggRn?d/W^+ Wzo?~O6غc./1[vbrk"!)AUvCoȤ}MNM6吶Rl9i\6 |/;,cf-Xy? zV.eg},&YOXtL S}$#+JH#^cTed=OgZp[  Ƌ\PAKj~'es9H9F:h. jAE<iz(*v= Ԧ 3[KV| m~ko{_3I陴@w>ލW.Fztk`y{izWs 'Bx2Ȟm@GH5uLҸU.:JpMU]75lhLcMΣRÁ%!r/WݬeUk Ħv:[/d.=B!4$ `EHW)N zUꟊ-❬t-؀KOؙuE5(:]Z7u׌[n4ZVgat":BP(W\tȩp:Ehp5ml$s 0}80sy5ݓh8-be{䀟УY1o(L:\5a 'R ːF<1Dຆ0- 7eT]G)W{o$^;*El(4e.PTz*/lX ?R} &T$8a(tl<cN 1j YZ9J 0 gR`t&)xPQӁ9,\x`jT9.ֺ4m='+5k>̴/m&e!_)5gT/2p79- 屙q ga.0b\<~b̅=4nMq Cj{[4g ec%/#89Ne5E,5#n1ձ0@R QR z܍ͫ=UiYX˓4.iJ0)1gE~a&~AejIy4]SX~nr2|Oc|,I܄^hy(ABGbX-){pQ1m :Jf<(&k%def"!ľ~ 'z5N; j"1rqhcҎ0VȼIw%&B1&O|9냗5:rcL ͈]su֒7 ;})/ąhaE>bKOcoToĚ @4I"HJtFX4Ex2eӭ;/,AT #@U>p+FthS3JoA@D5npMfFnu9V:1k$;ѓsL1B̃A] Vs\6ߺcAgZfSp0݆l)JE4??6e,Ϳ|()X:)5T-)ln`&{E pcuR<]2mG 'C.WkyY";fgx(캡(6+[0bRD?L2l< 1["/uWkhSRF59%Uic[l؍dp [Ee.V q&G%ޘ֜P6\ ; Е| ⹊{= ]JH)&'+~Xs?⦆F7ְfyۤ4rS|}xrc!-} Ե8C2Z+8;Ua3Vi՟ip Bk.=il%]7G7 R7(k9|Ypwnyl[D*\M vtޣ%el pN&"۵#dH$:>n'APG5Mf0Q&W^[iHbv=kJ#rw1qe3w==G@/ԔMw|u.~ ~xkĢrA6[JeNQKF7%nY Pq;7i|%=wP0H۲F׷v\ V3M@sE}j- cg!֧jQ,yȉ;O5 KyЌ-) j~bqXiq^_eY"o>!}մ)o5kZYd A}&\TfgV45+̚O\fdH5`L&bUi%ʗ̱ڷ- ?!0xtw hE"Q( Up[}a4 |ʓŌ{sKYJ2FW: 5}6X?W^J]m2ݜr{Fh#82NK RZo*OoXFHWX-#KkT8a:C3ߝم*DuOg8 17?)nOZ%߽%G[k·`9!r-3T+}[evOnh B)4_lziƣ,?,1y@E>&N}[0IKN3ddYv$~BbPH1]J$q+!n'Mn`Kt0]ٵ'(y}, pOzEX+l`%7j+x:P?'ᢡVDU1B ꇯYWv| w:Ko&sxQD[m@7tXy$<yACٳ'+@yo9*c^Synb17'-<퐹BݵBk15>E?Xsz=о1w_(3UYBls&mA9Ӳ(߃Am!˝SqN0UtC׆):3 7뎧0?$E@~8$nyJTdA*tC贁7Er/"Ej#yvq,t5_xISDz6VS/54g٬Z8#r >7y -^ \Y-x@@c2xȆ@?_ DydP4m} ͤNW+W ůzCf)xn2Wt 0YHs AAcE3sCMVZ@n F;4FuF$"HO@')j뜹{!4x6=J8=8R۵,dY&`x.[3 dgƐA%0Pa4э-'ڤc/.*cQ;[[%[EBjퟻ5@g{>j.LX@Y0~W+Ы]*>5m~=§['Dg| H?{5=h%ps{yF \K$\?.du` 5WoC9Pm2fiAqo;9 dUד[eK{ZEYvs<\š*< BrT9ΕWxf f nvM@MuD_ú|V'q} ;+ Ս挑tp^+(5jS; uVc8ޑsԵ h聪u茗!JӾ(w*X\b0(:0A~֏-漹Y8Vt:ب& +{V 3q - 73a.-W2̲PNA/MwEĪRscR[x5>Dy~uF WuEEGB((RW+J_ b_{B_ؤ#i:za^^m\/(!@v˦I??k"<4,roNYB-E0(Oalw7iخkqe,'a)@&;ȾPZ˕@к):Q~P5ߺH1Qa4R@a;55ԑ/Y` [5=QrV8bw ̗*6(H/:́_ d4OMRIak 탘H95?9?Y0DDV$e&8CdzS8s}1NW}G&YzA<̅f1 R[J gUᨁfӁИn]nR{]sZMqE-p= f4pn|ݥ`cӣ dw$}pD,:_W֓+˪UK#4FQm[zƚj -VV5ʞ2˸˯̺vG{pZ|k{Q=4 ׸=EZom.ѲͬE e$,"(גvoοehpDE,95r/&DEߨ<"OM0{bA\%u gp5zOzv(si (| ik ;00ߓXm^a뽅jc1UcwKW,K1d3BMNT'VTwGs?vhS^Q76rPs@V?p" q&jYgۡ%zT6L'YĴ$"Pq],#?'iUBUؕUf<ԹL,@![JS#4R*Fȁ*srAr$;/ԁc54de@vtg*[Or,o!ZՌfz2p}1ڦ0zli$Fj8\7|A'*WxF@ ȷ9ִ]d]v}}? 2e<_R.%WS0`k෥e۲脟0>f!3@&Z"nGzQɐ7 Ovxʄ;U#5}*QE Jl.z3zd7w:B-8 &&|&Ouf{!00o<ϳ7T/rxݼh6IӸzTGcڢ!b4va;Yܰ:Q'EHOlžTݒ,X̩6aPsE-3}GO-ϝ?J9[zRTJ]}9xBxRZڑ/+>DwcRZE;wEi\Cb,Le[__Wݔr"1YfP]|Mx?tgď{dfz`,M f3nw: Jx=C%tEHfClq mb,GbogMRƠZUHנޫ+ز*ٓ`Ho/9',Kךd*cI#jOzlqM^wϾvu&j/C::HUYt'51{D+aRn2aS=T^pnNi89|j3aj΅vQIo0Uq|:๻9?mfͨ  Z3uiրDWrD'련beИR|L~-үQ%kp #<?7xwݡ?P|>Bgnr3CKMK.':P.hel}{\2:ѹ3Ԑt=n9i8ʔYGEkO,?VJ[_QNW,bVG-/ɒp/zѹ\]gt1n{/vf'AoSKl!yߵHA-p_g0V 1Q\7d1<bl-_$NBE+]!#K3_k.rr=u1 d Rdɀ\!mV̭'lm v:F R!q HV |WI%gnK1jQR~ɢ~ nD7QQFoWݒJVnρ]ddu4W>eB!<9+tG@XVZ65#b=HMhY#FpR}pPrfhB9zƲ 籯Ζ`Enާq1jcځtXKMS7 }΂}dq"jB$^|+ɥ$M'[:W]w"kc=ˣ@5g&/DHޣ zj ,Ki}/ES%Xj V`4ʩ0Cw"{*1Quq3,skʇ̅fĂt%}J{\B/A9R 5+!}vGB:6AHOpo{l k׃mMh-@#J./"\S)/4#~'BUMXISa=i 9Q@`xsJ=MS݇-G&Cs{= %:46o5Eq9!X=͌S.]?;EA.I_(m'2- _nj. rnZr)@w0-w~dBi2ߙF K0iab^v(plSk?Ec\u9/n䌮@e~u$HI< y ݘ=F@w(]M՚92041 /Tuz9 '͊Gue]'{A+Lu6D -F˅0~:zvWx>쒂l*'uu5<6ydNbBB{M k`Y;a ILx?=<z>~^ݱ0Q 7JP+542]Ti#CĀQ%93/2>NH9m[g蘛)WٓiQ٫2)[: IȾ[FY(Ϥߕ,6 D]:=EB9VK]ҁEѹxzA#b3L /fP"vHDqjj,-h@ w#;P):bR*J¨D>v|hRPV!,131Y]kKS$N;{S؈VϽw2NF~IŞRXliZSq򄼮 K5uM}_h៵Uw" ygn!}]y:lclPGDGBlơ4q%S$0_J\L%L\XpR--,xG 6T{$C|\Pe^d=T~+I@iqUV=)a#x8RIj09*kGfc]v$gbqAmUbTЗA t3!0_ñ: (ZJJ^ .M&> ,乶Jhb)*KZ8:Y/.?8Z^Vwi%c ꍋn?KA2TGG81 t]?Iv>X߶qbSr|7xb :%57~h^渺R>I4r+XA&?x Ń6A#?6C;Os&V ,R+QBĚ&Uݼ}7Q(2+jѣV@C'̪ 6*򤵇p9F"w~zSW/&=u4a}KO)0h$<*1Dڛ.3@A._{M,ݕ*QZiҡԣȭ%ŊXPjm\ 2R{"r٢P0A*"Ik[FJM$ XXv_h3qjÙSzj7BX[lm+k߉Ъ>k#^a݌j7rXa̒\nGsVld- $/ղWW::%@LT6};a[lu{Ɣ*5pQ0S5qr^4iLJ p8M;,l?&y<(%`WmnsosXLhMQo9(z@g ǜ$)]F8S|7# ]i1-r7q6Іm+tM+1 )-c,/Z莠£ Di<8 A!*A fڟ0U V"{pSUdQ׶=Dp n!ʎ<6q~S?civJNbᬭTOLZYkm% OѮLu2(̗[$&0 r9R#-REz[Y(Ig:娙D_|&YDR-@#Z9#<<ÂQ * sw> Oս`QŪ\B#O>uD*2a5pJ3ñEqΆSR5^0u@Y-zN;OoL5>c'HDs`&CDKc+!W4$q,<ڟ||.+Aj-=d-3D!oMǜЖVIxT{'YwO薶"6AqkdVP# U=BG\\X2h?aqƪZ9ha:ߤYZD$E6u W{OzE@Dq|ٰZzC^}9n.lG JZ c 5󀨩P*3\[Ǹ_⚦xk.9#eQBSlq} [ SA幣  (iɮFNBA k|L4{7%+o.fz`7\$vBbyaNcV9k? x7v3nK]϶Cwf:vFmupSPb{y\TP ys]긢bʑ͕4[n4IؘA?kȼ79H#MʼlsR쇰>ޟíӝ O@uÏ_SZUӴ vQ+JS.\<];h#]YjD\˗|`JZ|:ˋ44tOk08s7ԨN!VN~bD;va-.\$.=o&&:_OJW|0h1vxiV? 0b7`hbdFI}kY-3QРJA.R~*ɿ6nb 3c/8x6=]/C?cnݪ$&=Uckk>{duSZ01 ATkzV Os4 J :u٬DSX=l,ŸQ(dߚN RYI$Nj$3*I宮VŒՄYy1C.`g"R:Aj+sE *āb=F+b 3l[>3kzZe񆗨l6qV>ج+l˝ry0> =ڌ}u c_Hޖ.=KI=A}&X—60k9 Ő%ϻ+X\Yޖ|ޞHr(GAc9GcDгrSk~`D^ C\w7ZJ@R4\utb#\mJ8!Alk9A;t_ä1@- 쇆:oQUk_e­^=@e{mL Px؞:gV7@͹9bG]xԡ&)$9;6.!|EQW 2Od1[Ѕk>Z XiլoVA`VȣXar6;UaNP`dh0SB!Ya|c;sX<{(2O70ODd;sj}Eb'${w 6"X?1UQHa4CM%afVd (vG_;(_қhjJ[vHPNXZ8ݹxog,fÝ{Z!N%\bi 翼WEO28tWeQ v0P.Mx_N*PÓP[z7 l0༗%{]1z1 p'(W;Qw-4΋`gKh]B0Vްl7oxf˽>0D.UF$T  HL47U^#Q൓A "wm:)fh4eB-IEaNLc-Z0c R[=)ngKEN'PTᰃer'qث(ޙ̚~A Ifצe{?u`c<&XꞘ8uaiG(l ]]'5DfHo'R]ߵu淧So տHߐ@A) }5Fvw9X{q2XR-%U,' Ska-i?xմ\ɣGfDQ;_Sۊ!15Դk#~*/#p& 3"TILS#5xq>:`A4(WrA$cIl%c㋠rwy4R7q>@]!˂g $X'Ad0þs,` g bSp/8YrNK빛VH{7?(~D.Z˄-Ѯ&I[d+@k Nƭ0fI ZDa5if0 nD%#,/~evLTY>ɬW97 ͒t4ǖ]}Xc1oTa-te l#!,y@˽M?`lvS ik43kqj濼K`.}hae<ޠQw0]c$U3aX*芣6 GV#\F]r]6_,=ybngpKuB\/: /s9 Zj4&IЗy:n g dr7øk6⛞M^L κ,)Ŷ-XII p? Ж,k3ݪ9AܾUIiG"FYCG.7T7[u0݊=#YWQ1O .];%8i|#{^4nS* ?JڄE5-j;B2Xcׅ^UG[3^j4߰p9ku :#i>e56iñަ+x[lkǡ$`7@)=gIjK @6Tbop R0k%f>"?׆|:mx[m~ab[1qI4h'b[;L2~J۳@3J[(cwm8dhHgsJO$qNqR#D& rRr)i/PL(O{pB!CtG` f1*[#,@DC1n#6< ^-(Z@յXi@jj2 7BBՓzGucDk&=)HvjŖ.69c._.-;%z0uicD֎W1A`ί>Lqe_XS8SsxjdM{P9 wu :Jy ;ּ~lZgE[DV׹z[y zfAX8vH] :Mi3=`Uj(`|4QAU/"| tZTtx;4N|O ^[fTFm}KS@?ZƯbK5T@O$ `VqIAO cR nj fސ7 vW"p&$T\loֻ98f_eQba?oFu UviuGYŏxAzJБxz\?ٟs5$uOВ/j{XYki;j&=2#;hI488$81r`\ gn$5#UUf81JPYbԉ$SB{siO9u%X]^ ׳ bY;3J3Ҿl\?r4?'4ArTmH@*#8d?bazMBƂmMk&`(05dɫ:1/>e~t < -'O'>X@2;sSHK]sDCl LtHJGLӚF]rL8t|:Ͱ? T5{8Ii"AQ#{`{Uw^oJĝU_eA1S8&+[͢z[gjf¼^Cu?-6DdM)9 - vyX˃i38wb$ϊ@?GdDn yPnjp :n$pr #a>rlRj)A(v+G:>/ p/d"ɭԾk_e zݝLHomބKP8(B}sd5P |Usc\(v.[xK_]Gw,x)mm"t~@GL~]-՜wїnA @ 2 RQ:ao 8VvF;fձEUu/GAs|PH6T ha`s'ng-YT]ϗСt9UD\U;EK֬QAЕqr}圵BD(a5 % Yj0vgmK,8+wM뀃EJOBbeJtp׺@ՂIe=2P;՟ذ2v47anV64sBۼ9tIɬ^̻s2J"9OoRyA[r1$"3,F*}ɔ s#Zdg gvU_᪡k.TiSJǛH&aʥrƷR SW!qqBKriRUDxra ڍ?SRM0mdg3;6Uʞ1gk{R$SS `C "9 l(O -}]W( J~ߪ>kE>xz A`~>f )Fp x]{mmX%}ƛdOoi 3Xh F(P3J^7|'t9OZnK\ $cƘSiv o3aGK8)Sq q? T$귀k:Z쭈]uIKu8@Y(H0IwV.eU=%~tM/i=Mnp2m6?! '{sΎk|+b)&5%#RWr!Uvdk?5>.\`g5OGۀIuw,XSwmH IūB  oga߼>_eeFD'>[3?& qמGG O7?a\QaK_6CE򬽳_[YB PbsϤ3O5~u wXU?:sT-%p(D2& mskNyy2Jq(Gʣk%(][!L;h^PpNKWehoNVʞr4Ţw+TI7i)d>$1$NW>q5619) eIO7.A}%p422Rvqqҡtn"苏xaPbNvO[G2$% /b`PƼhƘ"ώ"yS GJ[.8|쒤{2C /^O/bcrO15т4̏hz%MTyt beo)&S=N%_it>n~UjmA.,C[@K&Y%Z{O4Û'N geA&جRR|MaZev9j N~fcJX?m)f N.;}BǢ84''CPλ;<bR'cV6Hŝ_O `983U1{CRnM2xײޜ㿏wӍ U҄yZ,8a;uV#~tj>r6nӲ抈ËhQF2ac"HY.tBcL.\>obPvP6%G d'.P 1=Yu"&z_Z=f0Y8i|_} bW0Q/͔W #H%8qdwV푫Y:V ]$Qtf05SԳBW}z2}mDd(O{N X 6S-M Y<2gyS]Z|~S% ~gd#{bZ,Pz'l$4'%OuS9"\J'oE Zcxg\*b9L)Yy̧@m 6P5;(>Eq _,ڧ.J IGsŖI/ g(ODqTG  h;zCM07Nujwk} B}lw3RԂ'6)nbjIbocAc{$[¶`W# ɦNLcvz clJ.WQꝑF^q)ܴ;aT$@\<Hͣ(Z'a xg^Տ <aH >?NH:Fm{{A*'F!G8j_WF&MC" I2 b3L^s鎅 OHsQRCSğn·~rXiRH 4-EDLל U+X@ )ۤ]9qqPCJb?KysR#WqĢmQƐnPVd/0k$^73g&j`~h0f)soN'GjUl.á/> mE&C y}?,TT%&Fb읎!I}uP|PS[pC%B;tB)>MwB#ek޸!^nXhGv&tZ ^OX633N4`bɤfHz (i´t~m֨ߜ"879p[z쇤AY=pgKb5'IisT}ܼ-ݸECrAwްZT\4Lo _PJ͘!nN*=oV$X:rù V1jhO[#\k@l<\AsWq|wkKQ6^@-Q?^u~b4H}cV=H»=^ {? ˉ]fB 5g+ˉ1:4mLs m>RӠpyْ3"8=a"Ud`uEòѮbe.qK4heͬM9Atcච ~u~9{ղiɹO^=ZW%1r>yaebzN"#ea|=zFju٫:𙐼'S'Gi0*$yu"nCҳT-(ʃBӎ˂.܆<F4 vUÌe(y~x~O~MDA#ךyIW#YzbZSA=yb}:O`$uVa9ևEAHmƞ,3+m^:uPOv3,i,.+W' M}i~߻$7xJ&3NE(AYw@_$SohۓdS^+#meZ9R/}AxkOFpA:3=7AS–͓!&7Kxw!z VgM-gar*&Հ&Z\JgDd4 ch\ MkYf{KD(\M4i\I)4;_nZTDs9sKƕH~jqjv@]eYkpXV]cs H a6?| {`t}Xq Dʈ㋰PWf 8#rXz?N9(8f7UdZ"+fuB)Udأv [E p`lRG?BWϣUSaec`,YnJMF餮0qVò@$| 07M\~kSxWyE6Xf%V9oV5[N( ,4"{wR5&إ[=nPWYK=XT> ؃s9kΊ.Tqp#0qni\R)*3çn4Ck<7m/7;0 Jw^(OlL ˖pj $R;#W3#>Ӛ;P/.ɚsp8dnK协ԇ&{,rS2ӕr|a){(B1 EY 7(1L. )|݀NGn2nFg v/2O)o a3)Co"p$oS 'alO6'( x';jI!j77ŊwԎF0nPܛ'tn"}'iS3WVŘQ "G?ΌN.J8OH_?49*-[uj3P}6jq7'Ke$⋎'A-ggnA?[[Y6Asw" bq4J%^悂n42>q)o$+6KO 9ަ evȼyK$-H!qr@1#H@+eXMi?s0 V+ Ѧ,v$Q:ɋ)׵}+W쿎bmjhÀTM9PWG,bM-LYa[f[E5b@#t`Mg I j6}AF5-!l+LˀьoVVz֚eP2}1HFy&ٵfN!M [-9h㕳4d lׁonm:<_͟t{Uc8iͷQ%gI 47L֌C)Q#ȟ̈{C]Q$V ((~`qN !PwµRBk/Ұ$ND w8-px׊!?*wy?d B2er 8n܅pz%R8{ M>)Bt9 ˦\?w}d XUBV?N 'F'PѾo`8+"ZC7 2vOs+Q7 G!jA~g(jdSZ«DZ;Z3+,-o7)T җz2j$_V;b;/=/Gv}03 )]:/7cjT" 5CM&?Ű<;mn "0]7^I(JFgWi𠉑*_xQg_S7Tf4PV4t[z I(\[GErv|6TYPH|ub#R-Ql>WJ"a@!ùdګHFِc6?}ky#~g]}JFТLdNk~r1<9&<F4,j ߥPQ1f :; ^w[^PjŸ 1tvH3=3 $1v#-]kj@!Z?<;6 ",A 0`fj ,[  ~0ӛC 61%3_0]ǚjܧy,RfM]T8G}*mbp_PˤÚAnS4`Cv֙uO$_ 3$t05+9÷4x+tv).`lL乄k*s <({2Yı/E 0# Jm'>PBKZZ<8 J°HtD#BF|ȔjW I"HCf2[HpgeCɿv[͓"4*]!|~z5LYPSNVP%Ћ{8x?WzZ +m>!sA #k#b=E]H 6tZaKŇz;4N#o0`uX=^[{D!>GM/.Cg)ڤ}"rPUSi }U!{',)q&%+Vv8ۙ$H9pFvc9uKfjOV$z2_6u;OldKS(k>,fR7.00 7{kMz#3~9, Q"5% ӕ>i45uay'FvEh4"H"lEk>ƒj ^⹵&9g>ԩk2O~yKUDv7F0報Okq&Onf\>\ ="N2^[lhPMhN@ .tlPDpq߉BVC*Y*AZ/4u+IoPtӏEj#2[ӭKXCkϒA Ou D| ȱ7偐 V.TbPIdAeV ݹwԋ|5qaԬRrM JiL=`W8|GZ+S6f[08k4&'ǩ^r d@;3''- `hPd',Oqj4# u%L1LfE&*@3EuH{, "ط Buna6ԧ U[%N kM\ED9%i._#?#٪|)HoK][$2b|yb^h}~tqj\xdOt _}|mZ/#{RpHۦ\jW*nˆg7-qj|]js]z9J1{\(t+0i"ј4A"P$wh?)ƸN֭:S]2uYq5 y`pƏ?@[i`O>}W-☨)ϫcB< xzDS\:<PӄtײNA*^TdQ[#)k K4٬6 Jk*d 䥘lnft2,RvjY}]]a!8TqPzvks ٚ-4rXQ 6B8r=l(CٯnBaKfceQy鬁BuqG7쓲V3Oxjrmx~z-U{Q=:! u4xcU!|I訋8qdS/N"QNk]QRnήVdP2*Susv~1v3S?5#͡S}(Tb`Iaal2'!G-e{ˏ3*@ֆI/xO)fq_˔\Ǎd tXCK\"T+ӄA\>}?Q0h%n-caܷjoҲ{gTGHJ@r ԋh[2& rx; -g[bߞĶ'ђRԈ٤M׉it9ax3wαpuS;yU1 ;p%oxx|i~E/@ه$9'Wk,t᫑E;J<D|V +jM%B[)s/ Axl00oE~m9DJ6qxf$.jm|.@&tD1lv1ԾLgpXhh^\@o0oj/MD&$[ŤWՓ 4@}FYڷ OG#0' ch`oh'm?*utYx1!XBx$ʹDc5WS)VFÒ.hlpf^ܒb;?Lmذ&*[N੍anL#=;y_3Xo>I:["&ϐ"ngij}wJfZv 9Q3M|}rB8/cxD*ݪ'|pA.U/@Ya}AB&sT?}PYI1*fX٥<|7MP]s>mkq|(6w\KՃV@qq1kq- -p?dHTf=&WͨBM$ )f1=!`?8#S%ݚٟѐ!ZBQ2 n  :N$| /H;~C0-=$}Jw9\/&YХ6I{_u.]e㵧_# ؑ(j ۸^5s::{+? h1[ʹP CyPn˲nDZ@+PELZϬ!<Ul ̂P21y=;ɪZe`x&Tp{gS8ޞZ  uwz`誘^Wkl@hF97ufzw 7-'YxL_˕7iZr_0KxpD16BҵjخvvhF_Sy^ iwS:mBk/ol-Qaq+rvq}RCO26eݺ mbm@umMTz@ IMPE+m)M?֓c1CNQCwY̡*]#|YȩIetԙ82k HeT/qcLV8#sCa%eǔ61}R21TiRx|siW(knA0Z\=5.a@\-E~>疱jJc4Wg5֣t%2P=xd]}jkE|\wpj+/>Xj]Λu\׫֫7Eﰱ#Z'n4{bKN <ӟHC/#iJ+6pRwЫけi%njݹd2=%F8O̞0eZN?0^=" [T?n<Mufio,`=kũE,r$gm|2i'MHj. F:]t6dx;YzYjL*$۝32*j ݝ1 (j~٬{/8~è2U#l钶,ڵoIQulq/ >) J,~?E98-ZhRnJ:1n)D3H4b1M݂rGe,\'ʺ^CDh`UlB:Hӳ f[ݏ 2=ٕ <<.`.4ނ{ |H>ohC^;6ľO ;J{>#Z6A0Y#h&vLI GLJsp*Sͳ-263mpי/'m+LyU|>/x3镩":y.#³O>MW=:4#6g+N6~B+7IOcsr_F~~qs/¼\p$lcx(ʎ=1p(h?Wif&'1 bQZBĩ]lc<˳* h) ?2Qw:Dc2ї RԹ7/E~݊ tZxKˬ~4W6i|64 f9Hf'BtE#~LT[kI"CXad(#0$-vfz:&2y>)Lg!5詉NRS0LF% ?͖~^G>gtp~vޛbDj 9B29wX!1j1$M!B\̘>!\M -ƆA.^82p={*3_(8SԷ+,"̜Ћ,OnAC9T3)vvE{͌? NE:sc^t;HKɪ'$@L𪗇a܍2C *46r.Ã:qG2q69ѷLCVN'P<Sw*Og?>Ld-oJۡjBl#Bnus{:uΏ_dk'; W~m7u&n&];9NN_E&(Hoȕ(z9i%\د 'LĜ5G>&@N4GlM;ٳAC5j>lP/vJ8o;:u`-L @qg@,6{bZh[\DQ}c fDVWZ<W t4Ҁ=wÛ@hN&J}*Ɋںdn`aO" Va4QUc;iY*0kMbjܜ(9ޡٹVrC%3OmC x e<ʁEL>6g}c :B/)f Â=] .Ln j<͞GxpJ)Q:net77_i8,:V7UJ-kE5]<҄IUjŨ݁|~w649yR{к`2Yɞ?qtejTh _͜1RA FP"7MD.UVOS%D[Wa!K;!Hkw `ئF+[*{O+*C c:) ݡ#Bǁ;XN~Q4\fTmGRCZYQJB^; cn"\HL>Da֭] x!fhAPVRJYٽTjn3Xۇra-”H6GjAFs$A҉ܷ3b#4Å݊Nq~`oGDD\DFJ;289[Lj YHuAG[_AP`goy`< E<╒ZNVHLRU3~wG)5?_esB\6K Cy6Njˊ`PAe^Pa|@C:svq <4HՍlXC09b(O(B)EHQgps7lZ$rU0:VhZ[v/^ZAi#r k3:ᵇӑa<KL=f 0H-(ݱ`OjǃS%_U^liX>];v,9U'F,ºTHl[VguQfVY11s1)'g ^C X=S8[ D#7lh PaںDŽT.m'|Tg/~e3=L7O\e~kkxAMn:`ʬ/48u gơV]bzKK!;3ODP݁hsYsxB3~֟s.fV <6B{b\ٸ5(67 bj#}I>n:0ѣ7[K&[T.s2`hD܉&;6X8;%^@IOɬk3 -N* !BЧBP;,uMKI% w$\AvvxN+ Ў0NQaSq>&pIm9;);1FT6 WWbr:4P"ziBXڴ$s0Ϳ.f#z\}mV$-LqcJw&Mѿ/#ws rKYL-9DȈlгxݙz!:1D )6wڹJP~?>4qI>I^MqESkU VOI$7}2Ļ-l Y-iN"ҀpiwdE:9Kzӡ!DѴL 2E.)ȱ7Nt9%*.S?o&@u5xRZLi P!gfY`򨌁} iJ2XvůmvfpH/3Y`U7kC`ցD"ǎ@ wo aoUb%Тn<ԲrݫSج ݠ vmm}L$u:[& }omN4Zm}H,9~9ta˚u<܉ebx>\O&kGl=9uщ.:k4FF<7R!VG@}TO%C1h|^6f h 2NK$͐Yl?~y q$mT3$Nx_Gֵ|"dى}9&}y)y\)ECN5p=y#XtA2B7L]n5GY]ӇD9_.+QEm+E܋a ^Ȏ \3t SY$v05>)Nq z2dPnlt9#;)b%ɊCp9E"P{t*ޅ#bD]u[9)Kw;_NNuyu@ b'}&)z9RFtDGIJb^äMNk AWTPY}Odym&X/҂m~SOǀhw"69јYF];PH{ďqJyEf r1v[cuU]b]7 1h;Rcy;0de&_Փ:Q D']Y(f-&'<# JԠ* h"[H i{P_ 0;7CI9Ypw4nbϳ-ǻZcS˭CwJ)ڤw94@N\PD(ozdI&Ơ  ߟ&|u&w/r8a!jlyXR2 % kt=}GR %9u2i.8.ޛ$Vd!Od^5~7JkǥS\u.Gvc@eT;6GГM¾~,k#"ɦYՊ5gLk=)XZix'%2B7͟t~^lyL󃏝a_7[JvL̇$Ӏ"BǧѺ+6=T >6Sһ竀 鸇K.55'HJpJ.7N< G&X,oR!E\{^rgOeC]Eim꽔!/I KݛH@VڻpYH| ~Suk-I|^ggfIҏ-k,bP5]>P:;gs 8=': ;jL.`i>M=C@O! .n=*lHIns"{16RҔ3)-rq=LPMn3ѿ9KTԽuN\05¦3i@ʇ9lcU }r͎WM4ܻnu*#(ð\MQk dWwHb+'gMlBDXh/$t`+AVwI8˙ D]|30* ^׈p</$uvη!7=-SFEV w$(gf]}DWI!&(7G;bnqKGGui'u_QhA0 'm+ Ӡ6[FڳZT)Fp|jްTGcT +KI OȢpP!:0!MGwxN3xP @ J"Q+ )Z9v]1.r"qI׬1}{Ǐʡ0\llE`9l6΅ ;,ɟ/MNKi[¢{8B+?eH[1 ˣعHOʗT1)52a){\a]T~f}~d/+az Rew~0MLikv /,kػGaD ,Ȇ(]eegjc[^k0W,)w>¼Tc AJSx|4B?0h֘6Ȣ6sWVy Cn.>Ú)w:*zgNzMg7҆9Hɨ0b[`6`HiRqs!L;\QbfD'a$pKL]Zy&8q{&A5Na/#8S]K␪ ֽL_hC0=bw 6Ŭ7 ^Tv4WXy>U<q'5;; ~ykM+Nк+&e^L?pәUd\?(h_Co Bos %i1͊/IyRwAn K6mvUWm[rK~1:O@s+$pX"qMx%FL!=Kc>;D h o>{>Q^)o[e2Kfhp)D46MGr B8+$c a4A&5SPvƿ Őtl">T֜ 2.r+V}ߠ@Bx%hsfuפ\ iX4d$&Aɇ'<ݙ&`R@?%!fDL9zMCG*-;7$tQ2jP5]\p:;Bf LWD>Y!;sӱ_#PWmMMXv7LHDӢ3gߩFRme䝌U#tQɲb}dOhY),sezx^㹵JR]ӊ<߲Hjhi_Nq Z0@.LF7f`7+O{N-FTPk8+UŪ>{'̺}S~&ygpVM *"Td]j01Ụبb^<QLHYD<Z9m]g!{,Z[fi |z" ӅY,h͔'4:G^;+e܏%0FT"”qmp8^TsulS7Һ)Z[Z3o nbԻ6PGp ."4EyΛ:|'uNthv'uyX[Z 3jBxg=*6o -wtl #TX-CKjd9e% wj -$+EhoFw(98X'Y}֘z_YaDX9\VIC-8ct8F>jW3i_ ooϊ4UZ/KQ*Twsy0:;vW”hZκ%_BO4 9 n8$L@ THyi4zc|]"37yAېG%k*DiVi"cx66<ZL!+ГqJrgbVWA=1D,Ϳcں" )@4ZzsvaG{NV 1r9^,7-~f(#1e hT/DXa{`YʱV0) Sz'R:Qt6DFi0|gUX׻?q=~к_E#`?"bvW%w+IcAÒ(DdMm)soˆ*-ѐHrhH:(ާv~y;T%*aLX^A ޽Ǽ;2~ݡ)ZAd=;We;*#3,HU OD_{ %Nx7Ԉ%ZQ,#\j}%`?[biLX2t󁓞b`h eUk̚^-YX/F$#eH3YEֹ?Q~AhmC҆g3ՙwU4LRF7XtkM (s3h B5Q0d@E: k1KUU"?oh7_9o")u3*iJ"#xV鳇5x}B˕sQI]nSN%%yxqhR l.K4m9`rd먗CrbekΦvFeQfg(/?hHY?le+jюn,ʵ_X\zm!+7tG~CoGB# ,_0.{ `JKD;Ʋnk@ө}T?7oݢsvމdZ# ɦ1pCV\~G:Ϻ4cy UjZyXY '\35c@h,O>l(81jYSO]ա_uÄ f`y]wNbeWjԹ9PQ5b5nCCRt/BMWGKw66](B*E hx-{[RQo +iH8COϒhĚW)nK\X &{`S懤ĚCp\ \QeIEQ` >FbM6kEq$v5tKfJzZԯkM%6jT@p%&'9d~[ W{Qś;$/9S~g'I?h 1HU^.+/ΧޘJco~+1)pt6sU{fR:~3P5}h,iuj%5_fkW$5%*sTE}]ό#v03]5]k,Ϻzx!cپmU G'C Ќ,|G$_.Jg7>8QV4\ET`mT9R?Ďx~-J͵ ($0JP}Dbo!j&^]=_ =rcg|վײFM*(ϵSezw,̤tmЮ44>Z ꕽt ϙpͯ1lŏjU(j\L ~ -!]5f @uA3iYkh'X1ԙh)ƒ 0ԊI.yp.`6I[]`ٞ -RL=A.(]6P)! 烧 _g᳈2DgֲȀAp8#ܡU:?Kx'? bV;J^S44KAX\O5],ip\0-٠T4+hP~B.9Y bWa5sS1qsƹs됚U6m /f*ُ}#` X*}H{`UIhޝLʎj,# M4_&@{07bt# 68~LF-5#$PR2QF_ ̜DY0Jnt *\KzP*lёNa6XXPwBjngVz=pɴcБ6s%ٙaYu!UuqCڊn.259O,PS[O4WBwe韘]=ҜY:cU<݁jAJ^zfI@Uo}Z sܾtD%]/ةrD5eXނu1r'Ki;GNR[rŔ~^^Jr Ryr2R<%ހY$;0V(RV>!p9Ќjʹ^6XcP01+V7!GɍwUZg!k:. #\*aNF{!W--bl+n*LfT\,=`H{qT4E_O׻|199BA%4̷(>,8(D!7~WM$o3„#;EpWԧ,$`}oN]yx-UcotiaINVqdu9P+!xňl l{&\h+2Yy$w||IYnA$&5i&6yv@-C\nL_e29++[%*go:lH~^xUqDNiԏ5RMU:?J)0!TڍCH͙ X]l!?WV=IE_g&kBQzbgΌ鈂>6Ӱ @T)Őx .ِ߁Btf}i, %6ʨ}_|3GO9ᙗ0|dnQ顤w5U"7P뷵ՠ1 uvF8'@o4dV[)PS>(Y`=򿨢*!\?7dr.:f"w8m@ov*,|D0ZWk^^S^nEb8;5XEJ+~;&b-[x܄k lʫW+ÒF-B끷3 JE|c4[?=_}3FP.PْVcF{rߖ @3sEQt Y*/QقVI'a[R'x{)` kNJ:-9RѶ# p]:`${_t]o2!VtkOR. B͜VcA7MJ/?kePbo9pH}$ ߖ\C,Q\Pܶ"U'pR$yjtK(wq~R\pp RtHXfe=n'w:+Ka~>[ PX!z[SR:uFy]G#Hnq5qE78 VG措z!PKR5 vZLTEi  MNze%pxyHwbJaIp}MeWU hQ]=0 J|u/䈹\ :NץjOϿG&n&_O²4g/FȐJd{ mTULRC9G+\c (C&@Vjms 8:;=h. f~l &W0w{,܆J4]y `Tu R;uii牍Z&ow}%Y]{#yُsF@ !듁Ukd$|,~ U"EH |OV3+)Wy{ -܋˶9&"!HN)>{4:.xy;:in:؉*l^l^I3 3(Pl! +<_'Ḏ/ ޯx ċiygZe7i 4owrx( #('3o4 ɹj+R5j;f_k oRč,u.`ӽQ1[~:;M-k?_Ǵ?`Eǐ 8z(íglƇ W+Eyfvg#B?zmM%AVXhzLқÞR5*+}_#yi/i3gť 3;Zw0G||5⬡e˹0 z7{@K9o5]S4ݍ!Ejzg_NjGcu"S/JQ'T12 7*CQ-bYz%]J&F;pt͔L(|EUEylr zC wӠ^@s~a53̑Z*3>|7dGt9`rbҕ]ݬKCf/S)6@j!"u)/6s@ZXv,9#uq pGUL!=(~D3l qqӦ&l }ёP*LGlg9#k3P &J:G0p1.R 1-A- ">~ \L ~<|9z֨\(D(@ IJPy~qqQMt7 9vq*&V bFkf5pչBHg@]+>Ō@K&%>UIPeAoeXׂ8p\)q$~#E72f: Po3*H/W]s?.iyߺ|l #!mT^J D$rA6i 7%b6hQG- _ o %̓=tl(/Ƒef%`2ѳC|<1={HFŚt;n㽖@BL3΁Í%@ix$`˜LYj!H\=ߓLBz{N 0F2-jZ󂮰/v~d(mTY*@gcM!q@\TgDr]`'7.asfiz4o{-F;i?%%SEfAi ΰЯ ZڭWyh)=ɿdXfP9dNı,,IϭQ%L{Ǿ:(9B/8<;yLI1t43F+`hB'Z*bYTaL~)FPh꧃J5?vή[k"ěZiкG"#7_o/SBi  ;IkṴMY!j] E(\̉*D㳎!# 'V*F6?V492׶5q2 8L .i'(}GPmVo@,r`Wnlၗfy& m?ڰ_D|>nSoxRB-,hB('>egK_x7@7&ܬl$>i-~f?X?ڟWmXb[.69?_t "GT-| Ah鼨eyU%^]q` f5/ #$CmcO9$C,ʲ*G U"w7ndc#_֒7Li(DPT5|Rba 0dsuV h>'S)/]iz$mF:Y?uGf&h;,`HEi<m{w[ AXdY[YXɜyeg$`H<:j khzN B]#wΖZW8;JS!1/aьpvN0zqt㶇W9W`R#g43Ss&ǘg}[DWG*)Hlk=L\|&;ݱ,#wd#{=x< h ^B$ X>"!h (l^9yp)xhD0^S@nbc%c ͚0-!=J9(GaB[/lIm%itM x_Ca ؓs"i;li`Me1)īU4} K⟮E).?jc#{)-I29Egd8%5}h6°cl#tif(/+}5ܗVK077.G[QܕdGl:Rc_6!)馺RsT|ՋTrL1E>e_ BpXpzRZ۩Uv%3]~Ul "a^>ƣ5StAk1Q9C= 4i^=fx~kqHdeYJ+❦yZ-<'aCGy6l.}W$3p>9TRh2@w)Z^B[ 02+?h##Ǝ"qbS~B3]4U_j='%pQn%bCS5?fG fwf2T(^=4,xitF͍XIu@'zWj4MA7BM5 aiv7,Pfb9,EWpѨZ򀈉# &6=4dzU\Sj3x #)i=7ѫ&*w}s>S~*FWhK .bK-D$7kp#)DE>ך}KwG-51gM*ӓV[:eO&肟uσV {؟x Mz4q`(R]Rdo2IvTe o}G L7)n|~S85)2Ma`ο\"A+ĝFlP,;^T뢱qnϾ zKg<;9OѹLm3!do*wWoUd݀7`@Î-TDs}Da91֯x8랰b3Kj6\/Qed^(zS+$C>ݚ4l<+/.y%WZ#2p=Mto2;͝|%l_"iI+k^h7Z:wB] T.RH wk=^6Be o[0co҄7͂G1Y_xX<69zҶjIYNo9W(8Q*!@I'Й}<:`0(#E!M Fđdn'Kz` @G0pbXXhxPhK"&k^<1KǶLUA{ׅ^1ob^ di^-/яkX}OagvSI'N*U=<2)uM!IIv(Rá~K.WR-X;o+x^ Ά^&Sj j<4> I l[ ] Z:_'叼wdz[\[q#` ! H=/!rkZt"Xqlkm!T:S `0B8;4D),Sle nK}Lyq4nv~-HKDi& XJD#DwY|=,Mf58 +d݂#4F9H^5=*[Xkjy9K*WlEDii4~ۮ3pK(e5x8}ZsKR oɼ 07\U҃Gf'%> nKU!li!T-TWLєU#ZA>7KIe@_,SpB+۝E0GwlEjeB&kp?;q 6N9 <#xVw\Cu|D;bҷXKΦy Q)`V]`-7 CdD ۷Xvy 㽢] ]^-t#}v_ce"@BZ3A&Y/q19`9=0MDm= {Kc yG}T#_]"|@.2|N7&rc"h"Fڌ̸hhvc> #]΋ĸ*sl._%3$MEIǎs'z/y~m0<â"5?i]8Ke.hJ6QHlif+R@Ϙ}$#{eS^U71o8n?̢nhjG; 1Jٹ"7 |YD55C?qD7t{>PC -Q~[~tkś4KiM#9(" $&/NIҒb{ wNYe Lj*C;֚bL٨fהQlLɶ>8>{PSY*7SpIN=PH2rί),^wWR)qPp1/_ evG0 +D3/8j7Tw7U䕶&_i 0=b4šګF\~WlU#!bE$|M_]t6~y-[zownQ'di &"mK ^!S~HZO;55S#)]~&1".+G17-3'ymxؽrꚒt@3.|w#sH"c4_t$Px؜Zz>T^^u6PٚP2m' UHDT]'c_ ِҲDVd ۵jX)lM6=A` KdH][ËJ k`cF_ۨ }kOOoV,*:sGi2` 33)Rfw,\^q):ԗ2½'V* A-{V$O;ͷs tI'lkMB"1J%"xM9'ZzBPS-*#{FLn['ݥg7٪rwT49\-pMQ/jYн>&& F3-'. {1iB,p裝 jk=)b]ڗ(whoUY{:݅D˲T+SOS~5~+Xn͏O3{"].@%".NN.1ϳOX%;.n{Τ o.*Ң)c _ąGnBFF|pl+pw+[˦*dײ]Gie/n1QW .a `;,!IH;U,O2}id'odS:6 `·}~gx.`v3A=0/10g"PyfTtIU[sᖬ`0~)|fYr;h`ÏF(Za?;fVs8ig/C{P؍9g]\[F{d%8&.1zjj>(,֟K ńr #7_FVօ5cZ\E9r¸'5@5u5שOyg8ŷHc_Pv}'2BC&8l$vnB 5P cT Z)WBJat_mɕw@?G>RءY%Q4V{`Jlo7y eްMFCCml eQ߈F_)'r%` yb03O'(v 痢Bv$Q -[uŝ\Zu`o\ts,zH^.} 83ݧ{ś*UO OQ< ;Ը{R0\eL}["04 ƾfi+-.ұ;+8)U@1cX|\ *@fn!P}  ].̡kbIPYVw^+JABǶkwN3*6Q$VeAg]8)(Ӣ4O "+(\J6[H_Sq{0U3QsƣHܘH*Lq :b &'kh- bvsT2L>,j$[IG!{å1$>42o{K6o[yOz=Sz: dQ_X mտ-,n9a!M-UTTL,L;.(-`TJVz 7pԝ2=hPjB]ԂڅY'W5WkWa=&gaIkhLN+L^{wV=mab`6޾e+kִ:m2 mw{Zx62.ދ zZ8x' >H+uz'٣|/V{[w6$Xƌ'&V)לQ^1p*;x4”KzoUbXTV5;/AXt:?r6󺓯($W+bI,q=QkGDPi!@,Ω g+tMW UU$`4.rKCPNE8-ùq*9WCyEo L=VF8SF~).n^xԒ5K0 c.!l:w9iRq՟g-m}Cb^zWsqw ir Ǝ{oM: Fš.`X{wYüCuw9wv㧤4JoHsz:x1C^4f酹sC'lӊRMBq~! ]E/*QhۍQ4עmJݫ,^myKǁ3Ύ.`>blԨjPwRDķ-? uHFcIh[~Am #(?7Cn5L2g:66!HT,n肏ƸDV3[Bņӛn(D缮-QBTрQV [zڈ,"[ R.Ya/`5>M:TlM Q8-7tSBh78by@S@8D\i'jnxQMuban2lM =ku_\z9~q]wDY Fڛb̋;@I:a~i*dmM24K_# .1 t8?fQ44 /ES&2BV2Az!J4Q-}Dq^8LbƼ'UGa #ŽU) 7r?#_DoUw*KfZ?C˄VXbG +ΰ'er퀆O1VphS5y6ũku>Dz&"ZQov y~~/jKPaj ޫ'9qEE}"sP)GKgӟu,e hv0&IʟT}%AɁ0:} )-M,1^?I?R Z&&" &'4)V%6]R/fH>f@B[UV]hux5Bv$Ҍ)C ſ¿ދz_wi ALs#JW% [225<}Şȓ7fTkg:!7!&O?J1kP9Ubl.c:q,"Hf}sQF[W%}-qpgcZ(]YB` '#wm'Ml^rJ4Wl!hp߻%>s~r?~ Wj*Rwr+f;bigPHcsBNw9驶Nj,<=Ĩybu>Q31D \UAʃE(˃iʑ^UA"$# ioG} ˥FݢuKsļ+|O5K5.'K[UqGH]k]y/n V>.? 1ݜ xk }O/8 y8hC;SvHJ||^hI{^j 3isi&Q3ZMѵk[n@'儙M5ƊJ1:|ATIH?(@ a$n1d$ 1J.Fy;AbwtT骻Oin@:P#E11(&kbh}nb2?c*9&.^ϟR_2;:?ftfCxΪb_U/a?(zsm'3e=[7s\۾( @dDS4C{-=k7ty}ͨ5QL՘,s?KKH,j:nfP'5p_XweNsםok\a0Z[Q=NBQ2{^4RMKʩN)MKBxd̓nrk.( Eo6ze^PH\8ʪHobZ'Q_{O'SlŸGu@2G-D2qCq-dyS`TlmSσ}\cQuSB&AS7t_@ Z9]'7ti'E5rWi4bH'w(D@p PA5 7ؾ-ZјNV,]goq畺 >=ŰP=^zf{D/!K $ BCQ w ~*cF#"70=H-D)9E~|臺"cD= RH@Ϧ2ز`iΒ q.~ղ[R'2z*hUHk@nEl3J6H-%Tañ|*]z 毺~o'qx<}kL'/!G `=9U@7{'{c;Ì6lĘ8c4ڙNDNvk:)^gNWpcؗ;jDv3`rv n]@n|]_ԶۤU"Ui39S /eqSTt,=Hw$v! b\ 6`@e0KJ3goJLr;8j"d"?3BJNʧ#͓&NJP+(Èiq?xOps}B4nP-Wě龓.|d] ^y^/ fā/Hr2'OBQ O03/CBf>  ó`PmK"ࡪH̠u+5usR&Gj*&0S2JZv;YL>Yy)}(dbە !t!\U@u֋ʤܹ(CDrZqV !MNG֌XTvR-ҚkԂL>I03IU'S\X)Vjh老pŋ,tޯ@ju,9L1ɣۼwk“Ww^&y*\Hcԏ}qTɌT1ibC=3(H!!D ӥE@F:!2eJ .D_æ砳ٜ9G*݊YmENVG=Z'gCH$6?Qod/&d`C 4]T<\ މȰBCl.#0w?*C (r@ ,͐Xjd%P` ^76.?dR2ww8,%i dj]m0 ` Pbvb1/~S8VMl'tiV{Y>iWazMOA1oe<8ue]9G)lx^f5oFo$!) "y4)sG3BP:@c1G 8( M*6G bfC_mpBg7FM&ks7yhAӍxxA@]7P(+"w\ 5lBa?CP^N,O)jNo2O8eU&K9!9j ǁ@ w嶷;n;qœ(du~Qє?;C7姕Bi:Tm4=gwVJ'VȜs2w+(H. )FA} ] t'=}Q5~~ɀBې&e-$g/'OG{)wx(7' y~Ѐ~J}yCU~%MUNKb]f+_@_wDNn(~SՃy74A릦lz T(tQ@255npǾpi<=[o!ib E TP;̩PK1yq/֟=@CO̧D>|>dCEG]iנN|wg}&㗽)X!J?Z{jNS&z>wad}7 U)yr^}1fiuVȞiJȡk#P`peWOHLo;8P@K*SNQ w;q~s r]G&9+zc"~B|s, P):-(Nh]&xADzP  Dk3ֲ~I< dbp_'j_}֧z>X=D`X/`'6R:"\H )U󟎷+^/]2l B(@%/'B]w-7ЍУ.֢LB % aB'QNFZ;. ڂ71"" uYc4s. a2HW2 <~@-iP_ s%}t?Sˆt]m_;eP]$ ^ڀ&TFD9-1-2dP 1r @MGA7QxmUO߄k0)=!5,U5oOX!5,r}+޹j5Jͧg.Ib1i@W_N(n/fI?'1]J& Z Z17Eײl[T74- @uݭ L2áb aYjWIC!: :oo;}Wơ3W 6ew"|eBT_' B#>P!RmM0zCh7R뭕O(QRiNk V4[HҵU RPaN|墇^Ñш)e9+Af+.{^#aP>#`r xV;o>Ca ʶ^S|uc- 7SO ]f@7bf푡@E9q;Lߗ;aML[OQwE^r˂?u yi>gQdO]! CÚj/i3VR󨣳.f!h6h;V_j71wq`xuŁ◑CYD;!B<|D{C F GCe5Ƕ_3zvPH!y&Q#ſu ݔ!JB*M-d>g^5`v{76n/h'BX]ǀ~HpSDs. _ wzz'%uQ+ɘȣqJl#*ƌ_/~P;toKɤ؝W,?k.%?}*V '{m m]qn3e4SNKq'EuK1~^{\';LXCØ|D.vO44'wX;&1|S{g$(ZSk9GKuN1l"mSfrjY&e)]ǡNZid*Qmuy%{1|߇YIt}T?J>dq"lNgSpTʡ#{1 &doOzÎ1tr#]$ ܅NN4rht] zȾ1 J3ߔ~qBc'avi4 IГC&"AWlk-68.rɯ/l/&??n*X=~zl&"lI:+FDҷg5Oo[ag C3;I~{Q{Q0HOcqr6s UU=ۼI.Aq Wv.>j~>d yV*tc^'jī Ը:,Oz`mK|w#tq_|+.7!n t \JBbu]%XGQ- P 0%]5 a;0Rn^W]!8|nד;qaiK/#QEHvzY.1ZW.'9|QHxG[Syv Ts ?bJ6zhpg7Dz?:tQ(J|w4p,d[궚2p%7{slkfsN>-N`: ,J欙=O dZ :0⥫49wIbatX$Nh܃ Km"從+OȇڙgbNc{tc\GdզsT!XJ iRT 9 1}sq!%B=="d+YltO$4N압9F"eR $b{_D+VǡEڥӵTs^s%;ޯ#rfn8^a+А>mD,.;z#-P郰8RO52 +Hlෘ[ڰnl}By5:R^Q9(4';oiBM_UC̝Aq@6? #Rqù7[n3kXzTЗ;o`ìu詜`bZdRb._ F<<{sc PٍH A~4~s3ST?k1yՇz|(9nnCq=U_VD= Or[4#Z1)ǜ@I-`OBW ȒpA_&qL2d#(s^jjWyp3P_ƃ6*N{ħQs=x|U.bo(I*x sUP&xFH@2ohv٢%d%7|jU P_]S{jzztǏw +GžQK2UQ.RxJD`*m!GYaU|Y/+.0 (G{{2#…Pⱌm  1j~gGO /щ?Z!-8VbNp [56ր ]Raxt_v/;T!,k@MPJ~ ܇d frls:] XaΔv=I6*xK$~)x~~O ?B F>ýoo| oQ{M;zr/S2B^d w梳xcc2.A8%8tƔ~F^~ À 0;( c:C^\0:3X`A t㩦yc ޑRtw|9L$)+tv鏰g5^ya]/NgDITذҠZ` $l-Ias"Q<,<J ̑An۪cT{}ϗqtwsV&ħ;IQs|+O_9lurV*0&CqTIQV~8l_՗: YqMbA1s?5y]o_R}_eؾDF ƼB Y/SU`J֋9HM?0@ P彧H_AO ׇ%@% u[rp7A-AHyL%!6k&p_GﻆjVSL:8yb@ STp))Q,T 1eE?m^lW\N&XY6 @;H Ɖ #!elczz 'уbx;˖79a H+)఺;U3{d7WOSBY +W: -f-w/'ۈz m*}e%sΔ.mرQliIgP-NC$~J@+23?AICgoSuΓGI97:*tj|S @>e@hA~'*5 <`=LpnF6)tBUw}@g_ufr ` pf k6.k{OwXKyʇ]ٕ=ciGn)@[{d}CSŷ5VU9/h`~B?+ڽ˞EOHP^ѥpZ-]tLfz) zKtsdwOfR l1wF轧]z}~Or:WQbI0-Ƙu\_ Eᚉby9>8.&NJHTyfJ"lo0נ>A/KAH gs74"٩ח5*3Av{,927K%nNQnt'o{%u?1RQ Lwe#'ᔠ1.v.W'ۻ >씳i(t/F9RCp9 OFc!؀5|2!=#q#a,5 uU`Oc3g[ {K՝ڔ4}0|[i&ӷJ8TjRx/_@Crv|8YC14^q興0?v'!׭&>J' iOJu_{?ƛ0Ͷ_14ը%Y(وwIt][ge^7إa*rAtvs_D}|\F餴|O{AL?'m_òl{Ezh?/sV]׸U锁;Sk!l3{7N [&=5\OBzߋ`S+Z\.jMg82Z4Ğ,1'ra9iKۤ Y*| }Ro1IoznR|긺x$9GYoU@ȿ{ڮ pf꼦4ܫ/՞D_ ݏįa#d 1pR Vrv#uCO$O6#P]U'qyd02$y3J &@qC|B4y^§xa!>Sۤ;* ؄@ r)DBË6Hv92X4H @|un'pӨ|RVNIdy)S].cyE$ӳOLoyM}xsO;g3[]2^f} gf)qVtڊ~ ;yygnq3_T0^v!٠NcAnO]=C z'PΔ /`g`=O:*_YCw>rދݔC r*7Xr1 (#ٍPpk/3Xt@9?FWfˈH H/o^lrsDS]d.džiCuHlBx5z|j/_A@2>qϙ\>/ 3iܼj|bO,sB2B/(nx&D bJxG־}R9H]H |]Χu9+#V`x?*c`J=vSGVxV$ϛܣ @5;@=%uC!8Q R|V0g݇⒆P L잓e'#7#;FDUuW*jB_ydLrRh7cZ{/ }}Q䄾y4"bOlt"{)áSؠj8.HEIw-3b9sx^ttHxd2Z BU49؆Mk,8;=& ꬀V8?jN^_Po# |=~U^~lp>^J@tŔ z(7dY#;(}3WF>#ЂS%l'QYGbSQbmNB9(pv^q} hK`h|vT\bPct.epv%&I"P}8 -Ɔз?'h9(bTx .`zA}6zX_?sȲEX,"(XDDX X1[ǡjx_K;G?ni Gfh/ED"?c?-%nϴ̘N`G)bJJWwLrm*{r'D `owT@ch coO 6c<9sJm" H$wVu ,c{*,L#d|ޅK,h3NM@ ^ C9HˈWs2HdIIraҜ;kzԩ[jǥԘ(ՇdO3։$uB Z 8AO$\a1ڍ%`0L_.9p-q8DBt^f\ЩuʒDZ¸E Q']ap  U]P.qqTA\l^ dAb[AꇆYsE4Xvf!fm8DQժndv-\aUߓp ?Rrpj"14AΥc]S{~ƹ榻J0WPGzkyTȪse5I˯ 7,/)]ߪaZsΤ |:/1Yk+ί{|Ȳ:ӺM/<:?wN :<@86#C5,RAO;Tbn&|i Ĉ%{unԫ.,*k FceDs0=Ш + =h;CM{&(`ͫGGp@qTdx]&fST9ݏWف|? F;Ȼ-Uz>GEq Z/+!Dꏳ2qh`6u&Hu~|'䫏LoJ)?ɟ ! bBT  kp,)qa=`gg%;>;[~⁥Sk *l]+:8w'&}ʴa:< -)1 vN;qki_Hv;9071IN}m()XQA\-Q#p=RFF#E!S@K80f?GߦUyE Mo }<鱎[{ߦwed_Ͳ enx)xoʢ0a=#.v!AyC&|ҁQ%b#tp_o h5ݞƪgc%ݲ6G@m8^ifm؟APԍ ?rA.)v>UwPG{!r? yԝ9.>pv,ݘ  D׏y97<R/KXu _vs3\T_J_'ưLI΋iC~'TW^-E7' Ic͹ĩH?]x5,]7VKK8(16* 2ԂB(qWI7-W8lP0**G8鄿/s\s{W}xFf%?sy[=SP#`XH_lg^uY1Q\bQ: cj,e4K[׳ESj1kj_~~324 zp9/sOA&uR쎇f0`<&(kj͕b1λl!tL@$e7ǃsґNj-HO =-)dKf ҘX'sw(-` tbpDyF:w]U'xv_#XK|02\bdR@KwͿIvϔ/U|!Ar2>| 8Þl3>oL5fun3hR20YoQ$ez= "QyZi|D ߙkG!{1oabB7֥p:*` 9qCK~0@Yh+DN[BZ0.- ,k6zU5>n%`xĄNjL"7NqHkX`:ISt$ -?ؾ9%`ozDi CiS,PzuR7_+j3զ_O}{7߻]U_r/ ܚ#@2 ݵ!DRb[$B9.(P5۩AqlV)UȦsf^A7й]rD;c/Bz,MpBn!MJIBSKW8&)(|)zC@\?, $ W G#nzN@y5k휑vM*ڷ~8H5&wEack2/=< +J ρ:AJ-4[~VeD 94Ei-qqeҒXL[F1Xk48g#A^]|ᤧ!z BZ9ha(!ۆW=9\MѳJcP:*bQ#_QeYR[Cq]̎\۽iYZa?0q%$u-pW YRM >딓v2~Ę[bNh8~S*:=Ͻp[J!9V{IDcEݣ”=VXA1UCgioL$A 1t #Y2H.hMJ ֪mF߽ٝ IY4hP ?%݂Re0ptD{GaTuq6/V fRfA> -i~SQ|Q"!yr/$Lt}dؓ< (=G(/:o;f#߇⿤o}Vo\?!Cc>5|'3T8_I-Uwҹ4iR,oت˘PzR]w Ƈ)_`z3 Bnksecetǥ/O^"/ *ה>o1*ƕ 댾\A튊B"c6=قBC; Y\2&z<T$\iXY7boP@ 6eB`\yu";={.S)"" B5ذ> m$Sz:9dXqALHu c]>L`͔4E+](>AC?z >Jip[6S@nΌ'_{KSiS-s{Ӳs,YgNLU'Eyݶ< p8Ԏ1 84<*|[ Jt R|ID  K?9Ye/x3&)CN0.8_ci=>1m2ZɣLHzeQ!71UAkxfn/=Q"( H& פ~O[+hŦ*_G^^A0X(n#;5cv4AE0I=GiyQcXվ6D8ŏ0L;j(-ww tŒ%uX~MWZ,)@3^N"͛1tnyW"PYJ <)J?8c >,SRiU=?Hy(|ioYnfн SɠAweɸ~+VWDl@TL%B <L(wQH$g(0LcPՉ.מx/'^rh'z+RI7cx8cBC;"6e%ACND^`mmَ!&غ!E[kW폽ir2sp{t.瞍/9/z{#&8=:}ÂiWr[m+bޠh0"t3Άp޷WGg|u=sc/zf}id'ݬIGxΛ>t3G;JRѕ wpIa'֑aҶi/*N'PܕESbǼi^{_R,n"k:MuL uo{kؚRX(0;|@/z/Xp 9#W{gZ7]SW!NܾT$*4z Gv|BPΠ RܫynӅֵmrK+@=;(Nʼ߿ +ZHUKӣ&҇f}ayܤnFHtQjlLoh>2ȖtMXi-<6{UsXxG>)N&0T^@SDvYB \%Pw6 a)>Il_C,*vs`/(v)?=x ']± kxAŃwi O$FU\3Û sRȊO&L@B RP@b҄ 0F0!;VZ_}ؘ)c-[=^1k jschfy|lk"xzkn?֥#c(/bg ~0wࣈZdVl/ q\ *|PD(c/VG0WmZ Z [j!L `9#^gjݏNTIb'w3͜ .拒u=Zo{#(RYb xb6p;n LSag! GfPRXJ?¢+ pp 7Đ@~HJsiZ ,`}&%0>3}dϝvƤ_p訫z @|\sTCr~;6$ڗdmkAu ޭ%x>;@e\ٌm}rGz3fD ŮmP|h_W (ŵr/(~)s̠t2yi~0` ê*wAhN&|B=H! ?AƐDV%!W֭TvK_;GfbՁk&}t6?]zD²iՆEP@C(>i5whw<~7~NO팈afqi Xp?GoesU(P St7o~wd7R 0FNQcHgqv  KFʽPPG*q M;׆Tpm' 9=e@"Ic|dr}5I|^A)Ɍ"FG1aJӐh|s+**Uj If]s< c?"bSеฟqrsJz?Cmde 0Ƥ&Q']7H;i<ꌼ!"Nqu;X/XOM?\IᲡ:ܼkVەKf ŠLNF㖵< Pj1yev-NefDK V[p,iJ6L%/ ")_p <1=~4!?)=_3@ z&.( 7{8O{R s "KsQ> ֕ Q\pw' u*HD!3'Lp%T죆4T0qY?cQ5F/W >E? y6qvi@z>bi _x%1D27Dhp"qH)(=X3VC:+Fvm+4Еhx+h ߅4ۆiJV !ӕKϱd q叢]cږ? ˨* 5%ŊtyбYk8g'k Z*DRL[NaTGE^rkP|ㇻӴhwꨤw$>nk(72m{GqWRFI+)6 kϜ1'F!ɝߕ&K4ClGbSY*f2X#j])Pfhd2<9#+]bwE&RM|!E1U0"{ɿ$om V(%5t-oc;Bco[mĉ"hǓSCُ)|%$L#cioʥ> '&!ET8QI_S&s[:wo>x*0Rbi-yэwȣ[o3ayBZ:4d^ ,e6oYeڞ`vG;m~T ,%]76&>El1׆G#Nx卂ayNbadsc rjՂV*!ft$$RQ 1ɽG;?ӌo"Z:%h0xJO89l ϼS#tbk nS i]N9ߺl1aq {8l(.5)jw ;nq2eA@qp1Ӵ8va)%|) D3 4:Am0Lݘ_ 0F-2"luHo ,rl^hehniqP6ϱexzGе?4XfSZ_(G"Eo? }8Ąl uഉ?k",G59g0@"G01zU&&(YW۞QF!3?=j*󗧑Pkt 3UcS;]== ;,lWT[zof0(>8lY K&XI,+EiX g6G۟:[znqT}mlfI94xA[DgFØյH+2PX"|qe0^M\svReLM>Dz1N;ru|n**^{Ϲ z8Y 2?L}I@Jh`ަٍQ}~]/K ާ,B}O:?.#6m,eR h[cDDAGdxAc`-;.\gw2:?u%qoq2W0ۏ@7:Y5[@il[bex[`Q.}oD[Ϡ}czŧ蛩\Pe=T.Rc+V."fD~Y J.Tlc[*ɝ{͇jVԙ |ႰCO<5'ES<#nBCCi/!nrB'tA@DXQ; YNFD<(XJ^ׂ"47$#7W'z"IFv\ALwX+%1LqRHHo/jI(Nbg!$8+b. >~ڿ_ww% >A12#pMo.I/e1< @b͔n DnmK=apQҥҝqo~JlMpsEfV2feZ,|F {<4t JWє@T ]ޥ@'Scb Y Qh-ItG`6C?J_(^: 0_88q.ꔝxs<,ALr`۲bѾw|Zpnn'~xK?hZnMd3㪺X$= J2{+Kh)&Ŋ4˛ѷS]GJxo}pPgGG tmӈl sF%/ڹ?xT]妣(`66 y@A8 eM¯CA+MD|?%zBx:K70krPޜ)tE˹ T;䂳#0.BbeofU1~_$$I [[WQR! aA" / +;מݪQj,Uګ19.ÙZ!@ RHw窗OEW!-9NeBKbb=`qi4|CK;W#%0sP͹9lY?Oku,I1FU+ (L6&ODQ 6ZufEx~ѷs >Ó:`54B-ݗrj 9V4D ~iѤP #Bj }Gi"_}=Uz"=^<6txRәq3!Ij hDʙqA}p('}nB.m Ӻ S" V2bY>ia7Ad]cz< X!"$Gv/ٗdկ]cכcPpŃ,ǬiɚG8C?]l`lʘ` tU4@ D;=)a7fF8d5p蟚'HG9tp=w ~T}c8=@2ns .hjaW>,ZΡ*ErG^vuha3b!,DbETE Z{&^L`k0?k'qmge,lfkbGVc?3]5|qՉ߃pdg&w>=O=󙃄[쁬Zw^Uge1%.~luY242DdȾ,GTw]}Jat='L?' %8꺼#m]`kH|z &bJQ>'O--ECo9lmhJ3me+}4䣩WQ SyADC>Nf . Ba}]{)ǚm7INєgaMbr=9>|N㶭˶g_OJϙ`Wj6]:(GW>]p!N4̽-,?M *oԯ9>NF6Pbc^0NG;T{!~dvH>dUcê;k :z`('f̊zpwt7WgI#/IXAr QpU:b']p,>i*,hO하ƴngbB4{ t9(m3Eux9,GOnBCZҸE(MQΞ{l3e^}u0H,T;Kq݇o؈ԡ(07Xڥ(A spe!)-%(W8սOJ=-ҡTdO?>ջ4Y?9P|)je-߳ \_4'~oʚjzKT99s:\2c]Oݘ:S9K'84!wJ`R,OvQ@՟;(l* ʯad3*;8KC-xͫNAsPC6HIHbeLƤ p", (GUvo -ݏU@ @ ז؝0UC˟;#=tHaP qKDq`J57Y#;YT;BmLOoz?}eݽP 2_}i$ȩ~p;O  Uظ"&_Ts//B^aJ"t$`]sʳV `W Y.e?nq8d+ަ"Wk[+_jW4#A2+EEU%?0jnE(aaBL`h^'&4=%ĖWA|'ITU8o'ԣ^>]"'\ je1[g3H ʲf;3FEEqU̗&&mez*$ ,r/"xDe98 ,H J ""* 2 DdP,d$,#C0`dZOܽq8,KgRݙ98<9beSeFy=znź 9W9{~ ؠcT:@Co≀trW/tAH?_|` [[S aVNўN]oNA(7y G4dQ**K rZHS>o{0I(u3(!o$c3(Y{`6E]T z\UJEFUoDyFAG=]U7ˬA*8x:U\"z;;$b qnJ9b!7I<>=V2" lz^֖Ц P<1rnŠFSv!Dp)Oǻ;2<;gDZ-珩#$LyNz%Џsk/Wj`Vn#JZVB%Bړg^ OgY&KYm %N,}ozvt)8?FNOx^Ef]T8Eܥ~;~&LvC1GPCI};%%&*vhsJ'2=9isYPWWw4tut|wK[>Q*ϷUNJB;/t:hzMF>۵5W1X[dKz)`z aihPקdv) UF3ʢF~v!zD8'|}N;횴>!ށs /3(uj[2h(#0>y[yʃ7@XZ=aehhyb2;I\흿:c1 1rUG6Em5ds"ŷwjK5 g9(9P.MnݓUbG΋þ)~\ {tCT ~ 4Mѿ%P JQ$ ;.z3{Q:l誼OUmxj=Gb-QIY Ҿ~6B.G%*r'q&yshvQ6s AZ`K@ӾR}Շ7ԬC}ئQɹjʕj©=[5Nw57W?ގBǵ<Wq{ǦiW؞1Z#7ci!'h]ԐzyCuSj07b^ϯL,Sdt[SFW0ZV}?<+.x }W0uzw&qۜ_ѲB[m߈K8 @$,"biWG mPυ֯}Ϝ"3kڔ`ME٧?!UNO[c:Y|fíYn^Su1Z*g-U:1^oPMPfU랮nl%)|tt.RO(gc nvu/uJGiԽ[T>Ļv'k1nvօ!sV|<}SI6}v8Sc0PegixK>pr,fo2_UW6- II,$h~>t\Fɫ9QZ#LY1)T{smdWBtl>!8ʝ2iJnj Y3œ,O0?4H/>{.wyt|w.OOPҌ\י9!|>ztxd~K`m+.1_;ֈƠU陦+:Dw]]kxI l]/7{&o_kh^D0",X"0bQEb,i}2κlWo?׿*x 8of2iFrL"a݌/0tH@(C)O6bX쿸)aq KΖ 3<LY5FD]lJ`l ~y3淿ߓ?U]X$ cc{SD7W\۪͔/ۜPn9Hӑ}e$iK8PE;Lj%TlF f`MmĶ@]RL*_m!S}Sůori~_̻˳LJ/QW'}bhNwE_#c'[f- ]Z%b伷<1aJtȐκG'F Ƭowk*:# .4Tml@9.wdtꑵ,$4bOw9kcYlx#;-w~rR P_צR}tpIW|& "r2 $Ҝ4; 0C 1ԛvg9?/k P$$ ]KE f9ϵ{v ,Z[83F&x?萭ؾ$r ),yGSP'xXm7{sQye>_M1b}s^VPSi^Ãо|GڹsdUw8rTxJ-9糾˭NJ# \Wz$< ~~Ne-eԱLmɢ 2y[J0|JO%X5z y<.O_y][MnJ~F~7%G: yP ?Ck[23Ss\}EАr1G;P.s\yˤC\7x)$!`uևl n4ۮKr0|Ʃves,YE({,?P!B)U}2Bx@ldL!y6ZKr U E9ߓSR~?Hr `7ͪb ,yip< ԿzqV7W, $R Ab"db Ȳ(#$,DPc`(#Ud(EPXV"ŋYQaT QQH1VCI%H A+UADEFH,b)$k9U/3zq)_Wvm{i!,<wb p|.j2}^~ 0UC)0?*Pc!3(j? .M}\颶ɉ< G8# 6q2n};O2FĦN^7W5Ò޽;6<;}Ԣ|;"%{yQ3C[,p.FT-J~Mwn$ b9?gEjIg+ᯇN2ia.\ƨě~w]PNïJ7R'R!)@gT;xMkט]UTcjss-j?TC;*b` £Pg4?k4ĚڕA?|XkP.oF>,).!.Q8F5YAY(Ϯ(v!)oMq*Q9O14N.;q+F|q/0C#-]1v!@-\=_Ǔ,Mcɽ_FaW`B>c‘W*Q`}xB6KG d!?w˿+w^!s4YXki޸``ղTi~(NXM2Dk\ L @CR߅I 5 K7^vԮYV2]/? uHԂ=m͒w^NdδL{:wǝNVmĦ->UAe#w NY碝^d= ݃ɷV.j#ӣ =#}:CؕM#cReu ],7k|/`2:v3M|k-hfխ5nAݼj'O|x/( |~\GH3sv#zҫՍr_LqGW=e$I?7u7ެUG@sz#(МaˊNR>IZ|n2;V\9 àWgr۸,u,0y. ǸoD8:uq<1~Q4 ai:::/0$|?ϤIH.aG/_ /ϨFR ӕ2`S u(8lgg{wZLuu5#7'tiqJ\kje:F9gZxDw4ͫ,Zuol{*^!w>v|_:4 kL[SK<^EYhjSKk!S r'uʺ,m?2dUkC_L΋*8\X`488!2?Rdk0FvMg[DP7\Ja $?C6*'x}%O~26Pe2\?8ȟ8$+̘~"#[C2 Q=^`W<Mp"۞FZbb=< "s~)φ|.SSɏ2 (OgjE:n y'oeB ,Z8Aq{rgXz;=r[z@mk$ٙkɑ5k&w&u.tv|"ҙ,sBK9_t [w$yvը8GVMwƏA8:9$t1,i M4 7Ȁ)ڨUQ~/K#!q}xnZ:I?KSۜ2Kܐ"_͇gywn)9T9} Bu)+kbrUёJqR?c)Yܾ_?Ӕ]bzwC[>WGeOK)[?9#Y'vzYʊЩ RgKRG53W<IJLW-h}=/Nm<--:|m:^ɺמ3Ѣxu-1x^ Lf~r,R'Jӻ7 ؝&yPLl|0o'?pfv+z>[i*v@(8bJT_D!~fU)'́byrJNR 4$S/gn؍ƎPf( Cg^gLf񭵨gHr61K唦C&;UZ$@乭^aMdY&EK{3b'S w_j~ZcP6ո24{c;]Bw~o~5՛2wVu0l6 PԨOݷ<ݖn^oH37I̴WJbF hMK_X]Z:?:pmoIU_&L@3Z|)s|O O$ g{//K }_e_HwvX9|CluhWݯ`éT~ 9TwNė!pqtit WklFW.'%Yogi*feC Z'6[L:lOwo'k)_Lw8)CS1Y(). MdIJ',3;UWH{`mJv_GIMFR`05uv31&A ~v4أJ传tp/Ҽ0wXdz*NK}7nprl:ϕ6xE߰sWus ]128 bbwշ77SuZY6n|'DjV:_&/{lpd,Yr96j[YTrN3@U= S=SW9g̾bHtpWZz˰(L肵A^|GoȀ%6F&"#K1_óXK 0V7ƞdNtO o  ?$xR¨N UE!ܧ6G|5-L&OY6wY=F;wcUP&=|qWxPk:H^^;7ޘ#׽5p>dD}#_b,r9}:#@ַٖi{9-bD?/xg|ԧ)X'!@;@ ^+P#UN8€ lFm8--j)6~C{%,n,7;ζw\+R?g8铥7oIhV>c_n쿎_13$|Vmu=%EUz>oJc+5˭S{;#dzIs" f_n3,C)7ZJh| _U\[XXD6\m~[,*Y%[BdE<]u΁VZA:ӮMezN4R&1oSø!JiT+.s™$P7n;hs3\@nƥmPfQ+5g=Cq5O' EOXY#,nZ 2҇ݘǏ2eޮ m]G-;@p6敥%R dSb#}V`>!2GC괾J)raRZKn{6l3R%_ 7VMc}Sp| n:orGQף+qϡ+w#/lD5ӀZ8P~552gOA)MXdP ! n!" BX@7% T|6D]B X#"+bDED-_4ϥ_꟝J~BtyӬ$ *`<1c)#&0}Tp{FQuսs4-Nuv'J>cqKW+&t>&PŨ3t4{,!DLHg/鶼/!˕.k*{U͗j01xoF69˗"?Zhͩ=ءWɿ:MXs[Ff $7P}xc̥[ҁQߓNr_B-1YVM^4:%GMVɨctql' Q8[N%M&u?.Rsg]6Iߺ@焹eu b gpq,7f4V9(/̗[VglI׉tb*( !T1O7[D~OcLV붒\fN. ˋ~?8B*e ~XugĀTj[  r;\QQ0]rl4ȅ6O; ҂Z!nmjW~O]74^V""}Ŵ;d~s i/^d{_'i%QY')-JǩX:Ǩ琡 4y)4ϧYͺX'O*x4Q1.Z7c)_~$Hv} CV~vvL1/aGDw_{a똽qR0<#D&ק m`޿n鯶`[#@`䰐7 . `~BCٷ%z2@{Woٜ~a d(Peӗ~t= ɲ6ќH'E1b:du[/6F(ZvԱ=d KD~},9r*9<1ɘ]D˝FPiS)/kfbf~t"#t)D?M-J[>Fq,h :ж-gMi:^l <3vwvA5oJtn.fBܿW]݀FtzMw뾆~pX.*]rkESiI~B`tzW7 q)2)qg/^: TςV#;z=RA4!aM ,1?" ?g5mo$EbNw'YѢ,>/J- GS :ƤĿT Ӹ3p#/Q]i1@m# ڍ}I_j՗/RIK BH@*q?^ʠJC{ꉉİuFusnd"BDu%n"}/ /ҭ7+<~KLw" 7atUU.}lf]ܘB8B<%?йM3 `ѕ7p,sU?ݦKjѷ.T}܁z-3eu`WҖaX? 5;qV$GZ}h͟"Wpt5#++FE0 u"CaUjw2>gx4 w=I&(vT?!h./;q2_A!83כ1sKCak$_%K[ a>.z9hLs`h 6@T&)1Gžרaq3鏫:-e͝\Lns %"F2UݲT=cC+2'Fji\&fg_?V1{mWN4>kw[>)3(cA_@c0],J' '5:F3ag~ Ozm!y!JD̯T~R_k܂nn`Bק2ArŸg\G2;B Q#0 `✹--%WIPr>p\&rH(<u~Q0/̘<ԪۓN<{Cmf;X' 9ZSO;j1d/-:l$}m(T黯NW\z گJWm83|8"%d=x9W23L][ZƬf܎xQD趔 iѰ$εFen2 y7Y ,l6ItQRC z7NN-czc!OL@A4zx?Hmʉ,R(|z]Ĭ3pjF1k4@ .= mcȾ&+QW~A^(NBw@bxv'I yszB]yFn_եy|']&z}6s+M'r,'6,:JO~M}U^a& s\C(Xaܚ"hrT|+6(*pM;hf{CQm"a'YExE`+_p̟!TAQՉXPfQh3 R҈,F\jSJv^"CӂWK6εQK=(HL:?sma$)iiO49r*z&~=i.hZ"Z me "ATLP `uE+ݨ&.; a7"_)wkmPQ"OKF){pMYcF2څm@i@)Q~4s3JH]T18moG'M-hkڜ fsr4=򣖰#}*#C)otU)% bW#*'0Ya /P 0@o0QwEV0T@ 'ad+=jYe},05~vʾJ}B*rk][d_$  B#!@[ qš3N(ȿ2"*gt cd48!bMh: 9O A;LRsṛ!A֭ZPN]4)x6(CMs>dہS>J~ x' /]HHE/yQ*A 319AC:=^P4P\i'C2\fs3 9awrN@9cD:F S@)^*C%#=؟%WP(@7UN@qHP> %M aw1/j/)֪a88ï@BV6~Nbf3*=  0V0$J 3"D0y*:=2 TW=Y bjrW]~} ka]hySK=9D?]똌'$#rHu`C@krE{B4f|$s4Y!b_KǐKχNw-V"~8>Sk7;6, B*?73rG7NuSէR/3ok]l}=V/v]2/IQ8~_&Heg{i/Pj3hNB̔`/Ɨzm+8a_҆!5j}[5. K55ގ}u1vAe!'o6lKAtsLj9t>TS GM+PG%d++䱋ӭ"YWX ct֛8 >lRa(*6O"ʤ̂ʨB`PYFVs߹Ca`Ss0.9!!HU+h+ɔ1}{>TUE+Q߭fwGCY7 Wf" QD-^U9 &B:_"tJR.EgVpKouEQ6sUqri+k 5rf¶*uN|6-IǓDS"I+C ݻ9}81Vx5/e)Aa(ĩt  2rS:/g3#61@USg9G <+tE@ J k;<:9aPpct_U4DR Swhh(h6s0Z) # ̓OWyR7!*PA!ȧBj 2S(녷FaT4PeBdotX`ܽg_DNMX^ p(hĄĹ*߹>fs@zdwh%#--yg1< |qT-ƾ^ ]"1W]05Ph,^ɲUh :ۧ5Pe\oG 1<~+}ߊ`E+aOD8|![s_>Tc[3e'RqDe]˯6m/^j$G1z v3z3oVZ ?=-̴lȥ鯤RG3OG@{mGӯ\ڔrLY-N,g~fEŲzd>)~9LnNct;OF[ěO / G/t #2c[)?;bʼny.I" 7RʭY""84Nˠ^1g{hԘt{K D/Cs8y>6pO?jyXiӹE[qqu1UI2`/M=_+F||{}gEf@SzP &#AphKwk L4C0EHqRZ ~Pć (?RYHxP~#U~kSIm7›Ts&R%fϑCËN~'HA9R4V$YL^J/eth !;s&N%^gF?=Ia*'v>e_5_o^]\ ^p̠~Dp+uXf#әV)ddo>IQC}&G֢ue&\çҹĩtC! yQ #cǑ@?^@ @vJ 6_MKW[ PgT&ZRgqO{V{-,L;q&(NOQ86HBf_N:B.mAKCVIhĩ6/yhDU,TPb$DEAD`@H1DP`PQT>1nL=Cj,`ickL`w/rR ! G˼213NP݀1D@Q?ߒbx)Xr7Q8 [9]ʋb@^DgK[#\W?mۘM?V l8^kůC;5unUJÑ]6f[xn,K}(:N-r_Q,ƨ€vҀ>㐠52=ߛGO_4'}3%̞eg E@Ds⯏$@>d_(9ǥ$08%8qX'>XO0&"!Ղgu^Z "GF!-]gͼlپ<Ͽw=$|==L< BPֳ'܃k5(fAo{2DK+V/Ynj2rȈA;A_@*|J^^vnvx(}&z]ĉ GI\.}F('߼v;8XB?tӛ>=;4iS6}jrRiS-S9W#okpu\LQC[V7f$&q72Sm,oNGE.g/5x-MUKh+Y6?3ogS5%Ɋ !"яdO2$0{w9Ri7Nɂv{_h/mxCCJXЬnט/AZdrd%4g:>wq*\n#$ʎ|"b'{ukn2'򟮦 fOq^`;>Xt'Q.:N$R^f(̉d̗=,8Ԧ (g JBFlw~ 5b_zzMSYprTG*o98-`}\ojPuE1\0LJZ8;0j N(0]UC<ʣp]?KhdTo=}NǻO 3lՍ;YXxIYyw'9Ҍ7թJHY;eBG deڞXRZ6;NR37zB,KܦQp=!U|+2jg]P[\)}QL`a"U4SD/v3ߐ 9kGT/K}`ЈLohaYGBQ9c2T4#%o'',),.7BŨeվӜSX4x b P i a 0BԸC_Q%"1HTi_7Pۧ́4}>ǫ/}Z '1u'࿨Xؙm;FbkoWM PFX(`tQN  =VN'jeD|UfQv|*9Nd)袢LU/Tae/5MiPoO±I%Jvk=X|a kX*̌r|K \ఈFmr?[sA}h7.[}Ft*Y8p^RLje9ir[9}ɾ`Խ1E{fdQFC;E-)\$dxs0ғ"7NP!͑FE!K&QL)ӺӶ+TiHM $ &y)!'kww\1,rmrk{VwXJQFD-W@rJ,t5ObJZ֙qXbFƃ <r## J(/WXK!T{xI|8ӻCM! sʹ?tT5f`p U`> ƠHwf)цP*i'Y,Mbt?L 'BрOrX\%at ;?u\!'6^RH36 T!c열dWӦw=G; Z4D8X{{/x0KӔS zÖz |-+hƇ죵~Q_[%RpX zf&9e~qJ̒2xAK7q -orn"}d[;!p0+J@bk24?Y-|9gD9uy8},U)A}]4Tyڟf[d=qhw-[eQ׷ՋgĸeG=х:tx1['wEa ܝ[X$LR7)a5F/S짤ƯrxJHjc/>qDD=R;E30 2?2D𧚌Ck;GH4YԂ4Hj:tOxAu!8ԯ4} C2#)ND \kRJ'@uuWP5V'4)aSiUUegk{A4Hܲ?6?oW?ñ ] &:Owj=/saZo5 yx.3!2ݝ|Aγ |ߦle1[}4L ?ڹS+ 䂢RsJ12\]BLnBy9E+]E$ro 83HtO^Āo6[< ҋ"#5I"&_bG,4xsFWؿW/eً(eJP./jClj_ɺQ;iu{h#a`ZV%{mi2 W^"KxN3 #NϤ;8*&k$2Qx4hQQW:X] \Q2FCRƳ+coIե}m/(7E#LD.gCxre|%=%^+/?.,X_Ȋ'!1 M%Bq|kj QsUR,% 4F@N}1@B*F` $"'-i>mkՐLXTTI-"t88x8$h$t"]󐃐`TLJm`x;Jj +bILAPnIQzfLTm"z&FrCM9l)b@"h,Rs֗ۇJJȶN4Y hȁ RBJƣAҝsf7b BNDI|lhMIn,59!cKYF(Tlk29Ί@HU*5tKȀs=7,2,SOdi?:Y#U]",hYaJa.ZvlAaHGnC.p :zGMOoXv8y+Zrr{(m AB*~0E R_ucf/{W'kc.h0T_ʑ#g=.]zJ,:FT! ØPui +|1xRrPGB}}\[>'ﶪ̨է- hQ 1k8>M"tn }Қ8`{£P9G-?m2nJЏvR(io//Z|P3;,Ru6}?,?laALS= {ex5։- V&lL Y]"}o=*N4|6 boE;)tXRɽb!tKɔ%.Wݎ(0cݛu97/bC =Fs> zmԕK݈Ku1%솕'H&|sT  ywBa-$fAʄƑ}dK5B*w 5^K2x fRhE!sQ6rOn4*(۷M`;r kbY+h P9f+gM-~ 42sM=W+-g6`ϬQE<#1b fH*^oDk]@0 @yWW25r]7-V^!4N)ey(e$OQn3퍧.>uJDIśjV9~ +m2ΉcǨrLxSpl8qBx g2f~⛓Y).$")Ia6֌FLXs~.ו74uq>c?wRkpw:Gz]UL>t]2ZgqcQpZ"s]J ]njùj=ЪJ+ܪD^ltkrJק!\_w GR6O!;z\pA@JHKd&„-1z_AߧS+(WS=U~1tK/]BezFC{֯~Wq6CFY3ÈH`p'Ȕ3 9}d? ^:0_sIp.w/gOGΟ[MFؐU2ߞgɵ2:SC/K(~o'*e}95xTo af]ߴX{ "-@O#OmˈcKQCO3F=>h / ib8)Տ)aQr WpC!z|yo.\FcuniarhR2΍vT-@lθ3m$LXz!;S9BW04(TD*0TUqG4ee'e1_^irx'w6L;[> QO/fǁO̲xNM]*rZXpXYRBL (B[J{ca^&5e.\o;xk{8/:@RҸ6!/Xg rҔYhERØ2{ƺ|G#YReGƢR 3zW@ecq%h _;o±E0%hphACC)U1t37ž_[zʓ&hYY)\m.ShUm#_;g9V9nq]fSQ3t1T .oix6HϮ YQͳR9>6Jrr?u/+>^ݦ0X!K$Hܦu^%vc/ {!m.I ;蹡{oB*}]:gN1&gVa$I$4b^Uݮu9Zp:ڐ()QXj'-Ms wS1A_je:6O:b2C(VA\j#-1+CTACdmfeDB* L ]N99(.40Pꟲ>(iFDM-y =rr23Rj[aZ;M0S`-K(<[ށ^g knV`oY+ƀ> 2P@* ajl ~hHnm`X©:R>UL!7ǘ~c- tqN޿py^}._TVޒ{ì?$%W B(pQ{d ɾNV*Ol`9??I N\/;bo5%VjOwcDH}U{p6V僽}Je6|dZ@_H }ŷ^&zZ4*^fzl w8 oDl9o%{ PUIP<5}u*<ţh~tl=& :]g> X{tm߀;W+-\= S3]Qw]~VKo:7Aa5;ϸ9#jOph3Qأ\Ƽ%u|H)L~pV:]H\Y)kjWM8 J>I0^YDξ]׆➸Z%_?4!E-p4|oVqג+/:Mv HVKH;*0fd)A0z9e[U讀L*6Va*sE*DolW~,gaي?K@'WM@gAp H1G6kOw~\p"!`V[UyI<}OI1x*ԭJ Aۊ1}^ԧ÷{󶏷r$GW*4"&lYt}bDC.`QCh1\ es4 w08 DTKl}mX@x,؆:H=Ew(6C`XW8_/E/)Ō$aNLQ:1(\tod2wTh@ 5[h7^t8)p .VT<(pYH NWǫI&DA"NTG͌7Y]EF4ZEaFKICCS+[ VF ~SΧSwzvpPJ^{ǻGԦ<||K1|GDX&FO?$KG :8` "5躆ٯRYW?U\w3ڜ$;hƿs^wOj+Eߜ3auLJk8T$([zsQK)je,z}Fu􅑭cf e\9w"D$䂽SEeG7EO{x$"%b\Bk%<)dJ}M,_ #40,׊t5.rd{A2> a`RJSA,Rh몼~[= r~"wMLC3rw|ceԆ70Ua\}&Kꑤ@YMDz~78@3dSSQ t0 Bq pc͛TǡnjKeCB Q>dڐAp'5"8<TzJ% zS\ YjL@dwI?JφO:8lX3Ҕ].O=f*gjЍ?Rr|#d9"C!5te\=~m\_X][\ª/<(EGxzWiS+ 8eHěkŇ=L7 Se~)5j/1:ב(x#m>XW9TpC{-P!@/ #v.B";̗ S|\4ˆH!rޗ%AMq;| &dvhm;Z~Ex/Zm¢7ky]Pk7Sv `z)MVBٳV'S16 vS1u3 3W-]bL?$j^6] 꽮2t45;I5㎳%oVrj h?]lHRgGW?0*#6Ru4檞vQev}U}@NfN+,lMA[V1""jf^4B Ր>[7di~EjC`Z+CWG:9PGTiOūI3C ~ w˜X$þE~o؆i\wcD;q\YbKZ<;C@MLGw*H)qΫ >J_"J%ܪFtKXyP!Yp|a˝uv&AeDp;i`xE4ܾ9ne  _yf GRʓ8fΗ.d偭xn#!!b-t,PFSJx7Ƹ۰|5Զ?^$QrkHYXOL9`i7*/}mW}Zn 2 $w8զF$%6<ßOԫ8Χ>3ӷO_Bq{]<.ޣ%BT7$9&>C%4Rٖ{ůh|+cp#ť]jjn5fph7h;Pǐ d2}V{2{Jv7@ȯ8t@s봜oy~Y{㼮ay?W0&qlǓ4 '=}|XMJ_gKɆsa}>N 䢭N0q|1O^Wvig4:j4;x}f&2*JS9'Ij||2{8*em`{tK_pdGIMKQ$"n|/8)wwT*O`]%V'H)!-j!edr>mt.pf-RԊ߽hU|{ÒVߩҨ #m}/\UiQAU(JLE}X*-mΫʸ['4ƲÞ>몱 IԦd伟_DoGfRT:~njN&sPYׯ{mFkgF׽:DyG EPׇ;3K!&&H}[ L]c%_5Dz:5=3lON;=Gxuce`##Z<Kڽ#kF<ǎ}b1T`y,.%1|t]Pfsd00߱MqOB^rK}JFN)GG9gL'GElzbG%xx5=>ͬsggϽz\쏝n}O,?eS&njUfjhWf2QZƀϳWAl4]~ei5`繑ǵ IRحg:ص!/7pO2zQJ&{mɉ@͊4[YVVimߣtA7W X uDI!#g׭WFa&tHEQ8L`BdhkgBR_LtvL$ytS׆~@NT5Lo&[Y/#ϽjVqgj_\Eem&@K)JD*])ޭ???'/XP0 B`ekfͫEҗ} ^  FG',bu}yͽ)$J/I"er4Jce cϤ{Tfī};paE-Ok3l$`jQO-NzW'|a{wc@I^t-SR]* b9ylHNn@s0Z$\jn͜kxߝ'*OoE{#ۉ~cyT3÷>נYT&Ddҵ!_3 [=qʄN(\}^Rټ{]#l'潯PRȮ?~t=("^U3u?-ıotvt珎 $,#z SѴq1=R5Ow͇C9k?K$*>3Z};Nz Ӊc'-p,rIRn~V~<6.wAmX+}(MޫKq3vy oMwI*c:6?vR\ݼ]\|L_jr",.E_MfNbt{7Ҵ4/Bsq!W= 8(A@7t'~TS]Kh66N_/9i8vCaSr/lbկȇSVŀ)Qѥ3|:TC[ c@cbpo_47տ$@9~m|oD[k4U%wn{bͽ"VAzi*ݟ*ZmՒǦ6#[ٓoZ!R\O =^/.v\.2 z-fZ6jJR"@[*Œ}t)k.gUxf,^N+ue%&KŅME5C|^UI6g3@M%%K=?3֞? DI2>(A]&&_5+kfk1ޜu[~XBȋJnZEe wz`v]i'qGJE ]6I$6Ea穅{[ujgq$BRo`DzkRɳy˛Q,31뒗)n#z~$'lvyQW5_ X>2^tٟ!/E-겠HnaYR> 5v %g4nSm`/ ݜ.Y]!yKԨ0Ysm?M)1L,8{zAT7 K zm$M9qK>O'"߅﷋v}M}t@qQ@n=i$-![wKG+k(ubWvee66:#V[~,OBvkA"bR(;b5T'vVj07 s%1oRޖZ%8^CQ1/Ruovwrs2u9 &2vSR`9]ZtQ$x+XfUY3XO*aYWaΑ)ݒeÅU$B 4T__!pl>f)ׄXaXg0H8#of>&+ufcc3$]3zR4G-l0IPxB ƕ#߂4S:,̩tB|\@?WvhE & >53IN% ;=k IE$@*d\%1Gz,^,d|xBҴǴGlף/U&IlJ#Z&r_k'\OĿplQqL3 1\VHJz wZO+%73 o1@(ƣa /Xɲ ]|jY @,p#R3r+m/x~ؕq.H]+ 7^Y.>2>H2p"Vq+ZAaĜ—PѬ BMZ1쇘M=LP ͬߔ1D[Wk'CB1A #-" ʞϡz7L` ucWvf<~˄u978-: |ǐA (?7Hߖ溨YN )Nέ#WuFȵI>)pnUGu7E7Vlm4hAoa# T Rcl*R;(d:l~frNwo٘> nA?̉٨ʡRz=si,S4щ|,, x)ZRWͶ`FPq3MXTh?lmd&ɦφ@&[ =H@TdvZۑ LWK-vWڒܞ%|O0j#:rƦ}8AyQ֗{ݼ~q7$X L[~^Ql%x;N=sY%o(.'VV/U}&f߼F jONDjB$45Hv mJkٞM&g;e̊uu(&~|WY 9gq+m[F;Co@Àzqj184"2!#h5+f%"VFbur Of煠q)\з,zΕܓ: eAY2mR9?WSH3;+!D1zؽ\1|yD(Փ~IhS#f gWм} xy Q&o XRKK/iAe,C\qf>}qց'Mv=p|HyOo[ (q_{ %!xkN%w{jKDw9T36TLjp~Do78qnKbwif!DBTnUuQ:ïoVy'ZvbB b$rݸ:7{ۋP'JJO?N/j8)MM[؄ʼ3MًC;A=9c#@]rةH>j5/Յ,,20 (SWIߩ辜ϟهdau5UL;72|j|)]w\y|q'v{>$ 8CVoD,oCV3Kzu/tV -jψY FP!24Met'Ut=c|L/#r_=;n!Y~6{=Ć SV OaB4A/PgzjIǩ= `վovu(@XDӯB_QbH Ja?E xf|ן֏0m:Xtr+!5PwmqT{sSu]XK9,Rʼn! ߡ]c7[/*QH²%=q.Qe ؠjUj%vKrk!1 CS 5ЕM}:H/Ud(}XA84#Xw+22\jR|D?>DZƂ9&#@oU);[V7+#͙e] Jߋ x&d=16Zho3#V ϜCQXȸ806JȄ wS౲AxKּw^⑆Po"7sGc[[: Ux+\^d?N37< c% ] f7NMj Jxº\|}dM3r 6`![ ;<~ռ.K=_ĝHa_#¬1,"T_Cܘ8 xE>Ƭ%uߗ:@>gs cBhтOA4.Z3"}m*/*']3YpifA{ىJd*ȿ.zqT1X3nVɩt\'In{@TE勒$3妠+R' ;#s6PPǽ BAnBYӢ]al/HN'*Q;+q` O: K$KubB29hVIt ZZ,{$_Ѓ|tK'iT76tQ9-!p!nw9p$f {]MS.8f@(O0^#T׹tur F^SHOr~" նU~%[;YL9x_ع>>]ίtޟ>}Q%nxȼn'J% XLxAެ0] 7ct HL[!` ZGؿϨܫy;>e?ڂ`,SE({BD3F~ǝM0K}b{t)!WC?*vlha|^k0z{*@Zƞ) U kZ * kP QiQ8|KT2!(K8hﲽ#ls-Y%lɃ4_~F-3bgQəLQ?<r$:KM7Qx "I/J9?wZҸϜt<}7IjJvxi''-PfbG2 UaO}~fo}΅'e"jrna:̟c,-[K~äIvR>ufY c{U Y!#g޾XxcÈ2z@,SXAQP12ǧc8GDG]u2[ƌeqM(qFcGفXE{rƴP*ZIYA1 zǂ.1_"@jQpo8_&_ &dvJEt\bIm"^D^~9h/0s=Ě; r1^+鿋gƝۄmQs1,x/XOȘO2DO`?;r`cV~Rk9T?K o#Oq,b6"w8 i/f4%؀@c4dOZ.}v3^|&[Q,YfFM_bP| *5, Ѻ?q:{(0 ]4Г1dȶzEiG@M>nFNI4}#$XvA+ y%(/:|;:MB5z0^XsK˓ L@О^ J|m>, sbrP w1ژ]X(0)t$~~lx@\FL!EtdFUTikno,SMUxh==Ei*鞨ܶb'݌4/W|%mC⺶4cI ^ G]S<RXA&yVlK;?/[&u eف[o,s_Sⰻ-ڹ n\Vlnux'RI[rvsr JĤqfkRb9@3# [1i`FЪP3oyy Dž}CV|`Ü7QYvY75Z8q/f1{cq" 6@ʦ.7=?AMͅNOڒ356Π ݸ]uq.~O[|m# ZK)J]eB\D_Wu!T}|3; 'a ו7=9N6->`vj'1+B/E?7n!Q3Vy G0S2UIn8)z7'<y-Կ"bƹ~ϛ~sVJxA@f&psir|ޥS,=f+t X *o5V; Q$QنƁC6hUӶҿ:?ԻDNU'>ePtpr57.T1$z5'()n/l 9@_phʈ[PՖ^Y@ɇ":U`{Ÿ EBbe挳q'y=rKQxJ$D ¹loBr&g_ "1wP{nsttNP'wL03bWuq }a삯5 (2Ou8<*wG)wx#!}m+ 5aW%jF{N4K)o87YV"} Wj"z>s|1Q ,dܽFuy2K_й)QFm)H$PZOZl`?\#f:fc1! '='m.aKV?l=e{'% @:hLt=ϔRPM L ,0HcR Ci9Bѵ6QHt59i8t?㚦MXSskY.%^性FlZM8a`M2pZ(E#G#dnEI .Oƪ:~ג$>c|8랏y/_E+vH{gi}0Pj$83Ojf1!rgCllѺF)/hn+*=B־B?Sb?@bdo47LY)gNꇮ淖hصL#L=\bj’?!-rV yC(8 $.^-s}tq>=QG{Q<55+59`c6U) B+-d+?|U %Z&˜}$צ˓R)SO 꽧W8bƊmz.g_VVOD?9I$tLǭWZ 1ߘyi]U6pZk<Ϩm3kVv:u /-^G931'i_/6< A xz3ӻ*u#R?pZm^-8 < nsPr!  +̃O#tu$͖Q2m0]` ZmvO$d+# }) ܺ*3J N:G 2axE6,lJ\d=˭@[%/{{P'ޒЏdYNmS⁾j]xrmc(Q^9)|Tjx*"!~AO&Ao,}Yy_qro푹H+ØʔBY&i\_z EXO_}b{-&0~ MDl֦@.QwQQ޲ELƽ cGKJ|4 .AƸʈ.w@tG<Ɉ5u^tPPQ'Wk__V;0l2U2]dSJ'Qy Dx{2͙$+ wIU&<^bFwHnm5<ݲ*J+HA%kvj UΜ1K&zަ Ϳ cΨ$-' ʓ ۖb_$eL_pn޹(w4a*>'hl3}9Iia0 Jœ6M%[k 1 }R.+4" ے:Es9||"Sj4ysH^V~܎C2"oۛ%IшR%b8;qO013g"[ٙoA Ц{=1)Q qe-@3+6٫@{x/,E Wx-.\'{.hi} mtn|-iI-)j O<(j"sQtLvʑ/l@Y+ʡ ظ ̘^ir| 8=}:oTf Sj珍Lͳt[G3ivUvr!rH릟/_tlFU]s]8-2>֟oo$^؆beLYhE1&Z\Ζ8˕NEM@Qw҈55`ܞhb([0eM3@ `P ^8߈8Į72f?h6syaGFm NV2^$4>A{cF]O`nQ>K~e7%`QI(, EZw&W . aa5Ag,s#h(_V,쏯lQn'ߵ}ɩazD9 Tv>⸤*p$ÂL~YAL#]m6^l0DfH$?40`~m*ER{ x'Xm]ANpa1\{).2ނD3V@Ibȅ@t0 q-2Ge$U|Uӏr .Ý+osEKg.>fgé?fhMWVJWXqgs,al::T\'ɓ3Q,ZJ9Zr4mg 9n,M R>z&E{qTݖ;otȖxc4}N~ Pt.R}Lef5USѭDyR(ys3' [B$ژ'o3Zۿú[ֆ$dt]t iȊ6w!HHo+TX$cP7cR O܂6)͐#10HBWt%BzJ&*5PQj[*Ki e/w* 2t2QbͤLb~+m%oK2+ Q %k""PiBcZ<ʞ~>EV+HPI.IK[l3̲% `&d3;,YwLj3j,XDiFO1Y5Slo|ɼ)PvTVUbTѕŠ-d b|HV$ *எ-.XP MjT>*ru'-~Ģ]@O΢0+p;gNHz,4*q`]Rƀ$ F&W>C۵h x3IawԂrNEy#'XKrLɣUpn0fӳ1vi54}(裚T̫b[ @\N?cXG 6r%4D̚bT '+3idNYvo ǯNŢ97q*8%^ ḯ>OŨݖC{:fWʺn9@wIɱ)'-fJ6IIRBfkEC; Tw~{#Fթj"_R[T]D'!+2NEBxe E%%B0C!—& *KSEctFNfP2X_p39K p;8|1L\`PG_Җ$1 9I!Mbvm^uf|M;XD#$20@v5.UĄPtSff#u?Z..^΀olJ5g+XxW?0 1:F})0oqve9ucq"jňqh^i+M% ++%X^QhkҪ=*PA瘝tFDg ¬.B9>UI<ԢJ9pvTDUlx146wEOM5: fE^9 ^\GGTOn9޿\#ŷ!/,4Fl~*KU'=.؋zs;*G1ů2|HTR͘&l]fö;YLt[PZDfi.>֯qyE" CȬբ#*_|PM \JAZLpy9lba7a+}))r[IYfKlɉ.8ƃ&xwi׏ѕn* NGqRV{ׂHzgETY)۳ [3&fCle jPFJ*#.yt4V6 yH/J!<iQ5,O\T&ZlAtfD6P|~QoLlǗWC&[YP.6lR+v00~UtO,\VIsunr+e c 9(:1L4{ ܋Jpb/+a ) /u" MۀJic ϙr?bVbF*{>ɝ!E)i3vFV8i_Ih:YO 53O s0Ak!#4"4d}6FugFpmx q[gV3Uۯ(̀9hSXi?v4;_3K{CϮoR=Y/x됶/p@f? @Y u MTvՈ_~7!ʢ>B 5(5ɬQ)9bByZ&'ܷh.P(;[ˊClU˳sje !x'zսaGg0cpk82=/j*QWy>1ͣNEvGho.k*Jq<ϯS@-:MthpרxԵ񅡘RY!3$M= PG\V}X$7xkm(03eƘ/'«*]g6qY)"yFci&9hMӉJ#$9Z5K^H 4xZ$}d-= |sii߯~*E >DS|>%7@Dp!1`]媐f,0]0cI)ː߸5Z֥ZgZYXE(9nH48;S!^hS_K+]_V$9U^*O)z04ZTTDet6R9h|~f¾3B9䚁l鍑 FvOP3?\£떪1;YH䶸LK>F?wnNB^TU_71LJDG37YBm`*#ԻpPwf0? u.Sk >C;3z׳L1B˲ZW[u sy`Oh'fHr!r(*bjPC?QU-av{BpN7k}} v漏~;/ACH4_fv?5Zsinߋ;u cϗ/ڛn%5(A0ɭ&^x$ʡF7/tu܀*AދZY}zL їEN{0v*A Ӓv1>hdb0:{a?C1VY"´wPDw5kƆ.& }cogx\hStw? ;߸hGˬSOOs5`U[Ve.rQZy/an~!>lK9N<< fk$5O08 1`BS4pu0 \Ցgvw_7d"'l4Z!q+\Q|BLh58ܱ|ڤmnv;= iwa7PR\በUA{&g~j@M8TZ.K}"VND|qZ TJ}qhOISa˷ɬފHTCKub]OP]>ٷ7.5=_ Yi E{!+ؿ9fSw75ޣh$ne, ͓䰷do>1(]y<.))`E)o~V6#pqQ:Y7 F'Nh =;2XTQ0GEǀg(O8© F. xR=(^x[꾓ɫPרb'v0GlSO2^u #1}S Q6:~"AZ˴ ǚ-` Cbxe<|~: {y_lBbU"m6Q4\^XxuV$Rv?},z۰0_;~Dg|VtUN⥇iD*2R .i5^y-[-Niɯr.׹Bb?@v^W_ߥGH?PTQ}( $TwR-dN~R w}$~L.wD=x4@ >wAnbOFVI OrMʀ!,vqӸC%Ik*.v E . kضj0O4 ,&}nf"+ +"-LBA$:td)ToD%s#F4Jr;p~6Ҷn폀t.}q]u*02EwV+p EyGqnwp6[=" ֈ#ŎwԂd߆;J ب/ Mԣǫۇ LTmH#=w}ټ^\U]P~SwwdzMtp&5jFͺ۴"QY r( `h؈u q+Z1.oRV[\tkF= z}.iNbl艾rD0hn}3XeWG--Gk*e bwξ~eLykyp3zj.L xگun ӛT+i` -V!e\DDV8MR=v4r ,~Yg| )w`|M2zW$Q?![:#ǂvSq,"rQ.X A92hÐ'yk-4,\ >F|pu(^r&IZV[u>` Եy ܀tqSag-i,A]>%#=&[i;ak׃#wZ[fV<`& O Ģt)kdRKZg̡ oɧƒ-L鲖 isW1x>K G8_M#NS7Y"Uww(,,#Gأ(y闂v@B{v0_4;y)ƽ 죛OBONF|<=^|z!jq6PГo85M*CLkQ9 taۃua% C:LVmtrͯV}RB}*=U'#=Wa ߥOJdq=l\>/oíOPVRGs=kxNT[_Nr`k\rsGIS7y(MF 4ic8 cԴX(7qX8<0{X1ptǎvxʡzkbViDAd'=<A,!o'{Ӿjn bDZ?u^fAsҽA5|:c\ )5ڟUpך1;?Q/,s CS7HЬt6WVyH/e;ڶ+7dwąjqek4 [p̆6"50zv02ؐ8! ]̅J+*2:ERv)aKC=9j2&-Y4x"'^*jqWo̡txVbG۔܍ಫ_! SbmStC9?L(1]a^psm@NZF0lN£gY0,ꮅ TKd. W_'U%S e2ȣ𞸉?csh~`BR_ qPrCL\HI"`&-o9SZol+|3;?I ԤdABI܄MxA2^(`4|?J)"J`0n"%i9ָzx:ɬyk8f$& ˾W_W+RSB)>Y +f\6m6L0?#8tKޔ;&I@D,` FÔ#J]zMfMb@s3yāpmI6N^ T֍'ˤFYI8lw.5)JWkWow("Oq-aPIҫޒ [qFn&*;V)Đ*0Nz1R2E̮'>B4O/J,ix=P&u$oiZ6YV wX4-8WneMA5b@8k׉ذƺ{HCpjx:AAIhb*ij{&q; }FɅ*|ypqtQ%-ؗ/ՁJI=M((!鯞0% |JZt#^trC%([g'@m6S)>3%-e{snX\|W_t[tp!9`&da|H]|w+#Ex2Nr 7_8fc4nZaJqJ_2m/^sU!f 7q2D"8ZyTg0փ FY!+[hTL0'A=vX7 ~<85I.6]y.bMIp`mj`Yǎz[׆V_t.)$@apk <EnTeE)OlwɸK1} ow$pNIH99_*i)tԴHfwو Xʄ27ŭ6ޢ]-6 ePݝjO( 6??JO"iJZī:#^ ;{XT]dטc}G3RG\V3HdI0'*j40~fpMUf9P"_DƤr #G,]rIS7Mk@P:k^C*B-džƑ~&*/E?5;a5,X:yh0/H25Ufd* kƉv]|tl_^F"tG2l`+c6.!j;S'|rdB8αy_!|7a];|PrrU NoDV n$%aPfIx˨3'՜FI/݁lCYܣB`nVYF+O>[@&LO/̊[Rb6n?Ȕς97*3]iq[Lqwpc} qZCd<*Bְ}`IjbG.Q/0#jHSSUW)vdaJ>0M0tcYXzR XWM#V2u֥9 ؅1C"XfAzǭIw+A{٪6tAzHFHtՠ>) ;F6@U%ls?j.)'$V.ԟF'!.:0,3^s!DYߑ=G Z25YHJVJ :KE|OvUZG!иd-Jz_4B'd:= E`~IK4]ȚplM1EhḠ zmhTuT8^{];t2xw-o؍2P]!a:ϟ| 1s 'Y9 و]ـ ^78Fqm@n ,hb˂A~^(.&ZnP׸6$fc?+]`(0D]ڌeC4= WTjZUE!uP7:ASJEXO0fd<Ш $vs!fk:۟!){_9,m%҇iPf5eCKsω_??>Rm?䗁eWa/U2v+^(C=Cm ؚw~4!,ޞA0IepH1c)S_[ǖF1K>Ĩm )nKɉāvG:q]QӛoK)>~@;ى/:$Gi|n'}n6 ~WbO_}1j#Q D, K X_BAB\<Ļ!dc{U,nOO7TܽMy$qv$e}7dN. l*2dt$u-LFW 2֫C?{t2hlkb+UaI@>B|\c |׾FT2l?uEkR $}VU#j Y|cZe]K߻d@"Sf3>P-v;Ut(42.ٷ3ۈO 8a< 5[Ss+ xvEKmG7޾Z ɷm8T# Z zޮBuٗΰzR +Z\{u mDg-{׳p uͿ٣rp^T,(wok+QҮ*!=/ x븐N6둼W-vPIw.qs(꒗M;G4k}^WT,~UQ:-sm]1ǃ1AWc_NOJCӪo#^#hK( xjL (1}K΋*%vtЛ&à:Sp';Yoi2(02j8b;ַ s2<0#j_aj:@ aPX=W[wHV[k}jGp 5n\U6&LKco߮.CߏY%5N{5k$lKeٖy({ &%c4-i2d5$fF[E4{Ky `_c/Q>lz=oC-=`"ZÛ>i~粊P ]ɏ [Dj`\co&xcU![p @jו0@[K~@;xAb 9MLlNِ>D%ntpZKW[{Cޠ}@G]ґJ7:/b7:f;]o4GRMn{_uA!ک@.zwgGB`s Pl8/g */(PȽ:gGةҙ=`U00([p1[L͟iC*|^0M1վK}`ɢ詯q_51vNy g qs )Kw`pS`CSW9;f [=Cp!➁.#%)nP]̎!nizgRzL`l'ڊLϙ4^2񒕧 l 6vQrl9>s,Jyf5gOJf.ݒX;3alSP+*/_-TZ""e *.+s?"͑;T?K"y*`"YIg]HHq+d¡ẈSoF !<+)vzB  !@ĿoO 5[AEMrjdE^M)~r:D-uZ>OǼv^3ke4+ ޢ0k|~|/-& KHHXΗ)hf!#N g!&sI\s[(052v7|&0+xcPW3by0Z|^jlMH=gޗZ(S B jPBAp`w0xש_ XT ze>ȃ47ҨBMlWDCuO@Bgܪ= ? xV? I5GW*p=@0Е25F] HɀC!~'jFFp<[^#(ɬ4߇u؅0u~{HL2>99Q$y[?W1,a;֣[@mV 597Q}<Wײ faI S 7<炖!-N<-]w"QKQɃ.SAw?u"}UXecVD&sUdplD?ԱǛ|uҾQnp-BܙNަloL5`.wKs(Ȝ#4O'I@|:"1ea:=R ]v2G]h od,I0D tu ]Vt~lij* /@H yl ]rU´ : csF-Bc +:f^BbL kt_z3ӮeKZ;8k$`gV .{x :C&̯c}7ڜq_dGUbdaB1;tG2Kg3@/keh}֗"z>UоJ%q $D7R1 ih%s`ݞ4KH1q;<& `h"*<<׌bo9^mJX9PƌyeQ45ϚaafF6+ N?* ݁FAC F. LO$T'T?|dքNʆw1ӭTye|-G6T>~Q e:xb>& jZ ! qK8wfcwyi9C؜:\E~=]# "nʽIf[l* D"P\q|>]ݰeGܿRc^$@MdΏqJL:?y, 5VE%;pT?f&V{2 =8V<>`w+=U$ϊ3ârs?yO0A)=(ti*B%#;x Z? 5K1BIk%]Q8.r]OሱV{ x@N0'HM$(J |,otm \f_ע-> |wN`ˡWΆBZdTgKm- afiYvWRPȵʕV*+A8%P]e6=mtwO@x͗UTnLQ2q7#Wo#jj1ּ7fe],T+^!DneҖNrI]Q1g'[`b"vWH{-{MY줹h=ZqǖNFΙ[2c FopEz?Kb["nAhqQ楐fj|euQ 82 4CȴmuO!E#r|KH0(H,Oȝς;Z348T-}ȃuP0"5GL"6@E%YʹJ~΄yԃa JMUaE=J>bԝ[bIԟRl{<-G#*bI$W@H;qd 1fFM~JYaGqs6ÂFQ|.ZB6W"PҮ1dWtś+ywz`J>`NZ\٦;[lVΆU_z]mb0WvXxY/4 Q$/5 uU]}L=eWJzQ@:)J gC0hэ!n6ž%y K|\lsx|dipos(C^?8WU *hU;0d( +"n3|0SH_e8qXrsDEB6Vr-+H~+>[(Z8_UI@XQ7pDXvvY8=ےw,ne7zJAZPgRY.7 eVę-y̿!ݔ(OcFyF1ESx0)Q}w2Ơx쪣^d;[sTP ƹuF^Cso(P;g 8;0YK'-^}wcԉ>MVsR”lBmn7}5|Dke,k#M9e6LW_ ܌vL8V`/AJMG-q* E_P1zMˇe@>+zCJ[TcSԵj[} N87qC=?)?.'0L:'NFL{1DFyac VoWT$ޥsT./n5hs#Wfjz3UT{-̬ 88nNh=46~Qn  P _-,;=DHMH>F\ 7ж+^2~aFZa/8Vӡ}@!D.hpq+\}d%F8cpHH,|7ŊadPR-<4#]<W ~+FqT|$ereEwE4(؊GS#W$դ6bN[JBwrRhMc }x~$ze?Vh07sȢkQF'L=5}msJϐTŒ9^{H=5@򍕝{.Ԕ-.՛ngqrʭ^gXК~kB:ϒ "4gr.={쇿O,/Atԁ'֤j]\0n6t/͹2 7t:-®&ܰ3D!s#]_O,Yg"N\;iUzUlPk%5N[v4d sִrlRK>~\YgpiHARbD}uȔ  X4^i c6mDy֎ 4V}MKZz4fϰ NO"VYU;?Y7S"*z ?u_. (1l t (3i-xjCC&$N¡ūH 5\h(_g+XUE\+_F3HOC"lWes(-Tl gGB,Ƹ :E/ 7U2V=KH2"D4OXbSHY`^Y(N$8޺up$.@${ٱ_;ʸF{:lֹW WM5'j5{VˀBfb͓RP8qTEg[6PD}?!$!!n r>fßJkDe;Ga\9lj&ۨZYo~O#b?&Borz|+W2vF`/z/B uݶmeYT[?uK%_e`w:<ThӤIfs)' ÍDzo ͝"iju{ svBYBa.߀(/K]=Hh'f<R5F4^Q1 @ɏf9;hܽ-5MB*HdVRʲe!zڌ R: 5,Ek?x<;ډo$G~#@O4_  k!םJDcoNf {pΣ$Wz)Ժ!srEպx/ְP ?0Inw˰?ð7LUR?*q? Px-е[] yasv5PѐwdBnI+=(h b oN8-{a򯣷cQӱ 4^^$Lo/Q0̘ t*5ȁ 4 3lפ{8Bv}]D1OkɪUn =by~Ki[ٵqt ºNءM}_ajB0\GjK"URco鐞B) mXJ/1% yx65B#S%`KTPo˒z{q Cc~dҩ-m +".vk/Lh=rtHc5L. Nˏlܑ09Mykcr7iTmJ?05Cjsi!{2{~hW7֋KV-܇ID|2w)M_`Yʼn\iU:ŷDc%x۝3\x8w*٢)3ߓ7-2cږYU2􉈿ϫ;G?rL흙t~ Lϓ_vѸ\Fȧ* CA:)pYm{[hK Mb4炰 AL}hs;C†C7!oyз` V ږK*w:jʮȩX{,"R5L%:["̡Po6e.bw#Y60AU8FM{7\͌tMhDlޟ}6m9C]\qkb\,2?aPOLyJ.D]666aˣΐ*ۗ ,B/ߧ=}Y{Ӿ-Q0o.a- v@*0A҂QpꑳMzg%~CZsG1A3Aom%jA WoO6Xް'go~ MߝZImWkr 2)>Ϡ Mw %p$!-DQ۷I.6VGM̌@׺9$4^<dw7..p?%%Ld.#7ه 2smI5$/e.Y#GN=xPm!n …b?dH 1fh3&td0Ld٤>? dMnY'5n[2R+[NZG!"Dxa,mzuLu &0Mrڱ6qbə dhs~@$*HΏ\`E+?Dc$y;?5a@bQY5p.WA5FHUFy#-b`6݇v`y8=#%8 @k 4Zt0p^ګhӖ zm 2?vl8NE8+p6ɣ=&J7Fٮ<b>ǻK#Z0g~&. -kxBg޷٫>򗙘ciIP\-mhxna*1Fքwm ɿٯjw +X*~ vzN 󯨐 迴,sDDyuNk6Ƭh 8 9k/$Dq *yyP.`jߧu>o:4IwU_*67pu rxT#L kȝ[=Gxb4)V^ВMod+C@"v b׃k ? 5je —Kgye4WaƁd_Bڕ;W?.p*Oy6 ~x*& <ݲ+?ɦ=˵A2gA63730,dӕ?6pMla.dV+fF?Et7e=iXldOմc/@0$4h hZN}KYI:ma>uߞb/9#&I,1dp2M3BV~Ύ.5a9N@A-Eqo\$x7) qc9Q'k{1/{sd ɓvc>+^Dɮg1s %LSCBvi8ДQmV&+RNeYZ%FP u"] `ԍ%d O!Lk6)n3 2|M~@Vi z؟g묽Pg~H9Ҁ&}Պa9"!EY& (h@砮G>uG%z S?eڎCآnkȊ f{>Һ%ѵD03++pd'+eKKRg)Љ:+Ǖ6: WJM3GF~p %}`ƣ=RNQ#@iC|]ELα_ Vo,;C¡aM[7WTwPVȻhjDm &?shӿch-ŻEh >!@~&:K5b:HȢZ E49/r=  mJE'}v|5 T+"5 mͥH6gLXsyjWч;z "HK[]DpBc'"Ѫ6!"Lv^XZ4z8'Ra( +pe3Iʸ%̨z t(&zj3inYVR wtQe}MľD)IX.؀elh(u!\Q,_|`:⅃7%,TN&VAE6f|! by fei8|f*A {i+TYoH/{IT W6LAJE" Gf?V|Ep*c3!]/F|D`mtIg(]sC~8q`|?g a9ɂřm ^׶O3{ ÝŮ0g "3ˌTw`kvp"!>)<&mW|K5ZX&{yXHBx4#m/ ıPyKp^DxHy8cjcJJ.%Lh__OxI(j _#)x*jW]WPUd`[JJcdR~Y6M(*ir$'iZhZ !(ёOKVƒ՛?pQX[H""`)) |BE|'gEZ=i*u\vSZˊ)ak@935Uw,׳gLT.,ҺJt׈_v"RTf]IQ^Jr枍ƣs#6w<`wn:ߛ@A:,}99_Uɀ\∜k>b!&D|Yl*,AU<07/|K+bA=n\IXWHI (N9PV:#:Jo( Ѻ2 30#r=x`Gl<1Ta}O/#02Ӣ 3nO\B̞܍㨎>l@+0uqo-ЉV5uY&4;O VkiB%W؋˄:2.#rޒr"{sD?ă}Lmp%$Ǹ W烒!`vቋQ6|r.hVX>ZGZDp=L!˱78 ZX RCUg$>[B!.]=JĀU9|.8'pe;8s]f}۬e^kAodbX`F`N iV[muW go0s%)pye|dK AGZ̸m-Uld/fv C\v0p"-)SJVeM&(Xo-gx}Wx|o!UM.Ap HR?u .kk ҇XYN Nž/JoX3F6]F[{r缍`xrob}o bgN)B(1+a(m72 LH3E-A^?MK3+/K+K MƩF_bnWG2v^g6IVMe|Ȁ6O'X%JI2k.'\^+f섘{S02ޘ< [L[pUV9D94D*/ =CnZJ0+. #;9 #O#Jc=/9 1d1oX!ԏN6)\ +pgHwu`D%B<Z+]_Ps輤ʁ ?:NP 47^) xl 9AөbQ@W)W?_ ! ]?#S}s6HTCmQx )~ʵ*>srO'UNDaSބތѝe`z̈́$qz(࿼@#UL-BV;[mG͘R'to t WGpm͚:UY[Jmll WM6nWӗby;vuZ0E[UcGr"{k֡ t*4f?2*cZBˊ uUq980uAi ȱs.tqGNeCJ@yV>IN YzGZ:jGg祑U^h L |m#O֊j-9CO(xD+>op-zK(Zت̃Iٮx>dz3sh: !8@)E! o(;<$~8`ۦBhP*aA!G rrCd+lњ)1Uַ͙ӘkXӃ%yф}ӟE 1[BM2$\ >+nkiWsd;vU̓QW#ɚtGUXNh8$+ >u񍵃A 6ܚbQ[5-rh!IwG 9ӭdi%-f8Eӥ&|gL շ(H*o wO멚hpUW ɖpGi-4q:T_d[f2k(h*wh ۝qkc^L>SmJ*cZwzP[~6w\#+JDgH<ӈ. ʃ ]U'8YcYg ~D`f6^kD(+R`rxOÛMonMk\ΕYxe%kT9ւԻW'f<:>{O#^ܱx=?` T44"*g3yFT_r,9bmEyPgR?ӕLx~;:6/5&Oȼ< 8 EU鷻/ąc[Jv[d\O@ ܧ$i2ʍ*9~Muh>Mq^XJDZRm>At9j<[.Wt: k[2SQ%.$+Ig4=^8_|lH l˖5AM'RkàQ#~ -<4`{0J,zDVe넡֙MvT˜^n)4nPN0jjQ\;0}|,O|tĄEIsĺrKZQZFHa?GIPjՕlX).THh[-v cj;YI,R^7K?w ?$Ozpp  y d%-_ey^r8/ҡv[!koڔll{ֳMM uֻ)1U).2Hh'(h_zgQu؆^P K =reZu2z1ٻnhvQl:g W1}R}vNk ߋHpM1vL?BW UDky!7"Ep3K? R,:5!l)8P*ֲD-Cj*U3AZRge`[SKF#Uou5th=S<8&%NBzMQQP(Nx0r$L"'QVwz'.lޮ9C+.$Ďټ Zhꔺ-ӗ#0r 6e]}\^9j,=#RC&,|,D.1feOE+t{Z:K=,R:2:!X> X*:XX-[%ÿ{`RGfvSW!JN>XUeFa|hoyZ>f;0 $` /j&ޢD,%gn8$ba\XK<>1-> YR-@ XRqdAKliFU y FlGb͉.je|BKۤ"m~I=tv!{6XmB8 |;{)ɮe ;@飐k'G",7LXM<=εE/)n^&u;d,nmfkw/L#׾d|omF%R (y hwZ_^N ŝpsX~qTBw-rGy^;WeF7u${P3s@7Oylj^arda[Vn [W*|]Q}?5fme>4/8J(Yf91Y ܯʶs 2) iBFn$I3hN+wMA 2mൽD#LY=r~NYH7(Sí'N2.m8Sa*N-كtҹ)I r'Ǘ! <;[*}2gMG a[ğA}n0AB\J7[o=.m; 6bfVRċo{2n%m%B0wm HĐ6gBHFA&9Z3HxFAg?轅͢#ڇF$^-.FgjbAv EViAn :L DboR8QEo3:_pQF'x{GJ͖"m\YϠGqR>[4)sˍѣmBEF{YH-A'C*b1 pW7>,Qzivs6Fgz"`z/p..gE<:j^F(v6uzJNZZA2̵2Λg*)_nh0S#D1m5J/Q{9_۞\,> 0 k}x*7+'vĎIk g,m >L@+[2 sv@8QOC}dܘD{(tH,. FOW+(P.WO$ޱ;'%2Bji{pK͎H 0'be߀+yD'kg}^!kWP2k㘔K NiMnݻO}Cx[(}`^KG63g+)ONl7HW'Nګᯄkǖl 0F5Tj:<Cz/(nٍ~d,j6z` w킊Aգ ׏lUucjjO7YsdsnaO8G`Fs<ǪҜ$3Veh:̦4JLEUWTz dh2 !^䵜=PL3FOV_?㌶Oغ&YPBm5B|prvPoKt)1Sۇ#GOۣU1 MMWe_|-g)`~Rб"tQ6ɈPuj rZ9sn;la*55깦~\MyxSL^y?ˉd_] vP-puɒN|xUR}HPSuRcVXi+N(~K]2mFqH : F𾹃ª1BVxK.q7f nD+ =Sx$C5jREjx 'xl@|1N qBOrt*&}7 Hfhؘ^H& (_[L~57R/^Kv(| zP}~.ƣ@ T,%lZ"*hRA$$QӪϙEpސA z%3B>?#d;\Z}O=NyX:(N'm[zB~fYmt?`( uD:뺋{D 3y*$axpC_w`tȶ.L6`1 7{'$ޓT&o9'#PZ6ʥ᳇CcC:k"-˅* ]^`xѻ˂.ePeϙztԛ}Ddv ]f)>$aj- Mnھe-0v55amIBZo[>!Mu&sZ5Ƃp0S|:ס쾏@PD$75\0.dree,rӑEM28cfkop\e,_ l_;k*4#$wWlH'4Yu}/ʵhR ˡ̴-hf 6nG-:}@}-BZr-q5۳U#PoVM$?T^ʊ$x-Fu}m I n4%jZ-oIUO?܂lDŽ0/P*|TPxAyH .r166;&[Nl &XUHTgĈgiq|3TIm#R8uTgn|Z EMQ'Lėr{1?Wp..lR {bo4Mӝ(-%I ( ka#L?+ͪ%6p-2-<#;aavú剎j}سnG'.ՃPG!Y!v*q" [F"7*͓)a4 [k{gwԸqqc3{I.@y4blDb"ٺp(Ϝa! :Þ Vu߷ L5;bU@Un#=V:`X VkKN#1G9ƼT,?,4jyJ[W<%N|䐾9|\wrH?@@ uG1\6pcNdx$$MsJ84.'6eUu[+Y@T$_^YC\cک#7cV-Md3nF^J@; G [ckS$Yc7pimx[qlH+hLfISK[*;bYQWK7y"[GB]$."ݻ@N.{~gy[$ P4F&sRQG~I9k\0mV7 W0olyj!'L-#80#Oq&]BSGEf,[9Y3}:PBo&yKb&Q euﭏf=y <~xZ ?mݏ-\Ĵ^>՝=| ȵFsGP!cS1~8a_gdbaE}ep5eaLH} 1{QS^G&p{8:p0տ~ ]q+3FI`5f%K@Fuq3BoNd[ZwyuχLP_Fw#׽(i*(+r Xt/$l顁Ш$0T nbD{6aSuqM0.wu v}=r>ɩU JFu5 W4;frFKVTw Ž*2/Hxk1䧳<Ykت``C!kb꾪uUmv2)g$oGbKwPCUN CBp"Ͻ wyQ~]'~}"dq.{@.SW 9t6{mmEo(`)saᠢAnvNԃ$bG@XH ԓ!X/$_q `W~.M6Ǎ5*s aU_*bib]&"d{3~!HU^P.ؕ-+\߬LuO2Ju;S=@8 @XB:RP_@ vnl.Bvpq4>>sJ0JK%{2|89l%>+e#x6uۏA~y.%㎊~=偠贗.L`#طӈYGKgcfJ[\-XȲбP ɻ^h.;C>b6%KfVH4vYC:k+oi⻞eHw`.QKxţBjkCvA$y\uQ Qb&*bf>9g>;F^I~ "~{bZ7:xX"EQ+Yѣ{C<NE2Tx F,jIe'|ފ|ih{^Z/g *hhS<3{!alN̬MfBk-+.8i={yMZ||Є0բjg>dl ~ao{aV.NJ^#eըcq-(\*=̿ jLDfIq&s=1r{(h+nG,;6r5HcM+`} izoP{zKN7!H ;NQoQegFЗEi.,#쯦<˿^+o[6κw2{(Zಹ?1&򳇇ݘ\HC9U?ܑ7<;ӅO.эv37 FpkRT~ǿQL0diy ȱ؞83cl xTf0Sp,kvVTCvB HS2&#tP Y' h=4zj͌ircR.iFLMZ{S_fI5"7gttuB\~E#0"IqD]X r_\wO9Az3y' \4xnjeyz'r&Wh$h$Q}_ozqu5!RKUtgNOUEԳ(J_} 9_#-G[U!MРKd«mGjL)B&[ 75g ̈괭ŴXTwϩTz% _`eb gҡ҇EwRݏx RֳirOr3,Xd_ Ўycyd.B)PR[/n vҲ*kHssׄ٪ݢ]ҤH"8|1]ËKxcb^1KRsfdD&w('@"W:*k3槎˷Lt ׋c}!彧T AA\C+ũ ȬWllx󥮭Z3 G~CS\'q _$)!ċLQpB%by q}M~Q߰aQ/C 5yb9ϔ"V_٘!}閺i bh:,|_Ak_3~kL+wSjGV1ma½? 'F=VzwÐPbi+3BTh3i<χz=#vq}!⨈|e@hrxiV9|"ʁ6 J7(3OqKHfv& YY.{H<{_fyD0<f?FwwN)DWro't/P u.%kb.+5+Oq49R<>g㤪=)A=S@׎rm)Me54*8RVpGB _]p$pbE8Z<F(1' -b,D^TF)6qu$3ګB&Ll'QQa*,J $bMe\9{;Ԙx8AIH\Jtaw`h}hxU5ET-fqCj?9ig0%K ڒGE`ƅJ8+9hhs6cw׃Y:j梏%R5>I$g "#= :X{E1 hS -wIs#e*+?+؍9Mb,# }Gىk]Vݡi"B09\};Og>;P(ඵ:6%Nk>~L-(5,:ߤg^'Ý ̍gݣ[\EMёn3:F}k1.MM+G&;ؐ$-XOyhBy욻9bSOP'K*xLq+%Y:KxVcDu?#L#suSП~/ĩڣޟyetR\}w.K p- ݝi[ ~&trMAH1j`)J=3{Ki {;w ,քbɆ߱!哄heaeޱGH^BXoʚXt4y:or %YLXQ.C&zxR∱fEjZ=:pt" 0(j}'KF\^5 0JPTU ?\<ʊLxw?DҷPW-pW>c7[Ќz88HpP>}yΝ+\D\9ɼ#H..nWW5" N&X#Yq0mǮpj2O&E+V}IRgN xp_%}3αdDXn ܁AjCZ+hO~']!]ut~PiU H\*LG6a.399C`J, OaUʔ8YՆTnkgҸЙ$@I+)YVlK7@8QߕlpS<[)?A:9ߍ=셋 }+7r Ou#٫s͞WۢYP08s=팻;d쾬 'sx@!q,>cGcA߼]NEAE}ɦs3oVA_A`É١fv͸g!SS~05n#]ȅ_*:b֩(%SC`֒MXmwM>d)S|ց7??k.tYlAGY*#-ʱ׈:<`=:dg% eYr,b}X +xdiөåQTN:σ,"(m'dz05R3 g6˗vIv#N-_gصp#*ՉT˓'+Xk*U[4PWkYD)%q۰SVe7cI35:<ք+Pw}'>#I/Ř uvIȯGîTwKy >fv1>? cCw Z!+-Qȿ lECi]?*Ú{NŰg3o 8vx9RnKzs O5(JQZK XHJN>/jͬoA\ H XU񢩒5(*T}}8d6}J 0}y cȗ-_0)Xj@Ӄ5YUI;J7 =(˲{\)5jb)*В YPvHЈ*\D{D;ݲ 'uBC[{.1a > 9uMGmBwO(Vu8.R٩D>k(2H5Fy1`@ŚMnRe):9 ШFƃVq-$kJ@Sj6&i+V)clcw#KcF/kK-k/^ݽy?_~ 43rfsLLđAUEF3]w/iGx3hL=L/:o)Y@ &I3|#O5z3PjСi?6=>~ Ҿ~>z{MM_ip+YO%cG`kY$S<؎,:倿ױ๗g`kD{Pu9M縰 ?c 2#R鋮,ꦧ&ܵIɫr2~2UW Kd4Kf @󱙖tg[R04ܷ GcAݭkzD1\Vil %r5m+z+崋2TECu% JvR39G@簹H-ҌS-7R伐WyHaeoohyk@bYj3.4<`̢3!Q RL0Q!'ڽRы$BEJ+LUn!ccɥg4h$O=p6fXQ;scW03p*r+a&=YIGPA#~(zxJ悦pڠthZ5C~d:8ٞJ1+l^ qW0eqy] .d1!dH-IdԕH0&#@rjˀW) T 5cnpmHuxqipX1.F b}͌QfN>9}leV0Y5t lH'k`T&džͶo$5jw) *5 "і8[-&[Qrsگ2VwP!%C hG:qC\.X\9iY{_b'gUd_&W R)TI:߰Lq/1-8m%$4[H _*Nÿcs. F.'ob= [ +LJHDGoGWLQD\CGAeO"b|#*} TDMJVp&BDÖ4ϨgP_xV)B!I=jRF8{E?sX2Q_B !Qe}~x 1Tq)& Wi@pyCJa`Y->ss,<7ҵr=FI0Kt5 |lOW_*쪌FF έ!(ߜҊgV*sN2#gA^frWęa- A8 븿ͣz}40?@DqbTe3wX۔V~N/Dɢ.A&b2)W5d9 DӇηZ xC N6T콨&dyT}͕NІ.SeccwkRT 61nVTlɖ@P²a'3ʾe)~+s^!Q4 ' fY x!J Zp|W9)`-R3*Ao+6osjT\o?3DYEnq}$?6'e%br3NEs|Rv}3[RcnwMMk8r08ˋ}ŀ/s$c;KXn#a 7EsԶZ"-~bMy;y-dX\N@@L$XvD:t<!R|4r4 Ǐ!2@]l3iiMe[UYF+:u;릃₞G͡Z`9cxs+ Tđ0 E71H ֌{5R[@!P;^5cE7bRF#_K}Tc:;8=6/O[y%]aȨTMbLIYb kړǢd~wL{֥KXy!}L/Yډkvє+~,JYkz@˼<7dzD߳&bt 0x=@o~Gb>?p >d>LzCDu RCG;o`zΏrKfTD2w>.▵ֱa[+=39"vJcIޗhG϶$܋ ߖ#qʂG)~97Ah..%aPqP f< vx}E=0.궞ѢXzo6jAE5}-$ (o:֝,("3#:,箼 f[:M0(w>.$Q@MUg)ʤ1tL@3sG\U Ӗg0rKpzL-!vtF\`\ms2b86N$#G%u:av%̒;@.@zƢNN!t-BX8XR|tK$c[N SC~|Z;hdZ]3N!4W.S)'S_cID?.Ԑt9uA~T*Xj*0OƬ! L ;UT>1y̐ jo;9̈z9u,?V\@!`w!O8x[w;"%~ T՛Gkp94}X2 8lHla2ǚ( mwf'2_#tcL|i;ԖkCژk$KqlikЛpӨ~Ŝ1ѴG,STZI5`S ]A#~U9i%$D#`Oc[^v';pˌ87L]N7 S#FS;iazt%(߿ Lo eYE~bT= MAXD:VoX&}IQ71'Ny98+aBQЫ,kgҰڊBRw-Y9pe'cZ'˅T(m -tZ$C3aru]H<:y =NA)Ԗ}fNh635)-+>7>W4YtWTsxd ߪnG,PH3]1/ R; 꾯敼.p0%1JlZ ,l,w.E[`reUȤXdhfC.cvi4*d 0%{:i [@ѕzXʏ\578& Lv y-;~]kT0(9lӡ3T_ͶIx8OcH>H!U15y PŸ^,ϏEɓ̮aD @uhhZ d4dݐoc7,C(*az*j|$>1?޼CBPi[]$:uO7T1Xgl*ِEJ~9djLOXנw+;,܃A\Q` Jwnզ`V f'l84 0/Fun%0;'n$ĉr,.s7 '^%?̧[OF 95=1vIR|PԷm.ԑ646--zf"=ȿcz/d4=';Paן[WmYyGY:<+rzjy Tc\XJl A 7XO ݨ!Yռp1,1I#/)eV,%=3d6*G3{*c-2]g%E5P2EyU7&.8Nai3C$lʞ'|3ȽLKM׳`euVÝf %AT&:a+Ɉ[t9u26,3|,SV?j+FTCq,OgP]~F!iU,0VU4qA%j#u :-h} (ҋ#[\@dS-PSSWIjm|p&,i)8IQqpC]~e}ߋ3>h-ý#ď q1/YJ ÕWF/_8BhvpFSR1udTo|z[詺+g,Í'N`J%HOGLݘuN\?}MƆ*J<)@~k^kCј ?I s;<ݑYcRiÁ6Z\% [@ޜS \lji2& ҔHVo (w h,J\[L@o\(rz;n)(NM2Iv[4_*jjf{zeX14:fF!NZ8|}9x+ "0497\~6=wq%"]ϸufY, KYЅ.8rK^7&ݫ*i ^%Ci?^'fW7|I0eKfH&G_rPм_ͤi0G_kCR V Dwa/aGRGGnM=U7.?1YmIHo~`>ۂDXAK*zuU\pȉ0!rݔxv@oKH ƻOj&>ŧ[XsiRZpz2Dq)e/=?gd: ./TO1SZMQD6mk̀ekcJXb`Y FBDqYRVO]Go+IfEYvJ<߃+N4epc;^ j~Өҳ Iڡه;7mKq1򚧻SWr%;6dJ`nb _R1g;|>%¸(>xJߜI<`eTxo}lа wU6\unhPD2t!hNƟ_eR]߀v&.!?ýNfFnzmzl!D\,|[f:O;ûR6@V &=sFK!-yo,lRnʆG%[#c~sb[9P, ۍ3 8O$U[05& 螐m~@X:Ӣ(rgCK|<`-{[1aDqx_+Ƈ_\wOLжCGIm_m ̱ 8EqYFon0*]L{V f4V/*wK],8.;#qƚacbM^oB->zEO3g㘠Xau.{-x_D[r%+_'^>;rthթ%f[>yIo%8rrh() [gL<9\S8Fj3ǜyÓA!Sv+ʮ4&E u^ZU0 و4y*fÃeš GP&YBӦYmOECK˻MMEItcFTޚq5_'){v#%Yjb.% 6(2HMN>!;RN.k^?G؍5kP{#ٱԞU"ۀ]4|7mwIƎrђQf9X^z 8&g%Bok9ܲ _.:a}7Y[ikH {{xp^>yd(_6oǣlW)m}=}\,0Ĵ"lNW "ѭk ;б R5YP%p=Yv7Akfx6~Tΐ2a`h!O5&t D Ka?3b'"tKΛXPXsQ#U&Q9* :l:(~^ô=vi"] ?}n(*3la!K_'|Ͱo= =$f ƢHMx54{}l#&asl*-H,6<<p.L1{uäCx2o̔{+A( %ZvڜpAVޝCvzC 2_uLHl)xI fҽZMa5eZ9ub`zcb4ELj]p9?n3]|5s2ZOts#s3I`]Y'יe;"7KdK du+$d0Qx8pCje>}(oJ' b]Ic'-I$^v}=NBG#fH4RTRH Ύ_Xm|iy:3x.+ npmTA,Zܴ8N4V14:7/g;hLC}F{VM(p~%"en(t`onh- j"qaZk˔Cʔ3.di&խKCeLGʷ8zx>ax[X]i h jxd*K>/`$zU&*aeg?( R8y@Lw}G=, aku{jZJ" a5ZTG31SXUK;ID!:#55KQ?-$h1iR^I :mZ-]ޭx (mn9ȧ[i)P(;ҘX}sGP%{nŕL'd=6U*CĒBfC茈kʯD>.0Lsuf)u?\E, #b$]BĈAГwOT1oN7aR6څCWZz•x"u{,GxAb0{-qv܄1M樘V]MPi-qa.MS:K&`9%H ^*>\\k#N$γd$slZl/nwc+Q[/`ıZIʼz\ԝM$Bj¢PjNC1LN ~m ϧ}( +##_vX^}K۵33@iigp;픕"Vo޸Q4Z?G4cSgyBJsw3PrP5 YWlZ/rn%Ut#yGͥ]#G$Ovy}Fq43xsV,+L_;,PO סӟ~܍cõSCgoOB\&$[y!F?iB􉥝<,~= /h,w"ΝX]z#,Nbh!,5ܥG*.oCe\%-.y&aAc6{Ǔf'OVd9#pzL.y*%<뱾|p?קKR6j*/&Za8SVNjU^q {-pL8D0'+pq. {AjZ@% X{ %RU|//vI:E#@y ƅQ6T?PEitlsdj78)ЈW<"C$\UܩW962M$Arμnk];T^հ)ec 0C>nuLUF!}`NIeP9 cɅ4P2X}k7Ig0{uZR1h+ [i Gj J)M{e > Tsl;dH%)d"*gh<;kѡIVrH1_pj<܈6su{dplbCjɖrLlj} xY1kIJa6FȶrtI';V* ~j^HwyJ+Ηjny}"p,AFpp׫;o,$8#h |7tr&LN.^5[.%8wR1&&އ;1R1E`ŬOv5]=Q(: [ވw.E a՛0=d*&N`3wm+ E:zv9ݚMՑ^[Lj;u-Kv,tUDq٘ ڞ$dH.n!L}{ܓҢ'+X=v!<*n'p,M XeԿW9yfF'*ɿad@Z>GM\8BVXڿ:~jI(yoP*d {$[aMGcA C>7pƘƙh~9}40!s1XoQ/:j0 gQk)[8Iۄc^ `]x"FDWJr]fySa54n,8v A:`I97RW_eYœqcF +ۭ'V +. 6\ HW0Kv`;!rm+&}KoN׽:= bV0(zmz%0*ҵٙ"l~5[#JH\U7'H::xlDғBQTjYr3"{jMF\(Լ9?G$r(%k9r#JDA 0j煣)(7_m]==ȻRD[3dGv pY?%U7y΃=n- uxp` ʮH4Qrx~_=cHcq X~_jª=7A!v .A!;t%Kr S,,&n_;eR~ݱi=Ư0 ǵL$zVʣT(^vq!1VcjTCyެПɄQMlRP%9"|n|/^kLa+<Ο2l,//@9&NђD9a$zm#OR\\lzWػ\$cD%*c\.0qU#f!_Z<*˂򔟸tUt f(ű1\#@h:Ŵ"NI>H/;oåTsꪀ:7Cw?Z*VG$JW?iKU8C OC@eݶ~yV@d ĸ 6v$ <4 ~tБ$Tm_y}A=53#YRl츯-`Ldg!$:aAVuu pQh.t2o : Zqp>){pBUbiHI%u@-vsh*~n{YdxfYlȆIs;O–zGK|4Һ@e'~7Ls:@HcP8 /@U0VD)\ _cT%Ķ,{:J@k32s #/ɛ5,ˡ2fsF|MJC+d0p:䙍{СFE93]Y=FnןON U)j075™=r 4. STn̍s.lv; 'rYWͽgYW$<`Đ皧L0vzxC̻/ iΎ[U[ތy g fY-Կ6<`zzS׀pJş'\%>m;Kݱ-r-\YpSJ֝!W[\(>Ih6}g(-t-#ZqK4AT?rq>XyXybhC肂\}-ԽUǰ.UxȉH'(VwXǪ]oq sԕ <^JG왑X;$A>'$S|zV&w)lW=qEq!XVuaAJSj}[ h~jIk{&צcq4K$buQ\VJ1xD}r}Գ?mT|J O'_F8rO޵:BAӪm2TȜgnm Йh}'u򈦛ו濁vFo?Hxңypͩ*C#j8 cOl쿪e3"h0NN 'dzا{YC(~yW)|zj˱,1qj%ku;;M"X eUzS鐮ϷZ^ j2(V*U (ipCK}F5D3]L8=1OC]g+{[}ֲOg Da 2wi4F5(M&u@wɧE+N{-+I{oLMwv?f|

@ӹL/vL [GN?lاiQ>h"<+1=- 6 aF>Wm0H(됸$Ň gBcLiQES^h$#5v9C54~x~q+[YVjn3?`*I8^LBZhe{( ×_*\T߀K+s\MWcVRGwpŌiVy6}%9!f„yt/Sq3B #:8t?֠e8zVʔYY-ƳKX2 jJF.0n~+bItմS&Dϴw%Ί1-D46vM[ #.{]DR`{Q,! D0n̋7f ěev9> Eo:!!k$2N@uуlV#;9 ę976X:O O*Mȏh`M,K.c 7A[I8GE~«j2LUK1_vo981SPeq)Z뗄Y} ;hX~X04^#W sĭi:if f]p6PDuEH7&:KlkȠ#H0pj_p7G>-y3粥ډ.(spˇL="7@_!lAX1gyҏ.P bgkiִp$CdJ-] kSVtc H׿ݐ͍@PⶁzÝh Gz[/Q0q4ϷF$KLBC>JI-~}񲽷2Mn=O9E tGaxrrl rvp833MH 皖'D 5VA7U}o 91^h˵8b+;i_è/HԘpIbQ `Xw@(TwžA6=QbӘ4i 7 BG6OYN*RyUr4[2Xp0Dώma%B@UBM+.fbTm{W}ʢ$ a#6UJtDZfI;ZHfLmՒ{ɜu>{n5`㜞`/ 8l' J A״OUќl9cPؠba!z.ct2w͚'ydFùR -) x4m ~ս 2Tp{~% g F㶔Q[,*@%">2Kbq~QgGS\tpB%ɰ.O ;o\l1(UEМ )~`(2waqe0h5ul$jLIme$&4+2"r77൯4bt̻iY.{qis90l(AG!VmI,Q흣䘂o BoSy(({Yzby*pZ00lM Aؙr3_$P3TyN1e'6Ԓ0VUo,D՗@N$(Dm2,f͹L'g2`PDA; ֆcxةϙ9:1KʇAM_WVU ln*ڠ#?RSڐEx!Co` A}Q'h{g&H8 _׷ZB~4c^Xe"uӴ%3Nk K0$'kX ~Z_m[. hq[džzg% 55%bHo]1sǞİ-qNV3@+Uk:W75F+*wșh;!'0~D-NP |`L37hc3G_Um aIԈ:4|XC)ٖmgNΞbf|a>A^1//N[O٦~ϝO~794lbPq>c6Ķ^G<dR)`!=>zΞyYN3=ʨxp Mc7rH8 V1|HVdHڑQ ;fC\U<\{63@OpjoLDzjShJ^}á1{K} '4˷>,1:pRJZ{Go=I79ODkiG-P ˆef רxaYҠI=B4nEv=ፈOiKEv4&NM)Tdt޲0XOl]H\ عɁL|#'&.Hm]60L@/LIJم GiRȍvo6֗917fuјsq UMB!h`+o0z"AoHiO6!gĔqb.f?"v=0֧Ļgs @q?(JЬI H~ذٿt,D+1R.F{*Y,ј%/6=3^HgͯG[#X:f5V4E4,*.. ΣXK:`Ϛ5 C E x)W0X< sLޱgB*ꞩv˦ &s KKFl4}F0nv\- :W$ x^zqa7p2ԗnr}iE+A=KnM|wI.d 0Eڶh1./a!hR AljDyb}e,N t}D{1|`0]|gAh(V%BV7g'ӊ  G, ʌQJȇypckڛENslb1AD8v C$'CzMgQmt3IB}q`m)3!/uJˠ&ܬ=i.7P_S.5$ŦyUe,Tf?e=;g@?!΢嘏q~WEbWqjf>>ᝢq\ s^\,TLT[(Bz"nvr ơֻ@ Mw/fk]m&Rڋ0޲өkEH *0÷=6+W[\93sCЍ܎&.fCLApbdR]$y p@n,NʉQ#BqDrg q%e2ޏTPȩ:M9Q^Fdzr uۚeU0?÷ýQ ٲlܐIPo<:tB xa6DSdDh[37pF6' @,)Ewکi.8d( +7#$ȸ#m1mB6O^`[VsءPՕD\:)'A?we!n>Ec&Oï8=Y6Q-DjX0MgKdos[H(&Oc $2ޔW"Dž:~ ;P[+]ZS],( 8;][QPSc9=JP 쪅B~KJJ~0Ž0U{%XOA|D16_}]8"f `ijUsx*-N,0l q6¾W eWd#La=}??8:B1gޞAVrNPF\_^Ξbgǝ5="Nҍ u̷rěA 4|4߂/9b9Z,6X ӫɋ^Ns4qnRjRg75 erىzak;ZvCf]%PR&?NPwYO:SCjiQڲ$D0 "o?#/4zjyȈvoL6|Τ 9KM7va'?8$w ϯx6ҥMj99u$}̗K"_KrKHJs RbH$v9Du>I2ZFlWaOÊעH hiaYډCRzŪh'ҙiLW;@=ꢭ3?"wwAH[q+y|8C@+':wʘ~otP81wԟ3^ĸ>%7 u)5vƂb%y[qI Z vgܤ ĺqԡ@9<~HMk^sŠ(j>Y{,_qr&%~5>Y{Bgv]덇þ Vdc/Ah6x7/bk/bm0DM5k-Υԫ,~W2l>QWaka.Ec@HՎzyc8 # S`CGv^&XTz˿2MOLo,?R=h}ѝW@-u? 7O4鞁 - =8?jkNjձ!~2 >ν}ĢշF_R"_],}JQs'l +V["Bqn7i Ģ)_qG`Mu[Y /Mǭ\Lo]z XȀgx$3Y ڹYh g#mڝj)wri( Bt|O~$T`C*)K3>ܶۉ4go.n^F2gFڦ s1iDhxq; ׇtm62?C̊70KGh4aN$l|Gw'lvm7"'[K0de풅yC=+e%UCpƥHp^b,-,U%wcZ '߈m}sSmJ} pfߚ{b@ן1]n(~6MtC͸)"Q1/XGg3H y.|ff *Jm9XOvY uw2j\iݮQ0W5GlffnBb:(Ez[0x1 QgVVvUFWڿy1DR AAމy!4'3C T+:A*.ٮ-D>2m V`#hb7IC?Srֶem޴J֩6m> k+e"b]P$(Q%fVB3x:*$Yez$KvFrěӼ^u_S&}MN!L@ x:+!tsXV+Qq$!tV.^1dkr]Nӧ7jNCj.u$tjg:8dܚjVgT7ˉxĢK.qoAVYu-;NgҨ%qbVf'l%]@\En~ )@_I"hX.j 64HyLbvP|&A{?oVsGvg3w JؔJUPl_`| f¤?%Yw Z%u?n.ɗ52#)A?5uH2~\Fӌ?GV]GJgp3dDX\;0!/?ҹ%Q m3?` XIy6yW ׏y?]aM5qlYfi>1G3bc40[0k?zhmdݷ,CT*R|VC͕QZ(!Il[/Zu7m}BmKXnW s>{IjHTۊȏw(DY2XIM2#iZQ~ Je\ߖWޡ9w1=l_4n!GjM\Ef*\)k$`xkY" g*:{iAPYN6AgFBV#( tOg2s j.$OG\1_l"ak`~g]LUvx(֌_ߠ7YЍNpI_ˏmcH#BɃiI*TVYkM R T!י8FK~[UԾ%0L *p+z-kU,v]9mM oۉ:sIQ"RrRTail^ q}]*%1C,o$[U6JGt;wҋWw% f=r p[o2R'|׎&^>pgLpDRRB}KA֪J!F|;-FJJš\(GnfD92EIU@DxX2JJ{Q^V-9ՄY 1BozEcKPyͩ/Qe>(q3'.G?2SlV̪B}RnsSd̴~ ?r;,6~$sgEI)1  'xYF|!Me(?څbXu =*}@8VggdC6.>_U0Q^y߫Cga=[M%4 85hʙ:mwWqrζ B\S.sө?ϓ 9[bC۠÷:#`lZHlY~Ո]cƞ [(ea. ߙ6Hdo$4ci ʘ4_ҮFDP ];gyV )T'\:>5هm ;';AyrĮ fe\z:]BEn.~Qq.4~6\JKf КX8lmΤ/Wvx9vffaJ|dZ]‰=)DX|9W;֝oO+?" ifC^9(m?NEMxNhU0:4"oz-,7o 5[8[&kTFk/xIC;aS3o{TEU*d;/;&55nu+Jj/v+g]K<&zx,B]ڱUmGQDX'00:=s m9r9N옮rPum;zjA*pi/͛g~l%(ET ӮqQ;hGZdN1|ã Ek Nrd5B \rב& )^4g!F>W"*ڷXDUt>[>axrD.amI]ZʿhjD#=FB FlI^=[MĄ\i -C}S$Gbd@BRffQWr|/)gG+i F:(AxJ}s576U+. ]I  fYS9GKbbݽScۦ@!X >QPk]<;wt1[RoyȮo6@wQs$ 7;tN"5CNYN"tHǤxE>חٚ&U5sAY+QˮeA@nnV/?U54 /b`pmZ D#Ƀ"-|~rKh/_*\ũ,`JB@e%&q=Ez(~R\dg@A[-Bg5k^>60CI/c4Mz5 9KI@9/иF76#I/tJ A ?6p9.9ns̅ɏ18&-p/w=+;t0[ 2-4wo9"amttŜ%WckZbHqҞ_K>k qWZD(Ȧ ΚMDdId`BJ|PvylCsA綨V Nd ` "-4|UF yNo¼[ (v`]Y 3 hs䒫L]=URTl!M=w SRZ$<O2,Ӌ&m܀UN+7)h(}_Bɹ^p\-Inj}|Fh`,JS`+{>]׌a;ÁC9M[tɏKMw[-꺍ղPGOшyUvq!nX@?j5'O hwYsV(U89H+!(nl31yK G7e̾VJAH)8j[@RE pK%;@#Z Z.¡B E ~9Gt^RmLtXF5kUT#YUC7oVZs VT$ O<.bOSymÀ̆k_s?MJhP0;M¬q%yW7 MuYýQ_@ Yd i%H=65:rCf'ƻ3XW@%.3W:Y2k^2<YxTJ<ȫٖ$O ҐɁ+_R23x(K >DXdD0׻"+6< D%D4*qY1j?eiOǍ^U{**=~|y*W(=TvgU-%n2F.`:󷢶'8MOE<d %sTߠ@vϒ(/|zt|wX:5G)9"<`2P [ y^+OнX?<76lx_# /7w`SI&xmTp48ױe HkH0j aRP@@.8뢜UoAj+{c30G7O_uċYu~(3HQ uRGBOoHo,1Ϊ1ш338N/dztqIy)ޏ CU,x!~WG{vOckX~)zX,k]{`ʋdu~ޏdEi2JYo@atTaoͰ4Kmnf5Jr(ș~m|V+[r.Y/D7OXsGRX٥j K 2> Z?9GOe_P_׋3bơh-5g#ۻ@ O^ jRiWPxǍHċ07D |޼ɩiRcqJңEGN $&󣦴r{Yʰc¨."ЀG;VRnO!koaJrcDm C{2q$K,^WjXwոVk-)񜮙 ֭q )%kq*O*8 gGKjqI\3X;zᚲ_٨;Bu_9'q(TB{nOrg(ʧ9I*3Y">""S).A'@c^YgRx7 -dbN)|~ [OUmsb;?Hc-^#F&_tUȤAQc-Иf5ֵo:Q9ʱ! [$E,} O -ӳb]xV(>y8Nll$nN>Kc^ @ZupٵOX@tKӒ`OiRGm+0ec]S\NxF: Pd!Cc3A9VBf|+d*Yyp>$ ^pD*djb#J9 J$"*:2(Do )Yoӈ<XB͕B0iNpM6aݡ)`p] 7vB~B0m-S㟱6EB")g?Y 8ᒗ{F$^?w(NuUHC"tT'ߺxޱI{g;bZcog}8_^dbHB nW5dܽ,&J?A8U{}ɔB0>bZA8p:i;^ZqTf]>_6cyjUA,I&UׅB8E&pKN]sb%DɸSapEjk%[X> rĹ YNjMİHv\KOڤ2@q*ck?QCzHb\C΋O$TDy2xme{uFG=(v@4 #)!+P` p|tߛܳ)#N3&{pP؅26) V %yJR>D+I;41±2e)K?&RrY?NR*7dN#wlu㓄愉=IW{ҕ?uУa19q9w@KD-MR!]=w6|cAr>Vz(x}BJqX,Q$1+haZ1RA(z.Mbߖa]oEkn Ϲ z 8IUS>~'^Ϳ7nk7J D=Wa+,ۤDaf6F, *9]5pδlUV2  )3r%N] u8<4‡m!l76 ^&?+#ЋFz7CYQM ;zۣ4.s{||-ԉM)N/QZEf01@){xi< atlPu$~ZU( E>*-#-tklcbp/H@^dlAFܬ0f<+pt뎢΃$ X'tCXY{^)1L`4Q\g^Q bE43jx×,1LJDe4Ek,ckx߆ꡂۚ+p"fQDOS37}i:ρ2D/$~qaR~`ؽIBt&ݔ>u-!5DM dZY:T@,}>_OAUJm큁:vXх*Lzدkjl лS#]ʧ14Svhk0Yp@UXoWaJXAY4ڌ\ղ׫= /x#NO̬GzxD+ơ1MqҝV6:E :4 ‚?P;^6FLG:~865mv] 0'" Hvw&wo|qdx6L\95EO/_<5dZ z"?dfdfk`Gm.Qmtwb2GРl,EVNE}#^M -JZթ7K4GkV%>fVL㎝캍1] S ~P aẀ8\謲?9ګ y=:$IHn"e+$v 9s#P] a-sBBjj7"zg[j=ӑI/Y-us{?RtΩ7X Rۄ7Nmй+Vb<އ&s`MDր$qгH9xA`Yep^٤roYnTI; hʆ*ZTk1b(GtHWг= ;stmgRG : (]8uՋ[B]]]Mi},Ϧ m0=&$O9V!ji~_bv|0@"DQ* ; Y"푣N.`!{ 860ÙW)#cVYh ,BG妓cg,>r1G,Sd뼱Kd_t,'0%y]NVq1٧91R2zՒ]g%EVTrPS!ݥUh$FN12nlI6x3-LRA /7qo]mk8z1OOe@m\i/*e= P`g~_i#=`V' n7o1)1jru E9k h}FŘ#nLv̚-+Nmn@B7_lKBw?H`y*rjz/K(0@fi@A|Ry('cA ҷEh)(A0?2??wJ[O{@HWgvj t$_7qΎFtU? i?x|OptK_ThL.k0P$.*)f]?v_+#!"m0Go9c_f8Seȟl=;յj.0K E#>B*)*YҠ9etUEr\Pa`H$1Pi”h}z,ϊl@7ywp &-5X3aM<$wn[}FϠU~)Z6zm:@ ij[c<@ix4{-ż}V?UrϸY9c'Odҡ?"P`[ok'i$Z52.69kJkra%˳k2uɟ'7NJ )(,K񣠈-`۪XqB?Ƭ;)|dbrcl^}UH@QD5 xI3]ˀBIv?3JuqxbŒ D70'QOwh B[Ed&F56gPHQ3.Ь(({Rl)Ƽ "7[+ɞPNa?OjՐ &'Zt@EujYR 2ԒIuWHG0gH,|eLT%04{+vCV2H- 31& j-@1W)8˒;c |3(ζ+2[!iNIZ^dUgp56|ȶO 4tq&qoXˈVAiL0pVRu_sRM*'?+; CҢ5m4[3еoP/#.\=.bV$pCm:,jݚӱ}gd'.R\M9̲|&X@<yc:}Ĭ2\jD1Iȣ<%!# 8*],evc.%F(Cp)fG@3ַpN^M x~ϪҾ@mJn *+(QzHdB҂;:KՁuA5{,r#($*XQRiAOT< bFC#&xbd66;J4_4=ŀޮXF"F̢w8h5_ͱ״>g+'A eq?`*\ܽ[mb4$?8|'aH/=ģ {olm݄|VsZT܋h~sўYt1{#cM&©֝U5=2oոҧSCZvFy4'rWT)_bb&suc(R}C">ANp}Ẅ́1 9$#֨jUj&5L@ R/d Bz(d~ ]j#pеHJiYzNEOB򥳊TԪi@Z`~2I٠~ QF^̅Al<-2SGSj[ȉj}{@S- ')3%P dL<|<><׀tcC~s7c#KPC>ҹF~n a,>͊Ʊ>|'d_0`mka3Y-9O wKH0p[t1t_V=_#r6juݵJN; 胏`I (X?LgOD^I>qm80!jO ՜hEfզhCb57O, l]Mk]Mif?0*į"=*cx"jÒD7P)tfF4Ol]Q!dr:k.o@lG&ɋKҔgTxטx=z>4Nج<Ğ=$#Gzh:Dv{CvRe2k=y;Bxei\4ȇ[JTdGҟ˧K1QA5.OH|ZrD@۠)QF1bO`8Uؗ13X t]*O%S2,7g1IZSmRs4\4߯~!뎃YxJ?o떹ZOi3MoA5 _UxatR C,Q[~G.\*Y{9"oNna&9,C5jA/};Afѣ˩ρ/ΐslQVRõ]P /?.dBKig  p眜 (KвCxܥM,ʳ")ӫUVZu_P Vt"37:mo !;+gsJ4.b)lu!)*  JECh Q幨f@ҕ5]{"&Ҿ39>ꦋ,Sj7]PV`sn,#ߧAc qtşGK3SDlg%`G8Oȳk@Y>|^5bq#' h42)A%2%N7#1:yϱKU`j:\kGEO]y_7tmH-fih ׊1jXq(LRڦ(`h5.5f.OI9pn1bqMؓ xu  #߬bW"9n?DMgꮻDSOAfy]vgua>tjLt +[h8\p?GN'p?%?ѳ1Qw#K*25\t[I {yKzhq`qshȃ1!}V0 UiFHHĺn@ TO1S/k outͷIѾD9X:w@Uv׶tᓄyk;@~^h {Y\#1rcGĬ^]Ki̔ y6PmEq`n jng}#}3@-3 ZuĥSGKq"vs%H]$D麩9]bV][,=`p(s v4g/*umfgB5jDΐZZ/w'+^1@tfC7x83jnZ6B 2ʊ+eJ~՞8LM" xDOvVH>4ԉG$b3 m!qGKixʫN`;"ufF$ 9)ŰxךxOWwUlNP>WT4'3״ב_hG:cǓNCFJfiO{mFPiIef5-:\ߒ2gXL zƨ%ђ !ڐT޻u|YKg5pA*+Bjo}I; &W)g- G;O { m,ϡYƁ\lSƺ, 6v*{1 GuA)O]|ZBe@$pXS;:gVde˯mq{"* D]Ci*Ѧ]R Cv >q `{KAlM6Ў*8(zZΠ|:I~G3bbǯsYFU8}Q$QqB"q'̹K7܅i601PQ مjKX¥ʯA$2tS=A;Ya%b=Var؛C@c\ox9ՐBxuh/whǎ nfq3"#Q3槩h9],6H܄k!VNC[~:5˪:cM1`B]iQ|2*,4e"!_P.~v} "&C%_x 13-A'$3]झsh&>ajDkiZ^:kjXZW)KIyx™6L͝s9T!9}IN ٬(>Fhf31=(X,0: S{BTR )YQ4H&J>8xbn@+ݭmgPC<NڶHd8m<4GC07/SK8x*AC [.hAԀX$M:S*ƈUIfنvݭ9VLlϖIC2EeoyFt]Ej/HH3|0V3Yײ2Xs64(۽쌣pu*Dhp1bT68{6-.!$~eg_c¨ E̛Oi޺ xR/#&FbΊ.A" 8/ŋ7vZPc8DJvѦZ˧?? i_~S~lVgc(h6^'R" (NV!(!vVd3<Bca{A\ g(0:ؽgQ;mt9\;'ĸ TyԱȚ(EhOUS݉y(wVj==U+U9}T Z7U_@\랾&Ԇ[hqTT;JF CكVl0[zN)!wNl(V1Unpl:}ܦ\?4B2yh0@U2oF-ó9"M4 *krtܼH%hI03~/g"smcj([gRА<<)i=l/sBS! ${+N7{Qbe׀3bꑼ{ /hÜvJ(1 W֬6vX%jSt4r:o9u$ꬊb̓ ss!F7®yfĀEB'B[wf#+`ϟt{ҢQ>|3> ;EHKaXiZ?879vwWe-03k" e#i';tk5嚌>a+s^?"n*[wVa+Vжyg =]92|q+rIAmR7R;28_1n]/iV|& 9p^jJ4"fU02G3vFMpsGi bepp)2QH_)p2fx:kPzWJT#R'EVpȵRO>8y¡ӈ5[=i.dW6R_F_ອ #*rI<ِ4X>3j@@rx\cXXT5̘Nwo%M!șvEޢO .C%uLJ6#-_Vq4N3o{Q*()C2 h1OnlG&7a1&umͣ+ 'D^~vfIʧx2\gC:1RA̭dS*@,VL;X%0{klY n-.$FduMmhݳo-߼ݰy5q ?%rQN,k=+,mO)S?ro5IC4JeocU5t1Y ܅{M؁:BRhAޤױGdE%V2@2%E}p уyhZwQN5?Z %H@G~Dц<_ 1|yo/sݛȈۥ74Degck /^ػ"ا%5̫),{ lMAl{L/bNgonڟn%;DYs{EYaj+@@~)@ n;joIVSSg~ `z I[ f =M 咙};9gpl͠B{,^8I @+KXAG3NU9} 쉂P hFG`z,仌т5D1~oس R@03ʯ""@+IJ+Z55`1b%c`'IcܞK~ }K.f ̀yIHx{%,: ^wvTѨJZdOp_0ej9{YXd5 _:4 H{kp@Em2ot"lmA:^ڦzU`GJ}4I915 7ۑE<#g%~?R XF"wں0|p@lI"NdU\_+7FU&_^@f^uNuGF NN'cz?vrs* @U! Sp}J!V0457/T$ߜ)a.PSr7\Qoca6UA>P4茄0.MT'9s׀+ԝ8mk;u(*$G/jq#N' pdYɞ7Spukcpx (b->VY=]b%oOCRWe/d;t`W@Q7p[IC-'qePn R"Y']͔m ڐڴ8- &ڨ҅0ԎdRxXUUi b{/O< k#sZ71L^T)뵯J~ĮyE8Ԡ"O4~-Wܐ& SPq IʳiALHz$Yv`]-du7֐fE?J@"P`|a$מgť r)mxQb4L BV%SBiR2CqKr/WezG{F=pjp{^n!{_i2 uz.HJ@-BuM`|IMӃqo&bRwB-SMӸ[t7OlO pj!0TuaQe? j ͥjH=Zd{Daո\UQzR~9IV,=Mӛf7 5g~C".*RN{;v!M L<`3WLM٦kT"6rCN=>*>2}kv4E:VEfuh .?f 4Gez /yCԒ ;_^ {|#I(>7"F"(7|)3"Sչ, fA;*  o}Z;r/ .:*s9X-=(&:7_a<{|p܅.=Q\Å ^,725GDǹ2O"BSHsu[c~ )UgmөʁnP} :USؚ>{L^M}f"xJ-1W}u8撃e!&upW[4i5`kc:.xvDזv(df>\7F]x)7jU>ԭp/KoH[0UA̶s7&XsZ, 8ub kV5N<0[Y$ ڋ27y/zoWɎ;\V0g`l{za),S1'uO+ 9uT)3ph4m -S=TZD @К _{&#ӄx0B,C@x`+C =`O(l3Vu[  x@Fa`|> 0CN?Mbi)TjK6j7˓-b"P[o^0{7 !,#[2306~L<[lh9Y*D%& #U%]xеWF=+~.x2Zsx e1&dx!l1?%|36Τ|Ȼo ?儙ʥ 9>qWKk`q\\VbpQ˩xYcQòDa8b-46E=ZA-*u}7F@Ej!ܻ CF/ul䮻$D='Xd?)A~pM|YN2ޱ$~NrAZ$~RhlYL_9bz0xhI1O;8Xgi+3ֆ RV/a]YC!] )yIHrMw~£u[ALshdU]SN5'L,8n|iʊ |!q'oũg mH+PKCڍL䕭.%4R' |B}# FDC0Lg m|K~ҝaT7Wip!}߮B0GKAwv%QK c8tzb}'^q&G a y,r_RIn&5yGCS.!vsKGB7P AF44OLKیԌ(: ^*y&5 =JE 0F-srl")\!wVM߁Uۖx“yiPr.nfC*DcK\E|7ֶhi+oKj+^\;0CsGɄ5퀫ƔX"S1]e`, W[bR,mf*xqPOS7i3. E2.B? vP`=?佥^-xQnc-P2rGLrF ͭj;m:$*t*`>FvTÈ2r4 {4Ʀx 7\o?'.ç[oa6n4IMF>ڨ9G{l7G-uZi!z->ia_pq5^{#2 .ﶌP0Yk;tn?0r#8&iH.}'5 _尹4q%>0ۄܣL瘑nASIzydpL+ZBQ᥼Au,1KntO(WDX)h.[n'րu03,*tWGyN1*$- # E,}GǨd! nQTI&3Ix\ӹ]]}*~ w4ڃT C>ፎu`pl_l(cVSoMbMS]4Ʊ8M=ɵ'9xPsD[W I!":k@߲a!웍vRrkA0(EI e' JkTytk!Ne P}Dm~g 3"xmpVg~\SDt9d(z$\|t;j *BBmKg_(\Zv `B^/+FU'ECy nJXÈ:l!%6ށGY Rgrq?W״4 8UlGS[HHѸMB3x w\D%=کp㗐bQ`Kvs S9ZFnJoZ4+pM7\jqo1v\G 1PL0RZZkwN5H$"QNF5%E6E.z3^wQmxZ~8򲕥ßl^925þ  XKgdArq?.<狎eGrϸ4j3k1$6jkFH >y5I@ h(flt1Q R:<Ռ3eI "I`e8mPe|*Xx}3M3%9uD& GYJ'i3l|qՉS-݄p6bދ<(3(X+ XruSjבFQQ/5t`QP|0-v;p{2VZįW/GT92 q<)pZ[147U !]= Km'D1WB 꿽ظ(gYOU\6Z#~6k0$`j:R%ge\ܚtey!T_-,ؑ/;8" ,j[yr6'JDBk>$օeBytV[}^*RsjOvy͞ 8Tz B9eYM,Sݲx~K|)ʾH5Y ~Ʒ@9v^1YH^ܒ7C?&z,ʘ\T eFpr n\aB_jlBċSRoiH臼yg="@;n3='pvWI O\akbDIㆮ'A +VЛEuP!~j?f ^0wM'F =`h}" qzҜ,s>R( ~+_`Bl^??$Dy*C @ b}Mc{C*u,Udib(3$RB嵘9sZ<֧dE $*xfgֿy$+D] lk5|V-JgHs  oTl~!/ݪ]:arKĵq^PL6 JGz3.0D^c.D3şɲpU7Lһ,35A-Ӌ|xS$GGB4·f>^&X0r9\ߡx[ۼ+^UM ۛ7K[JFu=s"IsEp*,}@u!Kl|bLh'wo[)]D'ݕ!J+ۢkaJNbga;h݋о@; C f" ^%$ꆴCxV7")ZtB;U|Y.B:2#=0_Ai Ef*k[)'Lo+TD@ KN7>Lxb7O9j7dXG4ߑ8`԰I<ŀNyh}=:9]g&1Y]cY]+rv2|wW9uYtw teUl0HԭM(eye&C@oHi'E!%(&pڞUv%~@)VO6sQ$X!/5d3ߡ!ߎ|+E$w7]qTZB`1N59P}6M RgwgګG填{͍혘 "$s-4A#^BIҡN8s끻i&D`dvt a%|'LNc7+%@ 5l)ITm,5ٍ:u5"ڬ]aWC&fe䊵vNï..f~m1p.ҷSJltq.4!8y_wG^şn[c%)AC(Y>WyF~gzل?9z+{ɁT IhN0MfՖ*dɽY$$\eVX6jPDM1@;_KT=J:'ڏ|vyďnO]?qhb,F'- 9Rs kK ѿ͡9.127A׍aE u|OO< &wy6ԐcU<#0gT,c#w9+:BWh>H9"->~ )3#VJS*l08$f!(3N,ل 7/Ì!:4m q5|&a@>ܫ q"KdtUݚ**աX5{uڶ_G5]WȾM-Z'{gPlo4zqtN ;>Ow`%iYΟ W/ c5ۦa _Lk2x?ɦ Rrð% EQ@7Y@>S\;>)A@ HC!J1p3[v9dӤU bF̒~tQq:d멵%T)wt U~] )3:I8FƷ(x+@ P0MM QSC@@) [^Ө E\)1g##(nj/:[owաNǴZW5EU+漞nFH@O4Iɇ50J('{/1Iv)tˆcdoۖ`:/8mEt IgXB~BzR]B\\R"hۆ)yrDb|F6'34*?1CJQDYnHLAl;^P},bndꓩ{|5ǵUV%B=L'xg%q$eʂ✬ mdErbC_Tw[Te^q =tt |QSN:~{eq Y뭰TWo9֗Iy9$}4GSRvhJr_߅+14$VW~b8+Lx܊C04 {ປu%QzSkM"dR 9`3Z G*3iLr[YZ/v0JC˶Eh؜>ዼcc?gj|AHqpOѠ 8ؘetҸp6Y{/s! V-5^q'Ošs#/#nySsvƼ j%I%g"=A/2'qԎ. ,o{ s}nKa|-|yXBZ^T >}/ԓw92}F,',BBNK^t2bH!b&w"B `8N>ǞѺ:SVERDBmh!mĠdž(`M_q!17TeUKyD\gNnP=nK P 8i.9iTRX?6>Wڀvp{ARsa'՗2K )`+''$kN",oT'1˯@Ny4 Q q3'_6BU}K((}EtQ 9=B3$wA`xnj 3;ݾ6< s-*׼ Y )3b4os/Ycm]˄{:K܈#8zZWr[29#J ۟2ah\o=R"/ <)i9)ΝA[Z2r .y؊`t )4|NåvX=<;e?[ d1[}9֬; 1tvsLhOpbђwȱ,ުxm8U+J-Gw`Mxk#R(.ޛs:@ܿ8n>}H /jIX;2C϶?$~`w}1#2uś'wNEI F q:]vd6nӲi3^DQM%}kأN6 4Q@W^ J8 qRd,N">(YInKG6 PӰ[\?X<t&Ne]=>ͦV5s M !"jdJE+Dh'*pe naqVP'L 6z㴔-,ϫ(KK0@kd7wm-`sbVul(ZvWJƿߦEx9hcϑL+lU{Zы[iۿÕ{egp=2]מ -QUE:GT {NBh'%k우6wvZ6..l:uz/ &?ꛣzqRrb4O*AفrޤMnN_G8(N[T0dn[KLeRVyՏx!KxvD Ge*w#Q"h>s]*Q8MŗJWwe9N&֙vnեQeAl6aBAPy~KAxJ,V#+_x7X P"fnrlm m3 0i sC^9ۨ 0 ~8}˵wE vdsa2jHHBĖs5%-;L!&rO.7v=KL`Vron2E7/oZLp.G1Gž0,l 1J?RBvp?.$9AC3IfE"x?z_cL|̟ Y_waZ@,kf85k-cSp+}T{gY`A_(zpN~*Y$h N̟f֚?:^6^E-o0uT75àtNۖ{<pQ#pd {^yBCy{uDP)#vL_Srd^Ib䖗~'nպ 4w=/a}S'2z`iu=[bLs%%sR7DGe :&|z[I"x5?&DD9.r+jF*MLS,k7ʣ^~AT _pjvPC{0F?Lnn3ԅkrÿ] ,f,,XWWO? 'c3_W\.ѕ,s\`RL}S ]`=E j.H)*4YD¯ɓ+!{7SZb5yX:5/@槠-;+R)8LHa'WbG6ihlH{;\StGΡ|ȉj2!%3 o[\:[NP=zN{O^w UiwzG$|GB>9`:b۸@+ًRk;^湷p/ĦUG>EO&V]Aֱ(t lzUNcҡh+-ݗ0.ayޓ4r," H.(-wج,kEgHa36<鍖t-{5doX{qy=A{Ly!qêj wQ ƬC"6uYTTt[~x S$t^4kɪ}Dwj $*L:(" >mۦ>G"!u\} H\IZb!bBY\֡VDp4r,UV}n iIbW5mԅg j̻z4`wsYLέ/A(ݴ0y6B VUKǔL0*=j0긯T2Ө S(_Q_ڵgZp A&\@*,oKAAk:\pomIX9Pwq \&5FTɪ[@z8;8UVӟn^.WTC-Q?)@(EA)v7LO,J҅rڗ)\T{l\bzZ>ڐZT?Lyڃ)F}4"qndv̝rnf&W]68Q{b|G fQajW"äFpyiNEkdEϦqW&)p 2k$ B@MߜN4YzҸey `b+"=!w/v-Y :GM3jĶ8@, 28#k٣+^lغE9SјrVq 3 `5i>P޽8+汐V/02=-<U ~'u(`H„.9r{#N;Rk߁5C uE\Ēn{D˹@>!=I6+v,!I, ,p-Ä|`eD::tM4gl^*;e@M+s:~Xs-ďUOv{u{(+ 8?z&Je]UBz(&B1]{*ZxjClF H;,4R=]փgh<aa\<6?>M ٍp,/$WW~Fʩۮ;zpǬ#xGN#DU:*c-5 mTM[4$Ώ\uxQ=-Mdخ]׊>:,A(~#J yHNGFK B 0+TFEӶy?5S$/yl6\M 79<2 >T8>6)qǛwD"@iz"m A#&E'%qX<Žf$k[%r5} yyn]"7n_EMNx{3 R*wTo 6MS]vkdVXLfxHR|N[b{~:\S(-6d9>,Lf~nv(8⽍FAs] K\pNh *f '5儒p "`J3^%ǎJXEǢcE b,fK R”Xf$ 9EF•.}f8o3.+od6{Nx9U`m`@C[ P4]M$cL*cSfś߂NPbJPnS_# @gb3L۵#~v%WTtG9ҔшE#}|rm/ \x)+A{DpGtM hoה8)*L6Dz/}ve2iq ΁j}\&y, jkdn%9l@Ϫ1Rb{ &eIl Ĵ]כV=I||6Q^5D?NS K)8z?"PCz^O*LF%?;a,\oD cƿN@kdOaP$SS4+'0|(ݩ+v2z&yצHMe_|pgTVV'G&v8+r9ԴZ1byz %\ 0mzo+ [ Zџ*|@/0}*l;,_+31[rl*fSOv+B`$c:ӟ\u~<0KBӐx`d^͍˗Iidޣw :bu\R"hmc#/2=$g|{Um ,$/ߕL+R21!w#h=!9BuW6qxz<XySn =ea޴@@`N_>^grd)Jr+o7hL"v - (MH„&!'h|YSl@N8?u1㮲bw͜Br~[vELaA)<xB?R!LrY9)&ސnc.k}S &X K\zTf>y 8<ھ2zC0܎=Df}/ؒ^OD~JOnne@lW0SfhW ;; R$+!;eJ&V(bw x0bÉ2 r]jWDM>;q`;<puN!~)E% Z#P m#* i^qG3=l1'\yTVL Π 33HѮ#{8=#쒱4u9,P _ix,$y%j֜!frT8FG$*fWSbuޭCw*zÒd*_1U)<'G iU]"1!>܁WVJm4Bxk0ۖ#".jCni{r b !NM8P, Jʩ?fhLRrÓ4w <)3CYDq(Dl*:Jbў.sTgITxxH GT($*/G}KOyyV5(iU{\o,42 PNxapNیk8qH0nJ\}chdMT#/O&0~#vx:^ quM0o7 hW鐉jc |pfFد4?.!覧թnY$)c*{q67+Hh2' As |:rs9Hzлi5?; jIGG/܀[זlawXmT#g^`su#w=W}5O o),+?ݐ()rןt:W6CV \z(y!hu%$MK;4%+(&uLL`S_EeUVYLP斁k0Nu!'@57 6tEԍtݎ_j7я 밠.A7WVBŬ_6C¦(и!$ E}D*|\CR#0R< {;i uq;ADp'Mً8?S9xvTO+i-2H?\7sXƢ#$w3ecK6ᨈT-jL]*:_$;'"ͪ=PTE{h+&KY:>n^%]MyCUA(sblI j>8~:vrVg) Z %Ҝȁ~˧*`cQAM5TT]C}ƞsIEW#wFÚiZ6C)xΏh(7"qi۰}fηtf Rxsy%^Dz5Բ BFcJ"WO uHN^gAkILp$tuϼfc5A"S߂Q xJ+䔴RP$h*sHʂa BfqBo8cEEW肘43G(S÷ rmm6g# nܧv nt3o E=Qŏ!UAq>ApRf">nB(םCJ&,#1n?Q_Vu_zg_ri|(Sa K V>j 3 9vkȔE;ojU6|6efp]n@5h@yB9aiGLPm4 ]E\s.Cs=lihhiZjAE3`.#k7KDAVtUq-NyN=5"+Zy%b_Yn9ihEX,Wy UqWڟnk5@@ YU 'pB5iy0 ϥeз9 N=/u. b@u0- @|v.1F`.VJ8@8Gl)֒zkvk$'-. x4ێ*kN I|bA5K~7cZFS5u+Nv?-QdéIHdZCZk8u^Y[+A91: 'i+SR%=>R^ZQ]Ku45'V LqR)m&qM̢F YJ, DvYS4`fr@":15rTZ1FW`{.4ZvDnJ#vFNu/ƮAmB}䬟*"N"/A.|ęo dE4X߯j o(%<;V(6ó|-_Rkԉ@G& v%y<[H(,pӍԞ;>^_r~dE]d NuyGaf?`ۀ/+5>'8 q: @[d5]ԡ>z7>4-*;:g8uJ_JR(0ݾy6gE-Aщ9>[Qf=Co3:vgf-bak/iVQxwZ'ZGJ+ ֹx_3BdtuKвvιmP<*4ָ$M*8;yj[ MFɸQU=IF/Hу'ŅJ9ïPS$'#)}^G_EvaH$ 嗾~q*Xۀnkٻ*2KvX8OYEF+Mb:~Ctn^۴zPՉ%=7T#~Qy&j@Pxp:|ͤ`}Xi; )8ay ,mQ\NH_BC7Oby@ v8膔q7{*GF0"[`*G:5HC|/{V"w= ]ܡlh{n# N~E<]q,OhA4Ħ]˘tfE,X"E9pk|>~ lfRZ|l[B} ۙTz4_K9 ,T]3dѩ HC&5S;8pkNPkUWڄm p~eQuL.r/b-*r)F§ ׅ Ş[,\A:0&ElmQv$oC-oY C9yl`'y5!ǛE=51YQ1%'(φk JY"8IYF.LX8t(fX+ Hd>=vwYpu5N,6H{-@ݙvĘ%vv+Z6ӧ8r:0JWERE+-F_]78<-]Dg.׺3@D]Z!& .|.PXd(0B<>G[RS^4qQtMC"oyl֫=tZWܴL2e6daN/4TCxևNze3)W*!goHcVEJSsiYZ0D;rZ4o1Ze5\~G+^(3koepSͬRbԛJ(B|UAJu҃L m"Q $5rXM$.<d:v^UW@d]Ku]WWBD=X O{:\ҧ&ր,4֊byjYrh.ri_:!&ѠLazPޑbXc9.|&-Pge@x=]Z3U#LגL9 ]rn T<]z,%w^ 5!Э$>k3+g&@R ԍos0˪wlL5ftC(vmq/evkhaHTyI#9Ɉ0e>uFߨYthG{Fq \8<|!ZhA II:K&3qJ1H,Ma}ܷf#8$K$o\Bw ez-EA$*/ |,0, 78jt0#2Kg.xEP-&Cf o7d3%itQl/TXP*Zt$kφ]&[ܻ?/lӈ>Y@x7V-7 u/V 8OZxϼ-7Z@[:ƙct6C£:Imn>߄,X-!8.N?YwT^lάDˆX72<0M+2J^18vc x59GpWΖ`CW(ZrcTk/J0Pa9~r(52='}o: :b[z!̡3-tn73R5S]֎wkZL .jMN{'}Z(^-$IRPUĹl:C֥2(V{2O5'}ˆ]os ѓ͛hhq~r>1 0HB8խ`{Wa#%Z]803`771 h7_~,yT@x1.@54^wĢTlKfg_6vm 1R朰;j>k8 LF~ɍ'dr+`73@O,cb[6хS͖(K.ٙŰV3K%ݵjTRiHL8C <-ăX$njK\kƊ`;v7t%Nߝ +Fᘧ(gieh=@ݿl.,U:m>BDA_x5˹ف+FvU< vfdNQ-x |)#bZLvc'l>sF2$Ax!SF#e@ k=0J Bc\,_)9GLDpJFz0*pXaeI,ja}盚WwkIѧwϜbmȸtU|}$@($ݯZ/`2xoh_xn+riΩ2h`q Z_iא&l[0u(G@7n-H,Uu.Go@)_лj˅(_4c%.H EpJWH*1F ?PC?`t*WQLIsP-E:7_[s>OTq @?_lFH./n=f, ܥmwC/LEέRg!mdY^ecՍ$@3l9[tPō+FcW0:}*O}5+  AvY6 2Dy K~hV>_ Aqo|[R T!cpk6~XxAVfuSs׆V<%>+ї{|RAA O[w^Ԇ2=WTWk]Iᴠ|C[/se+sBMm hI@-}cԉUM^PCt8ہ/N%u;;e=U-6qi+Ej˯:d-02Ҽ-4BgZseJ0$tY;'ɜċ c/1^֩%[s~ }Izz̸$h?EKH) ppIZeoCʶR¦zp6[K4yR/:_[>zt1 k< gZY$[I7o~ɂB%+P*ji1 KҞT[`KQh+ Cn=-sd.Cܽ]ʋ{ݝ a2)\W%oXW󵱗4b0Sjtħohi$k'|5a%ʜmdk#'+.F}%~ػC5k!y0D /F #5&Br 8W猹kxw,h02(48fzO7?O)Pվ$;>+Q!$FS?| \PsE?+4]8I\w ?XݢvlvL㡗XkȺ;1H9+ =yhA?mӎ𱾧j|Qce13X tqSI5`76ǸqN !pbR5> `7jlKx 335LvPJfD Q)m fʇ3dnlHDO1 $PnCQ[8Iq-qC(fh䰩A_n}^!0ߙb_"\idC3a9uY9Q>J89ŲQvm[x(k ܅܄{]^{IvԀ@6 -Փ.x~U<,=RLZu„=rB~&{7v5Sˋ3~/b()\ǖPU4Ug(RF\l׉P@f)c*Ġ3+m1I`Ḁ|k>v Sq"Y̛j$.;Uo44sr>۞G8p!kٟОdI#֌sĢ]pq>~Mu26Y`d`mOV!0C+8K\%)u$9(C,Fy㛈Zy p)uWRq?prXl ?Cr)C{ &!Hcc]LWrĺkBfras<PLbgBξ4ވ\s߽&uڌsֿU?52NqT2uzlyNYO5AEcSB/u!`rk;{aw\f$18Pf25糐6K0efoIe)WUT'$ÏccI6n &\!MtXB!x/C= G$b-y: Ь6}!WJSg\8$:cO9Z{MU-'I" }vRn~bsG }}JlWgsrᯛ;tCʕ咏x(܄;²+T-|=MmKTG!{Yhw͠q K;(뒫;(\ t{Qaf?Q yM02ȡ&DfiP{+۱uM);yĝ8n #/IϪzG*沋wIF9\ؕ.nt9N}LHz,&]MyŲw1溙P)Ct'WK"Ilj}po5M,_8F՞[ko8ś2=a:zYY}[/0V ~.Xor*7< p:yq95fmiO2:472QMRy'Zϲ*N -?h%]M,ep3Lbe߅R}γi1/ dRYZ=%dl A"$o(RC7 a+ Jמ_ZXу;Y(ؠOݻ ElyԬ[ 0{fB0&of@ UK%1xEa"^Č[oy&(ibFl\E^Ǻavg0~dQqߏE$b{ee$]2:}+(,3 SktWAZSLw Cͷ(op&\mAǪĕ C]tգb> j엫 S_+7T[mv/;碤\=Ex olJ(- ~!X*8%%2y_+!lp;7ɧ΂H?UJ ѫXSi xjebdI. u>A؏v"Y4'n3̝VyfQfEBHDd4dUcy|\Xs1RQRN:i6:لe"\-5 I)ZM=w|%M˒ŲHyg"ۦ YW5TWXOIhmbK/rLEidPbbcx\~#,D^{ #tEZdM9XiZ_4ön(I]$+h~3F_P}ˡZ4vT= 0?`#߱~d/39%{l ]0ދ/R`}zf`,a ɯjX.z/Q5)Sm(ўtm5a5G`6T-ʼn 8><L~TN ű#eAם?qaA*4_`jE{v&DƴGV`*$a^k>m2Àֺx7%ǀ OU1 ΁k& GM{)(ň}_d.sI2<,RL)L^ɅWќ+Yo][yT Yg /"{f1V5}Y|DeQ ̎ɖ?,XtXP3iۗ;-:f#L`vńm_J[1QLVT/3{c#@ t]>Ah%h:}0% Ab&_'<^>ho:@N?r#ȓf˛E$sp|no:T|Tc)N2j/f~#[Uۉ_g@s3eYKl!q&',ǁ DזҎ/xL*7eN[*fVkK4kѡ -Tۇ)6bN ,~@rZ,{䏍sO،]ϋ9CO|(0{d[a,3i^n! 5HN|Lw0Yc`!j.X"E)ZEnKI̽ei9_4_#>TMq:00oOr =)FI6ލ"g Y1czdP$kq܍jf|6E Д{W҆u*q* p*QFiF (7;4Wg?'wjA-ۮ10f-2;r$҅,/lY.,LL/@s.F{n6P+;J;O H8M@[>դWR?&DAHmHy.bXsԧ>ƬOjTiJ!9ܖqvб6Cp!)!H* q.*f!+_,*3\D 7@ eu7a4-n"$]?C^댾-rw&MdԠf_sf^aez?ZVu4F6r(5jqj WKT jJɗIeی?eQeάǾS,`C=$m\ƐFPz-tVH)Q k1"7Zp?'&DQNc8$1a'FYW4Q-);Rۚj'HAs \pA |'GISf]^ vB"[F~B*Sjm@P[ks{5u%3h{'5PakU;{5&ҕ*| J_l"L'Wɿ[S3mT2Y4XA_BZ75|V|{GM$w0EZ)"?85MRBtrpI^(5Fm~[wGwկ:GD6ƁNA 64'D jZIY8| ǚLnm&n$z•qsuApi43&IEVՆ 2;iSsR>CcJvޑ,i,#`qĬQ? )[_=ӕ,{ɀc1EAr ɚU!|!`\O439K ֬^K:E#æc9`-351e";.!+-z}SQWTU5#EiAKr c.g[S^1%.Ae87Q+vzAACX8C2G/RzS)]D>؜Y u:^$}[|d]CFѭX_Wh~P0[}e 7RG[%.L/<MPsjLebq4кu^"tӢ:{q;Uynw `PҨwcG^ν<{_@b g)EܼkAZ5Hy n;P7 4Cs@<345rk߰ X-֙o跍o5=C"1r #HDs(|фDA .Fm\~)f3]LY3O[X'r+kAlgy-((} rJ$y1#Ly؊.*^F~EY{08=bж C92"_}7*X֥;!UAعC_ coD ڞ4ar*S+L6%Vxe"(N_zF,ɮ'V|aF[bp:[Z놠<)q)VxX\HLC7!MM͙\k- pGus?@ xi=+-MJD'E׋]ze V sKw${W dA48:[KtTVeMPd$rB ThC{"l-2A,z:_ ee0=xXrt:nn˨X{5w jUV4i'O|o&:Ld4@tioUb.b`r=_ X<X`!&=ynܦ=qLT|Hnf|*XD`a$@$~nQP)مHK}j%-Xm{!$jWje>1@ڿl)=CP &q4 Y;,[FM4(YEndd˺镨>$z\Wq~6ϸuKdr`H$Qm 10s'",1oU$JR Iq|9~{U&M|م$ Α߽n#*=._`IXln M>fԑBՒ 5gYCq=:`WE#f<0&Eu`2rR`Mrq0΍,_"9 nPN ֪q1U%z@tR@xL.ZŠ@lC/ľ{#Ѽ,ޜё|9sO@L~2P:sHo8F Ԭť y'rYւS:?(/.VF\ٽMd&; /{BܳU'u\lO:FWshO7!?X?o͕aR*fII ʫ1aG4 =S Dcofֺ9R )iC1}-\w5at7hccMOмU$ip1@>?uV/)du˿]ւ% UFP7uC2{#0(az5ns)]RH4Gd,x 6ed"~wJnΑ>qR P{t|ǖ6W.4>򬯃H8bĀflKJWgXNhZ//s3-LP/2ƗUAj2ܧѭSD/[?s56rM=[ך9uF*t[9Fm ?Tڋ+5H>d.C1a/M8WRh!p:f+qKoX^dzU(x /Y>fB{"` #A~oy*Dtl_V6WALMXjnP*!oz҉B Λ>(G%)#|, $kX߻R"}$s`wD~JGe}zM4ɚL