libcmark0_30_2-0.30.2-150400.3.3.1 >  A dp9|+a 4u}X3`@+lV@uׇ^5!2ᗟFǕNܮd= Mld#Zr4oVI꨻t86RpsTMc@l(|_6:/de831e06887af45a8871630a22906a76855845153131a640ae3ddf1020e47a14f07fcfc1f11da5b3d2dd194b3f7afc10d0b790d2Ldp9|=ZwTt3|?c3hCyY?4=V $Չ:'06 Yu;SlNN(U%:lQL;@t,pxA*AnՆbl ?=`  SOKVrJkN.1Kؒ/Jh‰(_ ָSUvG ɷTAwg ScVA@ BMZ\fn6W>伽5VZ ̄xed>p@?d % M 2C`fp|     (7Fht   (89X:{>|1@|@F|OG|dH|pI||X|Y|\|]|^|b}3c}d~\e~af~dl~fu~xv~w0x<yHz`ptzClibcmark0_30_20.30.2150400.3.3.1CmmonMark parsing and rendering libraryIt provides a shared library (`libcmark`) with functions for parsing CommonMark documents to an abstract syntax tree (AST), manipulating the AST, and rendering the document to HTML, groff man, LaTeX, CommonMark, or an XML representation of the AST. It also provides a command-line program (`cmark`) for parsing and rendering CommonMark documents.dsheep71SUSE Linux Enterprise 15SUSE LLC BSD-2-Clause AND MIT AND CC-BY-SA-4.0https://www.suse.com/System/Librarieshttps://github.com/jgm/cmarklinuxx86_64A큤ddaM56d62cb9a41b16fd03701b59a3d20c8145eb60f754ed01b861d1e995880fabf6c22e885f33b821bddb24cf007145e5540655b6c0f403e49e6c76a93c28e6d9a9rootrootrootrootrootrootcmark-0.30.2-150400.3.3.1.src.rpmlibcmark.so.0.30.2()(64bit)libcmark0_30_2libcmark0_30_2(x86-64)@@@@@    /sbin/ldconfig/sbin/ldconfiglibc.so.6()(64bit)libc.so.6(GLIBC_2.14)(64bit)libc.so.6(GLIBC_2.2.5)(64bit)libc.so.6(GLIBC_2.3.4)(64bit)libc.so.6(GLIBC_2.4)(64bit)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.3da`2`@`f@]IkYZ@Y5YéX1@X.@XkWW!W!Vn@V#alynx.zhou@suse.commimi.vx@gmail.commimi.vx@gmail.comsflees@suse.demimi.vx@gmail.commimi.vx@gmail.comdimstar@opensuse.orgmimi.vx@gmail.commimi.vx@gmail.commimi.vx@gmail.commpluskal@suse.commpluskal@suse.commimi.vx@gmail.commimi.vx@gmail.commimi.vx@gmail.comkgronlund@suse.com- Added cmark-gfm-CVE-2023-22486.patch: Backport from upstream to fix quadratic complexity bug with repeated `![[]()`. (boo#1207674)- update to 0.30.2 * Fix parsing of emphasis before links (#424, Nick Wellnhofer). Fixes a regression introduced with commit ed0a4bf. * Update to Unicode 14.0 (data-man). * Add `~` to safe href character set (#394, frogtile). * Update CMakeLists.txt (Saleem Abdulrasool). Bump the minimum required CMake to 3.7. Imperatively define output name for static library. * Fix install paths in libcmark.pc (Sebastián Mancilla). `CMAKE_INSTALL_` can be relative or absolute path, so it is wrong to prefix CMAKE_INSTALL_PREFIX because if CMAKE_INSTALL_ is set to an absolute path it will result in a malformed path with two absolute paths joined together. Instead, use `CMAKE_INSTALL_FULL_` from GNUInstallDirs. * Properly indent block-level contents of list items in man (#258). This handles nested lists as well as items with multiple paragraphs. The change requires addition of a new field block_number_in_list_item to cmark_renderer, but this does not change the public API. * Fix quadratic behavior when parsing emphasis (#389, Nick Wellnhofer). Delimiters can be deleted, so store delimiter positions instead of pointers in `openers_bottom`. Besides causing undefined behavior when reading a dangling pointer, this could also result in quadratic behavior when parsing emphasis. * Fix quadratic behavior when parsing smart quotes (#388, Nick Wellnhofer). Remove matching smart quote delimiters. Otherwise, the same opener could be found over and over, preventing the `openers_bottom` optimization from kicking in and leading to quadratic behavior when processing lots of quotes. * Modify CMake configuration so that the project can be built with older versions of CMake (#384, Saleem Abdulrasool). (In 0.30.0, some features were used that require CMake >= 3.3.) The cost of this backwards compatibility is that developers must now explicitly invoke `cmark_add_compile_options` when a new compilation target is added. * Remove a comma at the end of an enumerator list, which was flagged by clang as a C++11 extension. * make_man_page.py: use absolute path with CDLL. This avoids the error "file system relative paths not allowed in hardened programs." * Include cmark version in cmark(3) man page (instead of LOCAL).- update to 0.30.0 * Use official 0.30 spec.txt. * Add `cmark_get_default_mem_allocator()` (#330). API change: this adds a new exported function in cmark.h. * Fix #383. An optimization we used for emphasis parsing was too aggressive, causing us to miss some emphasis that was legal according to the spec. We fix this by indexing the `openers_bottom` table not just by the type of delimiter and the length of the closing delimiter mod 3, but by whether the closing delimiter can also be an opener. (The algorithm for determining emphasis matching depends on all these factors.) Add regression test. * Fix quadratic behavior with inline HTML (#299, Nick Wellnhofer). Repeated starting sequences like `. * Add needed include in `blocks.c`. * Fix unnecessary variable assignment. * Skip UTF-8 BOM if present at beginning of buffer (#334). * Fix URL check in `is_autolink` (Nick Wellnhofer). In a recent commit, the check was changed to `strcmp`, but we really have to use `strncmp`. * Fix null pointer deref in `is_autolink` (Nick Wellnhofer). Introduced by a recent commit. Found by OSS-Fuzz. * Rearrange struct cmark_node (Nick Wellnhofer). Introduce multi-purpose data/len members in struct cmark_node. This is mainly used to store literal text for inlines, code and HTML blocks. Move the content strbuf for blocks from `cmark_node` to `cmark_parser`. When finalizing nodes that allow inlines (paragraphs and headings), detach the strbuf and store the block content in the node's data/len members. Free the block content after processing inlines. Reduces size of struct `cmark_node` by 8 bytes. * Improve packing of `struct cmark_list` (Nick Wellnhofer). * Use C string instead of chunk in a number of contexts (Nick Wellnhofer, [#309]). The node struct never references memory of other nodes now. Node accessors don't have to check for delayed creation of C strings, so parsing and iterating all literals using the public API should actually be faster than before. These changes also reduce the size of `struct cmark_node`. * Add casts for MSVC10 (from kivikakk in cmark-cfm). * commonmark renderer: better escaping in smart mode. When `CMARK_OPT_SMART` is enabled, we escape literal `-`, `.`, and quote characters when needed to avoid their being "smartified." * Add options field to `cmark_renderer`. * commonmark.c - use `size_t` instead of `int`. * Include `string.h` in `cmark-fuzz.c`. * Fix #220 (hash collisions for references) (Vicent Marti via cmark-gfm). Reimplemented reference storage as follows: 1. New references are always inserted at the end of a linked list. This is an O(1) operation, and does not check whether an existing (duplicate) reference with the same label already exists in the document. 2. Upon the first call to `cmark_reference_lookup` (when it is expected that no further references will be added to the reference map), the linked list of references is written into a fixed-size array. 3. The fixed size array can then be efficiently sorted in-place in O(n log n). This operation only happens once. We perform this sort in a _stable_ manner to ensure that the earliest link reference in the document always has preference, as the spec dictates. To accomplish this, every reference is tagged with a generation number when initially inserted in the linked list. 4. The sorted array is then compacted in O(n). Since it was sorted in a stable way, the first reference for each label is preserved and the duplicates are removed, matching the spec. 5. We can now simply perform a binary search for the current `cmark_reference_lookup` query in O(log n). Any further lookup calls will also be O(log n), since the sorted references table only needs to be generated once. The resulting implementation is notably simple (as it uses standard library builtins `qsort` and `bsearch`), whilst performing better than the fixed size hash table in documents that have a high number of references and never becoming pathological regardless of the input. * Comment out unused function `cmark_strbuf_cstr` in `buffer.h`. * Re-add `--safe` command-line option as a no-op (#344), for backwards compatibility. * Update to Unicode 13.0 * Generate and install cmake-config file (Reinhold Gschweicher). Add full cmake support. The project can either be used with `add_subdirectory` or be installed into the system (or some other directory) and be found with `find_package(cmark)`. In both cases the cmake target `cmark::cmark` and/or `cmark::cmark_static` is all that is needed to be linked. Previously the `cmarkConfig.cmake` file was generated, but not installed. As additional bonus of generation by cmake we get a generated `cmake-config-version.cmake` file for `find_package()` to search for the same major version. The generated config file is position independent, allowing the installed directory to be copied or moved and still work. The following four files are generated and installed: `lib/cmake/cmark/cmark-config.cmake`, `lib/cmake/cmark/cmark-config-version.cmake`, `lib/cmake/cmark/cmark-targets.cmake`, `lib/cmake/cmark/cmark-targets-release.cmake`. * Adjust the MinGW paths for MinGW64 (Daniil Baturin). * Fix CMake generator expression checking for MSVC (Nick Wellnhofer). * Fix `-Wconst-qual` warning (Saleem Abdulrasool). This enables building with `/Zc:strictString` with MSVC as well. * Improve and modernize cmake build (Saleem Abdulrasool). + Build: add exports targets for build tree usage (#307). + Uuse target properties for include paths. + Remove the unnecessary execute permission on CMakeLists.txt. + Reduce property computation in CMake. + Use `CMAKE_INCLUDE_CURRENT_DIRECTORY`. + Improve man page installation. + Only include `GNUInstallDirs` once. + Replace `add_compile_definitions` with `add_compile_options` since the former was introduced in 3.12 (#321). + Cleanup CMake (#319). + Inline a variable. + Use `LINKER_LANGUAGE` property for C++ runtime. + Use CMake to control C standard. + Use the correct variable. + Loosen the compiler check + Hoist shared flags to top-level CMakeLists + Remove duplicated flags. + Use `add_compile_options` rather than modify `CMAKE_C_FLAGS`. + Hoist sanitizer flags to global state. + Hoist `-fvisibilty` flags to top-level. + Hoist the debug flag handling. + Hoist the profile flag handling. + Remove incorrect variable handling. + Remove unused CMake includes. * Remove "-rdynamic" flag for static builds (#300, Eric Pruitt). * Fixed installation on other than Ubuntu GNU/Linux distributions (Vitaly Zaitsev). * Link executable with static or shared library (Nick Wellnhofer). If `CMARK_STATIC` is on (default), link the executable with the static library. This produces exactly the same result as compiling the library sources again and linking with the object files. If `CMARK_STATIC` is off, link the executable with the shared library. This wasn't supported before and should be the preferred way to package cmark on Linux distros. Building only a shared library and a statically linked executable isn't supported anymore but this doesn't seem useful. * Reintroduce version check for MSVC /TP flag (Nick Wellnhofer). The flag is only required for old MSVC versions. * normalize.py: use `html.escape` instead of `cgi.escape` (#313). * Fix pathological_tests.py on Windows (Nick Wellnhofer). When using multiprocessing on Windows, the main program must be guarded with a `__name__` check. * Remove useless `__name__` check in test scripts (Nick Wellnhofer). * Add CIFuzz (Leo Neat). * cmark.1 - Document --unsafe instead of --safe (#332). * cmark.1: remove docs for `--normalize` which no longer exists (#332). * Add lint target to Makefile. * Add uninstall target to Makefile. * Update benchmarks (#338). * Fix typo in documentation (Tim Gates). * Increase timeout for pathological tests to avoid CI failure. * Update the Racket wrapper with the safe -> unsafe flag change (Eli Barzilay).- %cmake_build is now the recommended way to build cmake projects- update to 0.29.0 * Update spec to 0.29. * Make rendering safe by default (#239, #273). Adds `CMARK_OPT_UNSAFE` and make `CMARK_OPT_SAFE` a no-op (for API compatibility). The new default behavior is to suppress raw HTML and potentially dangerous links. The `CMARK_OPT_UNSAFE` option has to be set explicitly to prevent this. * *NOTE:** This change will require modifications in bindings for cmark and in most libraries and programs that use cmark. Borrows heavily from @kivikakk's patch in github/cmark-gfm#123. * Add sourcepos info for inlines (Yuki Izumi). * Disallow more than 32 nested balanced parens in a link (Yuki Izumi). * Resolve link references before creating setext header. A setext header line after a link reference should not create a header, according to the spec. * commonmark renderer: improve escaping. URL-escape special characters when escape mode is URL, and not otherwise. Entity-escape control characters (< 0x20) in non-literal escape modes. * render: only emit actual newline when escape mode is LITERAL. For markdown content, e.g., in other contexts we want some kind of escaping, not a literal newline. * Update code span normalization to conform with spec change. * Allow empty `<>` link destination in reference link. * Remove leftover includes of `memory.h` (#290). * A link destination can't start with `<` unless it is an angle-bracket link that also ends with `>` (#289). (If your URL really starts with `<`, URL-escape it.) * Allow internal delimiter runs to match if both have lengths that are multiples of 3. See commonmark/commonmark#528. * Include `references.h` in `parser.h` (#287). * Fix `[link]()`. * Use hand-rolled scanner for thematic break (see #284). Keep track of the last position where a thematic break failed to match on a line, to avoid rescanning unnecessarily. * Rename `ends_with_blank_line` with `S_` prefix. * Add `CMARK_NODE__LAST_LINE_CHECKED` flag (#284). Use this to avoid unnecessary recursion in `ends_with_blank_line`. * In `ends_with_blank_line`, call `S_set_last_line_blank` to avoid unnecessary repetition (#284). Once we settle whether a list item ends in a blank line, we don't need to revisit this in considering parent list items. * Disallow unescaped `(` in parenthesized link title. * Copy line/col info straight from opener/closer (Ashe Connor). We can't rely on anything in `subj` since it's been modified while parsing the subject and could represent line info from a future line. This is simple and works. * `render.c`: reset `last_breakable` after cr. Fixes jgm/pandoc#5033. * Fix a typo in `houdini_href_e.c` (Felix Yan). * commonmark writer: use `~~~` fences if info string contains backtick. This is needed for round-trip tests. * Update scanners for new info string rules. * Add XSLT stylesheet to convert cmark XML back to Commonmark (Nick Wellnhofer, #264). Initial version of an XSLT stylesheet that converts the XML format produced by `cmark -t xml` back to Commonmark. * Check for whitespace before reference title (#263). * Bump CMake to version 3 (Jonathan Müller). * Build: Remove deprecated call to `add_compiler_export_flags()` (Jonathan Müller). It is deprecated in CMake 3.0, the replacement is to set the `CXX_VISIBILITY_PRESET` (or in our case `C_VISIBILITY_PRESET`) and `VISIBILITY_INLINES_HIDDEN` properties of the target. We're already setting them by setting the CMake variables anyway, so the call can be removed. * Build: only attempt to install MSVC system libraries on Windows (Saleem Abdulrasool). Newer versions of CMake attempt to query the system for information about the VS 2017 installation. Unfortunately, this query fails on non-Windows systems when cross-compiling: `cmake_host_system_information does not recognize VS_15_DIR`. CMake will not find these system libraries on non-Windows hosts anyways, and we were silencing the warnings, so simply omit the installation when cross-compiling to Windows. * Simplify code normalization, in line with spec change. * Implement code span spec changes. These affect both parsing and writing commonmark. * Add link parsing corner cases to regressions (Ashe Connor). * Add `xml:space="preserve"` in XML output when appropriate (Nguyễn Thái Ngọc Duy). (For text, code, code_block, html_inline and html_block tags.) * Removed meta from list of block tags. Added regression test. See commonmark/CommonMark#527. * `entity_tests.py` - omit noisy success output. * `pathological_tests.py`: make tests run faster. Commented out the (already ignored) "many references" test, which times out. Reduced the iterations for a couple other tests. * `pathological_tests.py`: added test for deeply nested lists. * Optimize `S_find_first_nonspace`. We were needlessly redoing things we'd already done. Now we skip the work if the first nonspace is greater than the current offset. This fixes pathological slowdown with deeply nested lists (#255). For N = 3000, the time goes from over 17s to about 0.7s. Thanks to Martin Mitas for diagnosing the problem. * Allow spaces in link destination delimited with pointy brackets. * Adjust max length of decimal/numeric entities. See commonmark/CommonMark#487. * Fix inline raw HTML parsing. This fixes a recently added failing spec test case. Previously spaces were being allowed in unquoted attribute values; no we forbid them. * Don't allow list markers to be indented >= 4 spaces. See commonmark/CommonMark#497. * Check for empty buffer when rendering (Phil Turnbull). For empty documents, `->size` is zero so `renderer.buffer->ptr[renderer.buffer->size - 1]` will cause an out-of-bounds read. Empty buffers always point to the global `cmark_strbuf__initbuf` buffer so we read `cmark_strbuf__initbuf[-1]`. * Also run API tests with `CMARK_SHARED=OFF` (Nick Wellnhofer). * Rename roundtrip and entity tests (Nick Wellnhofer). Rename the tests to reflect that they use the library, not the executable. * Generate export header for static-only build (#247, Nick Wellnhofer). * Fuzz width parameter too (Phil Turnbull). Allow the `width` parameter to be generated too so we get better fuzz-coverage. * Don't discard empty fuzz test-cases (Phil Turnbull). We currently discard fuzz test-cases that are empty but empty inputs are valid markdown. This improves the fuzzing coverage slightly. * Fixed exit code for pathological tests. * Add allowed failures to `pathological_tests.py`. This allows us to include tests that we don't yet know how to pass. * Add timeout to `pathological_tests.py`. Tests must complete in 8 seconds or are errors. * Add more pathological tests (Martin Mitas). These tests target the issues #214, #218, #220. * Use pledge(2) on OpenBSD (Ashe Connor). * Update the Racket wrapper (Eli Barzilay). * Makefile: For afl target, don't build tests.- update to 0.28.3 * -smart: open quote can never occur right after ] or ) * Include GNUInstallDirs in src/CMakeLists.txt * Fix quadratic behavior in finalize * Don't use CMAKE_INSTALL_LIBDIR to create libcmark.pc - drop cmark-install_libdir_is_abs.patch- Add cmark-install_libdir_is_abs.patch: CMAKE_INSTALL_LIBDIR is an absolute path (if -DLIBDIR=%{_libdir} is being passed.- update to 0.28.0 * Update spec. * Use unsigned integer when shifting * Avoid memcpy'ing NULL pointers * DeMorgan simplification of some tests in emphasis parser. * Fixed undefined shift in commonmark writer * latex writer: fix memory overflow * Check for NULL pointer in get_link_type * Move fuzzing dictionary into single file * Reset bytes after UTF8 proc * Don't scan past an EOL * Document cases where `get_` functions return `NULL` * Properly handle backslashes in link destinations * Fixed `cmark_node_get_list_start` to return 0 for bullet lists, as documented * Use `CMARK_NO_DELIM` for bullet lists * Fixed code for freeing delimiter stack * Removed abort outside of conditional (typo). * Removed coercion in error message when aborting from buffer. * Print message to stderr when we abort due to memory demands * `libcmark.pc`: use `CMAKE_INSTALL_LIBDIR` * Fixed buffer overflow error in `S_parser_feed` * Update emphasis parsing for spec change. * Fixes for the LaTeX renderer + Don't double-output the link in latex-rendering. + Prevent ligatures in dashes sensibly when rendering latex. `\-` is a hyphenation, so it doesn't get displayed at all. * Added a test for NULL when freeing `subj->last_delim`. * Cleaned up setting of lower bounds for openers. * Fix #178, quadratic parsing bug. Add pathological test. * Slight improvement of clarity of logic in emph matching. * Fix "multiple of 3" determination in emph/strong parsing. * Correctly initialize chunk in S_process_line * Added 'make newbench'. * `scanners.c` generated with re2c 0.16 * `scanners.re` - fixed warnings; use `*` for fallback. * Fixed some warnings in `scanners.re`. * Update CaseFolding to latest * Allow balanced nested parens in link destinations * Allocate enough bytes for backticks array. * Inlines: Ensure that the delimiter stack is freed in subject. * Fixed pathological cases with backtick code spans: - Removed recursion in scan_to_closing_backticks - Added an array of pointers to potential backtick closers to subject - This array is used to avoid traversing the subject again when we've already seen all the potential backtick closers. - Added a max bound of 1000 for backtick code span delimiters. - Added pathological test case. * Remove redundant cmake_minimum_required * Make shared and static libraries optional * Added support for built-in `${LIB_SUFFIX}` feature * Add Makefile target and harness to fuzz with libFuzzer * Advertise `--validate-utf8` in usage information * Makefile: use warnings with re2c.- update to 0.27.1 * Set policy for CMP0063 to avoid a warning * Use VERSION_GREATER to clean up cmake version test- update to 0.27.0 * Fix CMAKE_C_VISIBILITY_PRESET for cmake versions greater than 1.8 * Fix for non-matching entities * Modified print_delimiters (commented out) so it compiles again. * make format: don't change order of includes. * Changed logic for null/eol checks only check once for "not at end of line" check for null before we check for newline characters (the previous patch would fail for NULL + CR) * Fix by not advancing past both \0 and \n * Add test for NUL-LF sequence * Fix memory leak in list parsing * Use cmark_mem to free where used to alloc * Allow a shortcut link before a * Allow tabs after setext header line * Don't let URI schemes start with spaces. * Fixed h2..h6 HTML blocks * Autolink scheme can contain digits * Fix nullary function declarations in cmark.h- Use current cmake macros- Fix building with different release types set via cmake- update to 0.26.1 * Removed unnecessary typedef that caused build failure on some platforms. * Use $(MAKE) in Makefile instead of hardcoded make- update to 0.26.0 * Implement spec changes for list items: + Empty list items cannot interrupt paragraphs. + Ordered lists cannot interrupt paragraphs unless they start with 1. + Removed "two blank lines break out of a list" feature. * Fix sourcepos for blockquotes. * Fix sourcepos for atx headers). * Fix ATX headers and thematic breaks to allow tabs as well as spaces. * Fix chunk_set_cstr with suffix of current string * Export targets on installation * Fix cmake warning about CMP0048 * commonmark renderer: Ensure we don't have a blank line before a code block when it's the first thing in a list item. * Change parsing of strong/emph in response to spec changes. process_emphasis now gets better results in corner cases. The change is this: when considering matches between an interior delimiter run (one that can open and can close) and another delimiter run, we require that the sum of the lengths of the two delimiter runs mod 3 is not 0. * Ported Robin Stocker's changes to link parsing in jgm/CommonMark#101. This uses a separate stack for brackets, instead of putting them on the delimiter stack. This avoids the need for looking through the delimiter stack for the next bracket. * cmark_reference_lookup: Return NULL if reference is null string. * Fix character type detection in commonmark.c + Implement cmark_isalpha. + Check for ASCII character before implicit cast to char. + Use internal ctype functions in commonmark.c. * Better documentation of memory-freeing responsibilities. in cmark.h and its man page * Use library functions to insert nodes in emphasis/link processing. Previously we did this manually, which introduces many places where errors can creep in. * Correctly handle list marker followed only by spaces. Previously when a list marker was followed only by spaces, cmark expected the following content to be indented by the same number of spaces. But in this case we should treat the line just like a blank line and set list padding accordingly. * Fixed a number of issues relating to line wrapping. + Extend CMARK_OPT_NOBREAKS to all renderers and add --nobreaks. + Do not autowrap, regardless of width parameter, if CMARK_OPT_NOBREAKS is set. + Fixed CMARK_OPT_HARDBREAKS for LaTeX and man renderers. + Ensure that no auto-wrapping occurs if CMARK_OPT_NOBREAKS is enabled, or if output is CommonMark and CMARK_OPT_HARDBREAKS is enabled. * Set stdin to binary mode on Windows * Add library option to render softbreaks as spaces. Note that the NOBREAKS option is HTML-only * renderer: no_linebreaks instead of no_wrap. We generally want this option to prohibit any breaking in things like headers (not just wraps, but softbreaks). * Coerce realurllen to int. This is an alternate solution for pull request, which introduced a new warning on the comparison. * Remove unused variable link_text. * Improved safety checks in buffer. * Add new interface allowing specification of custom memory allocator for nodes. Added cmark_node_new_with_mem, cmark_parser_new_with_mem, cmark_mem to API. * Reduce storage size for nodes by using bit flags instead of separate booleans. * cmake: Global handler for OOM situations. * Add tests for memory exhaustion. * Document in man page and public header that one should use the same memory allocator for every node in a tree. * Fix ctypes in Python FFI calls (Nick Wellnhofer). This didn't cause problems so far because all types are 32-bit on 32-bit systems and arguments are passed in registers on x86-64. The wrong types could cause crashes on other platforms, though. * Remove spurious failures in roundtrip tests. In the commonmark writer we separate lists, and lists and indented code, using a dummy HTML comment. So in evaluating the round-trip tests, we now strip out these comments. We also normalize HTML to avoid issues having to do with line breaks. * Added to_commonmark in test/cmark.py (for round-trip tests). * spec_test.py - parameterize do_test with converter. * spec_tests.py: exit code is now sum of failures and errors. This ensures that a failing exit code will be given when there are errors, not just with failures. * Fixed round trip tests. Previously they actually ran cmark instead of the round-trip version, since there was a bug in setting the ROUNDTRIP variable. * Added new roundtrip_tests.py. This replaces the old use of simple shell scripts. It is much faster, and more flexible. (We will be able to do custom normalization and skip certain tests.) * Fix leak in api_test. * Makefile: have leakcheck stop on first error instead of going through all the formats and options and probably getting the same output. * Add regression tests.- update to 0.25.2- Initial package for version 0.22.0/sbin/ldconfig/sbin/ldconfigsheep71 16794733090.30.2-150400.3.3.10.30.2-150400.3.3.1libcmark.so.0.30.2libcmark0_30_2COPYING/usr/lib64//usr/share/licenses//usr/share/licenses/libcmark0_30_2/-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:28333/SUSE_SLE-15-SP4_Update/e6b7bc07007d3ac682aef5c0e3d8180a-cmark.SUSE_SLE-15-SP4_Updatecpioxz5x86_64-suse-linuxELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=54af908fe9e5f6f84986acbe989f9727ce791141, strippeddirectoryUTF-8 Unicode textPRRRRR7fZG8׊utf-8732aa02b74fc2e38e633929b90eca2b86528c70b472289dd12793fc57da88e32?7zXZ !t/6y] crv9wk =j҄\*8,΁)&rΕ11 (Ƴ:e6NX6+evY/Sn/f`֐po ҋ>RD\+ʚed$ v覟)Oc9LԠ(B?Y3C+@'Zg!Jjn`0 AZ4EynD^]!*|f{??.JE=, yR2{U*__UTZeWȆHshu/IBCn_f>L1?+;)ꛏߺ<cO=((VnW$ah =qt37uy/B nf3(p?"UNEw3y)kA%TNq۠v'zmT%3<:]m3ݳ t3٩ C'>:BBY cX`<9q-Lӛ1VF۶XRv3c:nf{z1y 0疠> 2ߖA7tW4\6psüx ʮLTX{k؝K8R۹:>+:g*td!1hDں?>TW@d5(IH vԽpXT pBTۧ3Ke,S#C`ǏVJ[rx\zY lfV3g74Zkl;sn%\QS30Oд Y}t[Њ_̆˓>[5M"T9ȖEhroC\N}i^8Tue{I,xiz0Um͌7wʝ2WS PX'}hv^'5:/ug\1@>?-̠y:P.hܩ#"+piϐ7sS;U]Ĕyơ=Mv (kKOhMM?{ƜI " w9!D.>d`k̂  NJ;~P澳1=J+Y[nZ}kݝBBi4f4x/55(ӐOJ]ڲg/ Pj}B81]?/Qr/?$ޢSFEFBPt"lXI$kf`vSwVTrb<%<"$;hsA M|q [8ΓSE?7icyҕ7ad,z(okyXO6ʍaڇr6'0w7 s.f0cڍ V>&f#~F*-i( 1i䚦"3tOxfCLɭt1b&|Xh> S-%uG.mNE_U,)KEk+c6T;\?9Kh-U) Wa_6: hr޶(/lW%$~20.+ѐSܳݬaU_ , {5At*/mM @A[UO0# ,A_*ZAd0bs{DʳaYSĤT/sDׄ}n<ϕz~rq2>@A1t)2)%(n `jj඿ݑ1Ź@I9|b1NJh$t"r{Z=aL<܇Lz*&#Aawx3ۚfxxTf穧\ 8ѳhsfk~"I1}ftǩ;Y=[lpL/1ˣIU }?S$q(=mFkQewwh553t !1C$CdZg(p) m;m/`}n]SeY@&йm)4Zy([nlLߧ tl%hl6уͦpF:m/tu2~ T9ik2Yb \;Nر  %ee%!@šdu'u٣mXX mu %LuobL }~g|**k}YxG>۷O`+ >Ԍ3׵odK!=~? q 6>(6VN}o|B# vL)8%\^ӻZ(WǦJ xئ#{Sh[kre>t¯l[Ba-McWy2kjk ?|-G 3kG m^K};uR9(ssi|Ҭo!СQE,] 4Vhd4?J3h`~9 `ls@FEV>=09_<2g2IM_"|^ fp-WR鱳8.!*<. nZ7tVZoӺB;{( zjωzfJ1uxͤӫ-ҕ Ժ_x3AD4l`I$38jiϥbQh#o˜7lO>2KxOXv@)5.B)I;6䔗w6RLdV?Y֑pdCV#Y 4&آ\,6[hNBBUUUȼxI^>LlOGLBlMVfv1ܐ. Ih5e5} U u|K>o9/1!yn螩XR2,P}8`%4/uf:oŘ &%4AY(';V^k~4:/3RאͧTKR/f`ϊαxp> 0: ̷seC[^Es^.hdXğ-;q#YofRt Eai(|SV?mKњ p-6=*d9)uߢC_p &$6Ps\VTm]dFfI$hcd,)JggC | nG3%BV/Yvj⠒ZߙJA\}#\>VS]²[lN`C>"zZn\܊NH9qm BC/w\f rnDOcg(38rcc<=CU/%٢SdJ1 ٧@CtW̌RGݫO[pPRm(8+O8u-%w]Y)#(fc`Px!č MIA2B^ሌnW/tr5%F!$%ae)ňԐ9 l=!BQ{VkN>;-$qK:YFk|4|[$`I1cz.Lo+FN]Bǒ"# wiUE*ˣ?츺 My8O*>3qSoNnG"!CUؼ54JǿGJ k(rO[FhZf4Fou%ֻ+EDZj |H?Hj.66țİ@uWWJ{/U%#iC;bex/ .U*J!RXp%Ӊ ѣ} DW@(S0R޳]Cڹ9waejqXRхMw%u;Q[p"oٵH616PYɂl.\J(0I//+e<򬞣lyFȻ2OAfw/Q ^%!` RSChj|Ex IKؐs<+U(!hK̀U)K\1N_WBAzRƴ7V2ZLoh O>XZgEVUlrݹz[6%h3M?i6NOY7y41wƸcAms9E/ 6$/ U{`$&3Bw*̝cAgF?+8dXbE bh*}Aiv&\xPkjL}4zu q>Yxvɲ%oM_]5/{ +\%G#mY.0hlmt3d-j2KWQr!9k {҃ i[Ǻv^Po-ܰѻ@Ki[5n%^4dٷ!Z7>_pp1#lkB=6"5#h17$ iɼǷ ~ 0`ꢁ!WNZ4u Q1 ϜޝU5$QYϴs|&{ X8…QKC`1~5CC6[ۋ`i_4RT,E&6朰 FaiZIP)Iͭ|.?,r"74}Rrn՞UAMq~nLny6Tj@>Χai 4@$γJ{ 7b^EjRz.o+@]cGK#{^6WJxX2o)ݵ |7P60BKJlsUTj_Tg=;2kkdAfXk[%r(kQWGax $MF:`8zR6Nl1zE6o=ъA/K-6̇\UKТh Ymr.( !ˎ;~͑$ {KR;m,s.觕2p(>;Q6WM3n\~ K`#uZ!N{$p~W)ƓΕq)X;KJO; A7v*KVwbeqqUL:ݓٚe u`'bG2~] @5Ta9 }]B3̖ Vȕ#bYmر b uY^YSCQFW.)aFZ;q/(Rt3vzPQ(9S"x:f^4\m Z+Z^-NB!YDOtH7s\E<Yi*q@GFJVYu"n.4ΧW W }(dz1vNP d)9ͅ`+ E/A){Ǖ+!/܈j>NfaOeY& .m"wW:TԴ5DO<4ɐjS& {/[גkFpfl9_a)1\T,Ar?4/Wq&$ℴ6s4KDj{BrsZ]a{x !6ldu {>\.ێ3[r t7,H#퀏Z9p6sֱzHK[|a;B@G- @7ɊK3̈4lwwу@ﯮJKRrQ:"bjY|UkjJΙKrB( [n| :h|{>&pXk̽tsnpM6hu·K% ӝ;4!(p`!h\)ĸ,g;gpDngLB$/2O:hu]-{>|03m ~UU{Q\?B <;iY|2zV2;{{&䜇rfZ-kl&̐hgڠ()2/ji4 zL%"EWRI YqTPHeޛyu8%ڰ="}z.]%Cm'VK$PkO0H 8IT~;??@K^>$^2τ#%(9.`/\:gT#Y Ԣ%$*E]?j=:v3~I1.rS \IᔽzzSmVeLG#[MqC]2N>cPKzod:z@KGa*%Cddcr0Uá4M=}-jM4_iSVyT" XOeǿqTԹD٪hxedMŷߺOeA[܃"%!vik`G:]vxmZJ?Uze;[EGt'+Z Z (sᒊ1yV*5܃+m˟jVx:!L? ?pjtM9d5f3:T\m}@xCMy)f8Ӹc!08 ?9?CLm@ctxBXB9LiͫKb5%"frBqLdoZ3Fc޺^]^Cp^( q@2iD7ɥƳ8oqҾSr1TO*[.h@dy>1iؽxw84,$&ѣ1rN.e6ݼw,7˃ZN>jk{L 4MApAW^6i66&S,Wfkl zX6=|n.]~m%V> ha c6=J뤃Ý*ҮSi:~OgXJzlx-4ƤQa݌R"/@y@ FP&0Ҁo tns^Ip3 f/v6}!eBju馠dvsѮ@9"@p:`0002] ^:pfJ Z)R8ωRM>e(:{A@+Pt ޱqfesО8m@8 }xڴ[zG[mK+3w`v+8'BKS'~l` #U`<#W E)XVB$ iy6 {Nܩ?xV$0`/~q4wF6&Bɵù~4~3M1`>)ٽEL8[_潌∻&CP&v}eE}lRʨ']s% hD:Ku[1/ TEaFp)BY*evwWMs?(>wd:dׇv+1|T-]|Üdro9I__N|UQ_֖wzvTB0}ӇR''1l͜>'x[],ዝVXO'=eSõl?;m6s1 N&xo6ں^KZgxC` [WxwXsģA =\E)$4HKͦ?v! &_۔Bu@7{n۟ȒW5X\X6ҳۨNuOMQ@hxTęGÐ n8tx \RK*ñi7^II{f HJb! -$ٝQ LGXL,lsxpkS~-jK`ҽτk!d#~8O&e걍,Y7s`r0VpDdB Pn$xI&>]_a)#+_$1.2d`˹+~k/s_9{&!+dEw$kܑ4TEU]l\UasFe݁Ode4C9ox^TA+f-7Yߗ.NH%Z&ұ#20wS͉Y*Cq N׏} 7h;^)#,)a#$t̷#5 G.]1Ik;֠7d.ꔋ(LH]wPb3oTVfϼfLK񅸕yƨOm/x΢I,}j<%Mi<} Yr+,<XhFQ&&3&Q8º,%6#mJbh\+Nh>b"98uf3?-E;w9#Vr|҃s%e x\0J+=v.J$!\NT,ĹaW!|آ_rK O_ avK&6Dݮe4"S]cdQ*;T!XĞ'褶MRF?ILVHyCdZi&-'/DR3𾼷 :vKC,PۈU[J$knm(PQǑE(nu*g0I(1SYvTdͶgV~fNx14"o?7ZX\nuq:k8lwX祚s6.TE0L䑕tK~/ᇲ X@FdS^&LH~BN>ǿM1^F٣1- :/_ =Ծ;>lPUx{Hu)p&4$"qD FRPBqf%dʘ,{{v\&?ݮAg^\YRm=$cWKTq#<5HRfIw8w!UJ{2N֠xGM2J+lA/AP "}Kd{!^PaoSmrOaUKۓ 4%R ,$N!FHPNl7AǕHbBV7ctpqyWI i5N{9CY1uMޙ0dhK+ EG8*˙l\KNf_}ŗje ZSIK^qǨu _}cӗqȉi_5P7NLi p4alIw :qT uX`+Cuy=W.|WNi,t* ] $]|w&pIrr^Mk&2h>OBIfVjx C̄:I!P!"7ZI#G~DB0H4{Wl*kA3xqcL$$hZul/!uc`{ M76cT GfG2T\:LgC7>hNF+6y&Q~AzM`''&)!FSD`r gciԤD7{+E^;SUGE\"+y{*X0h{%®{XEA4<&|s(sz1]QxghCu@ m{:ءi#\{׷̡ 9rxĘRA}=4DWm$5IlDŽL33Cd)Q [IGPcHpY]OF`ѺS }\ucfsc81; RZebh!p'&_ㄷMKU(:d)xW\WK&oOl[-{@p=7B *Xq<[+J-ӗۯ8 ~`P@lyef 4Kɐdr9U- ! 4ؿPȫ!CK߀`fy"Q1$Y j{P -ipCbOB'~7?7Nk\C+a~ۘ^o/36z,ehm=8:%9d_6d7tg/L }-Į%X.ʙ[3^P 󵉘x΃eP9`$D?tw'2}X z cGP_srMR, ?^V[̈qâK|N#8n%Qe̋k٬AI #g[},BEɌ|R.jp6yER<]x-w("/10=Xh~ǿ]a3&&aOv2Sx.Dd ֘[G SzL6&}9+Rrna%Bl2mV EԼӴ\B{/Mx"{Nd$&%DFɠ !k(r*ހ˼c\"Ծ*SM j݂LNã˄Lz)xUN|ǿ:1[^捂0iR)CX̶bLքRY&Bh3jN'K0o#ZD̺pY$9x EZzG`ɫgV4>\$&Ie$OGf'hg9n[:&K@euQϩ{Pƿ9 i_o`.RM5w.%  Yy5cư?VvUm&6̮2ZX@N]FbU\i 7:Mm?5o@vމmBFZw n,C]f)X1C ;!%#ZwǰK[9ZROI-.@u~o]~UZOc+S R!Z$&PzA Sh\pX#W`I;'C-e+o PF|xʓJ= 5v|1BW!իȂ곞4z#Kn`S wluE|E0u0!_ŨP+| U~9ltϸ(Yv^ra;`I%L^"VSCߙ8QDM:RJ#u.U@9@AEr _H6bAMdey}(|怦P~T/=0&٢mۗ4iLhe=uΫ]@Βk -س.F!rnqW3$B>Iڸ.%T&ׄ?ғHҋFՆ/,J0oiV{% 0-Q'pĔHPSy~܋- c(ꮬ`b}غg /Ћ[J?oرs?:##;Rqivn0ֱyshp^Lv 6b+6ܪ{~aŦ] l%e,`jgu;1>yjAY{)1!5?+o5rYdr砯- TA0/[p_{D.a&bs@1 wؐPn M0>683~Ҳ%#wI(79mϚvֺ^ ? U0( *3RnsZ6vӹY df;P4 _~FR,ۋ颳v/ |?i/A{*wxQ lyz5.:Go3ar.E6aqW/I eR7b?ysC< VD5Ӓ` [i)//2eNwNw/'jXGS}liꝒ6zEsbۙ0m8̠(# Élzrt΃JcB_?z w$Z% *(Hީe4 ?d>=)8c 9o݆܇gKjOl`ڸR= z uw@b}gJJ0m)qNLoZA jBՕ< 4)JKG|Nb1hָDM2ZG9B:gDy@TW=|5#tJ^sE9&Ɂv'f-t :ӗ {J'w%ڧ;Ғ<'t*}vM4%4oIF6X>0a./}OUu QZNcgypVlj;cv^&$o^9w?uw{K@;6;(\'[uO֑a.Y7JeѴ={7'jKO =(5EYq-I-/'5E4]8v!UAO>1̟oԉLu6)a]TN?Y-]GZʔ;!![շij%[$/xjIBLVbs+j'bFY-r%;¬d$ qw[a2Mb=8+կ?G 0E dIAS_YD E2ē[wך~bα|ώC @Jt h͠R}gi[}xC$"a :iX:m^^ 8fM\_mRGhj1~qK}7@ᭆf\CQy~E2 "DhvC{Zt)c2&6oEFc; ˓oDtuL4ry ZI;2Aq(Tٹ6vPj]';6& tf惞|rrrWYM=8_ $Fn Pz?(x+1j`Msw9ͧtx5vWκ5H-_ *v™X6t~#"؂P qNŁq `GFg+Dw'YW qe:*Hx .xHH@y>#줬c{:= 4:tfA _ƓyUbK00%jİR@( e$[3ޓy$SLox RqeyAeLWv6VbD3n$a` kaުO%1ObiˣGJr{lT !lta[߻C$HF!iCi48TZ<Ѳj l(>y5#_#3,5٤9A5G 5ьlX[ .q|Rf 5.SB(%f^IL .k^$hĐx KXg*z&q!`=G}E$ dzK%߹#ecՑ{T])>n8E LZ4l.#lw1sF"p{z΄5-a)ـŌ%Tȉ=/NI 1AOźKCG V/'zp6IXp5YyoAp97J68Ř$BT&9+}y>pL\o#ٺ{bM$~z(j8DJDFB_,+cF$Ys42fHu4wTFUU4OӤr9'nnk3EB.OQ%6m5E']b5͜)!PHdl,̒r~br|x0f洅(s)Һ!OjZ٤LR"o$ # R$gRyP_UhJr-JWUzeDH RKʡJJݬUIk2 YIh /#F+ԟҥ`i Cav%,1A/;Ty%)FR$UIiީ覸#[LAf:_JB{ 6Vs[-Ts`F%0׭ Uc F͒F!n  't:<эŸh8E3-\we@hB*R0F,Lm@%'\ I.| 95j@\:@77 1HTH}]}oMV_MF ǻf %;|whO ;fO Dβ4jU9v2g(],~nq@W $@`_OE##20e~N mOʎl%$rx"kM؍*5*3; }t/x+-34+QC,!d+*ϧQJ"Ƌgf\j!eҹyG U-ՋD޺#+n;/$ǩ&TV;* LK+=Q\9iYhJ vZfhmAo E^8:E#~!oB@b-4d[M0MPIaр={#`E&e3 ,':'Xuœ քDc؛qil|F;oӻF%XeE0 ~Ћlm  9D ɾD‡͎^9fJR-ȟNl~@suztT7>5jyގ%L 5MUS^Bv r:&1jOeu1]K>&lFpw:P.)Qbϯj%h®9ͭ9\ Z.EӀz]-m|۩hD'ŝ]of#dӖ7y93*0Ư'ztbu 1 _3}@6l9K~ 'X+l8=WS%ppF^2HU"krM8b8i^"gJ1;BJC8_Pdk`>wZ?57p:qFTeHO>2n}H;%JC溻՛ K86[{%%|yV+ v!C:6ʘ#@Xw+AhlQ.A(e<+ï*zcC8x`BQWAR]ɂ,?P;o:ri$nXhʌ`vmQ7h/xAShsTTb3rh&h͠ h%'>N 4À!TNoDj &Pȗ[|ݣN_|k]SބjcNyڰH羁:EoZY)}]l mO k[ҩ@KF+3yFhrv"ٿh:'wrB\cpE )2v}ry=OCp >Z^(؟;{ݤgÆs&(؛ v?dzfcܩߐy{ Zb%:6_)*Z'gfa :r#m(g O4pY=3k:sK3͇̄ɇ6 #i"ͮ:S2@Hi)CK1O6gwR Z6[(R۫tqa'!ÕpZl|J.LiJ%Yace-R'D.YՅ!\ w5RO$u,iUڮf) *IJFpCHF9ٛɟsR=gDs˶2M-xiqxK2`}z~64SRU/2BY=+;ª YWHl-4RK@1U|M7H'pr x"`&\#.$P"?+]iÙN^^̦m_Oո-4guMI_)ˣt*Y,8O+j!8d[c,mh. bH[(+ k7q;-ce7/!9$)1QӦ? 4]]`nh{FƮᬧsqQ [0#T*qoH'y*(p"!w25!IΈ]3Q k,Y4XPt~3B6jNi{G$=^(Yl6O~b jR3S~u֣.$#1|

ݬNޗ_10 gJؑhS Ղx~rZI(un;6em# duV~"{l}- =[1 ;lڀ欓{ ځ{({ZG?PӻV~BqKAm(]!o=[MvDfʰsS;Os}zpIү}t-K3,mW Q< Y}Q ;}>ЌWgMBCs(DfEy[ѤYBzp#IPQܾ,ӿ[G1zZƄE2 Õ]_ֽVc^7Pt`h|+H~3=g*E nuBg4ۍӟoP_c_8@q,$$;S.ov`%wI<̚aIv`0mza /'~ 56uP45V0}재g֚K~(dLd/]UFx. NyF.^J1q*RҠF;TJZ?mG]+win%kKFa: A4!Gd/i%ݡ0=jU|_XuKs>F%un =V1A@,7` Nmڰ YpT(mOѸ{f¿OT= sB`2Z8S腨;EM 74 h&;n|L2k6娖@s`ECDY;P(Ltb=/H|4w+%NN=[hnAkK_6B.lkÚiaK 4jJ;!:i6nm@U'>K"?VעSs^dmC4bK:5b'⦄Go/9JSF<+e ZUcِї:Q "[lTB8; KAG65{M=*a'YY ѩ'N*H}fn3Y΂\/LYV;%&\|>p$NJa"iF8S~ODq8D>P]܅ (ى$rhp:Ƞc:+j X(&$#$܋(T+kM|C>C>T$Kt^ Y `DfMj&`'FN'X%\hlv)n4VJWhb.&o>&5G!R*E˚8y}!o:k @튔^,;X0TA]N1= bZ9OȟNz% -T .5:H͙J7h0RB*m-Y#[0 )MY.b@wq4:ړy hْgB—č(l_}<32+xL{LKkZ.9wmdj\dM׸A:u*EιExMfw\RXhD 6ʕ”*0uBZI V<Yy2T8gO(2D'ϊq8-JeE2LصqG7+mFp=销AxR;tb6wC'z=TdyK:$zqߑC8n&K]d1:qy52C-8h ::½Ek a!VRF-~?>ViJ )`ܡjE >̦].BaN sەh?G*\Z:^D T}a,(fdnKղěǔK(m''"aT_"17Pچ=#AkJ hIxfd]n5lORb C'ڀ%T3Q|6q *I㊻lk=ymtar˂UìWQWϢ)$]J9ى>*RPyHeL աf{I@/iP2e;Xԑ{Qkt+ͱ K[?87L"W4˥(_q'˘ovY~Nve<F 7An/aU*2 by$~y°s :f#BW QHض} E3)jE -"b굜5i;LOQ]M(;$鏙tXjSO/ڒ[Lo$$̉C^^-vQbi3~+1TIצ`-]_T=zO,|ԣɭx]rQGc/jN-dDˇy ܯynXDp}rKwl" 7\U8|YsZW[լ{PVQ~E'u$bcI\OyS; Nś!Ќw?۫(RF DW5FP'sI5U, .ˣ[SxyE$0|zkK(mB;bwƐ,p"eʷ#-7Csסsp lunSGu:[&I-`fm)`엟ԏ#qCG2zi gxuc<]2B=#ȊͨPW- vHR3|ܒqD ʊ,uS]Ƨ3R1z4Cu?x JB imw nwåUxA-82jϡB4y ;fta2)7A' T!P[ y&TMW[]%- 뷴.zU@NΣ?=Neqf7` kr|Hl]~3O!f@9)R qwm0/6qGv9{J_ܷ0kC⤑1RXJ>2p$ri'R[MVo4nT51yMvidp9qh #2^A) QDirLH._N:~F8l==j]aE'ڰ\ )3 -~re`iy!ˡS zv1dNؽH$[Yv^8aa#]{РmZcCЛ F~v,KtGZqM߁Z d @HmMX<30tcUl,qU*ojG ?dBg25oq;bUq]C`,>8ԘdMIT D\m,`W~։P"oeу4Tjٱ$*sS&MRFƐdT%<&B lS~&}~C#uq%xau% QVc\y?I^b\v (.ؾ>B0~CLѹ쬋>ȊxGdbVH>bo'tZE8G6^<{ɧ#@ak"yAf$^\2vWOqiWL7;Ɗ!}q2FQrJh ؔ ~ = 1͜yI%arN3R(^}n(Ey8%J<#d[沠yp.ϻx;hĨߕ.֙UEkT+;44L1XA˒h*I6{`3ԡg1`IϺ<ԩ^LX,+iJBd]W^/+}BS޳{۴vو`O;L6|pUs*E)1%D fv[ټpR7o704 FNÚS5!5Ca'S#8l& xJR39m67K!4 g^o53=Ƈ`Y۪ 2ѷp+5/I{= q}m'#yMz D8O2W4|!9U}&(>5}eegmYu3VxCgq痑 I,tmu^ȇ;ߢ޻: <T]=^*JC]R7r;Jk=Y!tCBJSy]\Hd`gؙK$cQBa\E)7)[YK-̺V$tByI81',x5C=Iz;`ŐhW4[`F́GyJf!Cq)*Kcyaa0ZJ_f3XXγz,8H UBk}o2,_>S]\yXihKn#B:DBrv7_Wy"~ͩu^g_Վ@; 0%Ԟ5TW;լfRŀvÓp jsUDi\gvMl9щWkҠF[cft Clh' %@s|BVqxEDWWc{+"T(xNLE5Qe0;2v ;Ur|ȖݴEknG(1 `ͬmRTlu9DMg| "0i]N;- OX7ٷ˦B7{=W|G_ LYϲÒa|z{\Qz"܎[ +Ln*vf[7 [X8 =6m^BKȚHwTM|7=rEco 0fcrpۢ44e?[z 82A+fk,\ VPگufaUgf"W9Y(9[i8!^jw3"EKp 'ݏ5_fԆ%uy^r\2;eaD9&FXlRH'91ޚ}23YmbՖ=ܟHU9`PC(jvLŒI<7=4$#0i[ f3g3V.`Ik>1'o "=T'X& 7wb3eMt>,buDW<Ȉ6e3R1dҏ"OS. \{yryn<:0SđFq!GEY]W{?QLįEԿ啼B b%$ADc8CQxݓz&][{_ߌ*ul7ŐG|԰@6m?&`^ZM[!!~SR/jȘ[(4`R]#/'wal=fߵ'XvOv+GN>24:nkomT]{`*4n~1%3c{Jd*ӉQL=Ƙq{[8ƾc)! ~]a޶Y[ƅEy:Rμp Z@.bEH!~Q΄ֹpLj/?a[ 7'4f"6ozC,-,5?t9Jܤ0?4 Q"erjX0 m |d31'+ВNŞfzԒ㖑Uvl+Yה>vA{,$_稜9ӳp(,lַEՀuZ{ DCFT{b5j婋NHy w\X:0]/, Y5],4Gsp'-k*FX9Ƙe*B!081A9x6L߂O$x@jV[b/X"l6#M3Qr.&`>xAg&_6 +Ln71l6\$!* y׀'v5f'(v%w4]ցh)2?a,Yd Jԫ(:,ON p6k /g>JCYUvktJ"T8=XOAi&N?()<ύ+Wn|=?TcyF&IJ۩8hg,(v Ŭl>zlcv(gv_5:+YDvФDrC&4+@ l3vmP-!{j+"۾V}0{rUlU*q#!1Ǟ#Ҩ4$ӭ#hY(#I{3v,X9 L_ې˥ r) ׾lI;,@g$i&U:W%+K н5)̑Q`&G^<@#DMU®Y< rkPHgca8XGoXEQW غAVθtdH\Dd|&zՀ 41*/2%+CO6I6̿&L1APC7>$0lPz;(r;|=vf2J<[G\{piy<:/7NZIh#hD{75,?ɠ.L|}j2w{⒭9r<ﳐ: 8u)W2NMhGE8Fe,Ď+YܴҁPGf*>=jι/Y0&^@O^αӫ9#8LVLo2!]›*æiz8%>gPiP,7h+64jN΢0D:= !箓o@qyږĴ*',2 dxq*#G71#^͖:(/spIKweؚ~2Fm !OߵL×B*bȢZ}n-1_z5:L\ȩ #)AA_!Cv|nE]}'iuIՃXt.)8Hz%DE@5.jGGs(o9!Y[A|`V8[fOX&Y2NЀ[<&Av'{e?DSn{|Qjd ]VbsPZ5DQZ7M@?q<<DLu~~,Kӽ4 !ǘΖ˙ϓtETM"on a3s*} S,QJEʣ ]9"xFД=XKX4CCQT#%!U; ͍KH'ڮUýMuddm/(C Ҭ|/cŚ,c`➘1վZ߁n9H}8WĮԛ\5 *&N-ulɡ*P(x{R݊1!NM+m7 汔 u ?OilV &Mqs$UE0:z.u:@sw HV8{T\@4L - aQ,BZ^ʲv^-: ƒ\f)iǣQ׎"9|xM=ZZȷ~y&zTgt炇!AƊ~ qJ ꓹV>t)9n|I6-6 y%{]"zsG]D})~>Zm"Q?< Gh M>b)<+=bn$[fkaiC`Uh~fɞ0^9o UFL`;CE6nv׌oo{iqm{Cm/O:ϊ>`PgHf*cfvV]r'z7/!t)^AVʸx"b]p o%N="s-?L~ HZc{p~}[#omGɇniZdn=^}kB)?lDj{DMC|咗9#ԾN &brMD^"o\ ]L/k*h;}^U5SѲ I7$Ȍ9ȿV. >ӡtKo!Ոݜú/Jx'DE^\Z9cC^u:T-2ȶu]*ZND4G-W#W?r6YncC2:;ou7@!Xx%\?frT ˪ YcZw Z LׂCwں?4Ғm@BKy0HaQsOoS (ڸ*v-3K@ "݋ j<͜pN "+U@,߂#l9F(l4ifj.ˣ-Xc~{eYC.eu{5} ѡ*ltE….2bhAI4d.MwfAEN$~TTTc_6I%& ]I1^?ڪbLJ$(ؚr(ӏEhCQ\\;|MT}В ap4{#$s5(%ƒ4.Ѕr@2-b˟Wf,3߾ÍF]@$2Hرf8nCR-K?YHJ? ?|JgcHW0h 5%WuǏα<VJ‚Rnv{ K+ox7{n#uaW+-|q.^w!>b&g5./;hTH^'F UB5]^J >.R2 ʭcM^1,WbN0͌ο/w6w^|BW*ߵ ~!/k y,*|4OO p #-:3 ,W*KDOo`(JX{WӝӔ$wqa5o~ǂKآx* 뭻&uo5Q\|Gl4};m,ȇmDWg腙NU@sSKҩ2nęMQq.x>kڜ ${bc0PP mkP[X$?LvM#w6ѣr6cHyr16S@9Q|VoD .qk?&,6e莤e۵w%YTOZ̬{-60zB6?]]:(V-G[.e fǃ;sw[~G `ZE .:-%bFˎ߹3ԅ =FQd~Byح!q2{Sp8m:*8Gy""#{:'e&4D 1XV,1i_{3@TOv&}m +(f93CKT:BP 4qN{>rXx14?9ӓ&]wVn24*0fJJ:N?"xp jm%)]'da5v4t7}",o K1 Yӑ7̉9.[ &z6^wߜß!p34FݠF9m ^+MsD;sȻ`4rzMMEZKN;4;7p./ow2h;!w5XTd |2g\,w%~ ΉnRKܫO$wf: K4D4Hf-KRĪq)h?.:WA;!7 9H2ؤsTAxY=`^jW5pEG̠&5E}Y:Y 9\tc"ؖmM+}ܫ\t&w7/s#B* ܺ-3 %/.im7F:l#{j ~?~rLjcF.AR=6/Or4pAS'w&FzUЫaą'LkS%@3]gacl0WdgvV* 2[>uBu[?SFPWk:¿y~ /o>vK8 APGvq%rs^0p}T\A(+&}*̉k~cX:>i$Y`Q;F bj|.5$p-2:K%UlhCQ,,#4̝{OT¤4DaiES6*$rql+Fx5ِ'a/ a A np-,(MM3uڎꢭvz.>b17`PS)yNnZR;&N|O&&Ur,LU-> ю0¯n]ruqFidW/ܢɶ(68E8";2jT s&!`x-E94Q#{@gM/,]'b߫,RT-givr`g% *[t%0`Z50 fr%b\p1An a)Γj_1|q 2TIl`ZBraRr"&$F>6F߰ƴ DǴt$e8'-F%@G dæpOY9]nطc@9"0ҷGX=F O@!2ۺA"ydtbd*:?TI*'3SSNA%x[i+}GmNy;=E[[Y6RԨR1tXufeHY2bQLYYLRn[ֈLK`Fb_DBh{y+ጌL2FM scihf!,4 QN8/C:3`qQ/`{#(CnY[l6 :K f7ځBdrhD+rcCH0Վ8l BH=zǑ҈ۑF9V&ΒbG";κ~Б>-[Y oxvI*"$&h<NXUkFO@~?d$ pczFqT~劵{+rlwoUO?:}Xn40]4kE*,hi!3}=W߷UKjLVXq<8Oo&,}P6DG-n.jbp十yF 3G UmeqOicfR5IML`[ôQ|Q?7A7b_‚KR Y# xРd0+1`ƅU/|ӗO,S|4Nr{~;CEZ0 Ec~IqXŜCC%W h -@#ƒm"*91nE>aA2)Ј LMc D,c-MSVGQOtu"qZJp@Sniԙd!O+S#R1*!9(6-36N={ku-M.զ}~,+16`}d;c`cQVa1|!N: laK[pPY$5! gޔ 'fW-F5\:Uk_?yV(Jt"Ew/vK!DnA"~j_&gcy$WF?x?f~A~ج:k_J'MAy4ZӒ$K88u% . KMMZYO~,^Рq>W? 9}6Ez~+`dq3M6.ܗN#5n>Ҙ\|좭s"4rzmnO]m z FWPā&lr _i]S¶Uzzبr+Pk -ʗ)`>X#ˮtB46BLDӻ eĹnc-kQ,qw5D 6k0H$㍠r;ouQ~:oux/-ҩˣb ܾvDZ@] g=Vz#I܃ %$σM*=4j= .v\yH95I' PN5rEVM#_[ר6/9BJG+ w Шikw=iw}݀+ ^marz$#7 vVT-KCEZ'Ghd]=\p]7597;0+M۽ 8Gy(I;{W7In? 6 H O.o W…%_ C&tOrf*67cpYu=dg-fe4ki# >: _OV@䅡[KN IxR `g[0!0tlC I=ʅ*>iж!:BTuɋPhعFAVv^S|׾@ 1^~ֶp'6gagّ l|za6 w3?vQ68/o \-g S;LRNfe̤DEW{ޱQN=mI"zS)Jj yI3MoƎEP3ĕJ< Z㋂fn6 GhyFID4GI( AQ~G֤JِLfg dO B~5f/Och__(N6cy_] !.Z䵃hxEM2˻)/ʁISc}]z^Eu/a?KL>Bť(iu.vܪ<Ƶl#WGxN/cF$='r1"b%^R ys,f/,N$ ؽΝn^a!dM $*-Ì%ӥ}g}aR4p 8KQi4 l8܅|sx n.}M?>/ }8vK4XZw޼o/i) K[3=H9| ;!AƖ@k,oۃ?ʖCQthWVi8G'؝XH)S^ndJwKz5Ҷ5;COa<)2@Ú/}]}{3#w4$c4㥡zb]Z8]ZYF*'E勂 Gc ЛbYg_eQ@9BJ Sjm0r)@#a+ Y_ܩA'U76t8G|3g3q/I5cɄEI-:u& !' ?i>=* I-nw& ~zXZ#DR׬u/jxK20&v?p[#,V}Ime}*$9첗*j֖X>yr|<#݂AѸ+'7f(r l5I/֝r 0P7m32N~?>8Xq$EiPFh_zryvGg1Gic3Ү :.EE`I}OMCg O4?(!R]Bd v{_"K"4NVUww8C/닢o0ڗ:c,єT|EĿy D/5@Owd5,se(BHW-ܣ`~H+ _td }Оwҵ=_]pZ"C\NC,k*uGi;ʊWh300_C[0Fnk㶭1}6n̵ae{ѺB}\8 N?=#N{r tv*Ю [ulte]݇B{me8)h?ȱ]iX4Ǻ9g8& ^0~m|j;PrՅ^hF=5?l)]ލ){8wwyjuQoaIG)xS{L09Mt:D5(3 "# 㘟p0c=wiA3..XJxJ\Iв^͵ƃ#/LxO-oΑnCxTYf ٩E8q#ŷXý1mK](wd\std@v9R)~Hg".^dxEOMq!};eAEpk.mrnw|z~v$)]5ϩ˼d;3­++C{\Q~6ժ*Z+ !WdI((ү7MVjlG>iz!TO ‰?prCM'exDwmAv2+[0-4-[WXT >#WFoa&/oQt e5 (PwݮUFgv QBvnO$=:13[k-KiٳzQTUtPo=5zhrH&)DPGy]3w85M PF8>FE:fR܁K5"ڣg~V'L,ҮpqƉ3FS>H,p{Q%cꬉ-^#{_딀zI}9Ο }s~*4NB夞ΙfZ\a.C0TK E@ZFHvdU^zl2H )PAۘ>c{bXP&{Ч8i3_&.@~NJ 3+Jf}M+)h &aURN9~L&@Y\5&NаnX1\Fpy'QaƖCNQo ^NgO;/4 53]B+= ੧*B@%.M=Z6lE{m;O+\JXҤ1XU֯E g#8#7/ I]TҊڏ`3Nvw>FiT?H=GgP<~5 e$xC‘ej,i"\/U!7_/`G:µ*' Ouax՟ؒJDBG#%s<@r.`K.@A4Ǘ,T2BmY;xk̶s]]iIZM*iuzb`is#d3 FW+%R S0-,I۝CG1]zOg E[=jܗ3ฤo&pms٬ÈV1sXle$*p-[S~~'t e.2 ҳoqFݐ>Z⒓Bȓ~4v賡]:{i_BLDalξ49Wfm ׊H&x6Bc}^pP܎:?L$-Z @wΛP=ܮҨ Nw2ئ#םGU zK HܓXa9 r% |fԸ sŠ-F .| kM0+`LEߢY,NZpH+ê&,A/O1S#YCd)Y-p#%Q}S c U_Me~: eK PW08KGn8 2@7'~+?%&3#N~43xRkfô7C;WGvBݥa eMӱ< Vub*5Dƶn ڎWѯwmenɨ F6B0Z#AZТdȐ!CeU'CMz×< sxS*a6*n+PArtP ,޻QDJL i=[ 0^kV "!#|m Wp"kgH$tӑӤ~Dw,CԫSVM0LW` cL}_Qn3(`~!,6l d 6_Yj|NjjR h~H#.(O4dH}Vk|lE-5zU${TG4a%,,TĜ +&ՎD@Tıd_E#*\rPɯ9@n7:—ϸ<]{w ȷL>bW ݁nc_.&VUjO&w{9¿r].'RĖ;e&JIBjJxeݬD_ `ﳇfeҍ| 6qPSwE.ywr6G m=VMa ŻT u@@8I?TjZމ67sDeMvG|ћsc`o~JyN#}̋L`΅E9"kvS ; b 81K+byFMkbh}d lRF{ɜ~TjMӛ3r* :$ { \=շ {jМ0ø3b?B}3fcl仉:C 1F6#x$+S1`O]Q [(^bD"^[>(aqQ>%Q_0ӣ$Kw"5W)E*&f;f!aS&oD5,'P*E&߮tSk$@#YwW*K%;*$ú1V:lj6I)_命u= ya+I=񷕦:$ZYwCC~gw۱&Wv)Waz{{3pYq\WV @Z \ Q"KxlarD5È^a[DA:@E@-\7G@)56#sR6ϼ}ook5۶ɦR7"s3t `"m臷XCGGZW1ذˆQ-g.n <&{ nA9g_{S.P/Zڮ[ƻe*LޕW7%d%jr ATHb߽4|3Qݤ\`1k5'&-( /bu;^i_4< RVpH="MLŲ%ҫyk?gQ08\ݜ+ϥ"Avz"5;aG*ƭPet[(')GTn5"/M ӡ8g/V<Zy?&&n{gN75%% ?<!-b$ =)NGf KK&: ")P|eGD)!yZHk?D6ҵ/:'b"H-( ^_ ed0R8n@*$)k0}udV li*%Rʖz݀X:1|94{bqP;!Y!h[[/e]٫Rl#NvO]isz$ӝ4֕Dåt[>Rn 3(F 3BWQNQJPC 9id?7, &8oK|c| 2xg%x(^`+Ox6S -n7F%{Z§ >RbN˃}Ug{^DpVyPƜg_\'` CQR!5Y_E$ӱӪ,稇,Etկ.4ʕ5,nDIԪa3̲BDD*1<>R ƙL_ mRLH$a.K_)2d=C3h v>7"<` ?/\](# ]4(A] Lnsct\9NB03Ѝ5p7BoRuGNuW̅F[ IvD$"Oprzyt093|B +u÷H蛌7\ 45qCBMnѠpp}{s3o}VJJ8XC4Q+epY^Vy?:zNcXw7)_9 o/Xta%kH W,{^*UV-*YhD!@(DYHD6 jFt+"Dq o%)[fJJ lJi21ɻ yI%8 ;?E楊**+R\GּoY1$="9o0U#=oֻ|*֏%R|M7ӔtOCĿjLf<`)G8@ɡ/ LH~D? yqXꛍFPys=Մh ɂ;s}K%E'/l& aߔƗ$#b- x* r5_[NߑvE /NmZޤ[!6|7Hxn61. ?)7tf :ؓ+ J"?:L.IgPG[ӧ4^%k1J/--& '.{2(vSxTHTHl3`MN1ԦU;7 vͤw 0odG=~UүA$VJLϨ*2~jj܆wniB5f1pXh"m[fۗn1Q؄'FKa%i? OۂYsK֜I,& aobyZGДTnF0yC?u;fߖ(D8$Λ7|[sPkj%G-T{ʬXi@ǀ6(e#GxOÐyV$Yp.7}I7v?R%8_k)R!`L<ͩj i5Ӝ`fncΏd@ BNv>s+ 56x/`zU^v4oG `<Ǟz%9lHWVg(5B˿f)]_قI7ުchcsqܛ1;:OIYWX*%VT[&aV޺]JXO\` +1f6L~ ك:UVP/rIXM%9Ulb Gl̳`>c'WO?&ponӵ1~y7#Cu”&gtiݴ߿#^0᱀ MF$>(Ţq1;x9ѥ"*x޳~ 7==&)^WSKt ВDi-ɈvP:`a~Ajm~N-=-Eqb0nȈxÿ->(&k_XEqYBw1e,>.N%DRI=푕aK$v4O{~@uq65@*HDɞZ+9j$:u&l ]:d7Dm4" HXy.WҒIRgD>;<-T5nC!QU+]ddr.k\kAA`WgH3A)d`T~+`oZ阬$㿀SC:Y菺S͛@md&/MP]PK}Tۮ +i JMh(ODzb ]` X`qD/$loy &;C3Q-qsm.րNlwz|-um&Qm*c/LCOX/n:S@J=բ=F1-UKXs?|!]b?ؘ `.v{Tgl̪66ZCN.1\b''g]OwE–s"ao Kɺk'vqqsL1g(aJxŠo}XK0 ;&4Z4ssM}DG٢FF%=nYCQcLA]C<>^A~ _9u[lz."^d_i}wGbڢF?jV/$ߴ& :ImEk~JrϹ^h=s^5" J!9ź3O L b$UggSr؆b֪9́V AzϢ{(Na\qWS@449~)bLn;lh~3?vL afhiʚts-KO-r( Tknl̟VGndg@l0iֳVl'K4[֧M s;h:j/N=*g|2sy9豲?% y&eVܻ~(=Em ܓ\=)՞`7bֆQRt} ;k}#r"s8%=*&ZF#R _ "oA钲p"f6/!خ,TH%)_$*vṃFq]{||.P] rt2?f_ .}1`Geܺyg@ºB~@1LfD+Bu2qQ2z5N8`F:`I].B"(w,3^"7FnDz9@ڱv1^6Sc@"<)]e@w) eRP4MJ?`09%q` tb/4/n/QӞଓ/=SI<㝕xSD@4/ʜ1#ۙ_eQ-=]0SV軩X9_}rTkAj+3U?\K:1@j ]lS`  梔7\{ϬiLD~!GdSv^#nH3̀ΐAl LZYݨo6X QE3csoO1Q'RSJsN|`Q]};rG e +8]D5gf\<چJ%&]9`!ր|=Ɲ5jĥB$ay }l@%PȰ,)(͇i$ &˝Csߞ(~)w5[h vb4͈#4NN΋`,ל1ʝN:VsSeC䏸Iڵ=* ;($0f%XyLVVK +,GH"qTJwvjkWQ?2_!S6v?;\dQZnTA`d-+R8wHF6DzA ϩf1EfzKpW˵UD ގ |樞_С|y>jrw.U햖FL̇+;!40xoNWd,~O?]M9Ub'W@%fWş=riߤ)2+sv%lu!@pV.)i0gŲ[٫k.]^A`jUw48xb )>Zh8& lsϷ%wVJxzs@עBBP/Rغ+Vݺ2z+"ִV/BẕP5(@lMZ5}3t'{E3E,GuVXZ04yByꊦ_[0{%ʨwOa =&;R xG!k1:3Q@ϰiQ* ZKyo緕X/(.ok8<6@$;'ӧ5 $ H>c?x{GIZP5* 7DHq 2`qhk{r Z%,dvLv%|y)-i|Yܖ>#?8HQmV4D]wbw5f;:{v&<70kڅ Y+€V<] ί+mxWzZqPBjY?M"с,8 x}W‡GQU5\%k ҩP!%ԃCj4ZTgٱ3B{|C+?x<,qahn'Obc"t?4-cBLj޺bM' 1|9C2[9w,Tsw \I40o@_D[$ebX7jr!k1g|ϙG[~^0OB~MiFڧ/2֏GrreȧOT$&VL&4BVaHwˋ&cnv 6Ϳ(xgJB4[bRv6ndw!@E獍F!ɰ yph#^ž# 'ڕe@ ӨPjI]Msl8Ez9*ݧv54+[d?3o]UB r$KMfaI%f< $5'IIwÏ%wl~ϛ?3AHo]u?^uV4H.)_g*jf;[ɡy!MX޽Фƶk"ă|V։&|2YDm b4vw#FPzIA@PYm;:mq ɄdƸEe)#_Gm=#C#зn.}yރ W *(gÌ~1=9F֊;PB.b!(E`_Ih̿65W5Uڈ.4O!nYʼ Nx\I;3`MfERkhz 5_3%qf@6W u*ѣOB|Uh4k0~qq+MH>b1jOdQ?F' ;wwIꇡkDZk$E* >toNT^NjW/7U&}I5b&JVsE42Cu(pϸy µ|OAPYdޠO_~hB/wc-E-'~mZ ]YPo~qaE@vo2_͚/"_ڍȆQm!NN}W3YǓPyIY |LSK8rn>7I?6y8ZE?8(״Sϼ%{NDbum,\u}Z8G&<ڭHkEG@1'Bu|]EtLXar!.BX!.$6.Hj8᳙xv@X*%lmTs(A1@0OB7jU<,uifLYVp)\nkwaa-kY򴊷D<-jNWD,{Z]n3%l,mp'w.krl:zU|8)+;ϒa Mn&pFL%ܰF^S-3*3|CZ  zez 5 e@?{oz$.œޞ^G01'GSzN^h*gU`Ll9]wN&+ Ϙi ȷ͵.Uizbē]1s<>1|P- ۮ, 5B!r_k5Mk($Wr SNN]H<0oC=swn8UUR8VEksL2OdNѪYA Vω".Ǘ Sh)c%0⤂)7e$S(hRى 9p/QKa:ea[ELnc1O2_vf'q Za&^3y¦^8JeL3 6qMٜ~n@;:ߠ"|HdKi302*!}cz3מ؆04xKPMn ^LvcckSN1s=Ɨ,6H4YAϔ/LAN%kt tw6mxfɹ1ZKn%7IJdsݒ74Pޱv1 m;zt(͎ͧwE>NG $@xۓ۸C n02XDȇj!?zi32P?.W8x MQAe1Rɹ` ؝܄w#my~t1,:q6|ѿQF~cW} yoZu9/ʛyA[٩Jɿ Baz_ch |RSě:ICga 6] ۅ-s'2=F9){]6/jCX.VHŖY%Aok'Ca$UǦjnJ{X+6k>Rv&}nBtٌbjB8BA #ޱ=X]{A?v*3RkoI>&C21z(?m65zF>rA.ŕ.&aw=xDl\ϭ Lx3Ty }Jd;_3eI6lٔ[+G^?}Yx_W7^C>Aբq-{*_CWu̒߸ asJSR3֩×>zE.{2~ri|#Ϊ Vn{cQ3F`sцYZw: _ꂯ/ҌļZy)l r΍$yqoVayM~~>H7`0,2Wn:rEk0G^qf2wLb3Z пh'/ACtG$W3et9~LGaf.,EPҘc=8\jȰOd9'=c. ?"Q+- [=>rEFٹtj\/{@K<1Fʤ :5c1 J<W6T &hAA Dz0r [Զծ?J~lnOAρn^uIZFK$ 3dKB (&HlLXŒ]љR?̥}(H !а`KHSr@2 ͺ\e P{4;vIysHù?S;ڼȧ?X#r@]\+ <|7A֖꪿7tPga|P;>Cr6@b1guǎ5rtvit0!EY|}14cR5^V.7*\j)qwroL[7b6蝴ukQx: v@.rThliNaG6CkͷmV䲆۴6.JAu XXOJ EQ% $5 3%*+ ⌰{LQu>3l}\CI]#ie#Mj_APuꍻP B*յ2iM2ykeP}yC-OQl8CFB6V}V, :؝d` `P_?~ kϴezUH#ic:xܩ&k4Dž= CHp렵!Csl5w'"R? σ50-}W*F; UYjXu5 e*}1Lb,mrDw"$хAD fe-ph(}xDh&>ͪq,jCRtѸMf ~lBCi`4xt0mf2'{%n&hFP=Sa< d+ۛQ&Md݋7@VIW*V0 OքyX !cdZJ\xyZ5TԢDgnHNn-Ƅ$ xf'*Ā2AZl‘r 9Y3&po'^'r,|zcR< :.ڢ3e>q#q-?k`6SP\? [|)qK;uU5:el^v_=߰t9RDsGЁP.d{J49 Z9(o ,uP,q;Bv|sҗn٨k[p TuЋ±5L{6al|yvMP l[| A8 ܂E[dؿ2B2z?PGXUԻm g47]s]+ %EYB꽠za-eԃ&9RzįazWDbKצven& cfEfRH瑫z (7#xʼn0Kn5C`G7 7pX xG6oj|KXdJQ6lA>Ep\˃+eu4G7)cY00zKZNnv/@tvgt&r6WoMIX$O[ TJv*ܻ.{d]֔O1ljg?S%5վXPzNҸqj~C?Zoם:.am"VqrO~Rgĭ55gĉl4u|{` u.wʅp|Ԁ|PMI8Q6TG~ 1jL>[4<ފ GF%PtsԌ>TG3lHۃh4@UO$٬S?MTO4No/<:\qݔ'io Y3>-h>=Ap;)􄭣^70KP<K#;&NIQ@MOdMu)b'C"\SvocJ``gzsVfh~#ϭ2?5byñKz, w}{9T8o"$gJKK |u\ך>\: Yԛ^JMi~%RPwD<T5^e-2=8tKF )h}Z[dzK#ħv,Ƕ Xgah>7C,S~Qи`@C")$ΓvoL n:$oɠ꾑)ۙ f6l[tυ4~cKL2ىs>8^vZ3.oWmj"ӢgଫRF?Bf6 *,Adm,0̪'eTb7j7bJYY 4{"dH"<q \4вN;4Go fA?Z/Eh;S~֨X+, O8F:WWꬅRhSoj::9"/bHuΔ-ƈk6̚3mW,,YdBmS,rVjw),.4-ID(20D.*(E`zINW|9 g*Q6,@7'eI(Ac|b?ukncUY= n{ {[3kxn%Ϸ4;dA xyԜh`gpA )w&W#9GsOQi ,YwplF=4H8~?9E6%H)5P!E>6lkԻv 7+3MoڈPHH}Yte=QuXs} ^-s&ho*h^ _eg5B>7K<*j[P <SB nnY,rc¯F/R%p)x3a" $ج;ah ;1b$a'y,~1.L#gJf L_p Y?&ɦf9fÀ%m. r$.Lj鮜\6P'-l]O(uh"QgwqG&A,LˡK<^, xXpLbrO6Zt\F1=( XkO G;$DZJ _`U ΙB6:G%W{ يF6# OPg֫lD? salOV},xC(\lRӖ-yg z:6xRteY3`02 zEqVBZһ!*Il{hKֆo`]O"3PpC EiiHn-(ٯ0.0Omn>%^ }!<{B^:aU'D*Xh)4\ %ȳ#L#ɲ~}eB'2y@~gCu3yq { :Ɔ.DESB| lMPҍg K9h _ae~y 2 vf(UH$+L9/Hw  ȒIUW 8?W:\Vy۹YJeh~ ed!g|EԬ[mxz'ɼmY !Qa#5Kt*ucdy[t7~tuTidB):Y(>n{}QN%9e{g޻nJ,hc`y2Kd -59\uߦծbXkC @on|`Pr}Df֖s4TGR*ydg0mGN[\O܃9z qkE;Pr\GK>|Tܲ-iWT+}XsahIlp@dn cX=c\PѶl)n.Kږ81ל_PdWB"H-d)Yxf t :h )UVK,JĢևUjÉx=QG'yJy8f |ՒߓH:$ -G񢪑IW|y**)R;hS i? |> I0'Mi9, ¬0&Baf>/|Y&24ب `$iEOyZ(!gCuDjdރ"~+@i&"d}R|2*i&fѺӑeO=uK3r=5Ĉ 9 v얨(H4+՚# މb o)X pWyD$BcH5d[hk)ݽsD, pov2g~yArȅ6hb (JMݚ1{RCMp9",J]ML7@\1C|t6k(hm:[RPcac!&!Z.wE[u*ap kpLszW/\™/ ;Ug!9&D[{%<9 lcO谍'} ol9# LƠ8U?fE` HO?.& ƙ;UύZ L%ڈ:!vzl y[dPfлI3aG?@_!['M ~Kqf<]!yf T8' 6A[c=#+Vl@Tr ryEy!sLOB۠P-t[n䏂6;1sxr چ{WɁ(I$oDHճ<3x5m ċbM~AHĝ\uPhtWṷ̌b&2@ߛ(*C{H <31t ;Wi a\XvEz(j6.mhJWĥa(qjFG=/-r߉O8'z룻 RHs !~i^o+]kVY`KK N"V-8jUid#0Lh`$pp_jzԕ,C?%2bdjtHUI(Lзy-a%^L ({-43H$n,!U^~v6Qj /5"m**?;ѹr0(`ILH&TYΝ=RB67~ &NSoʰ*VO~7lA/w,(my}+ H()eRݫ"+oMꮓ_j#{BX/1`ݩx̆[K:aYGQy"9 :z/:¤..`rU9S6UKIv֓e+<~-~1"Hxet^KyѦsp~Y5J.Eo, Z?~2?$vc"8JtHg1f7%O~6=֝l$w%9,/Ԇbsc[f| /n@D5zFMnCk԰q*)_TݣuHs8ˤ(Zt`HucURbg'ۋDVff8Ӻ P9vs}bzwKT0pRJ q0I0*cH<%}I9^Zn k-UMJySbRĢ%(E_P7EƶҎM)D&2zC3Gml/Nd| a3T{ڂ$%_dEoyA\Y@)2h=5I sV!QYOB`y0H,NyIL(uNsFo\_ڹ3T'3Ȭ3?Oj|f/\/D;9dU+{/ys @_(-e6RwHfL\EC5\maIkft @_f_1ؙGM;%:\4q^Qtf0pRQ6`sl=Yi]fv7W 1ѡ:M.h!e S؃ # FAU<|u6O9Av6O@xD 2M v0`dq[(ZǫyLI?M[@'>$OB}_?6{۶e0n+"dcV7FLAQ)kЖuX4um?TiKt̻xZdUƺԤt"Aѽ}ӮUr@itK q{g)npt+>'_`HPNq*D`bO{Di;8A]=fX!̍Rո"Nx|HW{ɡ~!>.j{]p57uTuqEz8&Pi1y׌ͤɁ#Q ]G0 waCHeQt|L//lsM}DQGdyri^>!@~M[} ʡū-A+X.+})$M#~.Fd<&}V$?WvpNFƈ diRVvqd)'K\&}3,ѿwK|3iDBϞL]4Vs?T!sy$0་aU:sǺ =ybNudu+ՕjXf,9N5@*{_7߈lF-t|vqotR\&~@^.՘$ZC|JD|ªE6̉=H{5*0?K6>=nK|gzD ɚC-=Еl_3c'uTҮ A>w&LT2 jY{tc#_ډ$>u S @Yqysvh59G\fAZ/2v(R֨1" (:'Yw PmEL1PJ2BŻG5! m5Q)M% Yݍ2/s0QJ1WG`tvIoスߖ|SB2}^)N4w\dcJ<;džˍU-FGnZIРHoSѽgo+Z㓚^2 \ aImTEK>$iѮ[z iLZIگR 򥷈;Xpe.4T 5*fdSy,(h]#uo铂@,JOnԭ AΌ }@K^Q_T??'80liQLgxN:u'U oCܙho`UwkKB=^%\ق O]XS zfb7EM*)Da'IςIi\nigÄgVn"s s|9&7zLjt,>f%*}-6eM v]0d,1c:"&}wf57V(OArBfLqmz;^,κfפ3:kϣCH5X+(IL1-uu4J(̍ bh.ꨑ+Urp\r8 $y Bk;Ɖn cݔg@Z^1Pޔ@1LG9 维S7 uF^'|aFmC+H;90TRB/&0mվpOmb jCaO?GzfMnQ0pV.+W'ww Ǧ丱W54Hf2TشD%\*(r~s40=#Bdu*-n(D7fIńgL\f;mDv)vknZ-||^o6JGj/:c,}:-~:yC^7D.kpAGFc/'yzzUI^)Ei;o>j7xMܪȧl0$8I /BY[V;RJg HɅMꚃ1Jqu34溪fcR)ccYv 6oD\%si ~lµ4C􇵏& n?x[=P%/(jS㻳-'.G0\#NsR]Qn3čI,lW*,Z =uo;5d)$|]&xP2TY!nn2PhzV[x/@|v#f* ? [i!Y#^.?K8jì :'&/Wttn` RueI;PNIO`⦗H8i ׻t fquٝcǼ+4t- ͫesmT`.\5`#4"ک.dIՔQ) ϣX| y;j$2X]}ݾb :~窮4]4*X v Nмr$izؐ{&;v{S Z+p>:Qe :hfAJӼ1H*TS#R8U| g5gQ M(B-ĂWPIOsR(K4?`DȔb }mQO4"a^Ŏ-ٽ>qxa׵wx[+aH$|R |`!10 Gy6]:*A7vdM3 w8mzE4(> 3\z~꓋ 5ҩ>K򷚡Z'!Qq4,14kmBhr-WJ`cHo5J0J֢[:OeiBMX9ca q u&^M|s^ya_"g!"5a4[1QU# G XQ7Bk;;"7?7ڕ3{k鼡Ce7EREY"Z`,{^;azS:Nn08T 5Q[?OGf11n  o'Zɘ`Ӈ|(\lo.U "2VC~ C_e\,ܷ C0bDU,`a\:.MВ(eϲmm)V(@nTQi@{Xa 9u|y[P ΰ |u8T?zw8N܁_ 93*/U,ڔ ""{a1 UlE0Bfsbl_u+C{ֽ|Mסb2mxCl[Xvxb.]Yk}Qlq6TP|"Yl 4*p.AK i2~0`*q&Lh6>$*`J)_ E퓓 bʣ&ѝL4l*ELՄFg:'N PoKsy E K-5 =yySnmmHje4x*~5ocfmϝ'r`2!^gZXMZp='|:1_l+X?ȄPr`J`m&h^~X@+Jqx*Y%]S_!穆3ʹWè9d(s5yNJ)dcHH?.>QDroN$)m`DlJ#,X VߗJ$nsV\=&W@셺ż-} BEgVo"wxHSA+"CU[DCˮ԰N!g:aշ_zQ B M:A7 ռ߉B[ U|3!,~}F. yspv2h.͞8WF*?v".<ڇU`kꟚ> 6 gH1Pd6Hsw;y Tq~GY̞pi&92*g'+>F l j}\ ߉ewj}憥5HgIEaZڗ." 2PLUst{Ucg4H$k*h>lh<*v .=:}@+YJj /Y+;nŅ\EtY?t,ghu?/YRyDYT-Wp1cP`N?Kh@bkǾݲNJ+9YqM_1~]I}rKM{-"F|?y Fn? PiByɶsQO=>jХbwZZ#V b~! Jg/fBldI{^/v=p>k';0E2ƛ(k&QC *jD(Mrs6WƗŃZ]l'/x}pTMH9tID@?◓5f ++U選kK.'0DifQQ!\P v^OHr f}MmG6txq}N&7 (+OXcۅOljQm ۵^=5}Qi!xaSYȫ<ꐅ5zUIdYbSy9Pvا.}}P{Ü.^sד@! X]o͸rU_=LS(k+P?;DZ @E*pn \;P*ju 86 DE\2FktsZp{b5YP^^E2xtd^onr%?nX606=- 246'}ti]."Zx5(1\iDs< H ؿԷI\5G Vժ!GU1b2*c;cUiL LB]] 0f(f &F'06k AdhxhKI`K$*r|j7-|s}`'5oq_;I>qEGo%d dR7 `4pd_5>s0<< ٍ#& m7~ › OhL/ }WȞ\;_K܍>Ã_f}T؍0f[*O><*zꦍ}ŇhFzQ2+9-{:.V?[رT5 2@)TRkKАuqQl Q' 1?$`hAmZjjr/ي^Vs>u{l+B9TId8=]wxrkK bW??G+qsQ8yfai)g )u*u-J6Z? /mUl̤8ͲN9+5 H8_jNu9kŐ$FٿZ`ƥ-K~[?WzoAk s-cMȃw>9Dx wOnsE%sʝVINBH}F\򜿩ӳ;|5!/mZhM{;L\M 5PS̮0>2d M>sY$ٌьzN+\6۝QVwQf)qrMl}G޴ǪGtTj& b<^-Fw4KI&+/ا~ߟygá.S8+e+/{}sYFWiZ!xn?.(y[d/~IK ɴD+`Z(E,LVŒ'Nˏ@$I 4=Su̽#9MtPcDK`sG'l5sfS<+ )*O8)V$f `Ǥ-ngﰕ'C?DAK mi{kCv"/{ !K=[TQׯwx;~A+, icxwrΝ0E{P':-rd7FЕtsIڙ';+zy7Ս_*@RP)2 k ]`l Jk(Hw d􎯛fp޷7tP3#B]T X;Q T ]a"L{Rq ;@@}j`M~uc "}BOm-!9TAv۵YʰEO ,lO'A9F.Ghg,9x>ybӝ*ߴGzO+v-XJG8c],v] `~KAAG nLxD @m6˫S6,CdO>DE3*')dd)+g$}Y`aSEcHHL:3ȿ&0SVG>n\oѕXCcʕX^ě @xNDhl ,i1̡ۛ#tynzo.a;~bKT6$fG(b;^\|z~FVYY)B: … rnRB49ݻ9&4|Y} $jHmt#fx|4 xG{[\KQMVP L.I׎g}@,FmeBׄUI~fs">Y#{$|lrm7Y^LbLnps{fao2nPWIDY~>7L;:)q0,#t]9]ƣRa_NsQ"OIGgxZЈy͇bsXV Q41H; HM%Z80([ޞgz?~= <4`~B(SК|:-8ibկ. kA:*qnja--7|v9wٽS\dfg5b/TRY^bU N\ˈCJI=u7]/@\Lra>Ŝ_;*·RЇ+.wx>%J<G;dy`kLXk02$RT@; R{# hTL'*>/*dMr蕼r}?Xf6=}^P;2tݵ7@|Tk8.qL~MgpD&)]pPVĵf + dGyi YjW;DL$x"4PdJ~T5d*#,Ё3/\{S 6"iC%:k멨#tL2UvCuFyKF;xkJ=i>zCC~Y\ũD681xeg.=ݯ$UipQFzNVh}pԈPKo0tnuGok;n]F$+╬U_ٺݝp%OYk+]<Ԡ*Ce;uq|K>l. hZ~D?7-Hl{O7J}u4rdK+'MTS:j:E6OS叜Ue-zT7Kb:!Z0Q9DYzpD9I 03}~.B $Է̚qQ{JV ̔".rmɗg GnI-5qj`qvW 9ԣ=EBdHFb0Z!W+u9ر̌[aB7KJaq SJԟXVў280Tta1xjmkvqfAo; ՉLdcSV\%Z#҄(oiġd<7^ #򠬲T>fW4Vŀ|fڗu}#&@tH*3Άnĭ[H5A]G^X ߜ^\ P7GJFG'`U )#z խU/ځHvC "?ZC,a?ۓѢ3B"CG֗>-ȮI&&Gt۠ 1u n x\4 kZ<9 !]m-ɕ}HUq\c+ީ13d/0w~R܋FNM #БpP?m5fښ8\!Xp0%YӢTK$ PK 2@ kuiaK5iPSɻ Eqgn|!VlT@\S9]ԡ/;"Tu5>\mf@S'vLmΚNX]o{:-lQ$;'T'4@Ŷ4J;E{yϚ+:fEZ)Tsq>ږqĨyNȒQD}Jct8A:{h!UԜ_Mثu\Y8Ũҏ?lcak}ă\Se Ѣ&pUEIdUt}|֘[(x[5g"ZCɞR x;n{uɒ, ȠXhJ0"ڬ 3,\쌺CK˳dAS1x},dBP@"Z'ǡT>AJld2}?TLb0Z2K`liFICP$4NfɊ`{e'iEUkhI+Re'l=]^p~*4V+r6<ol@&Fdf*.~rDzCE?F2쭞(>ֆ񆸐b"5z]Ȱƿ" YZ