libcmark0_30_2-0.30.2-150400.3.3.1 >  A dp9|F'2x3mfۯwh⵻s/{.*k1F^il2ɿڤ _l_81uȤb[UqZml[_G++p[fH<X#>d+f"{dHQmKx @sT).&]YHLO/2 r"uD32fef65c3457bfb00d7a98df9270490c15a7460154d9ece00edd0b683a0f840b91de726b7514a2f7b8336e48b15bfb80c5183ce23̉dp9|"kɈT2W媚Oŵzy.'0$0Xd:-c3>Z|K&XDG8ܙˤ/I ]6Nal,+2|Ah3 C  A$s՟|XBpLk;kq:\Q6/ o`bڙ >g<}++]o-ykJt=4ҕg{zS&'>p@?d % M  6Gdjt      ,;Jlx   (89H:k>|!@|0F|?G|TH|`I|lX|pY||\|]|^|b}#c}d~Le~Qf~Tl~Vu~lv~xw(x4y@zTdhnClibcmark0_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.dibs-arm-3%WSUSE Linux Enterprise 15SUSE LLC BSD-2-Clause AND MIT AND CC-BY-SA-4.0https://www.suse.com/System/Librarieshttps://github.com/jgm/cmarklinuxaarch64A큤ddaMadc280bdb9ed399f052d5170f1b9533c85e6b2803ce773513e1c5d71f36c6041c22e885f33b821bddb24cf007145e5540655b6c0f403e49e6c76a93c28e6d9a9rootrootrootrootrootrootcmark-0.30.2-150400.3.3.1.src.rpmlibcmark.so.0.30.2()(64bit)libcmark0_30_2libcmark0_30_2(aarch-64)@@@@    /sbin/ldconfig/sbin/ldconfigld-linux-aarch64.so.1()(64bit)ld-linux-aarch64.so.1(GLIBC_2.17)(64bit)libc.so.6()(64bit)libc.so.6(GLIBC_2.17)(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/ldconfigibs-arm-3 16794733200.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_Updatecpioxz5aarch64-suse-linuxELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked, BuildID[sha1]=50dba2847c5c036d2d2b307faa17f8810796ebae, strippeddirectoryUTF-8 Unicode textPRRRRQ(D¢\W$iutf-8bd102e5e8a84624c011b36ac29aa219e5ae7ab15281eed905b378fae2e1cc38f?7zXZ !t/M] crv9wk QJ;6{,H6=xpR#3_4`)k3}j 'xcm7v/qVhV%*TQKTQǜ):Lp[&Z?NB+KEi twh 2my؛W^W\kמ= j1 r)YoR,wb,@L%GIJFc-1nPՁ激2,_]~# اJ@vT 3x1k4J>E> Ԩ':6џd2n r[REP}"[vCJԁ0aZ\fZ6(k&«%cCXũuF#?6@.r慕ܾT-ɮ+Yn'j+[3Ǵn>b >t "XP8=+ߴ: O.cHjo8e8e~_EӼ#vy#,yka`nF̵d]|q*8)Կێ O|gUYmS3;DȮdH(~ fjp?ϲ+!Z+a_$,KX |s"hnծɀd&]mG 6k l)Kn#QHJ+ʞփF)36CVS#DŽwt`'kLJ~Z*ሯ$|Q%K]3Jf~ Z/SXtuUZJʘS۰L5ˆ}I(]FD:OIzBt >26s7:ktP^woyO%In /fΌػ ;%CAn$=DKՙ_s\2m9%4m<))=WU8m/"fȘ?yư`sq}0/C58ѝގ#A/+[csz]!b@U,庿5d1~T[$Fr u.T>5 FՁP/v "aQ땺:~n qg荱I?Whcn3PRd}}Nhx0KB\0I^1:AqS}H x ꬫ{+hQ;(AgETvpdsҵ|*nP1,x0ꅛv|i+q<4],fd8wY \ 2ۥt6]"|;g6(O[}Rz9_Cw#N]_S|r qŢcd%.8S3!T F-dx2Դ11 w+-{bpnaޝ ,%}!W Pt9,3e=Dxe,o]+ZiR>:.vp9Yg<6Hٴ>̲gZ.7(&5jy%m׭,*|`_ f>Qah%,W#(2zAS!u8FKz o% @~G![3 S-Iʈ0ЁXi"S.%v_唔b;[fZCo|ˀ{Xϕ0bCM;@ |b 48W4@&%Ӣָ J+ޢSLz] ^``d5+C>lV@?N;bk<~=@Kw2eCn~TXR6g^%!UJ2Yvj2MGA`+պԪ*_nJ.;/e γkl_CzlV+YT)Ŝ~ob`;J/-DK"6۷߼BX&-=X{s''`T[ܒ(@e<`Z:jX7sV$;S=A ^&U_ #EѽC#`45vd]*-AC<4Q ) z^X!eyDҐ@b41"4HUrgbF l׋BBNKYHu! /BiUY@Q 4*AҠ6g't2W KYP6ָ_U! >!J""b9+0>ۙ*z! vZ.>N̋Fټw/_@ɬ1mNCSBqX/qPf'jyTI1B…K+8GvKF#@yR,/On4-3 )clwR_Ku (āU3mǺWd'|+321_`>swWו4b%|;̑RL]e*d:W|Aܖ&iY70ϖ >F1xzZљq$'B>+blVFn<(w^9\.> :|tX[L;}$_ (kp̥k-~HE\ڹzA/r _S*X* -{1Aj~~ B˒$Y~8vTfYk>qtE8DŎnB # DUITԵI :+MTj]笭FaEc>r<ArCqڡI%F!A86L 3*d~6_JU8uDW9|/>\BL2L \$ )MK)xsHcMaL*htqJQ("S{NI )6s& E.3q/ L:s/?z쇌gx{c Jv֖j/uRF[r]#aABuCUˍ#_$V*%+ u:D*fQ= IL(- ?qML;4ݗ4L>GۼͺYpU(?/^f9u I:{*Kc # JZ˔!AbAٵ@~ێM*X|rCA냼 ;(quKuUإ[9™3,٘0W2KйqJzr*\[nagl=wrRdž4N˸_P=?+^#0_i;˯YJHp{TICsBmpRd)Ȕ`Ҍ+W /$\JN(ުw,DqS9K[X%!+FZѻts%++ThJq^~:J#[:k߀N:e=(^a<-iӕo@fVBmz=O-f-थmQ0͌0 a"-Stzl?ycvCg!8B r -C4 PYkC5{'uaJf9ۮH?=Em_֒ƪ ir2*p֢GvUʹGri~+)0kƔyzHS]׸?;arWCf=WӡE3 I[ٚ3XFA90iL[ߦ5 جk!*::q3C! Z|۫t׼Ƽ 79ѠtNiW߸̉򳋎Eg%L,'5|f5 7plY^:u|$%9`V `#3vi`Zq"&V@1#8%ed8; o'MԷC#TcV|hNU."yѣV\v?,S&mI r8IF skiH㛽vٽX}1zyðպ!f({n H na}EZvۅbmpM5~`jf)S:\w:떨I$5%xfG{8N}W:wWfhktV ?^(@3[%[DuJيOrw{8:oD.Vy4,Q9 0u.O., ^nzQU鬗y,XU84MXD֏Mx"D>ŕҿI7*f OGZ_.1=UA*mm&M$[9gcXZ!t@& :(8pɄ i{L$ $GsY]Z.B1Gf}v- |6@$![o%B#O}v\ q=)(QC~p9ܓ!]vNLVLr- v8BŐ\:rkԣӒ !^Vx^]]&~NTX<ԓLȎ礉"7p*#/{`?|NN%|{P|xrL0(T5iMq1H)1fEIڟݐ_Ii`' lB2q Z/?p?qq]4U/NA :Gk-4Q̙iɪ'C'EfDjTZ[鲌^wi…5H#ysM7dv\~U=E[Q˒SI:"-Wa؎d@k 0CJ 뫵}Π 䨦y]BY9>"u`!W8#paH(fiɝMaU:P> P*Ypp_ߊ3qKgh3&P͆ m7;Y fΣtXw)Syy)\iE}7ǢR`uVw番ԪuIG˚Abo8 t ^(\o?oW2շIf"-1=h:Hm1Dl:ų&IfD6u>iChJd&P][c[L\Ŋ㾽j+]XQb$VeSvS 1[/E*Z$:>fr%PJv)0+ uޜB$P@oKk)W(+He9C׆c!TYUnR&,y\Y78[Ul26{`!c8('Zs^5D# m'3[(\ۊw"b[ UCz-&::.z _5wx p ጽϤVv Ý󦩝Eaw!gv IS=ȯlRQfVIe>Ӣr!n"'v7 xsA&^I q o Zz9LTmҷ9]=@d9EDe1ϓ$- 9F Lf$\ufT[k1u& M[R}+XVBLeS{p&/"2/5|Bmkd OhE(Ligá-4dGa(dpÞavEAǫ:'o7D,YOٛ&xBX@D *HƏ`),' yf|Ha45>Ff'lZ$`Kw#Dj|a2:ky|w/9nb=!cd1zŢPʾ4]Tz鿄 wOzmf*;vW[KU/\ $#pțP7 8~c"wBsJQB@΍8)' @&9h͎ݖ@!Ph)Qh&$Obqf9C-FL- E"/AڶZlN<UJd#Fb:u2u?чGyT!--| *_KԸ$ޟ3&S@5b6$푅俔b^QS2Z^SS=1 V WZ=%eP 5KcQώT3Fb᧝4Rlv4eu ed/׊e5_ 1O;J}, GSݒW3yT}0OӨ7_Um|T>{#$}j-"XyռSDWp*6hT$;mN{m[/ɩ,'Ev}L بB(I[J$le1 C[(UE M\\Kf2_QJ@{4Jכ.| :ki9{BZn(4i? )1<#!GشMB"Jn1yL4/\VX /v׀Vҡ9?|K/J~E>DsBbHNl+ tt8b7%S߼GbE|f3OO8$5E Ex7>H9ۣt5,KUEQY^vXgWœ<C%o;&3K>p ]`Zֈ.Wލxs\˼ (T6~0;I aGn%vJlNS_3AR+@msDG#b!dFS\OȻ='{@/UJ;1Gj̿(@N5=עy&k'FaO3LtKD44#%&vafh3Gc3: ep `[}gE^QԳea੉sf+&:}3M*mcȿX/ƭd+9ϐI9؇ߵPcZ*T]-=1o"Mdn@{RDZ5`YkPP?%-'=$Z:ԆZuS0%Ad Fy~guzNWJ) kQ av~vT9՟J#o@m{BR`Pj=M(͠lkm]'?]5Tb`}  9501nj7"*mZdOL F5 VfPNƊ`a`- 5ײ d ) R(-Wf#12ms <5PllĎn{dwwnd8ZpTqYR4`\A|_Nma$Qlgj:zwk` !sYlbTx{>HH˖/HK~9m *o] " :(~*_&H&i7A ȉ#5'rH&-}U4D1fFs$ԃ~3veA 8G9(bk1(hڎ E4/*!o )>~&Rt ORT뺢^L6[܁3|h6UW|(ZCkK{ؘ$LN5=c"أTGA {|Eak08Km`{F+&,O 臲86)ϘOIBtkd(^~FLein,P:wA :}:m%X$p.U>v+ 7rVLuzh*ǿ[ْJuyy7KcƢa/bTlPSiQPn-hpqt|p|գّNۍC>#@ ʢc3W+P"`(#VΌ}lɆZ\T|GՖf.sـչNoEӀYĒA@-)qMgGq \m%)[bwky}di ʗI0Na=dumVף!{:Y j[QfB"-E:Vȗ'FbY_/,Ŭ$zD뱫YU? '-./%>-C!+f &i:{{"n\Ld%PHGf bʈZB+ |_}`~}4ɛ|f]Ks̖1a Cns4-ḕ pEYBSc*Wr'x_#Isp7o-Iv<2u280(q2ļ)%&Tڹ, 8cZx!$YRpu ǑDmOwFGh/q(Bc׎TK(5ӹ9=!{CcѲGAKwQUP $-`\ӡ\ i!e޻P:&g! }u7@[P<5*oὑ.ǦҭxRHPʘ{^UVTMšKЂ =R5~lms4uRA;ǽCoJgv2ig.EߺNIdf6]:ejˉH#H+i3DULN夠d)Uvc/I>G)9[[ B4sfKyƄCXQZGC$JxUޡ`3+] ]k~,iO[&n2K\aC8u%3? ]Gsfpem(TJഌCW+ZDzZWq& 8XP\tKx2ٗH fYN "X$a3jUrpVY+Bȗ+.1&]; ?"$4XQu,[ݫUiWgVq>_j'|Q l(088#v)ثaWN] sKVBly|Χݧ^?3ON>b%~jB:Im^y EmU z/ <}Evoa'B30 gO*܏h>v @fyIꏒò?W^Ac1M;)p$ԙQ7U `X1޳D'm5; },<&R%ym9z(xJ}Pl ~ A+y h(!N%tzĹ3RGH&5# ^VQ@:o92z|pqUȪ d<<0eFl^~97䷉U":6T*l\k*8fq^LzXJp"x4O= ICb|!<1H1#KN^06%XG[B69^n.BzWc2ĝ31x4/HC4I݈˹sl³;"~Ro6vM[Ӓ{}:/#q2mX;a. nUMevd&Zd4Ӷ>I(jB@m\L>BsNБ<, @3ձjͣ򺍗{%~,fH㎸c3氕<>>ǼcSh# XFN}kʾǜt1`ǃVDR 8J[@W;{17^+v|2,HF:ך3{{KzaT_ />C̯taT)XE|Gİ G%o`d˻~=g_rJ o7"Nfdg.P{_)4qQmddLf W oĪG !v؋^uQ焳%}L=kbEc88'/! BuxP7Bb'47ǼiK4xYf/xU' BkͳadH&\^5WUrb?ǞPU ,ƒa+~^\`q=TxWQ+S8@ I{ÐK~gWu)}<>l3DV[C+ ޝ;';2B!<,qW,nTUiOF4!VĤ%R(fY" wYXwV YnW9O3D&Z엶~ي4;["Z81&iq6G `٨MhL%3)q ә 3tcaa=[bRYkWdO׃ml$" (UjChmN%-0gzbpQ=%@6-rcӻSk;IØ<"Ƞ"Y?fH9EtF:!6?ui͑ߧ*8Qv`Z_Fym8\-]WD#^䮛ف@p` S?/OFl7Ɨ`5jԨC ~}A C4V zK,qB2ԞEz-Xę:K|3 ]RN~ϐ0rEa0rP Mh 0l(Y%|(ٍ"[ּv@+-pFiB=`Kӏm0 zV#|poڋ5ٍ5ƕ `?myGR*;F*v:vvZ'e&F1topxUb$fKY_0"vɲJE9yɔZI$#(2!{Iܷ4cvlsY+݆,胓TDd0!Ip]5Qm6%[0vc#F{m!v`v}Ay ՃݹB~0At͗+it%<9r.c>rgDɞtq1._gvb) FܬW D}s['zI9E􄸠NQOB"/t1k(]-ӵTb?$:e<&kA l:!(۰ ޷Sh[y\9 k ~`KMH$̀]ņΛic&Qlo#Ǝ# 6g\oL9WOPşej z%iwlѦ'1ac?(]GmR/sK_Ao4%0`zkisDAXvxPH:NZGkcUp4C7ǣ)̜r'+ Qv/kQutQ,iKߖa [1]:u^=w5LiOdMTWg]ceuJ}uun̋wAMH2dJ~|'D+oTtnv" !i߰6ջ>\$9FL.1e:Z(KNc'#o[ SH6&&^ifY"P|%NEkzV?ġ:v\T7/=❛liyHVU]!"h<'?>6 g!l]NU=+ew7'=݊cӣȅ${fudr 578LԢ3K4h"#`9(wIm]UzRPLJB/t_K^=,gf' -{H Mn#tD%] ekGlïзmu1 tpYQ:i(f=`+pċO^]*yPm&># eIXCD~ϪY7Ff`T"4 2`xaӟ`k ~m bDM۴ҡ^T3Y1˩@5 v]F@Ʉr JJ'By ewRN6.q܊1TSErALNke2JTX>[*CحŮ]If ̸}ȳ&ohD𫴐Vo֔7+2ptY>ɐ~GZ.d̠ksPHA[e x$p of Pʺ). y(:Ǎ)gL{ _`3 pj ڠGɘ9rXjQK+-;x'^/9hGD`?p_G?OO픉zzZ Œ̴_;m(A~GE'lDðq+ 7hdؙRe];x 8Cӟa􃴎^w*y"=:Njs|^N*&F|Ws0 J׳T8'm^٦:^n-*`d?&*_z|n9Cqī'UAXcq{>R;snGcYTkX,: \l=zcS}nDzgbyQB6EdU8@Mm:?@:G7R\d̈sQA%3zmN(?aTa#QZGa+?e͉ Znj]!}UaӿԋOs^uq6(TF\~؁Ɉt4}au I8/'qI+&ٝ-pcsX.!;9EGHEoL~8]{$"+ƇUJ,?VW?F~6kw1 ?Bj 6\/J1O-n8r< O23os\RBr"gZi ͡kx`bO'*XuC]UJHv&[7V  ) |-lSYvj8^KSDu½i9^nSR܎$?ڝZH<J$Z'#Jzc#V?RH#Dbj8#;/DQٜ8bՈ0G/INUR0fdg,Euˀ^rZM)ՈRmӸEDZkp^JXWWܘ!OϮZsg zDZͤ~Dw՘y XЋXC{n̡BVLQo+(۷qbH Y%3ti2.8/{+3SXnO&#{sacxCBg M H hAMKmu9C$Z "%Ż&6䠃: ;a&$*pOCnVR4NI0&o-L.N+5$`1ӟe.Cj6*0v #xHsd>NgcXn|Pً;\h= 4"cQ=FHe-ҥ.17\ @H ю^N9\VyuzbqJl{ t)ǵ3NtHA"  ;BD'y831<36| 1JºYƟ Dil%A*V'iT'TuALuZе0RXw%@Ȃ@˛7;''s 靶>$SQ\UU6%8Sh ՜D-w>"e}%l定z]t#rlۄ z1^6 )FG.<őc'29漬>Pum 5{^5.oh"jfzpg!T`fǞm~x\ۋL0m#<ć /`;pyRRɆRuSX.~*9nX=5 |_Gqa.tXJ.7gt#rXݏ3/E]-Eޢٶ_u`tbۭDc0̡AO6wgXC-Wk7=B*'j=nl@:X~&)HV[D+&yV =I8HlUDkBn53#(ePoZp1& fޛa]waZbLBZ[)yۯlj8=( yY d W+"% &)P7dOJb! ţAO#JHI<67)@s`m9c:D_dѼzZs-)L zYoDV:H6?Bl3UXv}hþ`J/S2<t9-RɤE3xsD?Hz=xV,dv'۷BI>8n|nm#2-UȚuHCc3c@Uiʎ03)q[D>UObjY /Q@U^ٿ+|zީJN&ұKMLIƛcnTYbNY/r 62!\?@w1>:Ј?vq6jL4 \k>Bb'x穁ճt&TF(2|[QNAitAg=ބhݦ_eq$%⺓;ךI1Y }|a?IGHXZz9[AMrŴ*$3 %`rId8i'ݝ)-)^Sqkݦ'E7 Xe: <<1cʷ2 b.<)lک Cp̥/1.)ڡdb a!βjJ+v~w&ϒA hF>8^,j}{ agzؽp^PlVUk@yhO[ ":u`!ÒqfZҀ*h3pt];E =Ϲ{,+ܪbT><hpr-`"g(MNj|L}us5~о9~ѧ9(5 ruZyoN85IEDȿxCAX}0A $BHŅѾy%@{}nl߾{P -jIbHݞ,]Y2:fFޏ+~_BbҠZ@{q1ޣOܧ\Yek͜$p7DuwҢ`%2$gB]qj]/XdIg6A9j< W;`3kMFW(M:sKOg^3A6`R5o'-bۂSa _ l/xZ/[()ʹMQJNiEiv7ʼnz nȈN ;CKǬo$3Y;-d?V-^pxj@W=]WVukOWvZnJ"@l̍V R6^4u1)nJAg:D#꤯-E=DB=ljQ"2zsȦS`B){9Y†-:rJ*Hժn{lٿ ~D5aiA >Ov[kiC(x_|/-~d=L܎Z yQ n`g|_Ӹ{s!νP>B#~}m Q4FQ#(_WpfW)L'It1Ww3.<7Jg54 U6!_$IHߌr7N{vNqj+}6ce2&q矯xw8n3+*\/=F){d#Tny 7:{IR[F40C1oGd%5RjÿQ)ɖņʚTqQe#Ħ\0$K~!3Id/r”ڪ곳)p +DK $f/Ao倄9ڝ.2,ҳz]{fӝ(8lT=زێ6j@ :0›1 {B4:JB) d|ΐƻo+p6bclH,Ŭ ̠daui-lg1x쾧_ *X,y/,ajp5#a2뽁P5&zr966M"a1w'1LE>` JLKσegE$NS܃<_, uqRзoc2%rxqbb5'x 3z{Г)hH4qҪX,6$|^AlTF%q.JqCAqUH?a;b4x-@qjdWî ƳSox_~aP^W# |k-sflLg ܯG,ף.}mU{n<r3 (e }CN|I[X+#*tcgA$`0/wBKjÉ }$++> vo%ă_.K ژ\Tn#9B Oÿh4)/&i ϠkcO|;xo%'uVC]*Z`lօJ[aYQDYWQ`N^'b>ȹt$S73(/=-gdZQ4ӋH}۴[&J ֪0oΛ4A;|2B-xbζ +1Л%W{t\aV)3W"ۯ(VvN6HlmM)$N;FmJXrSNlC1(N_ŸS@0楱._c0W1# YF8? EvO2E:diyɰDz |I "9o{bk,|v,[AcVH@Je4 D>IRUX$ dk1loiͷI~H֔[Y9Q(J"O׶h{e}/,jtA)q1of_[UU-T8-=A,FAwbW&Dѹ b7?χ AV"^Xk mmg[5BXNG?U2 ],qUɭw=>w_ I8~'QGg!itAaGa?S[o, )n4k)Ui1t_\;J"ɧ@ >%oP3*}S,45n d?Ng* (#|*Q#M% +X{AN*\"ng:>!U T$Y| ;]yXn4Q >KWJ GH5)XYðYQ< bC-R!/T8"f9a3<7benkjhA{c ˊTE7MDj nf@٦Jg^wZqx/2' )a8 Qh`e5',PX7ɆA5VKGY9ӡD~  {Nt/_diîUy̚ۼ!7 V¿ji@%0wߩ0uɬV:cG\!!U~zY4tG'2}-,o8sZtl2TĒ(}8}O_2J yL5cWj T&oOW TlV7B_o߁,vvvpgXA@P䅠ZW̟̽i!`vA97+zPIvuؠ3־IkJJ>E&_( wʐ8(M ^16-tIL˰l(Pr+Q#Z:1h:ژGKvT,L['["F>30?}ci7 oZ}] V3m.P.`}EƙF,ɕ]D%VOmzX1|46EHM6u* .J>\e"Hނ:6oT$/s{~Fs`cO}#i0 "iIiRN~/~Jx9臽C$`=]G%NOyZ?XmlxT[XLyI7V@D MaTS(Đ5֨ZfwpKrx տIJ=xlEU/1Ї 8PM08L!L ,YM0MJS{CzK OSNb-`t4pPu WMþ L3V~ U g ȰTV2y/3tP^B"K/ ]Sjgp ꐛUH}-6q@-^瀽\qK٤횒vj7אGX'^hW:;(r mw-2aJoS_{bTba/,gZe !#s\X1MB_(ՌPC]QN+.8" 9_6plxW-ك_MMe9U; Q,t*h~8Mn~~ ',~{eQǸzX>S#HS9zI'nkc%tzp:D]8W_6%t2y)l~q{J-όaKČQzT:z.C!YYEeԬ@l1\dR?5PYϫgBk(B% ?Dʠ qZ.Dt!ܡl3t1H)DEqt @xyt;bUQgHJ&6u|"bENM:%CVU _+?z7<I&5 wM|BmgRճVR*T4]c#WQcɩ^/lLUHo 3QsqQTY b3N޶ !:aQ:0HMxknhP_;6_J^YBDZ[ |ig_[ž8t@ryF,]QoWfzBmXS62NhЛf*sDJ5 @~P[DzΰGAvBqufV##"+J,kS Y+ Xu[k޷|/#n>-X&i% XO*HήWq<džx4yjVV2^apo>Op&P'Q<ȡn~`fGO$h:Aզ)&F>ƦMO"~Y&b ۼo@ʊ'h>H%'ع1? 1f캠zg;{ʜ8 bj`~#K4k69缸>BJ[^AEZ? =RPW(on,ͽ/f2G+AL+l\l_@;*EK2뇸x.ڞ[mY]h#Sڎzv*鉟ؽdܜ}'' #m(60߹?n skj2IpO^ ^Aa&C2*0Cz=MX055 :UĔeFJ. ̵t5ݙ-CvK#& =@~8^ M4ddI9kP.Ţ)k@ 4[qiJYyݓVEG2nڷce#6&)CB+iJ=nb>CL,WEzRv"rԒT/ PBGo<F%'NO"r?Hw ֏#у{<0?EE{qĸ ۬ŧH!z0M}V>4wj=%iԂI*_&jgrwI}[eʷw֩u4q2ߤ HPl]rl?`_Clm znq/V"]HVPO^ٟw8!0JN_Aݏ륢Ākp" <&dgߢЩ">kcQߕd/D+kZh(N@ħ N<3oJs0"*X= ^wG皁h@ ɘ')69TLdh p{kRH<=;um~зs ;ދlf0$Pcw+*f!tua|('BuZa3I3x@5U#G]R(V> c wo6,$R`'VYK7t=FFd;u3 V'X&ᗶnV ᕲ8]|&<iiF6V̂ jJH:qocZue[#JSep%ue+WoP.A&jW DQ 7OZ;}UxhvAf٣/XT0DwN$pK5,$;{4ӲW77{=g+;Q= 6M~0PK.(@y$ͪpYڅd=^bAD<>`Ǿq/RTPJH,M¸UQ)Z&::KQ]kO*$Y޶[mqwwUMq OK\PU͙ *L?w*`?߫; MU3W*{>r~6.?W84q aHBli%?/*@6(R2 .J"DPSv5+`. s]ºn< y)t+;Fd\LQ3L,%k $x͐Wt|[7ϻ@\87Igџ[ ;=[Y* @ Ojq=Rwl^V8>jk1eLoxeޥd[(S`hRYS)P[qg"nEg $fMr5Jk=W%δ&a:ˬ{*n=m`e/T2&ш w?~1zt~g!<. P,o"B71֗(ʽVчuk 欓M_HCH.4i*M0V.cyCA)%F-Gwn5'|)|nbh/- L7Ϩg-&m닾|c}Qz4ӑMWMG JݲP0Pc8)ƍOOC#YU >!JlM<.Ѿd)=ZU+>@ƹEm͊3 wɠJZ]G@SwT!Ij+Z13@CIyp60~pI</+Cџ6T`$@nu8xg*r#~4f'*Պb(ٮ)s\lrV36aUoV;{֠ ANp zMD*e4OXg>M0J=cx(b4"37I^_C]1j'QAx>?3VsJUB:Rn&X:VV3m;PC%}{C]$dM;_.z@b^-6-'w@f OW*(apǝXP"DZoo̩.0ze$,GhlsYgxKfT Fdzyx͠h  >^ d |ER:Ȝ5Je;_OH鵰S)ՇțPy;^ڽczB0c!\.On.P= ˞>xuZ `¼ ^MA#C^ +DMOvʑ0D?b~AіhqVp(0mG IRjV$(ܧZ3mϟ'>[lGl'0 ddmca/g /YyVɟSKT!/cu*e& r3 |5Vz N)l11̌ N(p%ѡٟO gX˿ 竈4~<__, B ۶p4O4v8"vwmIGQF.⯡p$늸A&ks#[ɯ<_9|}a/#~BM׏QOwiSvώ,'B+ݲraa7 ؙ9l#OZ)e~Ocs /C 귢,X&,:C4\5˥vfSwQ ?+-Ŀ% YjhO^٦cm1/Ag#9 Ê3 1L˝^skmn%ЁfG 54)zEL7~ق RO{?jsdfpK QRALB D o\dݠ*?S8 #*ŏʁ\>k^ 'x<㥤}K\ -Oc~62 ͈|a-(' b}l>mx:khG%dr-AQrY!Ygf\aGhtI3=pCr۬H,?Y%(*l]yg-'*F{g,$x["/hc5=lW+mwul h p>?M v- CcwcLN@,vC̦o!'6W߼$uV_;zGĔKUq8ev"tDֵj\.uy)pOe6&);{U 庪To,n5PuBJg<^=t@7p+M8&4,ʚ}k7p%l5zGESEXt#~b\+zi(ny(W}$ `[a6M j,>hۇq܌)"w4-r)[+ @)uSвwzn^`zH+Tآ0U!bv!-^h, m[s=4;< 2שDL:j=VmncSBI'/u5-`zZ-l+mW0('C2N(yz<Dž^ ɓ\4ɬ ]Ty"A9lTAֆ-P;ݜjl m߯fD`SRdSH[. +y~[8t-q/B$xg > 6X߹y6N+i3pl.b d}1E+bQZ[ym#V?XN_cj@(G̜M@WX#;R0 h3{&IX8$2ҷBʼ?]в,.[2QQ H3OI (M%ji`S+ϻ(OQ5PS#8նʪ4T0,m$?-ZB.vfXrr(iY-nM,Ȥ$2䩇G@ʋYNZрwLV܀Pm"vbG2M+[>Ë"5k,?/ǒwW7aR| s ocnLwrV8E䩜 E2SI˛53#y4@qkmZ%|#YU;9_$0`YImq5krN2iCR5bUrK~P &/Tu>+|"EJ;6݋֬U$-zߙK_ " .W=)ٸ~էCnjepOcE4*Yy$.-qUvhwυ,y9u5J %r'8O*XtSMn߯G'Of+(X0an%Է4u+\fG d"b*sv lѐ\MJL-*P @}29zQpk,2;p5QE;R8vלWJ?IVe\@S{!:_ SOf3Hlu+7F0r"qQNMYWJ`0>N*#ϭw _2T <9F0|r|`{X- S;,s#fYqP#hU~aayP>X2i\fC[2ȜarNxGZ5V.x놞zeә)p{}@F$pRchZ{l? ˡ 3NGI"^끷Bo[E`>KڜrŠ 'A-d%-]IP6ڕ8 rpk$';MFXYwx&]xzl v_Rco??Ѣ0,7QahJlS:KYL81e!{=Cc <,ƭ,ll>xHyv\N" JO*oZln˯uo /*7LPQEiSSz .`"id54c…})P)Bڤs Hh4WrE^d:Yվ]xmVՐQůJ&G5T'&q~ާ J+xmj[[n6]D,v'l9P qs ==^!>7k(wK d?}nRo؛}j)g(OQQb* [ W^vfFȣd}Dt~^G7ӷoNxx>q 5>s[MƪxZ;IUzr8fJ; \*ıNM2<_OxJ-$+8NPUy֠.\ #J}%_.i'nexqqWt]gi6XKިLU j# k~%`R ?۰~QpÂJ"[49+7kЌ_hAl?ؤi~Hnt"apbJk*~I&AqwPHc^St4&'x_l[Srvy/V|k!LA5}g.^VrCo,nˆm|ڕ>`fJo#Dpzl n+DIw:*f"9۳V? ?c>tS|W ww<-F/ $'pKOE ;u0{jf eRĀ ב-ob_ƀ ?CUGg; 0i`ڶt nǤ-ŤDdg Bv :4a4:io:'-L@w(rPB 1*֫!7PAWQs⃯nZ&"@TSɻOZsIoi[gy%#N.I9K8%GvHnq~>$PZ6ۭfS !vCnm̅鍌Sf^;ie `X+RJ eo77ܘz&A[4'Aׂ1Z 䪃%c?>jt/քUb ~à Le FL[ ťJ#B,1 \eVjH(V~YC7iG?? 쥬{<9Mv],GJ1'v7i@h82[73zVV8O{m3IAeT8ݲ΅^/c/f'WMܜ j|LIVmӜ7MoInu[T;b p#"Af{;qP?29"ܽ*YIu)La[EYO pn1s c B@.Fˮ-ZvN7\|`ʘ\ͭZT,Oё'uK(AVA{)م ;l:$el*!lbap2q/}:`m̫dQ^j_<(vs#M2Rl{Hؕ! 2$<Œ@y+7.eg#хg髽9U@lcʹS.2Sؼ4ѝngÆ>b$'L> ut.Lx4 0!J!nQEXWElX?d#$EI(ϩYN4WXL-,$ 1m{OeC)SM(e%w\t@,d`^U'#;S]|ecPRxќ;@qԙDO_ZlG8W]1!.{Ы*ʕui 7xz|?Q$xC"Fҫ)$ylӍNXҫ`P4-,E& G9D9.ռ_rM`A%|Z6;zk(OqR%t8w@*~<[&a-)!%;4} "$u%, sƖE,eVN;}8݉.͌@h~v,$q|Dʮ 6*$壾4Z'ajwzGl+/[ddEMcϨ"gvQF$Ff^l(%M۩ f^-eSwc@ 6P_RjuOUU68ԹwpOg=YʶňqKΞK9!\9mvDnV}D#bd"B򭞷R(uM' [|7pC֙h=NYùm TЬbmrA"Srč8pQ0,-PCKKh8Ѡ`P !e44ŏCFE$)4, Z~@0DGI(UzvHbts>u, 8 Weۏ+/aSX\̞ eCM#\I{܋bgd`ˢK%eB'HoCcLuDҭ+Yv&/(ze&2.`=BLOYR7Gͥr3TvqGU8D'ITzUvb‚l ]4S{c̬DJ;{Z|u) Q=8)]D ղ$l fqtsC:0ιZͪe(duxJuɳdQT枓(޼408 >vyw,S:8rR 1{Q_%DYVŠܳ`r l%lQrqͰȃc`UX]+WRv-4O^ NIc*[Y^_r?O*~\cD\oVT%n|vȌ-mКx&zqrp!v'kLČ'EJAys!&@Tm])4牶ײ!:ɒ0PC+ *fhwƤʆxpR`I|N1 6g[ٻ2҃ e20aq(t[&2"$e)ªF GhIlxsP|ޞ22NP>|N) WD4o("@ۗ\rFg !qIti[ˡ-=T1m9ۡ<AMn|2Q6F9*u~۟m@{(.KwE0-L-+dNi!`g"ۧ[hh:<0 efx92=SMȥ2>E5V(ïX0vr1X>wשSWȠ)\S\Yfr^)tͲ Bt7Ȟ&Rɔ*K,G[AϰB*4}n jXrʯF͇7(5=N׹re4Me/5 V%`aDM U.-NEP Z~lW6L^]sAv!r?-K!FMr\էQG4p_<ۯ܄р%tPf'̧ QX3,u{N^v&T6qzECG7,R5ǐdwɲ@5{>}'XHI;>YC;PI^b]pt"9Q\΃(6Dd9d]ai /,Ph!j;xt ->wqPm;G{>֤MDA:wH^:\}N{̂Ӛx+F5a5r(CAǒwTYԐXoLl-7k(h1]Bx|dZ5s2bN6C6trj܉=sYOLl?lwV)6>9kޏIW4"BotUV!&f;^G.<2mxJv6Rse ka e+ ]^?5jy^P> ~ͣJu/@P< ﳀ ^ڜZy. ic0M;YMՁV]N**'>`zgWJ}U6'%Pg#m/J|CqR-ISo y4UC_ctxZpdT|NkLj6z!J|YvT^RI?ajFͰF xY `ZhU7>~, ǐ ~!,jN5舺`,zET PC8/L d>e^7d|zQV: DԘ fL/BZ@PpYNĞJL`g'p1pKZu7lHdf`[ʊ|#%yz4Cj$q5dQLRN,~hav&.[]Gz>̻G 9,n/Xч*?g005off(VgY*И!ZkAoUx/&cBzN9]qwl-Fwͱg]Tu(/ /Rw/Hqm8 {v LnhQph}͎A {4Plg6{b'20p#O5z7lIfї钌YL=4.[O3  ' A>oA&(|dn+tȬS*h)˜I~7s~~hh3za3 pлB Wq-΅Rv3>|NwIcfY-rw3OQD==%+15#R7G`)dW҂h&#]LoJ4Bα  QfWzfvpt])T}ZfeJ8_),̼1J'p~N.d([lQJ3-Ԥf;LVY]J١i2}їZfHQ;~[è(-:PmL.Mx[V˨& FHd;uZ8f[Bst#w|f`Kt ?J_RXon;m10P&BL;7@`brgqrtѾ]5 'KZD Ёս;P8 @# @? !5+PIVMIGrڃͽYEG ʢ')64Au볝Np>Qv\6էh2?4soX{MhG8RmQ7d$^,/1V1YǠ 13RnW_@z5vРE!t7!&HB[W({հ@b(Oڐ3s"Mʝ}56S"7C5's4u_ A*RnSvM?y[^ߏr氘bJsPL0z"y[ѰDT ϊ 3DQyi64#JC$ǩ!bQ-h$|O>n&/ئN&wT%D-|3%d?l=NeA}j#EhG|]dbŏs6P)4Hꢿ\}_E0VJBadG<;n2-2tg,)ۯ 42)z'γg&i)-]w~fW`'u @=o"M,9,qlOns!/|s=:"8O礠mGrw#S`S"?Y\ ᬊyIEښo.gq㞨դ}!)"0A ^v%VȾJPnK$a}([dPh _)8σS b;,  @"@1;c/=J=KweȖ0w2fhvVVLfJkb<Wd@i'ϰ=GB(eT9ԣq7|YE;QGD8a^ʖܙ<~1Ky\d.IWYTsUf ;LL"6M\ C¶q}KDJFD*!ˊe3d]%>L;㌡Ʒ^.K#є־bd,xz=_eHiq[U3s'U|]"Q7/t{=@Kk@IfSbSybPbcayR0,(W*ClksGW 2'hፄ}dY-$r N'ooX|1`Fszu0]Dˊz4rܹq 9}fׇK{zMcw$ ..Vu֩kExlJ?$ ;K}LNc 7߆&BRn&Ƀ24~\;×|3eF|p|}3[:oV3\*3s~ZfKp9t݇`ZGΪԨ M"*%s50DN5]\KnTkc8"I]Hu#p'p}YP(W+"'&<uhekuk2M88轻uoou7$6ۜke*=~,d +"3GMJF(++㝎ch^)jX/8%V*V1WNݓ|f)-mJR]V~n0&TAn&6L=Ď&l+>kl4M{^<ťo]9iZHD D}nd kLR|9 8bS;fA;8*+)7 \3m>7B=)J̰`iu36bxjMT%ݠMC,?#J}K:PLFH'Dvqw049^Y,9*p%i tN_5D Fb*D&@Ѹs6:ɽm<Y |,9t! U jrZ%@5T~UuZ48bۆء?Y zۋ8@moU,ntbX#,'x˕=*Բ X슛j<)9g RBfyaJoUXޫh^aW?[sl#q2J:X9~S+d|+ .DBWyf2%ZO#vB'0WA<*Z_vXJ_vcJ9{P_`p=跮PH ÕWfNLOoi_*3"2IX!^'*hsJ7m4ߴ|2!:'qzD/ 6C޲ F8QXv@¼1gv@W3›:Ǭl:{"G7b!p5LB;9zfࡇ }Zn-7uNIBgEbI5ކ~˖J.De1d4dCŃINoN<婂*(1 H2F~&=B'ԭ&(_i΂q0]xRi>Vd1Qqd=ޱ6nLZUqh-Nʆo͉Bг֫<CP`]ӰVNWcd?:H8lb7zB5) _c*_X4G H fG`?'Z5/KA劉P8Nb防~dDT65T\RYB̺MAJ>B$;~b^!{UKZ2q}lwIPOL~k%|zCR`~+%Hn@iJ<+O~G*l&ӥ*LxQ}q.6D:sJ Z?RE^ٜ26;,F A /ؔ< 97i-[R^Ex6`ydz%`.Bq+M/Ck]V$w :hL }g=UT|{)xt VX?/ipVŨtdTWq tPjc?ZGAᮩ k#T:]p] raV/Mi@ "/%Yـ"quٕR]~,zj @EI]ڑ[TCfQwu9.n[S2¿$m: hr10`/$]JN$"_[ @ #A$2{\ 퇁.&PBn1C|v-o:%TKނs{Fnȏ4'5SzT*oH(76! c$h;`7X~)@&1RD=rtio\0T|7,s-z55tpbS#Dr~O S`u|;sJ낓nB}&oI4ζ'*X+[4whξ1oCU(^0&VŪ:#^RQlpDO ۴Y+߹'6|~\$$S-<:O'(oQt&P\:@A v0#fkjekl8)^bC(lGMgD6_T̀ q ń )ep~MRos6Eye]"# @{ZĽ}V΄tѐXfv40YGW% Q+hLƧO=H8:v O1q_Oˎ~i-{ .^`w'^up<)h~2b 'xIg>P&@%i6'zָ1 Fs(HIަ8c ok}zT;[Vbs,%oӯ\X0[@\=JE̹80[mk)NZ0|)t*oÁ3i_7cBuۙtD!ݺ NjJ`ONWdW~WR>3Huu0ȹ$T#`wK`.| dRrڻ$R?.̸c=;&Vʐ{Z@!⑋#j`!}&KZC[3W}Y2f۬1.c! <$\5ͻZ7ht+5c,0$%? BHR<ķ.kj &(`6[K<\P3B 4ޟ Zzۨ0?,ʖK~*q>+7-zn>4 wJo\ET“ s;Z0hk6uQ:KJ["fx/]}yYQf8Ne8M ׸Gbݎ|@%#׳'pK?gV%m{0%^+#4Xn xFyn&%ǕCXtӼ/ip/P>/Hk/6#YbWx 6b"EqBֶ}/*D0~"VBN(uE `i#sN,88Oס#7ug{65 sЋX+@P`/tEW}64j*'[rksk'ehYZ) 9L0&+odн]jQvE@.~Y5V@>Y!RՇ qi>T"d]}jHMJDb>OQ{IXuۤiug(̼A<-.]؝9@r͈J?/[=c߾KGGdѣ(Jc%;#}.wG\Ϧa1X_-0a@Ac.`T|ל`5'z-+JgHzD(B qh${Z _AR>} !֮@2:[3ّyfEtjt,`򫀂k+~?r0s`>Za-[,u#n#N~ 8B }tBKxk獆fGe1oI3+c@Qb$HyPOP6 kK>b0YCݻ|N.*,-g|' y4;R`StkN=G &=̡E(3Ndu)}5ԭ vyGR ]`tMҘY_ۄ$uPYXƝ;?@OISW/Ҋ*Nv5xJ]:^;VX?CڰWpxBXisol4 TL)8$D Bu._-bZ%J_w|84Wഎ aKƒ4$m3`J:hL o~ʹHVUu^NVco #WϋQ8Uׄs7~".&/mI0J}$ǴȀU1~40Yǎk Lk(Nf"_dC\?z[U;>321h=?I5&(lڙڡvuPKO)( aaj張#,U%ifPXN7iKXw )+WM=v'4l!+?3dKx~r7X*6vZtT]A >&ni0yN+Rt-=g]j5*4V]a\DIzStMG$A#n'mA6#JEMWd, Q Z pYϳޛzn_t@UD1ծS٩}@Yi%y|xVt1Qݜoss?W)<~yWv~}x:EAm휺>(Dʠ\GizYZ-Eaw22$7m&Ԝ* ` PF-E)~K8j3t#m#9YWl'|.6!\ܒ?5vw~XLJfu$Z &w润Ȏ@= L;$@aVy^;z͔D-HH; ߘ(eUԨO 0dbY+F\i\y[kwjЈ&1vo ~'|4Ͽ$Wy?qhwC#Ĕ󤿛##uX%Qj[w 3Tm[&M^d*'O(לUE 83#-C|f.=Ozkݛ¹m@[9___Kѵ:%9GTvOd~:$`oLyzHF<Xe_ /<0G=A)^FޱS?"4Z0>mx~@V9l,$ʴ}X||Ʊ DڌT,تsc=kr{dEk @砒2WkE9գhf,1s6L{AjҮ(AӞU~3j:0_jY0UG`ɔ[DG$GOkcFvݫ^UTjBȻd?{ejԔz P%N<|]iԫd?6k-x2Bj⶿&PKՎ-. -I0{DB幁L}jb> BSo(u {iS2 /^CZL!VrL8Bmd4`qHwmҌXghҺnZ=L=/fO :%Ag*oYȀI!K\3X6mHE < x4oRپU.\XqFU*Ql;/7_@Nsv) Ъڟ eBAڲ7tatrMU]?7_Rq(1Aǜk=> qMWcWWbKk|GD =A00@ܙ~:Ic=f-ycmI7&ݛ[vxQR ic0sߨYГ= %xs>gRZd#O-u SRncgU %7G~R/6N<4^Pyۿ.5(eKJAL*kYSG)1Kj]_4Kã7Cot=smRuՂ5& ؙ"`-fOŁ`ȫU,7L)XqVʜ&\ddBT҇߸exdr?.,4=>jRuNR, 7of|g0ݤq*-Zgh&[6d'd-Π7X;fK_T^at';FyYM]榰q . Uz×ME!ugK'S=O b6!]Wfz'bMmڒ s,/P|@E^F7ҿ\ъz;Bj+9l[Fe{Jq6Du0_~`޹19o"\Ƥ-*8}L09f$$UsW /p_rqwt's Ol1 7kc8-2'ˉcv= ?B{MSxIߏzw&H%{([х!=+\O`L圅$3nWSu,X>Dy7o=/q4dӐxuҪ܃(0nQНer7NIL=R"3l"4 2^hxq>4Hژ<;訂/1$ \DRoj|ӿ6xi4%hA)\ςӌNiF` *͙^#YddӠ!J!ǎUdJ*#"H4nɼ - J1~cW(7 f]? Z=繣:?il=&tA}}r&DB&frdTUI\}S΍VR QN3j(d4#s&pnE 3nVhn]gcW\(z%yu8T>ekKXc-BdNh/rh/㚪BhqS`j! _fE9o6TtXWV6~h*u0 Aؤ@ Rr%a}M2nY &f=mӭ(saNmڗ^'p/\jsp2W)!`'vdנkĔ`*4﷌9~r z/g7=x 0Vtv׏68G:.R;Ѡ"_guer1s!o<o\&\qc} +flP&mo*(,X?m"f)6CUI4Ȋf R<1D>q !hc'\>KwsdrAD*H7 nLf*Ûa|~>64Ti6@)Ҁ\O1[wǃ7$D2b lXzTʮWKG:f8 QkY:z)mh*BGhܳʬ  բQx+2p5' FMG+_XW!E0z9R0uG5V~\vE0i$(֕;HgUZ}SL "FnS)چsnڀРP4Z ӕYm3oZRbmY~‰>߳#]h@ scI+kCjDnT7f}͊Z9dWQ+d\ z{dX &l(:b]_s^pPw8ÜNzMqII[c|#ҿ(nɖ7a9ƿ(ߔBJ@~ѓC> /JGSbP#gƅO|u[咴(1WV%T30x}A[iȆoghilC%Oz=˧==Y ,Pr?I`z$l20_Qfԋ6L@cXUKftz䃁JTSG6C:Pv;wLk > +JI<(nZl\ZK7Lϗ"޼0rI74/u(|ޒ PK7H88Κ-]0V--J$uuWl_ʟ,"@s$oaO?Q5oX1W!Y%VAEO膓=Ը+9jCHUJ%Q8/n[pq: ۽m*k71Wnzke{.^ڀnckXTA}c<0<>va2@?KѪKJZY1ev0*=):.K:L&"JP2ie\.Ѓa/%v\$c rBl^{ux`i/NVen p"|j [nXty1R">qjE_@h͡ȶoRG8^Q(p}WzGGcB.~ո?cHKH亂{'I>-af,yW,g?3Ls@XȚTɀg#O}!tZZ.:c(^e?Q@%` {DXw*vړdIVgUxYA`2 卨b}ˈ ·W,;, }W~<[7sU Ch;Չ3g{}(4:^@:8-u`D0BAQnĆb$G$[Ϗ, %~!>d G\7/tt!id>řY0jzSω/HԹ^!GK0?+08! : 6GqHĎV/^OPCVQ ҡޠFҐ, E噌vFew̍-K3"'sWv$<^om=-9'PQ\N;B؝nqKaPuaNZSE72ݪ1o0Yd+cߋXߺU[ܔT8Nve?:!NJ~d`P$ل33ۚ wpJu?{[GKu$ߡB%V$0-nKE3Ut"bHkLўpNEL V:ۓY!' Ib(cOh*EWj ,_09U F^|d֬܎x;Da[{ 0{rki9fcPtZjb#\yibwoNvhG<z D\[Z(YZ\eЍj*"qZ鼆V^V=Z}"e˔ $ve\Rp("4&]LK?,/}{' ;?ֲ=fCBԮgCHq샟JԟcNEp!x`EGENlfo^FA@Ӗ/>A5ȍ##|[Ab Wp̟6nFum 'D"֩'SFېUX8Xoq=:Ѐjf!&+mnΞ|ԪQ>U#v*k|X*ZQkJ)hcZd\Q c4;ı6Ԫu"0! FWSĿ s|.f &µ MNC\YblG1L2A]l }EGP΀eLvnֶfO{@9JFrIFj) Tv0n|:oRVwg3eC:_ůqc/R 3#ጣq"8V~`\drh% ccN2#pі~#L7PB)ѲlAAyYm@jOuH NY'@~j>P]~({X;'yXop5 *op"eK|pZgpf{|jhP'o>22?KZw2ު%+Xvǵ{>kno;m6B{`N?KCK/+c&4}⓷f<"@V~JFi-h,'QO"`$_;m4ضZF?{:-8Tغc Z`\š/ r%jg@B++Tv5١W]*/:yZƟlrT攋} -8eSJ ߻V/tzגQ$b(OT )ZEa'!LyHcV g"ZX78ըX`V.uukO#pu紽 i5G)yDKfG*'JpPZApeyjnO6ͩDD,1ޒV%K_4r(vӤ*-gQ]?P0f09u|WQ\Fۿ M.P:cdI'|&bt7pnTdޭ~V<M.[tg }4zK+P7:'կ"ǻhzκ/@,'k;I|#Nka Ák͵۟|$gYˣy{0:||j}$K py[@A9!:MWm`q3uWW)݁*LQ|MFrʿ'?H,Dtb:&,^,gs$ad c!7 N@F=cCcM\pU4ʎ*k'u\ h(,A:EW!@o/k+ؚfuǀ\2TlCvq n9&;fj6n ۼp(U}ɖz%OM7 ^( KpEE0l~GtC4N <$;}9 4!E_KiC{8UnY</m0t>\y rGH@(U]NMUL ڒE,"WKjsp;@j߬i3i?\ Ij m $h6RC{ߪb'܀>bjU N(cMR=\9f brb6[I1hE5EgP r(XƘ$/Mz윰7 ZWOf%?*cBֶi:t>?lU<09:u"K h)ؠ[ˀ+cf0bX5]$C%A/3tJGK "Nm;CS\Ɛ<}[O+e,ŷТ[6FDjhUn,y{mS]RW[(vK0$ &,ֳ><7`=)+IB<ǰ4[3=Y@ap@}'!0]0.tյ Q&K}߯|f@%rti\Kwxzf \$L޳V"3g11nEs;mfBz]iT6eR9AI+D;@.) G!+q^SWS:tOG[G smX̓)ob%ߕΈg],`]߳a&cy&(ƼQvb+Dze_a=uMmGGՔa 읁o;Xb5fh_=5-C %tTk<_VRH\(HSF(&d`c*~`wžPj4}C)l `Rd.r3(SǑaGWMsywO D}ƝʙyrbAM+/n= BEmn?_ZLybz0>B% F 3؟?+Nb;_a^ᩖuJ^ H:fOKxB5>JTs&'IU3wY ;̭ʱDnWsv/|G9Uke *Ϛ`6e`JPB' =""՞tdA?SQzcJ}@~+S'RŌZmҏbFf"ϯ0ȄF>D7.aEGCJ+S(kepBۺ#I7GG͠=M{#lg@tD^T2<PYHW&b^W"_nNLM4c{&А"U._==ը/VcV&g;vl^$] C+rQI*WQ}#Dr ;ƒ$~:L0Bs> &QFtQCyB9wj ģt{&5GrEq Nhx@RG=NP-e[yՋ1R+u-#]!*Km|*(KҹtcěpEW$*>K"1n^ Ew`\+)t`tĵm0DWEHedtVZLPGQMLy[q~N5axD[p r ]OXV_tlW]YR*K~3Ct32r7%еN{e֦ ~]ztA.MNoX!߮`yNCh]J_wŋl2FlBUT. $|w$ʺH;yVY_X5U:GxK߭^vհuٟ4YGNW : !vibɦ(=1PS͙8fH'ft*YZh4Ho㞢dz7v2t8lZx&oH΅@iBHsn7a[]m4߈FE*b 7ߵ `݌91dFMΫV#4oâd]5aF˛"ȁ#P\a@j@HZ#K*xj6z h %oa|)Q/@qKE2Uu*_V)U+; wMt-ehFh$t!ЏG$^a5YG]YÇhq&2@D’[jYY7U||6`ߑ0)%#[!qUBС&0; s"U8rxlTɁ5-nt!EgⶅI>dS W]qukd{rbNA4ِR4P,]fd(~=8U<ح%$ߓƆZ+M; ޿&BS^=KT4/7۳Yr8vN>_RhlS ԖCt/VAmVJ*غ3N14rx^`Wo%_W4/+-aajQ^ #,c&Tm oE>-Fk`";?Hz,4x2_4aTx[|74S:=GzWcwpdG/:շjyhMyZFt3PGjŐzܤ}bb)Wyq\jk;8Adq>ؕu :wIfuH0)p[m:qR`n]jXSf#,/>'KޏeaSP&O瑽;p ]L+5$Á@|MN#߷L Z_CO:4AwZ ҇X`~Mz!V9*g"HOVv18Y,1=HAK7w1u}=q!W?, 鱚hznD K *P!v,'?uʶ89y' NX^ΎVM;MYntMw4>X K^#n͊, D%'pZug-şmlAH/&jc|#MN Ñw{#H_[*x4V}b{O1x0T xjHg*y%βuQM]^gTrVYi!b37]p2 8W]!\q~߇MN!uZ!,o8P,[f/OT4L24/dR ? ܳ^Jj[@C #Rz޻sL^U蛿6.LvUEE lt6MJr<, d;'4pǢ^Y< %RRr COԥ0Z߳p(um%ݝ@8\ƨdؤ^qH~$-%5n7.ޗVCph/sNŸ[$g}B{;rg2[ZwMEGU6g6ȚBP"%]\.#F99+*(N)#]fZ=7uB/]E|4$7Swص!Èb 6-F _mgզtNPm)k'w}h*3vN.KAtE]Bf'$g+7k[|=$((XtJ`nW+~x2u -jv;xvW.g1#iӂ&.b>OR"Xy\oj u"^8؅Iά |¹cGOc[t*Trd6:<$!K-Tb>BRt .7἟ȁşr/Mrg{۩-/)uKEE n|@ [Ra#'ykX[*Z5Զ Fe?"KRh|JBmia*ڟܖֽ)ֺts}V);<+qzv0owYdIl&Rs65LtdpGb(Z)q/,p/"rcqT T:C齍lŷosL37EN?T\Ҷ%,sǢ", ,\ntm F mJ Ė}˒`CdGl|S3iXkf6eJ5j(mعS J2x>&GZ}~T;pc]z|>kwu=Ii3hd[MN`t6bO4ZRd+᪺. Hr\=Et< CoB[ D߿v7w :h5AR ԉB-ݥ½"c+ l)75ta [,2k7=\&T@곡j}4 .ofuFV; 1&kgW3҇8{T>|g7{PF?v7l^UzP߫(o>ܵUw+q-t+λ> -$O1+ '|a&'aT_J 4D..bGCbcGFq J@oҲ롡L^{'Ky)s >PO*߸V 8,*'3y"i-  ѻRɜ`j`x9`GI93xݛ|!X#(E ,f%̉ػ9NlgF^k+HyW^ҬR`3+.Up'eulT2\/S9WBhϞLw,3w`'\91bX񃤯^B1YZgLzq-PkHAW=%\L'opx0J | 7Km"ǎ.+Nɠ=^ G۵ם*^+#N?E8͆ Uo#YNd_+V=6e3y#AnV|/^/b%[:e ?0Dv\5O a}+r(T,O\i&)-p`"t+iw#ʹ?WK ӚڋHh8o 0Oc?˜”nнȖJ=z,oSrƉj͹4;qRd/L,${u#@*P7Sdu.2l_c,<~XQa8!D H@@?H 3٩I _ӓJ>9WxR+2NI=]7?y#. U3--. v^*d#o?&t߆c 1͛ץe ؓR/44c pynA-Lg[(Y@|/]wwNoV/el&S»W>{Q_ڀ4wYˇ!0F#U!<-#H튖ULM~$iC1ǜg4jMcØdVQsrLi) B$tl]. NtERIncJ>IۦvC g*$k_d hǕxio4mp[C֠/ Z[3?q`NCץDO\9sqSMIEu#Ka6yIkP-5oC لwK^6Pmv,FGgfWoVp p㒱貚FvD'ZTƧ7#`%n6/ч%>j5S< d]wqn` *.LVܧݘIX=r3yZ!P͋T@q3%ێp/D.L%YiFhJU I(>uF-C-큯H/68,ME(3(ŷ`ՠ'τC퇙z/ԝZ5K ~PzL w>"VHM70v*D6zQ+P뛡g$k^K9{R je[Ƃ0LJ5jSKƚn.QI DȮ9₽Gœ0@7u-hhp|&kԉ, d{{Pұrl3xisc B!ϲ3v Ƒ;-|' @S5}.`P:kL$xg J2ma]^[<=,|zrhA|"tlvRUj+:+"H=&ܗ8UIf@ M?],N~%_);< 9"aFhgR,9Zz仸DS@xlo (B-0am=-7!# &vB\g( 8Ύ#׆e/-aiW>KMv1eSn"5]권hP"z( +Qʯ`ĵP0TTe:}\nskiZ qKW%hp;12HiKDZ-/3y&j '`:4ʥyÖc'  prs,e/ܛ !R14Zmwk:eZj 15Fܞނ4%'V趄@Db4_"N弣}#ʙK ~#-.?@mhP7|7% *ށ\Y-gU=[}=7Ѝd9:~ ԏ?~SEPD]YՁc@Ur3e`7I-_ztJ f'*0-7 rAYMBXP!N<YLn+KfjGRT1Vqýj0j]rb[l:N}=y+{=xuԊ,eblQgl !쎍W_o$b%6-S wTsv@7XY„:Ƀ8/=H ,X)xJjŜz*E s`[~c7 <`w`^|f?@0 q-?,ԃh |M ᚶ]?% 1(KB#i1׬OjG83[Ȟ]BʥN%|yt`1D)sz38 swYdHl/%c:W'snٿ^@ܾb/Ӣ.Y^w͌Q >MގfbC,tf0O9(sq.>n8UoXѷU}sJWY/%.H(#BHV]Li$nc-[%EK=.A& e?sQ3#NS ~EG XUYE!3 P=[$o 4 RV +O#HCF\BxYL`U" !-Q-Ÿb硔9'wPb1_lqȠ"vV mx>+nͲZ?Fs F)0teo+wEÃ|h1/֝Nja@(@CEP7sG9WCnd֯5Z 8ؼJ Lo*8"KR7Z (Rm 7W ^{.s.ՊI *6CsP'Jd8|&itvhflE8 FnpH[9rlR}T/M KeJOkQ}`ԙlS/1s3(-P;OiO!@, hG$dR< -5o+GT^J)S+/u\~+O I BF(ub'I+Z=^Ώ¿P"×ߛU5cKQqvs{,**3ԡt rzCb4-o3;VebuvA!>=Z)[ؘ9 2"r6N5"o<^SYS\K~YncDaIq`TEN5j 9k^ݩ)ySj"8D9!%)MGr5~恠-Ͽz5?3{qp_Ms0]|z igrUpr-)ipQei?Sw@bĈ@;BՍScoWESNdGIOZp|ι]16Š&29kםV4;*p.^~3'X=z#<or=/js-IR+Lc͵ZUQ}n6 s"eցj: 71: _u6:s8]uich?E4* Yæg\tCg XMUBԓr4C pӢ]Y B;Ee2't8ؑro/4} NmGRXzNAPu"+ɦ\vx`5̇p C};U1o<Li%q`_H2%ϽC%J Wf&BXGHy+PVGNd3e%-V2~t>PfpgnU<wCT{ɓ7*1.l6UGM?WET1UYw^[/8S5kŽ@j΋ws]jFU<: 0eH ^*p CDPpZcPj:Eb(jYy?wI>j (B @9NZŨMCm|&OKį(]_|fnn؇Wy7,D_+&, d*{p:ZLƴ1Єm 4xPoUtaypMwB1@'a{pG5JJ$>[k$'kd8Z}/I 0,0R j^_vc<K|uW?am/~1ZvZBQ~*(~q֪ᙣq:y6<;gex*$u#Ӓa1ױesMlk/czx.AkY&jD=I z{~ɄX„7@ȰTV1) #]vL=/5* nj t:>S&Mŝr}&{VknS}G,|o"hV<W/R9[繇A(JddE4Nutj]tXS Dz9(IǗE7_E51hioKFa%G[m]n)i~VO MD.AM6O,.i6q7ȃf,rBs|.k&"p>HYg4^hN(\dSM:H3~[^,!-ՆPڪs@9 ώٍfuf۟8l Zyz^tVmq k>_*[n︳w;X[se0ŵhB.` T=ºX[_vyw&KGbZiOZeVq2\GnMbZ2/c( N)B楥qJw"_ J!x3CBO?)zLlSk;"Q5 +w܂(1Pv7S\e[%<(Ґ \w\:%7b^>q2 z~n^T'i殜OaZva}e_dI#;e ΨG(Q\a`j_QM":?|,!=>T d9; 2p-)) _И/ː<~QW!&yxxeL =sjt\\]~W3ZHѦ>A}}kcqk4+&)1__̦5`_A{ڶGSvnFC6]S甘K&lN/ۀb|A'I6K˹1Ch.:d2 e@JX7J: V<"Ez1U7tݨ_,Oz{!ȍCO 'gRyL1-2PQ~׳ =t3NHӸ\C2 C[:׹tYd,yA^yɖh t/??y fH5$B*}ptM\ǯXGNIV K;#`樵$6 vg=Rԓ=®o@=P`^]T)<qATrmt4 ؀O]`[w6A^y~j~dB)Zsk0|_1J J ֖M%vb; Bv6/&nxUV:XF:=uGQ:6cyl ҌjlQUI#_Qh?o4yZ!nDĉ̈́'tݲSWeDJVnAtC]4vJ!naO&H%]HNT^=a1 @&,sxO坱UΪ4)Q; xH2Ƭ.:EA=KB17ӟrOHnjP8 #* ņ vSYƺ|J("UJG Gc)|DTPa|݈H4@I}Q(DAmmd?'#_kuCC uUkK#60D^Es\ ؼt=?+\a[NK%zesϡVl\EPV E &xth)}v<}&&f[uzk|!h '`Àہ۴·8,H>xQW_f"!-wjH0S#?DaBoJN8h tF}$CŪKL%ϫo(6Y073  PxK#{G.!{hf?ӕgy/C*eL"Q~7o%C_AkNG^Pm1Lz‘ϷUPmZZ.#q~c`R!DWK*ꚍ W#x6Q%sɍ{W+|jJ G^_%n)^ڿJMnQ׌# j!>fz݂+pKiB?;"{U|28MokMKJ W1tczx=WmƐqG6q \AI(1r?'KAG?y DO@iCdkP;<$jؒ I+xƃs7zG\bI#U_0t\Ѻi;xX7Q>@A5yu0D\)P9SwWv5atYa o,]M 63#!Ke8y1t!{RUJwɚISg"oSAFsOo\Kg^Xt֊5-v@ɋ KJY'4O325Iس\k\SO3VL[ u~GtֵHa*y}̫JPY*BZ8FM.{ 4GW Y}""GPʅOg4@5< `dGX"{FNDj5>Bl5񏼫u9p Ӿd4 FiSWhp0M.?؊Y7ywN3Tei4eiz?kSTĽM{JRUX$E*Ze`Úd 8\կfG ~^1V!wyzB#՞ 0!a]Fn?*tj0< ԧ͇+̔ " Y<phy&7ֹT/DOoQL;Bp`^ͳMubm8&)ƼcXձqHË9C-J.)-X7B IoqтKTi3RQf5\i+TTëq~Cnĵ&']v>4x(lvX5 Ml:u)Fb BjIQv:B7r`KH~%ɒ>vj[55 WZawNh6dY9#"PMof97}tܼt(pv?47a3FxMtӃF_ĈDD% <ҥn4EVlдp=&Ms؅^OsrzFDv=L3l|S3]!Ȫ̉xo1:bw4Z1|6kf퐚W\mjM: v`Ux} ᰈ~eLl  5'&``!̶|y ,c&V^xI4*sD$I˂H?_ȃ`GDKIn%| d=k:]!"V%]$-W%ֺݥ(% \w%>Ȏ}(] S-,VVKR'LnNi '.^3y19mZļ>kH1kSk+Šx & ?0=q hC-K*EoG)Ơ TҰԺBkBqޏTxƖO&!7.^e7eTMaqfx$ѩ*II%:JPi5),u2-<К4j$a$uq{^ Ly#N@{$2!o0@5}=j1L<7GJ!.;dNWT(. *ׂWjLzrjʸofF 4^Da=\ Wi#}R? DٮؑuK'>k~]\zW4&,^gֿ :Ӟ !Wݙxer$:F** UhJ * SLhfzvv-2+L {.}uW;7ޝ"a~;cF )8i#=ժ)pj<m);Gn'OJ$7v/3SIyكM?N=B9Zb]Vk]u{vGCĖ^pŅ"L4u߼ Q6ECi%h(o} SfOP2Gf˯&֚[17S2Q@b~Sڮ)X\p@E ekRKeS&Um A;ߏOY/xgb /kHD5zͺd~iī.lIlyR0?YߣzjsHkgPz?{gI8.Lb@pO :R#."6it]mY].`3yi1 _%?L g5y!qc*Lj3m)Y8ka#ޣwR:1#"d8|+Cم SIL ~zn[ :J${%-9}Ie/9 Ī $l -{^?=: .(i=UCvʏ>.Kj䁗ϫq 2P!OTS|OI`-[ӠP~Sn.xrsw+N 0qXAzx^9](#04XF=-&2tӘO&̣ùUSO^kܭJ9%ⰺ^Z͙]+ɔv3D+O"w`ң<礟\^Nj+Ѵ#1e= :у9%, y5^%55C{L*騴%j=a:aqASJ?5nk$4/)̭=`X+rۦnlwG]~H,YzqJnן4InG5J5[U5alU 6MxI= g 0NrM%)MCdX*>xRS"υOk$>ț۲xհ]y^\O+{Q}d8Ɵ9(;j9E.y:PzE xR^xASیz} P>+SSE ؠn8sG";oV7нr>7+f0<A*dBGRsg!YpħMpEw]L'U# 8̚׉ZV#FGupV7bL}q*f-hg|D:?l&6 v4 E-ϸ_O̹0xXC߅/ tm'L[ UZ9dVMmዝ 9s^v>RlaǧBji lC` dL_ w@츜;D^]sN$F${2? \#*kBHItp\eⅷL!+ iilH3wܮhKS!JC;=, _ZHJHNQV&z0݈U-nV+fs:/qk*c]ݿgrA`:[3#]#g)m?U߳:k[]]ΝTzA.W ,C(HLvA|.OW8Xf(NОM۠ >;CKGAs-"B2d"nVM"vFue2P&ԫu%)8CxOQh^ 5 (h\s5 *żN8'62jiC/&3peZ#W6gA{,HեeI%(twEV2b^={ U ; Y|a|;[`{^V2G>VmǤKk:Ji"1 }5 @/izQA[!5F~}lU]|a3zۦ*B}q4f9=S\x:?ZODJ]Ec 6;>% l`@r!_0&kwFUЪDnTHfenH~ lW4N:ղ<#uZA2wBV)kQfsn%E+ f<W5װsM't n®X ൥e5m'@7m/d4,fdI"2+$eZY[x|d-~+ ;~Mvg0z 28^l:%('S ;{pn r|;`#18z6t:wR!`X,t/@x֚)NdׯM4zZ G:Aq\X8GeRISE^I"J\RS7- '*Pg'P6d;>ߩ\ZSeI3brvv .ML|`>x'2/A]QpJ_^>$R+@hմfXHq<|nh5"ֲ[ZfFAClճ@0א/J ky7Na:W%Kq{"cj3eShWcgk^zfg˰v>rj54/h0xjen _=hjhKV@h~#0 PGtQDsL)ù g1: /=dUR_׻g2~6;_ۢ+GoVNMhə-q1+,-O>mn Rh1'ē \T)@Z|Z= kTt.{>W ScTBejb/YG]זg:=0HUա"" E9D:vTJHײ g妱fC L{ 8y3ԚegEd9ʂnȑP"PPc ]2rxdAEtD,'2(2yAZ)vkGFgcScpSAڍ T u*<))1 oӍ&;N|-yOhg$m/bA+Rm@z9wC%uu^ Ĥim6A*{\Ȣ8Kڊ{=fœ%wQFq+J{@[?O:pCtm; CBzH鑜m99Z-g(^@zX(֚^#E%H 4h\ д2 ,F-2Dc?aB/2Py4[qD{ (asT'y{"$dϭXy GGQe95nY5ߐ]8Җ;w?x $3-b (HbER^*\qissR%2_$Jh!G }k5{ZȠi_0ZpėsW\u&*F޽R/d~-@ e]̔%n7֝?YhuQH47EP?Q"Eq 5rx.~*}|DV,)lڱFIJz  H4ajwNoQ[FԿaO{y qAkjOӇKRKƣxl?OےY{|#P b$p f Z2q <[Xj{.F&GTr޶ YZ