libgit2-28-0.28.4-150200.3.3.1<>,tc!|p9|[pVra[ed40*"\] %_up>c =b*tzcBW-Zw d)OxxMʙ{&Rqmv-K~_&:""ե~y+JurH#(@:?>W*ӡ$U`0}Ĥy1SΞq|T{@lʊ&xagJz  )x<4'<\ʄy#'y41>@?d  ! /  9Zy      ' @\hc(89 : 6>$@3FBGXHtIXY\]^<bccdefluv wx y<ztClibgit2-280.28.4150200.3.3.1C git librarylibgit2 is a portable, pure C implementation of the Git core methods provided as a re-entrant linkable library with a solid API, allowing you to write native speed custom Git applications in any language with bindings.c!|ibs-arm-3HSUSE Linux Enterprise 15SUSE LLC GPL-2.0 WITH GCC-exception-2.0https://www.suse.com/System/Librarieshttps://libgit2.github.com/linuxaarch64?= git 2.9) for proper interoperability. - Symbolic links are now supported on Windows when core.symlinks is set to true. - Submodules with names which attempt to perform path traversal now have their configuration ignored. Such names were blindly appended to the $GIT_DIR/modules and a malicious name could lead to an attacker writing to an arbitrary location. This matches git's handling of CVE-2018-11235. - Object validation is now performed during tree creation in the git_index_write_tree_to API. - Configuration variable may now be specified on the same line as a section header; previously this was erroneously a parser error. - When an HTTP server supports both NTLM and Negotiate authentication mechanisms, we would previously fail to authenticate with any mechanism. - The GIT_OPT_SET_PACK_MAX_OBJECTS option can now set the maximum number of objects allowed in a packfile being downloaded; this can help limit the maximum memory used when fetching from an untrusted remote. - Line numbers in diffs loaded from patch files were not being populated; they are now included in the results. - The repository's index is reloaded from disk at the beginning of git_merge operations to ensure that it is up-to-date. - Mailmap handling APIs have been introduced, and the new commit APIs git_commit_committer_with_mailmap and git_commit_author_with_mailmap will use the mailmap to resolve the committer and author information. In addition, blame will use the mailmap given when the GIT_BLAME_USE_MAILMAP option. - Ignore handling for files in ignored folders would be ignored. - Worktrees can now be backed by bare repositories. - Trailing spaces are supported in .gitignore files, these spaces were previously (and erroneously) treated as part of the pattern. - The library can now be built with mbedTLS support for HTTPS. - The diff status character 'T' will now be presented by the git_diff_status_char API for diff entries that change type. - Revision walks previously would sometimes include commits that should have been ignored; this is corrected. - Revision walks are now more efficient when the output is unsorted; we now avoid walking all the way to the beginning of history unnecessarily. - Error-handling around index extension loading has been fixed. We were previously always misreporting a truncated index. * API additions: - The index may now be iterated atomically using git_index_iterator. - Remote objects can now be created with extended options using the git_remote_create_with_opts API. - Diff objects can now be applied as changes to the working directory, index or both, emulating the git apply command. Additionally, git_apply_to_tree can apply those changes to a tree object as a fully in-memory operation. - You can now swap out memory allocators via the GIT_OPT_SET_ALLOCATOR option with git_libgit2_opts(). - You can now ensure that functions do not discard unwritten changes to the index via the GIT_OPT_ENABLE_UNSAVED_INDEX_SAFETY option to git_libgit2_opts(). This will cause functions that implicitly re-read the index (eg, git_checkout) to fail if you have staged changes to the index but you have not written the index to disk. (Unless the checkout has the FORCE flag specified.) - At present, this defaults to off, but we intend to enable this more broadly in the future, as a warning or error. We encourage you to examine your code to ensure that you are not relying on the current behavior that implicitly removes staged changes. - Reference specifications can be parsed from an arbitrary string with the git_refspec_parse API. - You can now get the name and path of worktrees using the git_worktree_name and git_worktree_path APIs, respectively. - The ref field has been added to git_worktree_add_options to enable the creation of a worktree from a pre-existing branch. - It's now possible to analyze merge relationships between any two references, not just against HEAD, using git_merge_analysis_for_ref. * API removals: - The git_buf_free API is deprecated; it has been renamed to git_buf_dispose for consistency. The git_buf_free API will be retained for backward compatibility for the foreseeable future. - The git_otype enumeration and its members are deprecated and have been renamed for consistency. The GIT_OBJ_ enumeration values are now prefixed with GIT_OBJECT_. The old enumerations and macros will be retained for backward compatibility for the foreseeable future. - Several index-related APIs have been renamed for consistency. The GIT_IDXENTRY_ enumeration values and macros have been renamed to be prefixed with GIT_INDEX_ENTRY_. The GIT_INDEXCAP enumeration values are now prefixed with GIT_INDEX_CAPABILITY_. The old enumerations and macros will be retained for backward compatibility for the foreseeable future. - The error functions and enumeration values have been renamed for consistency. The giterr_ functions and values prefix have been renamed to be prefixed with git_error_; similarly, the GITERR_ constants have been renamed to be prefixed with GIT_ERROR_. The old enumerations and macros will be retained for backward compatibility for the foreseeable future. * Breaking API changes: - The default checkout strategy changed from DRY_RUN to SAFE. - Adding a symlink as .gitmodules into the index from the workdir or checking out such files is not allowed as this can make a Git implementation write outside of the repository and bypass the fsck checks for CVE-2018-11235. - Bump sover to 28 following upstreams changes.- libgit2 0.27.7: * Various improvements for handling repositories * Various API correctness fixes - includes changess from 0.27.6: * Various security fixes for parsing integers from buffers, and buffer handling bsc#1114729- libgit2 0.27.5: * CVE-2018-17456: Submodule URLs and paths with a leading "-" are now ignored to avoid injecting options into library consumers that perform recursive clones (bsc#1110949) * Avoid a buffer overflow when running repack * Avoid stack overflow from unbounded recursion in configuration file parser * Avoid heap-buffer overflow when parsing "ok" packets * Fix heap-buffer overflows in smart protocol parsing code * Fix potential integer overflows on platforms with 16 bit ints * Fix potential NULL pointer dereference when parsing configuration files- Use pkgconfig style of dependencies, refresh dependencies - Use more of cmake macros- libgit2 0.27.4: * fix out-of-bounds reads when processing smart-protocol "ng" packets (bsc#1104641)- libgit2 0.27.3: * CVE-2018-10887 (bsc#1100613), CVE-2018-10888 (bsc#1100612): Specially crafted delta object in packfiles could trigger an integer overflow, bypassing input validation and causing the object database to contain copies of system memory. This may allow denial of service or, potentially, an information leak - includes changes from 0.27.2: * various API and correctnes fixes * Fixes related to handling of .gitmodules - includes changes from 0.27.1: * CVE-2018-11235: insufficient validation of submodule names from .gitmodules allowed writes to arbitrary paths (bsc#1095219) * disallow .gitmodules files as symlinks.- update to 0.27.0: - Changes or improvements - Improved p_unlink in posix_w32.c to try and make a file writable before sleeping in the retry loop to prevent unnecessary calls to sleep. - The CMake build infrastructure has been improved to speed up building time. - A new CMake option "-DUSE_HTTPS=" makes it possible to explicitly choose an HTTP backend. - A new CMake option "-DSHA1_BACKEND=" makes it possible to explicitly choose an SHA1 backend. The collision-detecting backend is now the default. - A new CMake option "-DUSE_BUNDLED_ZLIB" makes it possible to explicitly use the bundled zlib library. - A new CMake option "-DENABLE_REPRODUCIBLE_BUILDS" makes it possible to generate a reproducible static archive. This requires support from your toolchain. - The minimum required CMake version has been bumped to 2.8.11. - Writing to a configuration file now preserves the case of the key given by the caller for the case-insensitive portions of the key (existing sections are used even if they don't match). - We now support conditional includes in configuration files. - Fix for handling re-reading of configuration files with includes. - Fix for reading patches which contain exact renames only. - Fix for reading patches with whitespace in the compared files' paths. - We will now fill FETCH_HEAD from all passed refspecs instead of overwriting with the last one. - There is a new diff option, GIT_DIFF_INDENT_HEURISTIC which activates a heuristic which takes into account whitespace and indentation in order to produce better diffs when dealing with ambiguous diff hunks. - Fix for pattern-based ignore rules where files ignored by a rule cannot be un-ignored by another rule. - Sockets opened by libgit2 are now being closed on exec(3) if the platform supports it. - Fix for peeling annotated tags from packed-refs files. - Fix reading huge loose objects from the object database. - Fix files not being treated as modified when only the file mode has changed. - We now explicitly reject adding submodules to the index via git_index_add_frombuffer. - Fix handling of GIT_DIFF_FIND_RENAMES_FROM_REWRITES raising SIGABRT when one file has been deleted and another file has been rewritten. - Fix for WinHTTP not properly handling NTLM and Negotiate challenges. - When using SSH-based transports, we now repeatedly ask for the passphrase to decrypt the private key in case a wrong passphrase is being provided. - When generating conflict markers, they will now use the same line endings as the rest of the file. - API additions - The git_merge_file_options structure now contains a new setting, marker_size. This allows users to set the size of markers that delineate the sides of merged files in the output conflict file. By default this is 7 (GIT_MERGE_CONFLICT_MARKER_SIZE), which produces output markers like <<<<<<< and >>>>>>>. - git_remote_create_detached() creates a remote that is not associated to any repository (and does not apply configuration like 'insteadof' rules). This is mostly useful for e.g. emulating git ls-remote behavior. - git_diff_patchid() lets you generate patch IDs for diffs. - git_status_options now has an additional field baseline to allow creating status lists against different trees. - New family of functions to allow creating notes for a specific notes commit instead of for a notes reference. - New family of functions to allow parsing message trailers. This API is still experimental and may change in future releases. - Breaking API changes - Signatures now distinguish between +0000 and -0000 UTC offsets. - The certificate check callback in the WinHTTP transport will now receive the message_cb_payload instead of the cred_acquire_payload. - We are now reading symlinked directories under .git/refs. - We now refuse creating branches named "HEAD". - We now refuse reading and writing all-zero object IDs into the object database. - We now read the effective user's configuration file instead of the real user's configuration in case libgit2 runs as part of a setuid binary. - The git_odb_open_rstream function and its readstream callback in the git_odb_backend interface have changed their signatures to allow providing the object's size and type to the caller.- Update to 0.26.3: * Fix cloning of the libgit2 project with git clone --recursive by removing an invalid submodule from our testing data. * Fix endianness of the port in p_getaddrinfo(). * Fix handling of negative gitignore rules with wildcards. * Fix handling of case-insensitive negative gitignore rules. * Fix resolving references to a tag if the reference is stored with its fully resolved OID in the packed-refs file. * Fix checkout not treating worktree files as modified when only their mode has changed. * Fix rename detection with GIT_DIFF_FIND_RENAMES_FROM_REWRITES. * Fixes memory handling issues when reading crafted repository index files. The issues allow for possible denial of service due to allocation of large memory and out-of-bound reads. (CVE-2018-8098 bnc#1085257 CVE-2018-8099 bnc#1085256) * Updates the bundled zlib to 1.2.11. Users who build the bundled zlib are vulnerable to security issues in the prior version.- Modernize spec-file by calling spec-cleaner- remove unneeded dependency (python is used only for testsuite, which isn't used during build)- libgit2 0.26.0: * Support for opening, creating and modifying worktrees. * Can now detect SHA1 collisions resulting from the SHAttered attack CVE-2005-4900 * Fix for missing implementation of `git_merge_driver_source` getters * Fix for installed pkg-config file being broken when the prefix contains spaces * Can now detect when the hashsum of on-disk objects does not match their expected hashsum. * Support open-ended ranges (e.g. "master..", "...master") in revision range parsing code. * Correctly compute ignores with leading "/" in subdirectories. * Optionally call `fsync` on loose objects, packfiles and their indexes, loose references and packed reference files. * Builds against OpenSSL v1.1 and against LibreSSL. * Improvements for reading index v4 files. * API additions and incompatible API changes- libgit2 0.25.1 - New features and functionality: * repository discovery features * Support for reading and writing git index v4 files * Improve the performance of the revwalk * reference db concurrency improvements * Nanosecond resolution is now activated by default * restrict the set of ciphers used with OpenSSL by default. * user-registered merge drivers * built-in support for the union merge driver * callers can now specify proxy settings * New API for creating signed commits * New API for creating blobs from streams * New flags for opening repositories * New functions for various git operations - Removed API: * git_blob_create_fromchunks() has been removed in favour of git_blob_create_fromstream() - Changed API: * git_packbuilder_object_count and git_packbuilder_written now return a size_t instead of a uint32_t for more thorough compatibility with the rest of the library. * git_packbuiler_progress now provides explicitly sized uint32_t values instead of unsigned int. * git_diff_file now includes an id_abbrev field that reflects the number of nibbles set in the id field. * git_odb_backend now has a freshen function pointer * git_remote_connect() now accepts proxy options.- libgit2 0.24.6, including the following security fixes: * bsc#1019036: edge cases in the Git Smart Protocol can lead to attempting to parse outside of the buffer CVE-2016-10128,CVE-2016-10129 * bsc#1019037: MITM possible due to lack of parameter for certificate parameter CVE-2016-10130,CVE-2017-5338,CVE-2017-5339 - includes changes from 0.24.5: * add support for OpenSSL 1.1.0 for BIO filter- libgit2 0.24.3, fixing the following vulnerabilities: * CVE-2016-8568, CVE-2016-8569: invalid memory accesses parsing object files (bsc#1003810) * various bug fixes from the 0.24.2 release- Add to the SDK. Fate#319349 - Update license to GPL-2.0 WITH GCC-exception-2.0- libgit2 0.24.1: + various compatible backported bug fixes- Update to version 0.24.0: + Custom filters can now be registered with wildcard attributes, for example filter=*. Consumers should examine the attributes parameter of the check function for details. + Symlinks are now followed when locking a file, which can be necessary when multiple worktrees share a base repository. + You can now set your own user-agent to be sent for HTTP requests by using the GIT_OPT_SET_USER_AGENT with git_libgit2_opts(). + You can set custom HTTP header fields to be sent along with requests by passing them in the fetch and push options. + Tree objects are now assumed to be sorted. If a tree is not correctly formed, it will give bad results. This is the git approach and cuts a significant amount of time when reading the trees. + Filter registration is now protected against concurrent registration. + Filenames which are not valid on Windows in an index no longer cause to fail to parse it on that OS. + Rebases can now be performed purely in-memory, without touching the repository's workdir. + When adding objects to the index, or when creating new tree or commit objects, the inputs are validated to ensure that the dependent objects exist and are of the correct type. This object validation can be disabled with the GIT_OPT_ENABLE_STRICT_OBJECT_CREATION option. + The WinHTTP transport's handling of bad credentials now behaves like the others, asking for credentials again. + Various API changes (additions AND removals). - Rename libgit2-23 subpackage to libgit2-24, following upstraems soname bump (also in baselibs.conf).- libgit2 0.23.4: * various bug fixes and improvements - drop upstreamed libgit2-fix-.pc-file.patch- libgit2 0.23.3, containing critical fixes: * blame: guard xdiff calls for large files * diff: don't feed large files to xdiff * merge_file: treat large files as binary * xdiff: convert size variables to size_t * GITERR_CHECK_ALLOC_ADDn: multi-arg adders- Add libgit2-fix-.pc-file.patch: Fix paths written in libgit2.pc.- libgit2 0.23.2: * documentation fixes * diff: don't error out on an invalid regex * http: propagate the credentials callback's error code * Fix bug in git_smart__push: push_transfer_progress cb is never called * remote: don't confuse tag auto-follow rules with refspec matching * curl: use the most secure auth method for the proxy * Forcing libssh2 lib location * fix duplicate basenames to support older VS - includes changes from 0.23.1: * Stage an unregistered submodule in _add_bypath() * filebuf: remove lockfile upon rename errors * Increase required version of cmake to 2.8 * Handle ssh:// and git:// urls containing a '~' character. * documentation updates * submodule URL handling fixes * index: allow add_bypath to update submodules * blob: fail to create a blob from a dir with EDIRECTORY * submodule: lookup the submodule by path if available * submdule: reproduce double-reporting of a submodule in foreach - note cmake requirement and use cmake makros - build with system libcurl - build with system http-parser- Update to version 0.23.0: + Changes or improvements: - Patience and minimal diff drivers can now be used for merges. - Merges can now ignore whitespace changes. - Updated binary identification in CRLF filtering to avoid false positives in UTF-8 files. - Rename and copy detection is enabled for small files. - Checkout can now handle an initial checkout of a repository, making GIT_CHECKOUT_SAFE_CREATE unnecessary for users of clone. - The signature parameter in the ref-modifying functions has been removed. Use git_repository_set_ident() and git_repository_ident() to override the signature to be used. - The local transport now auto-scales the number of threads to use when creating the packfile instead of sticking to one. - Reference renaming now uses the right id for the old value. - The annotated version of branch creation, HEAD detaching and reset allow for specifying the expression from the user to be put into the reflog. - git_rebase_commit now returns GIT_EUNMERGED when you attempt to commit with unstaged changes. - On Mac OS X, we now use SecureTransport to provide the cryptographic support for HTTPS connections insead of OpenSSL. - Checkout can now accept an index for the baseline computations via the baseline_index member. - The configuration for fetching is no longer stored inside the git_remote struct but has been moved to a git_fetch_options. The remote functions now take these options or the callbacks instead of setting them beforehand. - git_submodule instances are no longer cached or shared across lookup. Each submodule represents the configuration at the time of loading. - The index now uses diffs for add_all() and update_all() which gives it a speed boost and closer semantics to git. - The ssh transport now reports the stderr output from the server as the error message, which allows you to get the "repository not found" messages. - git_index_conflict_add() will remove staged entries that exist for conflicted paths. - The flags for a git_diff_file will now have the GIT_DIFF_FLAG_EXISTS bit set when a file exists on that side of the diff. This is useful for understanding whether a side of the diff exists in the presence of a conflict. - The constructor for a write-stream into the odb now takes git_off_t instead of size_t for the size of the blob, which allows putting large files into the odb on 32-bit systems. - The remote's push and pull URLs now honor the url.$URL.insteadOf configuration. This allows modifying URL prefixes to a custom value via gitconfig. - git_diff_foreach, git_diff_blobs, git_diff_blob_to_buffer, and git_diff_buffers now accept a new binary callback of type git_diff_binary_cb that includes the binary diff information. - The race condition mitigations described in racy-git.txt have been implemented. - If libcurl is installed, we will use it to connect to HTTP(S) servers. + Various API changes (incl. breaking changes). - Rename libgit2-22 subpackage to libgit2-23, following upstreams soname bump (also in baselibs.conf).- Update to version 0.22.1: + The following (critical) fixes have been backported to this maintenance release: - checkout: introduce git_checkout_perfdata. - git_path_join_unrooted: return base len. - checkout: don't recreate previous directory. - checkout tests: nasty symlinks. - checkout: drop newline in error message. - checkout: remove files before writing new ones. - checkout tests: emulate p_realpath poorly on Win32. - checkout tests: cleanup realpath impl on Win32. - Changes from version 0.22.0: + git_signature_new() now requires a non-empty email address. + Use CommonCrypto libraries for SHA-1 calculation on Mac OS X. + Disable SSL compression and SSLv2 and SSLv3 ciphers in favor of TLSv1 in OpenSSL. + The fetch behavior of remotes with autotag set to GIT_REMOTE_DOWNLOAD_TAGS_ALL has been changed to match git 1.9.0 and later. In this mode, libgit2 now fetches all tags in addition to whatever else needs to be fetched. + git_checkout() now handles case-changing renames correctly on case-insensitive filesystems; for example renaming "readme" to "README". + The search for libssh2 is now done via pkg-config instead of a custom search of a few directories. + Add support for core.protectHFS and core.protectNTFS. Add more validation for filenames which we write such as references. + The local transport now generates textual progress output like git-upload-pack does ("counting objects"). + git_checkout_index() can now check out an in-memory index that is not necessarily the repository's index, so you may check out an index that was produced by git_merge and friends while retaining the cached information. + Remove the default timeout for receiving / sending data over HTTP using the WinHTTP transport layer. + Add SPNEGO (Kerberos) authentication using GSSAPI on Unix systems. + Provide built-in objects for the empty blob (e69de29) and empty tree (4b825dc) objects. + The index' tree cache is now filled upon read-tree and write-tree and the cache is written to disk. + LF -> CRLF filter refuses to handle mixed-EOL files. + LF -> CRLF filter now runs when * text = auto (with Git for Windows 1.9.4). + File unlocks are atomic again via rename. Read-only files on Windows are made read-write if necessary. + Share open packfiles across repositories to share descriptors and mmaps. + Use a map for the treebuilder, making insertion O(1). + The build system now accepts an option EMBED_SSH_PATH which when set tells it to include a copy of libssh2 at the given location. This is enabled for MSVC. + Add support for refspecs with the asterisk in the middle of a pattern. + Fetching now performs opportunistic updates. To achieve this, we introduce a difference between active and passive refspecs, which make git_remote_download() and git_remote_fetch() to take a list of resfpecs to be the active list, similarly to how git fetch accepts a list on the command-line. + The THREADSAFE option to build libgit2 with threading support has been flipped to be on by default. + The remote object has learnt to prune remote-tracking branches. If the remote is configured to do so, this will happen via git_remote_fetch(). You can also call git_remote_prune() after connecting or fetching to perform the prune. - Rename libgit2-21 subpackage to libgit2-22, following upstreams soname bump (also in baselibs.conf).- Add baselibs.conf/sbin/ldconfig/sbin/ldconfigibs-arm-3 16631389510.28.4-150200.3.3.10.28.4-150200.3.3.1libgit2.so.0.28.4libgit2.so.28libgit2-28AUTHORSREADME.mdlibgit2-28COPYING/usr/lib64//usr/share/doc/packages//usr/share/doc/packages/libgit2-28//usr/share/licenses//usr/share/licenses/libgit2-28/-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:25921/SUSE_SLE-15-SP2_Update/03ab1dcc5d9f003aeaff77a85e9772cf-libgit2.SUSE_SLE-15-SP2_Updatedrpmxz5aarch64-suse-linuxELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, BuildID[sha1]=3c94721e4832c5b9bc72c8653920e76063ae2e8c, strippeddirectoryUTF-8 Unicode textUTF-8 Unicode text, with very long linesASCII textPRR R RRR R RRRR RR_S̶f4Wutf-8bf85c885853036a47000055447819a779b21dd007f8559f8c9d14303c9568141?7zXZ !t/ E]"k%f0]dٶiqmT᩻RĖo`JjNJZK:`do,O{v͉{d"^ܨ!pCGj`\CլYTʡ>=+X|}|֛ͬ slHB"]GSN8s$S{/㹓|ً :;\ASA0EJ4z罕t:5YzFsfPr `Bv<1C/8>7# @E'acMI )DTc3JJ{qx= EàJw}i/&}!&bIkE?C?6o7xIvYǂTz~$([Xږmfbwf 2;ik[ ƯV# nprG]:He;>| wb8yvrC@LvMbf?Cc7I׉zTpcmӚb"lw \>&y0 yMf.>5:4aS۱2JA2z`" c17޷%])Vm{ա#. sIAR;&NsKh '2@LF-'i&^nr;a)QjӱiE fET"f17LYB7մ+^Z~Ϩf0N_ۣiE!LoBXo# Ŷ+:9_X- )ڟx:mֳUҼX'C]1jѧY>3ۗZ ԟI2X2ܥ{ZR&[3>0/'еr(S:xՖ-55RĜॆӆ]^ xW%HuBf$0gBc b qdӆ4ɥoKYxr"'"&QyɭIbp\5X8r|)C`}Q2Ǟ¤$@=گeKa`/VU ~tAqanmȵ֥>ુ4B|>Pyˣ#zlCk3Mu$ dȢNHe!5 ĩrGm7:2ݔGu)lq݃DǢžUh̑^NSk3IjMAH8i;-^)/5=|mQqf%|YY-KV2FDf V;&#S؏H*}F\w!F D,Q(CGW ܧʠuuv9xJyR >(zi}bֺ!#Jdfb;MtL"wZLXBf+ +רpr&f"ܯeˆx𲫭'! ˓=C"7R,2c9;VBh'CL8,SȜk+zy}IPN]BGyeQm'hJ?R+a3↟JeKo)ޑ]4`7npǂZ9uV>೯ b[:u^i!RAt:6IJ CKuyc04wJn&e VΫ><&]d9}N}.7 <)+$ !aCtbl: *\JIG' /صB6Ba+I*c֒HCHJ| /:(Qл ܀ )kIcB [F;Moj*d~RΊ^0ǫ*-jPa^ eHHٶD=7vg3?~h f]q&UVG<58%2-ܙaѫg,LcJא JQPG;A.^Ay :pahѠbN&xDg>PKPm}eY- ni\F 0F>SdlV5>)uL[hQAM +!Rf]Zh->q!kp')Hg[ SJJ掝[1)h\6 (rDh3y -Kkũ5d ulMޜ~@'m}TrGSdOۥŐ[1CH]"^h=Q?+JVx#Ls~`'}_P*ӯMPSzy6h zHv"2ibvjR`ǁg"7X)B pI:I%N/&usU7P@k9 ĵ 883uҭN=pTᏈ=E\BPdʦ5~/w\f߯7'j:Fc2G@C¸%n:LC{i Dd0l9|{eOm"C8lBϙyƈdXޢ߇!e9[&4aiDʗ9nK6B?EJ$1[Yw;VH ^[j nobm*<4ϺaKضXR!l^\5`@<(X_\:)/YQcPn<)G0 5,@-:ܑ|,4v ~B~0e6&ݢ =߶y8G# $Ty|…uțJCBE &W@*g$Ή}exd-a 9YXJJ ̒Ou{oTuM~aTvAiZjX5c5wkN=Um2"58?R9tQd_E0#6G&0O]Xfz7NnbA@p>kwa\AJMЇ+!|-[ ++ W<9ymr9>[?}utpW8 =u6^Ej9x} Z6N.%ߵI䷐Dt$P:GfEpŠ2C1l}3M$ll> ΧI G|/nOLYbiTBO-8m&U&BD)m`zik9_p YJU( )M ȯA=R=;;rNSblfWUKfEgQ9=!S:asWt0pƥ2%rZ0#ʎLBk"j,Vxi^U02Y|m-T߈Vnl* :s(@a62pbR1t^l #^LXؚq/̮R &H}!Ý/?Dq;ea=JQrױG3d^e7[a/b6XZ&~5<, PcsVP%k>Ib~U =St箓4[Rla4@ŏtVх,\51$ǢT 90h.Fۯ"B>ϲA2%3D ٛXI?[{*Q4TƏ$"QRt>8O73-2R1FeYg6Iav6y).MiϹp PڛhΏ>7_6ǔ~oV͵{Z rXyJn]8Vo8%G 9eO~`DmqdPi*;U!}zPڇQ|VZ =?ʭrLTÞ9ss~"[{L)|HNvDaf\Ɵdl GTZ%1UrD[dR`i:vw+ZAeJ+S1^jpbRk(Aut;~Ȅn2H<Ꞅ5R2)OFd) jAb3燝xO%𐄎"30 LB/,Io–1z2U.Ŗf{ׇ͊G'3Tsr=o%Q'E2VWh%S?]bSVrt$by d 6.c0`$Pͬ?`2+8]Lo?=~!B{cۦeh39k]U1]W o c1  SMyWu$i~ ].JX7JzX :IhĊz P*(@Ûe`z=a.H"P9!AU;5F;tV*`IsZƎyJptv_)Q۠uzqgfsD*<w`}9tثC>@~L.?e鋐;=&s<&ele4fA :n'c>(KUJ~~-eLPoG)ÈR&&7 QAiT!DԔVfGP!}A,ٹ)Y|K.gKԳ zT^5HCۧgqBJ|nsj$F*!Tv]O߉B6eJwǰOX¹Q$Ϙ4 *X(łAߗl$z픍(jڶNN_PsNlZ mM(9,z)[@nCYU0HfL#D_f< #`e6=d9' ? 86H҃QJ^G[)ޣM*[TZ[5X8?Ӧ&g]FZy]?'a˟1:c.f 2 Ifs'9 r Fn׽zh}zXvRasD$0rۃ8] IuxF>q ]N|4 Y> )DT2ۺ܅"Cq hN;^9l駧wC'@1|gО! 8Y ,^XBBHcvyA>|mC `%HߨÆڱ\D0=2귀5fYO>$4-?#LQSFSѾY Wx󐨫ύ佟%;G'Jyܐ[\N*\9N W~Zo'Z#`nzt3)neÇR)Q"K BDf2M{br|K!_PMs@7 kwuɕ+o+Den,@q,JQ֔蹆ڊӂuI>-mzNp'}.yYUá K8(poͣ`Ry_Tv!m} 5,W ڄ`Qq:t8e GS.a&ݾ"mYl]bŦ䢦)?NAMN- graA6%bFȢO}LM1N~ ?Mf-:-nrꭿ&-<'ퟗ^o1ǃ[?M͙7(dU?0QVc +I*drb%Pn:7 eDN$;b7(O߳ʻ:dΒL`B!gZ(LKZ~/̕$8үS)Ȟ܁.e2 hN^ae5 2& U{US2,+whvE1 %[󲚏P2qoI.u1AIЅ,֚ Yq:CCǃF$1\f.}wZQ9LgluͣX&U?< FlaYD޼^j{~ 8X[;@I J@=d+<@3Cj'܃'١VU8`4 q[c|23xYb&\2фH%~jpΩ2Oih#%,fCp @h$酣fPvͿyX2O/A M'^ϡQFHd󷆄ᡈhzRӹl4JzDmed0{ӌ~̂fEqmzPJJԱ!K:=URܣjf&eo9<#VhxcfUj^ܨXg\Wa’ո[tPE~w 8teЇ]%13 }s@{3&|{,m<%Cߠׂ}lcfx5StCB21"VjKX w7D,C NW 'Rԗ!BE` u)cg|YՓ$θVzlaQB\ _| Q(G" Gvb+p1Q'jH6=WR|S]3dh;7po4 Eoj7]a;&0>\m߫Ie89σ9uD }+p?udb*rfьc q}b[pQ}|SY` Ҧ^[?;IWcw['s'3+Ɏؾ {+˲Z]{*%1뺂̪1qxu4I'7܃0g>҉\2.2)Bɽңb(ϼ1#WԌ_0n眨H:!0@`RlMe/)&;0mp8DXV W-訧9LAV1;3ؑ 9nOI݇t֏mN/3q$)OB;4I.޸ȼ&{oN rpK|X# @RBjwy]%yX &xeWz:yFnL. -Lȥ`-a `xF%:-1-Oץ⨈C p%7lWS7>%hҴ7gGV +%ZM?[)Wr!@|9 V^u JG p`> .+@ ]"C#d;a\dmgY;+ut;a;DL`7&% ɾb'F4Lyfv=ϋߎa>Ij )ϜZxӖ&hq^TӇǘ. R( %8 KYauy⫃sM@ 0l#TъbJɼvut{^_Pcwz'|?OfZ/yLqi}Gsda/ë "CpDo9H IJ9JvXL|aHy@䮽H=I&&8c)pNS+ O~BR"sh8Hͷ'"D#rue7n˷w-34N[XΜ͹k-xE>P,r+ђ]cFRX-‡ i=^UxZ]a v3j$JE31_w:Vyy~z̤0W guv0%5kYA.b–ZX'i CWXmeXܟnH^a.2̸eHCA>Y#`+C4Pb)b4P~YD@mItwגy";I^|2`u-yr!{];:*)6$v*1#Y=A3 1x,V1)]n}j9~Z(lX@+Sn"k GE-S0Ϟ hEriJv(1p|!*C4]wnMKAJtھn ‡!?S^܆^gV#|Pd JJjSQCiGtH[ 88M!bvN\ܰh%Yck^pbQ̳Y%*//[rڥ0]nA;IE#D[s=lSJk|.*wJH-҉}yDaK6*S~Ʉ1úiQ"$she0u^Nf$/[m} 6q,>?j5ejPZh0wrg T5& '5X8wGcAPkzrڌKTbﭒCgC[|C #b0O%,~lh;H'\`aٞRN}ک t^hf%Uce Ulk,@ˇjkö8INLho÷OZVMj(>g{&% ?njd2هujAwٴIqYsԍ27*2?1}90{txS U<6 yL 2Q6/M 3KDt)8DŽ%[ٲSc DzRjo5j/wBA~Z7M p cjw!q۳w$IE\mjA9K۫~Qk?ypHTPtg6{Co}K/Sog [t:O3'= Ƌ ߛHP۟] Sb5ün{_m\@%Tfy]n55oT I5tI:OwTE끒ιfV6z*ous" :g ʈuT/Xh Ёb~ʝ5jnQStxtzwm.$kw޺RR:.z a89Pc Ԍ; " |h6YcfDrƂ{̲ob޶dvAu{HŎiXvee  Q"c]Ҭh?x#ٵR2 .xяܟ8--eo1fg)q(cts7hYz?iLYk%O(JiN8;10jpOkdhMID,yZ"=<81 v5$&mLNȵ掤/ jrϝ9Z;4%ė<ĵ?\,jRܡ,5WQݳ1.ܵkV Ph9 /wmF:T!/-cc5ԉcA7t "Јrǚ"O- eYIA&K0YǣLk _udJ͚!d{A}va]3{}:C[I_z0aƅC~+ݶȆh2Ky4IҲ*Cf.e”1c D+5[`1Avh'ɮܧ'JEmS&~v\yU(;@lsY_mG65iLxa'Yu@WIeM ԑ_9E>حON|ao*# _kv^ I.~)_dJ OhH( T6*Bb?'XA{zh9~-erNl YT*~ghH *euǫ}yv~sHw1$$BZ΃O iMKJ_A]KZ'R\vB M^d-[\m]ɼ'vWOWKcz|sVY PMPfnU{ ٌTFmcl?ۚ4v&YjRWNiG8Kc.zѱ߯wp Kv#@- Aw2~F#l&$nb<Rp*uLf̌GXytJ&Bƛ2waPf 2o4NwI+xf¬Ѕ>5G_ICcy fw 4JVn^hKVTC F߇G3ŀ^k뤐2"*7,ac2˾uӗfe +5N 3y8Fn=<"zNFioWwPoe`/_ܢ5@{nWХ`k\HF~TO&WWD&r~΢f+!TwsxZ&Q . $r2wrC9-dgzgyH  %?4/IbZ17 L%reLq\ǩ ^SI\^|r[05e/6/sXfA.oєxqG!{܂)}CJ&b4,Cٰ_r mtu'7c(;|xqN]f9 $<0vT?48ҾKٗ5QB NԌPsY0pT-f#Wt{ ųyy$˘PMFA П|ಧ!\F2 ;ZqN_UC "! ~V`SͣK]ļ8Hc`{6c_er?OW͹ * D;O(F>]JeQ~fN`iIlP'`SȂK&H B(9&KOF(*f]MXx%J-RQ0:L!?^]!GVf ZN HςgEƲǒw'đ:VF*ZLڄ yߴ@>~8_JH5ZlL g:L'!LǕ5*[L#U-#ã"Fk;VSqS*\\{}~\βX؈q_I.@xg+!~`pXIOoKcN%~b|xeA. ϯ E𸵶mzcifքA.3 >.C`tYL=FUdܧ>n kV4!\4 $䧏+;2!g99` k~| irnjP\8ˌLfъ Lj.n*7SSeuNn+03à$ꂠ@uYaz`W:"7Q[q akC F#Pq8vymOpn{vS9'O+Ĥk%R|cH"x6BXiܳٚҎu`}8}MRdP :kE!+3<"KdnMEɱYkF bz>cEܕU9smtc0NԪ Nm6K\q8˱=/y $K씱{0$+ƀG t&XFOS17 1ږ* y?OV+F5kՆ'ct @K˾9Ǽ #x_ҏ+fOTVKNUʾ-;WZ0 4D㭊#<:oy5W{702rXoU@ W_h.2^cd5z k0090Nش~knӔOb EJe$ڽI bFO^ly?rKO->{:JQpVzHe,T܄EO8)qbGinqj=#,4?p}ypqt%& 7vlspE#brYjصK{]ɡ'';C{⥰O}If)qG~澩Q $ `+ mhTtgtBCH+{ wĕ9JbЮ~a3yspN%˥)O3 D /<1q4X*jDebsih4+殡K2Ύ^d/{x?9ȑȠP7u ‹DzvD 0 ftx1+)foA $  qa͸.W\ih>1aD9']q$12W!;0&D/EۄcxW*iiVV6a0L˳MIޑXZf@`39ZU$ %Z#o-\=S|4X֥st5leJQC6s>-MHH'; minnTm B9H|1#usCR A7&|zע\JrE&PsɌbcsW3bt -1jT?IM`rơCEB{.S^ u4T@xW'8eXIP}wretÄv>" NäBI3;(ۏ婢O01=Itmy Xe>[ABu6y; ["AIa~ 2&*QBVmZOt 1_ aJ}AS4?Ӈѥm8F|*?t1j02&fVB mc?Y;C\ 7ڶ}mcx̆I}5QUE?gZ*7do&GS[sx] /}=Ք5/CN#) k+?#]9MƄ0BK!ҩ9t^ǵ篵]jfk޻bԀy-۸^z\g3N#k.5f@\U~䎏(3\^# H`$83<뇇Ib\wbW6o˕7TF*P6+lFlHCfaLw"k|Vt _ݭ IeԬ'OH0~f4@+Z+ʝ;5ʙR6;G#PS(q$.L#eϒ]< 6?:!uax̉.h)uԛ%lah(6hZKWzG)I^[/ջ9@>t%IY=; -yt\8DnLҭ?aF=V?UPx7rIsŔH}.\Al> m%t=`_pִKb7 OsX%va6Nf14& wt`2qba2H&[Bb }P4rɴ讎"H\v΂D-zZݥaDuۡe;X`2 }C.:d㨻ӜpʃȾ?껸޽'*i}{,mRʛPch_qT&< $@&jOvƅ׳ n 8~eErdpR"\MAȽyQԵ)WP͊@5=wy١;fwTm`M^ *\nF4GVqa_uѵdI(! ݾFߋR8Sct@>˾6lDd+py9>,r2 Y& ?|Ţf Mj=^>,7PU^_5+vvgם!J.}J-+ TLSsM(s^&Ej{HCuV7fԏ.I T1bQ=:,mbf ?BID- _P[NSҩҒMR>U*Sď鸲J5/^gU@^=mӰ Ή-GL`84 @zQ;/Hu0ݐNbf{,,1Q9%eYn :/_lhW?,(l=XƫS^Myr׆ k :=l\ 2 \U?~?(\9.$/Gxqܗ]YC75GU\oQ-m80,8٠,#r.xR\ .o9ꗅ޳9\KE%^xDW6 }*TU}uWZ0Һw0^zCFF9I\;b&$L9 6rF*-{~/o?U6΅aQXeF̯G]+q3AήMХP)i=O! & ;&N KVd@K+"R>Qj bc kH,輋\Ӝێs2Ds/R1gQpǗ>&] VT\ɓu>՝sMpbT',؈u9D+FN ꔮE[0[c!o?;^hAky2] O֨, cU.cB>Ӿw86v1[qS7ph;S +/ [/JַnqSU2W7z^|;䣋}!\)- \wilJ Y_Ta3K?1K]R/LtARv4F|чg7rx/ ,?w/ [R jlӃu Cj̠r}Ʋ.߰6ŪxyWȨ0}}h=ʑPZZw>>@>?|RgA *JhcTUḟa.d*rJL`vv?e;Wą֦z&(.1~UuG [K+:C8'ʸ $NTy"nmpj͉D>-d%8+sv .Q4A0,JEMYC59NM)kήJZ?46 uHx[6.Ok0)(`Ѻ{F& ]ѮOL:Ae5]wTF[qj‡V۪.\pI{G@?鼇)%3@ȼppP.BX,^mMϻ]A N:r#169ᓵE"WWez<pQu"0nлb6}np!G=;493c-`Y=]zuĤEz\nҾ>ýtk-5gVߟQ-;@bQv.=N-jn"Gu³Y Zƃa0~iVZ(iGUfdNoTU림!"1AA!r%|8ĦJSĎNu"Pi?Νѭ(ڱN!bMۮVbk[5ol2\_L~ גs9xzjѭl9XYkث!E4u}6e-hT[Yo{>4uG`ϛ$I>Z(+¨v?Ck(Y,lf`;%mGOPѭ(ӵSr 7jP?56egͫ{eS+.5/o{$c 92\5-VB֟,Dǩry(34 #:Dbfl𱝺GWo6y+4ST߀gPi [L;HؗMڏ(J|Ŧ9-LՑy/AMTaؾ`Z-\s+GM,c#a[ קtӑ#Aج¦E{5̓{$ŰM,mmZTU-d.Ih3@ 4XWu^)% 堚QmYX2P"Hɝ";j [xC:J5$'-}G<ﭟAi8Ա"EgѸ>7zdQ]Gcz_ыJ0TYi zQk94ijoš (Ba) Fl*Ն|. pS3SI@&osu!PDQNHŁoxovDd9Vw_e2zo>PTJ?<ĿQQEb]a1}@%D555# a!h+*&~pZ&3n2IIZ9*(emZ:X%o ώW'"$Y\N_A  4Tƛ vco^vH`S+hȱ"d"ZAdfaRmWC?;T{0]Z(&9{")m)EjTvC)yc!ؾQ)θbښ4$b绕ma߀4|X͘ 8Z 7 WfE:Y!ȚpqGO^O ~ǚ$Re+(8Gي DX˜ Fר}]Gŋ6vF!2E$i*UN@lN*A8Um|y#fP-u3g5/qKAic[WRHmH u/l\}w̲@u%QN-[- KM XnO3:|yj@4ma0`.t 7ԴGZqrh)CQ<|i`EXr"&qxO},'SoNFiш|Slnq2XU}Һq:3j-. 0ʥ%V1!ަekShDH ,.ߔxim.ɡI!PAW6EbkgYLM M.hвcDD7iB1CgӜS[ݠ-AZzo4N+TrPW_wl+c`LԺ K9p~!)ka*y黰WjnoKoq~.*6UJ17I5-J="}'zh~S#Xxn.Jsyz{+SKR> 7m\ᆈϳG9L_ӂN7MZ+Uk#n W7iҞ* 6JCaQ$^''i]Tv4FJs6s&*w?DJAu6X݌H0py+~w1|Dd 1UC4s=Ṕrұ9G4JibE_.:-jAUB,\KQWIS}*OJo7Q[.>g!@t$>4E=&Q3ُIۋxUIH#aa^\>#^ް/<.Ӻb`P)sWK]6=TxڌKH-ܜTZ4Tn@)j+/пB5O`Q|!†qQn6WIo`1C[ d{0a|\>f;V+Y A1d Om| ǹWGGĻURD ?Ɔrr +kMlb*?W/kS~A D VJm hG ;" GY:gm w~ ;u8eS 6Kr|C߼sĆ'64T"QKȫSUH-K`Ex*hh(ɇ~n]2iiߢ=oG:ˣ(v89: zm<QL|8[g$ /Z~ ߕEQw>`Cg{rgo[& cpuRV`+ )7ьEmgQr$uZRv._X]镘_P?<un-DfCԋ6Z}c":wND*X66$Ug];͜H!ϰ ZnjhuZB ڲ~>2A XC/* ^s}\&tDu N9 vK \=u?| "9Hvh0~"cn?tNզ]s:2LOmz[׋DaSiB7D>p?/Cx-Zǖ!WC Dk@c?t;=k al9Jzu&T_''KmxfDߠ%V:z?oEr#(K`fsUz-=@4זs #6Q vk= #3 qV"F Žʵ!92DeyFB Un" XjL?5=pMmͥ:8?캿~zd k䷬ XYUBԭ\& /SW1p]fv5*,rv5lɟmDeɈ.#cFk?uJZEΗ:b.)2[Kъ9h."YoL0d?̎DLsT?zY_t4HWnzHDtTOz.<77:G2whH/ w q,I#9i[: LP=4*U*~ztc8jXwjUKG]&ͅeeZ̷YwiccɛO@N@x>3]ƺ׏U´jccXp, U'7-ޢi2[.gkU'%_"bvoy +`g|뼵ۂVpq x964RL}J8f][.;ÚAyW`mJo xin@+}9SpYKt`1ɠE겡~V-ACuG2 H5%Mkn p)`N2^&gt:of<=߄PZ =Ŏ^_ X!Լ9_7%懪tn^1EtRϋݽe~6>n#ϛ[hA6ȕķLVx 0HUm.ѧUvSʧ :3>w<#Xn754D6wteE{N|Һ )?CdJ2yԱ>^0.(eya=A\0|R9JSɸW)CR8ݘjE0Áo /l~3XQ< f qMlL3 d-L6 dbXxY*fOh.3o WێXREl5Sc[V>)eڐ)6/Qނ%KoDajA9ϘTc9XWl4A=C}T1Gy wCQ?PW\4:ό|/u>A_V~)70QEVBi)1r$pFoWX1`c`ZEWbW#7p3t=4^,B)[xqkąLh fE<}\/ǚGzͰCOBC]jQ`i8I\V =(P5A,&zcnQqL m?znh0 cI@ /hR"L,m9 W۩r4fg JB/hFuӸ]Z6GPx#9a-LqA\Яaàл⋄6}0{ g7'u$mD(3gU$[#~*%Ǵv/g6+Ko%Lť-E$܈B\/6d>+4qb(O7*D(htimY5JNd~ܷbfn[i=OL;<{(jM ?e_y̥&\d4SUJxYF{R/kףf܏iFt|O͸8ا!ĶdM5cVyMݱjTz0̭nTԨdfrpsl;&$dA :>m}< 6.!3%ɍ[fxE6+ =ݙ9^U#_!sLT_Yi_s^q7̙Bk񄪬Vӣ^ ׊s/d ߜ VWvb@Z\Y[Zc 8O\9 Vyiΰ I Wg$Ssra`~ )RFj;ԫӵ+ep0M~#IvxUola.{݀cRrɻ817cUWijMT4o&\ Y4K^w`m(`n+ψMOv$FnSS}2( S1G !Z^RhQmD_"r>2[MVU/["m5M:A@.?qaTl`;&m@d<,QNxL|V/aVl>ע5)"ifɌ{u: V|ϭ籾Gѓ?x3PMZ֙x=RQXHm;D?ꗝ nh6>#:1`@gsHrLQ\/-S.|6seCe?P7pqei^LS霁il=I +&P߻t)nLR\my\`7/k =bD}F 0R^5mPASq7jb -0%Ws 0Jϲe.ZfwAI5C(6\r1\wׇM8,& Tm}0}ىҒ*@&2K۝OX͎#J,7RXk KmSȪPc0P5[(]i,#) x @a[եB!vm'\J 7'bqFcrmȒ;K.td/Dn)FMa%"YDFK3%L[2RWwZ^{AE7j.aC0hޕLxy؍=RFIb GT!^[ ~_In˯ƒ`:rO݄^]%6{嚼XmKiѨ#6t`eu5B>oMc7)-96if\u8eZl`_;sY%X۰1avJjD; ?daoKwb{)rڬSJ aq}+KdETa2 {*P(U)l:&E]tofSW6>~\)t9U::p7ްGz id(nܲwX2 Y薢GG}KM#];ҎT{N 7q/ŏjHC#i ghXRVnwp`mrҧ=S&~: ,|δXYX]8z&VUT0_ >ۄƕOWj~Raj [W$LbB8Og*W` h)絉 %P9 ů~7:z+17"Z!-Hw('Y&l"jb@4w!&v(#ݶз/WޜiN8+,ztUfhIPg4D-ڇ4^? = 60JoX>nAN>b1!u   j}PN}@4կ lL` a#۵ڧlAn,vS@o"ЮXU]+9o\2= J<16@IX*FĠi%,s7m^䯎M_C^ T%]@J,/O%" >ȷp%:^b܅nx1F="TE4$2!oi@@>&Sl-# >(DIdmn()3Dp'8bʄ೓`:x`!AagILױzm-QgUS3*2ptE m3{QrxӮ`ʠ5Vh{S3A@gQS<,`,"'tHu`SgaXHwrLaoFLňB((jO1Kwٓw]gQUӈ`X+*شaD1EHտ 3WAz=n2 N8U_ZL[Lq `ௗZ’'}Z8t}y:AEm/De^w"zA}&BA\Zq S Dm7kQ0CVdfǪp]鰇գip-IfM'da6M*llqӚVUPs5rχxlbʣ;8DH7`V}p7j5 hqƉ[cImȵapbfC\=;E E|0(Fmf]뽇"7TœdzCҗP"Z^Ae{hhjG6:lk{zK6^1( C( bdQ3 k. aeuVuk8k{`*gv*12 CY-8j.d p}g( P| 2@kݣԱ!c.U jj?{ , [\@t:H;Tpal(}Lm FCx٨j=fb RѴ\3 ^I;G1MIfj iaj {Oۙhi'JֆNVDOʱۺ.xq2!ѫ:d _:\_$> !~fѰ{/̋Q*f_89֕p:VO?, a&o$vq4|0Nqt%;2`_r=?"T2+79Ҽ+YԒ.2>r%wsvƯVNwD;!."08]p4w[ `4/t+%ĺ)gM,7/3]s؉IZ/ZqR3S%;'hZady&X|OV%tWz.la gbfBTzɧl+*b6<hrJ<+j T[eeR)uWR 2l Y/Pڏ]Ԓ U eH CqVY9~pG>1gKTb#]+L$4" ]Q-A*u swi6̦ >tf;gG4,npnRE_,&6,~#ȫCqԁsڿ$P yLvnp)3@zOe2y! NWM]}REӣiǨlM[I~u+IϽ"X G1NF t2QUxq2Զ\{UدlGCN>H\!ѽzF͜/;VtנeԦ;0 +~-/h[rDIB1W)?yS<N8)Hu~|sVIKH u3DRK`Rq5FZ^_~\aҼFސ7;v2F#., ^G\Zlp=ĸuR_˨Ek tYt HӾ 5mrjz+THJz;d s.d4+T؟=Q* mG*}(s"5M[Ӳ ;-dVI:U<fW9C޴̓Z Hyh RrH>\c4q0638t}!Jw# WW/ vY[qRVhYH6ز[bOf cġ !xT$q:C= ۯ[ny}MM\a7'm 9*z/$S6`%w3Yz1etT-0Abg J_o"{m_JhZvod6F=}8 toG!58Mr<!b~>A5!XzCp&~DQxEȼMs,V{FQf*RQ- A^MřoF)Ss*Zp#λUHP=uny6)=pº^{rgT([UnfrGo$bPÄ0OMg}[U,%T*܉ S,RBT+gzՙ q9k {UUU'_jc=@|P>'C )FK|1RClE\U9a0Ǽ  F*6 i_M3'[R|5LZ==f:gUb>Q] uqBy~iLX: OJr9ЮyWVd/ů Ժ y&h$|{g_JB8&わswL` ]Q\DWAHTBhX-{2 9PQm?4ۥv9$OWާ#P#߻VaF5q.z\q0BSzp͇٘paU,[wz϶AB@T{oe)$(]zG.U{.7Mz+s@*YWB!֘Is!QTƖ߶?5Eү)Pa8E-lN0 |/U[/P#dz;1y5zBVxi;)񖤬tX~K{  퍍h# !- N CN>LJ9=EplKARh8SnVX̡TlDcz4:~WRypA_LP;yzC ]p8ٿQfyvYtw1NDa(续x[@Dhe0^IɄbExk,wuzٱ_|,ug7opC1ݚu}RXa+oP[sC3d K ~K9 VP?*X(HL@11To!s~cFn8hZ,z~e s`f#YIQ=Z83jdY֕MyAŚy%LOT8&marmX Ÿ=Kn%kӪy.ɔAQa'3^(̠7bn1 Hh14T?w0 a@>,fTQklIO)0HR,bZ>cj0GA!ɲY>7ߤD ճ-#,1+g qņ]`I؝>@!M*]u,g<@:0c$_,YG9qlbgٯvis6RMeо-mC.IjD7+;n3SU厛fw9k8Tl& BM|`ԮȂiĉnYS*e׵ޤ1# =jO"1cEqVL]}I~%WdLa7akrb;[l[T+C>!\YB ?4iK%lsp$JD*|-(w:_2#d4Il ῗ@"ȁG)f b_|ᄑ>V?=m=f/W-"f6:~ D 1 wK/bIQks%t[,C a\=eDpu);aw4ӁL3WwZ+ly*ԝ7i+Uxaǻi> QYf]cV*o!_CF,5>O*56ƫa<?#=Wkx֐Hʹދg{oq cV@hԌ\TQLK<^>[l׭ƊSBe^_r8"b4اL¹@ޜCY?llW \i6s^J tr 'b}sW^vuƌ3`A`cgS9.뭮J*H3$׆2Pfքy*U!&jted;:-n4GD΋Z=~iUЩ|3qdγaT ӂuiNtzfΖz#Pu^;B ̔qqp:6᥍^\F׈boȦe]1,:22g![&ԝtV&U +v֮ `oZ$(;l7C&dٷXn-V$on by~b[uynCiiB P taҿZ؇x}Q6Qv+7*r;a\.G%Y˰f-nnBl (0qI?.LW+:l+?{'}Os-D}ntAeHߟ\nɧAo24\Qw/k򩱛ZW[(j>\7'02'1Jk[A5C+TSP ~]k b ҌؑTwrU׬MKG;^H4^e2 @+,5 :R*G~N%sp5Dc{z[kh&GZ('$3r MV6}Ef݈EkkݓnQ}r)!_-ɮ fY h迗:OzB\V3GJU, $<,A"'λODR9GW-֨א0l(Jd !_G Pa PlSHAO=B1Ċ {WɦPދ_XK% @^KO ~gї̾)ٰi3 =#m"Ϭ_& >Ұ=I> A8I̙D?@k{w>-20HʧRYάt<(iwy<;.La 8ZIx*hw,-U#ö]^+?GxIM^&jݗA@JwBBu/j IaxzDc4935z!}忶Dc?]Z)īFҵl? ڻ& 6$^m}w"Z5$Og+Rt 3-Q9t&Eڰ/"ͷqю*|~A  3tKV"]1{v́lWfu6j6Ie_;Ŋ? ;+RCLIoJ!UIt ;svp7g+HW-_xW= v=J Zg3w*W-yW4-UaL|gL f05 NQFNaL69bH6eD%pBP`Rr~]$dW3ʗ\lƼhٻS-7񣞇C1ңg&_TƱrxUAC:˿6M </$e7<8=8\ wvmMQƲA!xCWicËȀ|Й;P7&A_~ Dh$T eҪff0WuMmGe|˷eMXU!tAT2 hI%8`0:.ߢ9gmX6϶[d2^! ?ZZO`uτ3:H~^_ԣ?6C(G\>OLHx<6(Z%QhƈK߷ \s,+N>ސ`uR7հ2; Ug;A+Gv Z?8>:fqfxWs(*.m==sbd3xylm0ǨP/0Io['C_>7\"3t1iq0fǜghwSV2J) ž[."Yx"b~?q3c'&6W! -cܹKA=UU9NfA0 F=Ŭ2-(]&+d#R$O\z'U e:NMu 1{ MFX2/9{?O[xyӃg.8>h<ԩ16Qg wQdw y}@2ܤ"*?Xqr [⣈AwE(;<_h'$}+3>U+ VSEq=RLŸމW(}I w jI4SELugwK>:ic4[)(Ⳑy蝺,6`Y89ݳ٥}fǁ: xTI}Q?I:~X|D w .itxa K]VVRsKڿ7Bӯ6q*PUJz)Fmf@^$m{6DiF?S=:d1hmL1 ̑UYu2:5qO\rz?.EU!T Cs oj٨A^k# r*gt-z%+O7,8f -k F@"I, L0e{K3>cʚT'dRn )% Ϲ8jbd|ඇT::D8 0jPgBtIгGVdz/@;JS'0Ʒ]"Yj4]5S%u -JUv{98/{w٬kl1Dc+BklqAy, +u-j{C?dPd`ԨTR鞬8Z/ AYx81&d|ڣ!Gmr^0IQ=t1͒Lթ@LgY.B]lƋ.W]aнn+_fKNii;l_Zq4AelR]rffSgnI3maGئ3ۛz97|G7=co%ZbbѬ`b!ɟ wf|Gcc 7xR繁4E= !phj; BeX>Nj^4)o^,8'm##m+s# P<ĭIpKB祓9[t/.Dq?ï\=U%z`cl%qڜ|r#8mkrO; GQj} pX~T\[r3tHB%l): f-fp<_ =Zc*LrybE5 mW#Ib|,Ժa _Ժdpɒ9%!@w GZAD~0pw>0MI,oaKkԉѾ.NENE Άn* \)QoNߺB =E2E?ag]gHcCyV~9!XPv _?ݗ]{GMLGv}s5\8!l61 䜅hVC3*"3Y[ ( ONHߪW]!X@ƾ6ʽ3ƭrop" U-ճ&޹)+mQ,Aǡ J4/1H:vK@!5Jo7?gڴ;og6-:{-d8,›Y7R;* iε]|ٞNsDՊ;:xpqW _1O A{M* o+X,7OE|i~m%\z`V Ӑ^UӮ{ٯ = 0* d2x8dmgCmdJsǢ/)3.:hz h'[q\oY1UQF_;5| ʞvõֶ0-[ă&W%>c'o-k)*rPG)3ˌKY/:T&FN~ER=P)xQJګ:IRMK|yCYVV5d)I%CgӞNa1 %=Z6TSGYL+ ER8oAYͣ.Q[GCR*.2hs@4FtTSk4R)=ĀCk{ !\Hm UHdMj-e+s:Q? 7/(fND_";GOYfH#<2cqse@gBSeVA4ֈKmr_xvBIȪY b6lQi~Q)TC]ӫNM,{6AB)+Jf| FEqT?l+(Cq)VaWk+j3 9nRw5kJӰ`/yI_h4ZE1Lx 5x'3+*YǡxHKA'.Y t'OXLiMzҭ6qUdE?O Hf 88rV̝Pu1:`d0aPآ$s:ݕ_'+0uP]}uo@̾]%aaE/a@ uo.Vk-mb2|b~~*4ď-d˯= *-tpa;GY 4e%pEƹ:#?ݮ&슎y_-HΕ:`R7#5{(8'Sӹ!uFD|y-UT'.NA)-bUBؗr~W ,-@,X󝕫 WH$'NHe!k F~Yt5nj*0UU% PbIͩ r ~^L&\5eL*Ӯ;-}I8p ۑM߰5t7FXj&8c824R(ws1vygr +=$8{ ^*VV,\u>~%N,Y&1'5?[cS6 =K a#S3t= IήgHG!q5*m 2вUe71M+wS#5a2u N0#@4,(P|ߜ%l5)\,2,ղ\ |XjkaxO<6u~!B0j|״:48? &VstdjƯL;.%PyV=!4כawD;g/zjs|Ed('&ap\!1<=Q6*rzy 'x58 =xCs>Q#{[0ox!#ڸF2$ T q{R0PHPi`QN1lKM46k>f= om׶;$f-|ySEw 4O1%v<|xFUo f6ȇrT e=ϮOŖɆ%]rK)ɻqtzƫΐE8{$Ȃ 984wcdhiԏ t3|:SLjT I^bvλep+:*u-/) W91Zh߄f)ǵ,޳ %-x;&$2$"'AL2(.KW\κĄ-s|cqW2kQ: iBmf% Dp3<0 m2 (j65dv{B́<I˪Pfv?~Ko- bbLȿD" ȝH@>X1 ]uyob;3D/hq/&f %BEFCńxs[k붲9%#T W "uB+La6 OxՖlOua1YE% ^| GPbeU9Wmw)WE`73br, cYPt|2NGK>LQIǓܑE[Q xy]{ UFzuIi ?.ypvVtWO2Z9C(ss|,kgj}XăEG$LJ5 ?6m7~ÿ nO}wYW;:vz?v8'T`p+eRvJgU61x{SƼa>[B}ɇO5PP)Yl$'"ms塠nQ[{58>_q˩?kN{V1$ \kuLX֏}>4M(i22Uvhz}30dOZJ@ zG2J.צ9Na*{xJpphbA}  lׁ8^vDwm91nGÁgcÓ(]_m,/~'zgH|U<=_czGcyF\ JZfe|>U5dx>lvlr@fepqchbW2kGi "3ԌQ*V[LWA#xAv"v)e*I^.R͞?ts9:wnsk$j >9BܡPzey@EWAnufs%eH%CGw7W$U̳Z./A%aAI7ܿ-[yk.i^a)%غD'0R82(bqSc<^#bQz +F%ljʾ7UsR+hIŢ̀WfdɋYty?DCɓlZt^ &F&3P 6QZYA 2ba+^+)H[l67J?6{gL{-^`܋dE(YtܓD@M|K;kܛ&tn1AnCr*?Zhnb']Z6TbU^Tb&msͶ,C@nj@ܣ4ިM7(T ?UO>G-o W(  l[F;[\!+]?;O]磯.-o1$UMK[eZa J[B PootMfn laJ4/7)(_AVM|ix$~]>,^q߶+5`NQ̈́:/egE|VK{w@ Lq#טk lN׼Y`Qr>;6)iҶ8W?\I oVKldi.Ve( }S/+!J&BXFSNqIu0^"ql!(4|@TGJԧl-IZZ?Y^-vδD"/sW0/]N%F.&'J͏4-W6fɉ7&%~3ugfҗcgyt8,46E;G^ogVNpΦ!{ ^&>>i`ﻳ}?e&)I3Cd&Qb)oո @"sɽ#:*bxnƮҀLᔨ\eg tK8ph8Ѵ^Ȓe[zor<9|&1 <~yT%9 '?A#u ?s^X7>FzBYǶL!*mLp(TO-ܵEv;/;iڥM;g5hr0 ēu *_އak3Uy5-qjA5;=JR2uRV.A FNX.m>E/x5 wNe3;{oL)Eh̀@|!JzSzY>~< Fz|ksL](^ZݟQ<$XK>h>W9q<Z+ҦHn bRo/$yuM- $E?(5R8xHQp^ mA ͆~C%l6ms){.WO FײC5.;:3,-#_+_F0cx4z=`xJ:rhjPBdj]DaTOly LDt"*JФIz Ȯ3|~w  O;żtX;>@[Uǻ52_m[lVlOjhd& N;fnL缭yvRj/OɈ4;UlvIPY6ח6D̚XlѯG` ՙͱ)~։%+FBV27٧f6s3!~'^Po7UwE}Sy 9Ӗfa r]1H]U)`lw@ITv6RiNi2JR 1 0 _f6+(d6OꝴQ\,ۤ]Lbs1HbZFK/GfN M6l?ٙM\I\Xj,ga7/ ւm1-$x_?n` (" g +ptpXE˙Kҁnmq0#A'WmNB5q \*#ѩ2XM[,4q鼐%SwnF484]o[b` ^ӕƿӡ3#p8u ahmSܹ=5-#ZoC ٍYg nbJpet\GU[\-w%.U&Y͞C4`+~F5{=xYw =h%#|5$ (81xF/׫Q&PDwSOoH$PEq=ڎ;i 0\Y-LW;b}Go6O&dsB. 9WYw!3 M8+ɬ:_Y.eŸc5m4K:.Nj! IG [#]hYᰰH!+?mU^)R|fFƑ#)ٲ e!rT\]7T`}RwAQJ\oY' Mb?D~u!B+/H<HiK :-b;]SQKmb `rʸ,sjI&5D&l ԙKbcfS[6zu$nď=d۲|Wr<̭D,B\3d};(TFO$}V{69$]CO$dWmeDlX;+&e[em7-mH\_ɋ1؇f`U\oJ w{:߯omZk-S+{`n1Li$Ff:X?>V PTxRͬC|k19/EM+?MEY}IF鯘fP$Eg<ەj%d&*cI&5A5qS]bݿt}aʥuqV6dGaqK)wO##Û(N:"(ΟWpIkUыb% 1]XMM &v++;,fWYsX)R 6 e3c: ]ih#U z[zmIT"l%bwʩr˒y"dž 2a%4S0p*2P ,+mᢉ/㍆yU}$ #i-!E[;g]Gqb1,DC: a>N0³jჃTҗD5lUG/Kyt I /jEP^<9{'9GVN.d[U(s9؄ fPH?}|Lu"dU4Jl/Oui{lʴt V-[' ?ۘ倞چ63JG \x >fr㼽9 e62'\ՍE?[Sw&Cm ٽ&!!0XtF'/3H8 gh[TN40WB_EHzZVǖD.TjVPjrX)VmJviP4Y!@ ]P4* y[\/ZM LC6o^_T2> هZLz[Psvk"a15?8CDxSG96;RP1:-z>6Q?@Jh lV:p.%xRP;b]y{[GmoFE1wЅb\:Tsc˴o<JV,R_g&a|۠"%쿞<)t_ m! v8{ Ѥ Mc>HϵyG'>}ŵ_^|Rz"gi}+aY]7-+zp'{ &PŮ& E:o ǡN )z KjF& Crg"$ㄽ5@b)%ڎ,/AOHbH,)VJr"e UmcGV*>mg7A"kx9HtiAl+ؿF(p&ŀh.MnP4r)92$bcX\f+&bNTE3\WdhlVL4l_I3Wd3􊠂(ueVNz1wr3/jOm"B#GuљLHO{I9|2z~<0?i4ɝ;Dp6IQ\ekK%tQPrLGQ]D)U:͏ꦣ+2V,l{޽0t-0$mW0A* ^Лʋ1R^tDX7~uX,`o^*-6 93OWvsw0NB}a}Dt`j.sL3ky02o! 8Z`3hz09|S<T&y}UrU4㗬i}[ %֯@(&s-DVn@)%UwV wtY71t4w(ܰGSd(AC8-^sUx@misFОr?ȲSyE?pȽ W~^^,/D5$qz["橱ﮊ~s9{Scl?ޞab dyKj[t}.saoYЉ.c:\_]9a˄ϐPٕ(Ϗ 5r~kN(ʒ2ro9!XŜK8w+oiP0ƈ:29L/8k>ZtTxaT WY X46U&sQ J~~KC[Wg^*r}究{@?`iRFT4F<܇L4?`V)FVV/^d;@qsVeu-D|׊kJ_? U0w iE[T[ gEQ a?Γ-Py?hqg9!. p¢a[265RV3RG (&`"C#%7{a}! ž>p̜:_=QOٱ#޲IoTۇI6Ucс@5Q+F2""G'%U8+&΋JS /3 ^fբBWʺ˜ I)5Y OZkT"GyHxy#TGrlEo$܀wxv[>. sg y$=8xQ{A.GԦ9(bG AXH0(#>nJMi^Yl\Yi%܍kAH lSt6U,҉GD%v BOSLTK"H1_V7paaku˚L#iS W#` ? i 3Y{ w/z!yvFnR=AB.(0ǻ8B5qã!,o s/mN:x|]L#5of(<|yu]/χiYo~Pѝ|K4U6a:Co G0Ӎ>lBSiJ^ &8HstD:~ݦKLN'c^yTTAˇT34iAqQny@Wm⾘v|(pi^yQ7j2u( wLb?FsR"{g5CSpm%ZmPudcȒJOvFO2zQ }PiJvl>]ƻ>7wH) J#k]p#Pz:EfA~6\: h |8IbYJAQ8^<ƾn@ n&J@Tn ",`'ˇ'?* pAdQM-+v8TKIg90׿ܵ] _T3@TdŵRyLJ5#{g(MLkMI-~k_SKg0ogpTs BF IxK2(.ai Ӝ>͔P;>VPGqީ 4;Dzw>U elx_/H~jH t[#5VR12 ̞qDA~ Jjz2IP OړLBbhXAmxk:}n~=@W"RSc"qW΋c{kN*;}UT>~ooM]a_wݳdJ]IuV_6fUOaTSJr(c x{Ѵ8=,в'0WjLpy奺/8p;A%ωjG`O?.^PTzLwbj0 p}i`%+)m祹^hhlsdiҟ5H*vD1;~:6 )QNzDW6'cݳG,H]L^GaI?tE{w3,\Er_rT:q'O=ƂuG+AN &Cyk@ޔtѫz}b_y]bVrk8DXr|@!WKVRN tsd4ZGvjF,Z=Jj&30"u&dkн|jeU}Oy,,6{bQbڱawol#[R#ҥ\_O\o0&y~BGh^TlVQpJXja~tCA@Ճ5s'~0 P'S!M•;OFeZmDe5$#MzA7I=N z'C;'EYǺʁG7I 5GNT Ͽƥډg98 ,L Y4{=QBEj'%]|Hɋ <9l1NHavC|}~횥|-~2h'EyɁ3zE.|f m 8^5Ebw " )p lVj @!uWWPMPs*@[43)ߺns7Ld߂ӮtQ(9clZf!@l \:6|" (sy2G=:TU?nYp#nᾷMP4kr9 K$8^|.R l x4\+Rd !'YK`Թ'~|'2+^A. 9smw扒B,W{&v}'.O N87ȉU`0 ȭU\_%b4Q!r-o1Pv? `cn^j=mA*& >gixcv V>2+tNGޙUbQa"tJ]}o;sҽTs Je;;Jx!}j"| JPDHcBez*n#4ȨTkjX m3p؝5NY8j*3PF$:;M*R'.͜q@}_\2qO wNV]؜TI$$:/3rCXiq}tDq%'gq<'ZߑAڀDhDOF<ӄs\QA<ބpS sa!#9ʉ%0Bzfym 4 ೵a#Jz[-ϵCt]p CO4L?w@` \l4nE"]{*A̿GIfZ:Re+y BSES!f Hi)3[y+""GWo[B x;R'-<Ӡ<g"1wY!l`J/4Y2+ 5.b%AZz9Pp+FPW MbD\PvxsN7r˞–J J}tSB(D.ޤFjL쭴2X6ʬM`!TEv_ut ;4`$5h '*-G.*`r s9*hڙ9ax 䎪nG}J4IZ"!շdgcsm4ghpq!Oī(UaߚRUsׂA{'c`1,pk^Z~Q+Axg6]WgF#p* 1C>ƀ=pMQZߪwT~i! 08,` +!TyN•<MɧiM׻w4u-wPm.A']$Uq #_ PcLCd}u}x[nNJUό;([R}@ʂZTm5lR #2-@QDg#Sn;"f"y @GX9T3^!@ԡ^hXT5U|/TĽSUS)QW8SD|߾`Gx6߈|˽:x ;9Eu'\XZPB}P/M0B$ދT.)aZ #$ 'w;:>c8bN㻈=:m_^OM 2Tn;8-*a[hGPBv|BX#qW|"nuaSc,mƏ(bAM!EH']8O|rl^,wa(rX7шˆ{o޶j865nU:Vs㪄 T{ CA–#HKD'2.X@| ZjNKymLo1Țex6/\ʎwUU(E,Gt@XK 9Mvzq8F;'gGzjD㼖78tǽֽ5lRyuODY1m5f(Sc[|d@ 1 uime\Sh5;|D16JZ@ɵsQ^ -S/KBxU;Κԩ!-@ e{o"7#ho瞂/,d2SJ8qLִȑj:aY%4eg8m`ՀTƸmUtZB:'@UD[&3}r1y.R%i@{3-(p%H*S ɍ r@0͔uW%]UZ&{P욶!0cePc< h4@U1OjE7 -S1{샷>uGl/xkU'GS9k>ȠEX4˛@hxrǣ{H''R1pxxGQZ`[l]oBԨ'j<Cl ~®Kmy Dus"F)=v9ϸ1Jl:KrHHC6(ጳ4+unղTg=C"d|\ oz*>7#TKЅEioߨJk)COht4!E:zו̀c!Qr :IQ v{1_/ߘQG"v9JpmDPو".au%2aE{Y#Gb7**sQ)Wdb!u9nНx\uJsx>{o}@1Ҟ$^0bBZ4'ϙ}nMɂZBЈL\/dQF4ɠ}IZ@jAY ΤiBeuZ)ˊ ?fle.T:n2`R#^g7o)%Gu V=J$# Hʼ[IFFo:SPQl= SuN ݹv_GhƲ ݇3S49"E1b]S `K2&pb;?sH,gٴOt=pSç :.odt`2eAe  Ō߭)пHDdk`HJ\bK^V+6 @YTrSglf'JlJ$ ^6{y'j h.tPP! H2DD]A(y>%Md4O_ pYSGq0+K1FXJkfvpp1GPW&6ư pI9vZ]q>S j(Ⳣ^+:Zq|Co⺾d"\@JZp Wb'?XAۯPևD>*̀j>M&Xӝ lBw< 6c$JyL' - r]7lruB ?+Wg96 nv(]EGE&O = N&fG`?UAL!vj9݀/Ɇ(׵{ Z`O*%|c!C-Ǎ{f2sKV TE:k*gt* [ 4a7FA`#}G$ lS٬1PE(f36ouqƍP2FH@,(gFeIJ~L&K=̎ gC1Dos!CkmӶ=®-i uU5m>VL3GdIWF-|0NIPv)eUQ0fY+!—DԤyAKXWkr /7MǬ8kЅZ}弤h&gO*kSVh4vM AȂu.4/ Vv}:%Yc@4z"tGقW YZ