libfmt7-7.1.3-bp153.1.17 >  A `B!M@eeere byb,}?\!0&m{x~ "rø^x:AK_U)by)sd~ hWF7T)~k_qm:_Geȓbj|3m)^f3iT€,WT|X:LVڥSwbs-m(E#)L?\zPbOI(pHRp^'TrJoj%}-(!v"NWmio*gl>p@I?Id   8pt|        PU(~89:.>F.@F=FFLGF`HFpIFXFYF\F]F^FbG2cGdH=eHBfHElHGuH\vHlwIxI(yI8 zIhIxI|IIClibfmt77.1.3bp153.1.17A formatting library for C++Shared library for fmt, a formatting library for C++.`Blamb60SUSE Linux Enterprise 15 SP3openSUSEMIThttps://bugs.opensuse.orgUnspecifiedhttp://fmtlib.net/linuxx86_64(A큤`B`Bz`B_d8d7810c008c88f55572ea54ac8788356554647981f452b9b35f7d7460bc7d1d825c9324e70f8c839c8ba910543dd4a7daee243b86ef960594c11381a19980b8libfmt.so.7.1.3rootrootrootrootrootrootrootrootfmt-7.1.3-bp153.1.17.src.rpmlibfmt.so.7()(64bit)libfmt7libfmt7(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)libgcc_s.so.1()(64bit)libgcc_s.so.1(GCC_3.0)(64bit)libstdc++.so.6()(64bit)libstdc++.so.6(CXXABI_1.3)(64bit)libstdc++.so.6(GLIBCXX_3.4)(64bit)libstdc++.so.6(GLIBCXX_3.4.21)(64bit)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.1_G@___@_-B@_!d_c_@^^@^^]@]@]]@]@\\9\ @\ @[valoisio@gmx.comaloisio@gmx.comaloisio@gmx.comLuigi Baldoni aloisio@gmx.comaloisio@gmx.comaloisio@gmx.comLuigi Baldoni Luigi Baldoni Luigi Baldoni Hans-Peter Jansen Luigi Baldoni Luigi Baldoni Luigi Baldoni Luigi Baldoni Luigi Baldoni Luigi Baldoni olaf@aepfle.deFerdinand Thiessen Jan Engelhardt Luigi Baldoni munix9@googlemail.com- Update to version 7.1.3 * Fixed handling of buffer boundaries in format_to_n * Fixed linkage errors when linking with a shared library * Reintroduced ostream support to range formatters * Worked around an issue with mixing std versions in gcc- Update to version 7.1.2 * Fixed floating point formatting with large precision- Update to version 7.1.1 * Fixed ABI compatibility with 7.0.x * Added the FMT_ARM_ABI_COMPATIBILITY macro to work around ABI incompatibility between GCC and Clang on ARM * Worked around a SFINAE bug in GCC 8 * Fixed linkage errors when building with GCC's LTO * Fixed a compilation error when building without __builtin_clz or equivalent * Fixed a sign conversion warning - Dropped fmt-7.1.0-LTO.patch (merged upstream)- Update to version 7.1.0 * Switched from Grisu3 to Dragonbox for the default floating-point formatting which gives the shortest decimal representation with round-trip guarantee and correct rounding. This makes {fmt} up to 20-30x faster than common implementations of std::ostringstream and sprintf on dtoa-benchmark and faster than double-conversion and Ryū. It is possible to get even better performance at the cost of larger binary size by compiling with the FMT_USE_FULL_CACHE_DRAGONBOX macro set to 1. * Added an experimental unsynchronized file output API which, together with format string compilation can give 5-9 times speed up compared to fprintf on common platforms. * Added a formatter for std::chrono::time_point * Added support for ranges with non-const begin/end to fmt::join * Added a memory_buffer::append overload that takes a range. * Improved handling of single code units in FMT_COMPILE. * Added dynamic width support to format string compilation. * Improved error reporting for unformattable types: now you'll get the type name directly in the error message instead of the note. * Added the make_args_checked function template that allows you to write formatting functions with compile-time format string checks and avoid binary code bloat. * Replaced snprintf fallback with a faster internal IEEE 754 float and double formatter for arbitrary precision. * Made format_to_n and formatted_size part of the core API. * Added fmt::format_to_n overload with format string compilation. * Added fmt::format_to overload that take text_style. * Made the # specifier emit trailing zeros in addition to the decimal point. * Changed the default floating point format to not include .0 for consistency with std::format and std::to_chars. It is possible to get the decimal point and trailing zero with the [#] specifier. * Fixed an issue with floating-point formatting that could result in addition of a non-significant trailing zero in rare cases e.g. 1.00e-34 instead of 1.0e-34. * Made fmt::to_string fallback on ostream insertion operator if the formatter specialization is not provided. * Added support for the append mode to the experimental file API and improved fcntl.h detection. * Fixed handling of types that have both an implicit conversion operator and an overloaded ostream insertion operator. * Fixed a slicing issue in an internal iterator type. * Fixed an issue in locale-specific integer formatting. * Fixed handling of exotic code unit types. * Improved FMT_ALWAYS_INLINE. * Improved documentation. * Added the FMT_REDUCE_INT_INSTANTIATIONS CMake option that reduces the binary code size at the cost of some integer formatting performance. This can be useful for extremely memory-constrained embedded systems. * Added the FMT_USE_INLINE_NAMESPACES macro to control usage of inline namespaces. * Improved build configuration. * Fixed various warnings and compilation issues. - Add fmt-7.1.0-LTO.patch- Update to version 7.0.3 * Worked around broken ``numeric_limits`` for 128-bit integers * Added error reporting on missing named arguments * Stopped using 128-bit integers with clang-cl * Fixed issues in locale-specific integer formatting- Update to version 7.0.2 * Worked around broken ``numeric_limits`` for 128-bit integers * Fixed compatibility with CMake 3.4 * Fixed handling of digit separators in locale-specific formatting- Update to version 7.0.1 * Updated the inline version namespace name. * Worked around a gcc bug in mangling of alias templates * Fixed minor issues with the documentation.- Update to version 7.0.0 * Reduced the library size. * Added a simpler and more efficient format string compilation API. The old fmt::compile API is now deprecated. * Optimized integer formatting: format_to with format string compilation and a stack-allocated buffer is now faster than to_chars on both libc++ and libstdc++. * Optimized handling of small format strings. * Applied extern templates to improve compile times when using the core API and fmt/format.h. It is still recommended to use fmt/core.h instead of fmt/format.h but the compile time difference is now smaller. * Named arguments are now stored on stack (no dynamic memory allocations) and the compiled code is more compact and efficient. * Implemented compile-time checks for dynamic width and precision. * Added sentinel support to fmt::join. * Added support for named args, clear and reserve to dynamic_format_arg_store. * Added support for the 'c' format specifier to integral types for compatibility with std::format. * Replaced the 'n' format specifier with 'L' for compatibility with std::format. The 'n' specifier can be enabled via the FMT_DEPRECATED_N_SPECIFIER macro. * The '=' format specifier is now disabled by default for compatibility with std::format. It can be enabled via the FMT_DEPRECATED_NUMERIC_ALIGN macro. * Removed the following deprecated APIs: + FMT_STRING_ALIAS and fmt macros - replaced by FMT_STRING + fmt::basic_string_view::char_type - replaced by fmt::basic_string_view::value_type + convert_to_int + format_arg_store::types + *parse_context - replaced by *format_parse_context + FMT_DEPRECATED_INCLUDE_OS + FMT_DEPRECATED_PERCENT - incompatible with std::format + *writer - replaced by compiled format API * Renamed the internal namespace to detail. The former is still provided as an alias if the FMT_USE_INTERNAL macro is defined. * Improved compatibility between fmt::printf with the standard specs. * Fixed handling of operator<< overloads that use copyfmt. * Added the FMT_OS CMake option to control inclusion of OS-specific APIs in the fmt target. This can be useful for embedded platforms. * Replaced FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION with the FMT_FUZZ macro to prevent interferring with fuzzing of projects using {fmt}. * Fixed compatibility with emscripten. * Improved documentation. * Implemented various build configuration fixes and improvements. * Fixed various warnings and compilation issues. - Drop fmt-6.2.1-fix_pkgconfig_paths.patch - Bump sover to 7- Add fmt-6.2.1-fix_pkgconfig_paths.patch (fix for boo#1173270)- Update to version 6.2.1 * Fixed ostream support in ``sprintf`` (`#1631 `_). * Fixed type detection when using implicit conversion to ``string_view`` and ostream ``operator<<`` inconsistently (`#1662 `_). - Drop 7d01859ef16e6b65bc023ad8bebfedecb088bf81.patch (no longer necessary) - Spec cleanup- Apply 7d01859ef16e6b65bc023ad8bebfedecb088bf81.patch to fix kodi compilation and probably others: https://github.com/fmtlib/fmt/issues/1620- Update to version 6.2.0 * Improved error reporting when trying to format an object of a non-formattable type: * Reduced library size by ~10%. * Always print decimal point if # is specified (#1476, #1498): * Implemented the 'L' specifier for locale-specific numeric formatting to improve compatibility with std::format. The 'n' specifier is now deprecated and will be removed in the next major release. * Moved OS-specific APIs such as windows_error from fmt/format.h to fmt/os.h. You can define FMT_DEPRECATED_INCLUDE_OS to automatically include fmt/os.h from fmt/format.h for compatibility but this will be disabled in the next major release. * Added precision overflow detection in floating-point formatting. * Implemented detection of invalid use of fmt::arg. * Used type_identity to block unnecessary template argument deduction. * Improved UTF-8 handling (#1109): * Added experimental dynamic argument storage (#1170, #1584): * Made fmt::join accept initializer_list (#1591). * Fixed handling of empty tuples (#1588). * Fixed handling of output iterators in format_to_n (#1506). * Fixed formatting of std::chrono::duration types to wide output (#1533). * Added const begin and end overload to buffers (#1553). * Added the ability to disable floating-point formatting via FMT_USE_FLOAT, FMT_USE_DOUBLE and FMT_USE_LONG_DOUBLE macros for extremely memory-constrained embedded system (#1590). * Made FMT_STRING work with constexpr string_view (#1589). * Implemented a minor optimization in the format string parser (#1560). * Improved attribute detection (#1469, #1475, #1576). * Improved documentation (#1481, #1523). * Fixed symbol visibility on Linux when compiling with - fvisibility=hidden (#1535). * Implemented various build configuration fixes and improvements (#1264, #1460, #1534, #1536, #1545, #1546, #1566, [#1582], #1597, #1598). * Fixed various warnings and compilation issues - Dropped Group tag- Update to version 6.1.2 * Fixed ABI compatibility with libfmt.so.6.0.0 (#1471). * Fixed handling types convertible to std::string_view (#1451). Thanks @denizevrenci (Deniz Evrenci). * Made CUDA test an opt-in enabled via the FMT_CUDA_TEST CMake option. * Fixed sign conversion warnings (#1440). Thanks @0x8000-0000 (Florin Iucha).- Update to version 6.1.1 * Added a missing decimal point in exponent notation with trailing zeros. * Removed deprecated format_arg_store::TYPES.- Update to version 6.1.0 * {fmt} now formats IEEE 754 ``float`` and ``double`` using the shortest decimal representation with correct rounding by default: .. code:: c++ [#]include [#]include int main() { fmt::print("{}", M_PI); } prints ``3.141592653589793``. * Made the fast binary to decimal floating-point formatter the default, simplified it and improved performance. {fmt} is now 15 times faster than libc++'s ``std::ostringstream``, 11 times faster than ``printf`` and 10% faster than double-conversion on `dtoa-benchmark (https://github.com/fmtlib/dtoa-benchmark) ================== ========= ======= Function Time (ns) Speedup ================== ========= ======= ostringstream 1,346.30 1.00x ostrstream 1,195.74 1.13x sprintf 995.08 1.35x doubleconv 99.10 13.59x fmt 88.34 15.24x ================== ========= ======= * {fmt} no longer converts ``float`` arguments to ``double``. In particular this improves the default (shortest) representation of floats and makes ``fmt::format`` consistent with ``std::format`` specs (#1336, #1353, #1360, #1361) .. code:: c++ fmt::print("{}", 0.1f); prints ``0.1`` instead of ``0.10000000149011612``. * Made floating-point formatting output consistent with ``printf``/iostreams (#1376, #1417) * Added support for 128-bit integers (#1287) .. code:: c++ fmt::print("{}", std::numeric_limits<__int128_t>::max()); prints ``170141183460469231731687303715884105727``. * The overload of ``print`` that takes ``text_style`` is now atomic, i.e. the output from different threads doesn't interleave (#1351) * Made compile time in the header-only mode ~20% faster by reducing the number of template instantiations. ``wchar_t`` overload of ``vprint`` was moved from ``fmt/core.h`` to ``fmt/format.h``. * Added an overload of ``fmt::join`` that works with tuples (#1322, #1330) .. code:: c++ [#]include [#]include int main() { std::tuple t{'a', 1, 2.0f}; fmt::print("{}", t); } prints ``('a', 1, 2.0)``. * Changed formatting of octal zero with prefix from "0o0" to "0": .. code:: c++ fmt::print("{:#o}", 0); prints ``0``. * The locale is now passed to ostream insertion (``<<``) operators (#1406) .. code:: c++ [#]include [#]include struct S { double value; }; std::ostream& operator<<(std::ostream& os, S s) { return os << s.value; } int main() { auto s = fmt::format(std::locale("fr_FR.UTF-8"), "{}", S{0.42}); // s == "0,42" } * Locale-specific number formatting now uses grouping (#1393, [#1394]) * Fixed handling of types with deleted implicit rvalue conversion to ``const char**`` (#1421) .. code:: c++ struct mystring { operator const char*() const&; operator const char*() &; operator const char*() const&& = delete; operator const char*() && = delete; }; mystring str; fmt::print("{}", str); // now compiles * Enums are now mapped to correct underlying types instead of ``int`` (#1286) * Enum classes are no longer implicitly converted to ``int`` (#1424) * Added ``basic_format_parse_context`` for consistency with C++20 ``std::format`` and deprecated ``basic_parse_context``. * Fixed handling of UTF-8 in precision (#1389, #1390) * Added a CUDA test (#1285, #1317) * Improved documentation (#1276, #1291, #1296, #1315, #1332, [#1337], #1395, #1418) * Various code improvements (#1358, #1407) * Fixed compile-time format string checks for user-defined types (#1292) * Worked around a false positive in ``unsigned-integer-overflow`` sanitizer (#1377) * Fixed various warnings and compilation issues (#1273, #1278, [#1280], #1281, #1288, #1290, #1301, #1305, #1306, #1309, [#1312], #1313, #1316, #1319, #1320, #1326, #1328, #1344, [#1345], #1347, #1349, #1354, #1362, #1366, #1364, #1370, [#1371], #1385, #1388, #1397, #1414, #1416, #1422, #1427, [#1431], #1433) - Dropped fmt-bigendian_1.patch, fmt-bigendian_2.patch, fmt-bigendian_3.patch and fmt-bigendian_4.patch (merged upstream)- Added fmt-bigendian_1.patch, fmt-bigendian_2.patch, fmt-bigendian_3.patch and fmt-bigendian_4.patch to fix tests on big endian targets- Update to version 6.0.0 (too many changes to list, see ChangeLog.rst) - Dropped 0001-install-pkg-config-file-into-libdir.patch (no longer necessary) - Switched to MIT license - Increased SOVERSION to 6- Install fmt.pc into libdir with 0001-install-pkg-config-file-into-libdir.patch- Update to version 5.3.0: * Introduced experimental chrono formatting support * Added experimental support for emphasis (bold, italic, underline, strikethrough), colored output to a file stream, and improved colored formatting API * Added support for 4-bit terminal colors * Made std::string_view work as a format string * Added wide string support to compile-time format string checks * Made colored print functions work with wide strings * Introduced experimental Unicode support * Removed undocumented basic_fixed_buffer which has been superseded by the iterator-based API * Disallowed repeated leading zeros in an argument ID * Deprecated fmt::visit, parse_context, and wparse_context. Use fmt::visit_format_arg, format_parse_context, and wformat_parse_context instead. - Removed upstream merged fix-fmt_pc.patch- Do without em dashes in summaries.- Added baselibs.conf as source- initial package for version 5.2.1/sbin/ldconfig/sbin/ldconfiglamb60 16149900717.1.3-bp153.1.177.1.3-bp153.1.17libfmt.so.7libfmt.so.7.1.3libfmt7LICENSE.rst/usr/lib64//usr/share/licenses//usr/share/licenses/libfmt7/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protectionobs://build.opensuse.org/openSUSE:Backports:SLE-15-SP3/standard/635f47ead8b0856f308f5371f208a3c3-fmtcpioxz5x86_64-suse-linuxELF 64-bit LSB shared object, x86-64, version 1 (GNU/Linux), dynamically linked, BuildID[sha1]=722c980b74540651adda1255fde4d6d51ac30314, not strippeddirectoryASCII text PRR R R RRRRR RRuI's*DQautf-84f150e306fc3d3387fbfdce13b401a3e18ff88ed3ac7b6464d5229f1795970df?7zXZ !t/JEOW;,˓NfRC#+C"a?ػ PTYv#u>m/w·T"3:ڀweLԚ,Gq /%d?@ymLjnKJ5lK)\rv)ɺjY_98j4|wd"m(w? vqLQV?k, #"v݈vHJela1k늖 1"Ÿ_mg~#' ?.a*@GK}y-hw(ç%\cX1`ڱ.Ҡow64дWU*F@qEp giJ$1lXm%̢㓔Az{8VO`3L"n+1vM'I4X%E\@% t@EsϭBh>><6`"Ч p+=|(߆y|RT/f i,ўt=[* 9\8MtENE]Dag{8y 䱡| N(glǂ={/E;0QN* ]ۏ&/>d&ۧ^$&V< &Anrw+Z[^b"šD]I{| [0m2]8zw8ɼ8r*aJC0D-jJ;8XbDBuS4WL?.wD{05 E˂]}UF[LSP[:9LTv@?1{G %cN ~dz3W`\ 3ӁmImSoz e]nUk<ϔ]肯F -#+*UBỌׯМ7& @|_&-ֆJf h'ĶZ1)rZRK=ԋ6g',o~9. 48.L H#h߆˟ӖĆ,?0*j:枼|0ܐ#!ZSESx\uJ>J2zL7,D`=H; ?)Kʁ,)0P*_صrk.'؞j巓Q6%kt3fvq>GO_yKvI=fBsrBc"RX.Ny6:1?QyJk c/d&)gEI=O6XpR " L>j_o3ڍ>#,[iNkCPyIXώǤ${Wpwbϣ k}3J%4,.8I{F-O{{*iJOA#8kjG%h£]vȹؖ; "7P2pHjQ_|!$},8)Ee$AW-(b-}T%.&( Plٌn$rA-ѧHry*.Psmq!,FҵfP0It+ Mt٩7SD/«a.JŴb8kGh AT V-XD^Hsj~JVJOSz, +-Dࡓ\rCȩ _! 9vfeɬT2@̀+* ` ( @?QoN, Fm@u,Jy?ۃJX]C:wݶQ5@\zDsFRB9L6 fFlAtTr9BTXTWO&kV|H78ſ2RsCzw{g1R 7{ JGȺѮ$^JU]&$U,2 iu;&zPrW*uF{iU 0N=r.nd:G?{ޜd{%f=Y=E9?H+qI +Gxah՞r^iMgNrpo?S@ nk\"$lK$%UѪPzy79f7*Ti̯zH]W=(%ŗE?QFKiutFDB7RiZ5ij'͘/ +#_mM:i1h2,b]&/v],K'a^t%"O1H%s2u :, s'CbkD,l䤭B2w3 -\BM4<첰FafG_V7($%,Hp!-e1v\ Vif}# {.V08 y5נ/b.5pzB-kp눭Jp5Ji"m>+w{r,uR8 &G"@n~+Z៷78ŪAڹHT;AUh+*2&޿DEQ&GB!1GZoߐ =ǣRI]ޒ4:B䖅>VQ?Tʼ1Jޠ]F)hBBsMRAa6.4F]N) {kW+]l4=`u=\5",U3/jp#9hhm}M[F0^͔{3Y,ؓ)suD#wpB4A8NOŁ'eS y֓@d2q j.|G%%xy Wc _Kjqg09fK^^*Nl>D.Xţ@MB:ÊYy2]/+[7X8@b!m1Ri͕>oMG625#y0e\! SMR*&RZk:(!z ~> [Vnt\3rpL }_GVU"w y)p7XfeoPdhKsIѻ,Z=bRij5܌bWt$!^U5ۀxjl"3'n%p+ZN[YWi$a>B (K!Ś.='{}h@?QN+s>mYɹ'8ڶt_lb6ڣv p:{:g stS4yI>%q25b^|#3(M綀wè9{xKIL2Q:MyC'[m&k8hOgWw0M̀q5xec?ռ͛9$V>Rj'0q jȀIl|Xb *S\wGy: ]XRɬ, cfg=cK&>%/6p]n&QYlř۰V.5_Sɔ |?~ h?=p h|g{Ćj[k/> 5<_~MZ3RcM`aG+l4UAI78go,KPmmr]P|5:-=4ȫcat2zIHO:v4s ~Zɚb xqv'e~%(oI e 3ժSn;eX%JD%ƥ|9VXHDo,+ƕ7ʰDLϯ3)V/e&JUr( WV8hd'WfIڗ*OH<7z|.rxB{ѓ3| PeSZNlcΨ?OA=#THiNHS_}Kȟ/khے۹ \Sv\Vf=_6ij1l wq&GC$uUE!G6'XLSA'z]3jOT"([RF<-i)aXR.k٦i-|9ݍޚSd*`[ف5r,-ؓZ,C(rDV^ 0YHzٸv\_LLxtl*s52 PFZ Q&!z2}F%D(Վ:lL?DJ!)F>k+.#~U*$>e$[ҵ ݴt;k=%ͅdZ~b9Ur (6ތi'5r\7~sSd}L4=֍rCҘ 蠚NXJqS%_BٶO^-ŧx8N"P/Z0I&2~۳ɚuooYjcmdG媂g t5R,q- l=޹-{"@ι/Z8{&?f-2U Kǹ/Pkճ{Dږ1r'-=,et tY9_GQG@I`GA5DO565DQL2ʦc[+JǙ<œ0(iO ެkVbO<{7 7(4QD6Ib:r_ˁ،A+׌ȄXCvVr2 W@@2ߧi.oE~\p6/BI~Pt~W-z6Bo\bj@g _Ijc(cg6xňsX仹 t? Zl-xym&Gc|:B:sћ\\Jeql38t&:^r 3OGa؏fJAl\"^.8VT;k_8Z|V.6T^4m&Ⱥ;4Zۼvᚚ)\-?!jC/?yԄЋp &0/Rc)% Lg{A"䎩ktJB%05#ftD$òf@9cq9k Egɏ,Ruc[Zy9]JWe>[_!Xz%KRƴP̤ q=_͌FYz!_=7ԩO$0gN2Q^yA#->~e˨KB\%Soe{YzGV3@N~o|oFZOn%@Rnk|%⺯n,2HZXw"Տ@%JΞ6}@b߮mC?X+K\H]:ixE5+jLB+ՆOaf%dү(!rk`9Gcm a+f#|W6x+=AJ%4;2@mCǃFoM_ _E@QFߠ!v m:)'ܼa\0z߭Má`Wͥup_KЉoԵ$qe!uaFb|g;TϽzG32 .'Rnô- Y)83y*/B@2'+WO BsQ9>LF,_‡_"y$=?aNdV({|Mm}ⰶ\σ_5>+:%_'h^sHXV7M23X34t ?"3Vvy 鱿*bvn@I銪MDDl'mJiIZuFBtAޕWbpbl sY.vOdi:TckzZ@D{w}6-iY ?*cMz%Pi7RN$Q63KT>-I!!gYFT"YtDAn-xדJE̿ bfb V'>&P_(KZ8R7[`ovڿCADDY Fidΐ' [swL=8f\qʿek5Tius I% hsʎ+s{j}tAԷ_ K JkZʉNPPR6UYLZE @Ajl5ɍRlW*̰_$AU SʩAѰ8hە{I4κ,u&2 NLEoGߒm2]੻J"YHtOtB4>_P+~P/ֳVYSYi ,Iz)ؿ6tTTX qd"LBC*p?j" o-dtPQ U&1{P{J`[e5o7?rM'2ք!ْ!#W_TBf;Hx d°Rb. m=QQ\MAu' c2dC]mM$K{K:M;uґq{b OYHϗbDZŜs.f-f2ާ̦c&f- ?%&ˍr.N$NMǥlY&NhHȏT P, sӅzEFaKluSvx.Q:hySQ_uJf0{&?𵊱Q 7, ζ}t[>!f8^/pbw &USh@[h7r>B7J^t~Q0n0@zT Kvd# (`IDXL`Y/Ҫt Wt:ĺ13 %_"І90Ë:a W[:8dׇ߳XWܔB/:FI6ߘ"]ZE;økTD;q@3ۉ-b׌Sd\~3^Yv%5ua;qU3fa?c?G J4|>\z8SCHEzrTԇMw Lz#.tE`w?TcEPkFƳAָkU P]~ܿ~ϠUUj8x*D-gĚ\_x|}5bg7E(5axB?)сa@9ͱTTHV0_v-nڍ L榵XFl8xJ!NWsN׋xR~ 4g-C6 Ŀ A sVsZjQ3ܼSgOL_#lJP;{Eٜ̚WMEn•_+ʅvnۄfޅe' V ~OzȳKCj4ghna]Y & jŒ%_N*|O櫂{o(2G-nNLc&-J.+b N񂲃 x%~m+v.\oXq{Vtqddh_ 0e_|(Mbh'i[?晍v Lfxp_ϡ@JMj`qf%' yjafmXb V| ƾ^9q^ףcvd;dDX@)Mꎬ꣤it>ɄMw>BR?]9vG|}U;ҁK֚1ztFI'ѰdV6.E W1s-OM~+9R+h>CjRwLM ,U-)Qlŗ'SI^bE.pdiMʴuusZg{ƥ¢jq&|`]7 dߎB{upwfiaWQ 5ET "=sZϑ/4p褙OlXJ(cTelq)B KBӨ?MCZcpj22 We'a #Zoe ek-<ӽ<l@>ԄzĪ45Ml]бr5spO%̥0zVTz`{/e3-}`P(f;01_兣 RWc0  -?Y,p;c!;ڪf&9{ct-q,J֯So5*\1U24(wbq=@.@G1i.*+Z樁k.9).#b>9p;XAIkB 5]̱! ߏ'jkE6nq@;%qxcCcg]dK6FB|+o߽6^F 9˛<ѣҐ}Phҧ9ZaLjT|g4Ɲe2>rf.vN;+mMH: UM%O,3=^Nj=8ܥ,/K27w/DrH*Q> SO} A+嘏@i=qu8|_Z,&(_3vx"};%{"g~˼NQ:a)_l?Tȳb-木x js9w;LRT$uChec#}oчЧ,rW&ue3y6$myu>%?gj)O1!h:kL|Wgh[O0*̴/B0r}:"{ >>Z3AF`Pt)",Q2 WzKWy>LRbu픝em[~$$F*<7VA( `V\"pa۝}0G2dF Rk#@6l@J4)::n>۞iу4=s{STmc#/lI9M9^3 {p+%K.*H (fTSP&tP !R WHDA=1䛠s*iāE(.!,ѽfKVKKӗ}Ud52U4-}n :߷N*:|Lar_Dy94MD6/IC@.itg,8b)@n|SL|l{̈́oޔy5}Yy1ȇ+E,zOs!.Z쁇\1]ߵpVm>ъ(j"@ǡ}D9)fmdq>AB-g14'{`T9 -œp' POYmz ޒX8_.5Q+)+[fZBqXT" NBٖ,UټO9XS|&[&$FWT UMmx\5nNNlk$fV'L ^$"vl'USCMarEY4j)L?%YYLk[A,ޡ⳷%$*b". -oAiW;8D`#xg,Oze D'R.4X5~IHqXަ0T{daOJ2Az׹[5PiPBBNEpøfx'z=tMڌŒS !{4xK_|BzeM- Lڷ$ Ϡ:2kPߜ3|_2@v ?Y4L8hBI7JʎK$gi˴J|#z@-|#1l)V˼uពۥNYb {i&HRxg,̷r" L0J5uZ/^@[ )栏Η6rT`R(a+O13<),}ЮnZ^z<Դ7m}ѪHsI!{G*.9n_lˢ4˾ h U] 䵡݋\Ӹ417n/G)fxuZ}(hk+ֳL rChlK[D-G,Jݽվ?_q!eF*WG6-B8uK4֌!KiN/G)[:EC?Xŷ-~<8ɮDg.s#3|Gv*Dv_n6N?~Xw ږ 7?ln$p5t+·qӪyp&X ݄MNKjOݾS O= hA}x^ KWpU?%A a/9ſ؏ִk2/UUn 0@D1Pгjq@/" oCtkRqx$V$|2iz> y[z  r(XW~Nܢw|J>Jxه;>Km/.`nJV5/imM.լZH_Rf:o#^,(',qI]Ru 2m%qcGq_*/ ~YЊuL6)=i [5Y#L|ۖس:<;Tq*+B}֑|w]|5} vڿz]\'?Zp], XIV U?Bq\˖Nd(5(*PiŔP 8^]!hx [%2bQOe&m^Nx''LӘd*0N(ە^heL u9*i)>Qe))|`!`D0_ֶ X{$ R .|Wlݸ1եpa1Q`*;am{ZR@BB䂽{ԒgрDem g^fCD6[2{nMp:֛(Ν'mݽQknfR xVj!H(r.>*[dl/m7:vBX`:\'2đz(D`͕90bSlwgūXH5!lVg$TI+)\W!n_kQ?O~d,+Uz@vYګ VFB6bs |}_ ~f/g);,(o|RYcb#'vpKP$P!LauNu#ie/M,>kޡXTg՗AE>fmņ:GiE\.n eoN0RBHv/g$O}&jo耉1CvLKDy6S?OȌvEJ[~cɿwų)Ƨ!!.ޅ `,&$/mo;HiwBfOk*DgP?, ݫt?"?ckn&m~XTv7wx'?E~S'rU[|64ƮbklA†MX$colu*ea ?_N4\!+ b,%A,[O@}LcRN=/ dV|'{pnF^a$vÜu2)횝_p6ͯq4ːe/.VC01\GxㆩSvh&ײCR/D!R,Hx¶D#zhS}45-[ #.P8m/ڏ2H2 ]n{n 4bڟG܆{M}:hvGΔ~ [ -ni{ys%_3 RVxvj2D2uAf b5^}d L@7Ml#ڮUKBVhdk"L~>\+ɽ l^~ 3 ?цdpܹ_QP#ـC'tRq*[<%x_nj[Ip !c,T=."A@by68@U,! -3YhI@/z*=_voW7E+s"t3SZ}F{LY7A$F[؉U9 ^ ]$jGLXtCW8yAw31bM4GTbE[K(u4ۘar{Y@ Df@: hɋYFvW&ߖy?j|ȵ2ƾ46GpO44&ߵHC#}62O e UhF^߷n^?|:O%`(G֦/2u0Xz3^и, .T-4Y F<1Oe'|Y-LdFaxp05(z8մ&[0V!.u$Y:vɌ倷uI)c'k7^'=(ϰd2R3`L\@D'Sm- к^MfPTw:qh錭+>b]NzlvԚ[{'n+)pɣ߲S>X-;aAAo٪* 7I"cD/aH~m[` QB֠$PyGؤ*1W0JjQ󠩐3Q;RZ<֮.a#|LZ[ wk@CRiy~ T$Rh@HnEl BЄ~țOה]ԍ2 H!SQ4sU |i(@L1`|~Pl% {цTD 2L ?17(An Iup|L_=Vw<$t885{4  824I$eP_H墉͵ bru~t=/ g!*,tzV /\m驌/CHDJ9Oz%;,!\WlOɳ\YtdzxCT&e(;j*4(gŝz=@#$B9Ѩ]K\|BĹqZW hGڴ]lE䥉-ƒPBAz?iiƙ@_%bzUL!&ť|,okׂBʊq'G>r@5Xnl9f<2x/ƀ6>Ζa+qR[LmE*iis:I6<5X '!Q:L|s”baЉ`ɚE\{-ݵ"!#9']KK'd<+Wa m?e9sjW6B`=4E&ϪT[9a99꯯ꏟAXzl evU$f V@Rjص/׹:¨/ZU*4z׊͝"V}kW w@)xWGMƗBkJCq@9\й5IO\·.fF'խ0Sb Na~}oZl=~EfgR^_`xV]5[v2Gݼ0a?APB,MC O%?3K"%ZG+"1t!x/ (dcX#B njrU=\?}gAɉTC{q  …|kq3l +<.<`L yL c"\`fzYs*2{;]&s@یS2y!ݝ+pG;)Lc4\R$MjuE៰b>t&11G2`@i~JcҏZjg]ߴ`hJ&E%^"^ز9ؔ])e8琣B n|ptj\ qW,+ܑw6{/xn4!TT) AaEvC Fu;YSą*Wlmbqτ»yNa:KL$׿ش-sp~^j(4S\|X ,n3F%.#| IYYL^Xt ‹b.-~ (y$X}:T y2X7>vM*$ )ޝ&س\4+轐!bָrW- ,9]BQn幄]FJ|JG~B2"CS04ߛkyʝjBcXʨJ̠r-l+Ss%[a)PotA [R~*a=V ꚁvXu`sHd2N_𦤻Ies$CHpڅaGa&Wm:w8_ uJB9{hnיQbz`O)m?07j1;'OAOVxh?Ä́*e*P!1 Y>AN ܨðVύVyK:s=TrwS[B+v/n[v կ_tvN9+Ğם0{l">)8W+<`314DyMNVm]E.xU, 0,(CvdzصH{ ^{BGRXA2m+.di![˹ ybJTVml~Wk6X͏rvx[ 2 oޭ&V{IqXX2w:|,iQٴ=En쪞f4dƊT& U|&<"SÎZT`4̸>R"eC䳔[;L1 r]Qxf NbP5ǟsR5B7οw{*93,{l g\YޫCݢLb^uDg;D5 s^̶{T#=ZH>6KQ '*.'Y0n"E$@z6]l} ;1'IM @`Olfʿ,W3"3kݐqQqIvO4s [<VnlޫZ#uӒ:Tzn+Qu}%' cƱj)e~ 5HR-ܯOz?gLH_~'gnu<_mL!uaYK,YLRp5znԙI~`u:eg$71#Gq79,&'smrY/y!Xv991rG(P,?8pO 6"}.ZWRItZux 4,[uN6jpvAMt- `Šu `ي/a"JkLv8x~V4Jp?NOm6h(AlGs&So)8x:^Wx oiu.y=cI5ND]ݢTZ #0fZLH䇭<#Lm{~IoLRn&>!17`x+2^j5yH4O TL2B{#'F1ťi-=ubI!cu`ݮg TqƜh"am4LGF ՏZ HO ζV|ոr6BNcC'|xfޑ*pK$'M`:Q9&KKv6fyJ8"0xf*+X4*qc[]ۛuHz9/ bu D3s.@ZѸ*}gj\7WIWSXy&^w\ZpA}I<=OGOĩ:L7,Y zZ] Nɲ{wH" +Nl?12l,>B.Jp*~A8۶\Np`L\KM^'JRAK.b5A z%ST6S d'tf;]Zǝs,YiFPzq lmҾH+͇ ffEff W|kӥtԵM _wJ߫GbM?׸izDW>Q5mT Nwk{{RT4]zբSrտnQ?R'9r/13ulT%DC $%+E L8i!5!.Q؛?(-ߝZ".Upoö6zѦqo|#qEԟiN6rb-"`e_#&te Ep_!ȘT+θ&m%B+ bi'c +yDC)~Bݓ9tz7xr.,_єeIVHEfX5o:K!]V= L#tA.ֺ?jݝ\7sbض*``⼰Ϯ?Ioo$$>^IsUKb OB)<4Tna1~<` e K^F4GsdC7n~T5Urz7u%hEfOIL$ %*jSb֫ھw~%<9Ud|Fm]^|ִH,4Hnv]򣡪`F@JҖDp#/6pA|aPˣ4$0Vj\wm'X)2x#O6qiDValӯoy ZW@RE2sFb^2eOMiRGdv`h7hM- iORg) =\ߏcRYO}D6 t ڙ%꛱ͅJt ]r+4TS5E4rl-2sG 2 i^z;=!(ڕRA:+AA!O%!Z8@'HLJր8[ QgڶW{k$)z䶻S`BEs#Gp։/ՁD8403xO*!jw*iA_` N Ц{r&Uaeo~IUq>'Q@c\IS 85p=Ҹr`bmNyXsloLmlF^NR _m3\LU*6]٪TV=-{@ɝB'A@o{Us 0bWHAw͔hxs&%~%+J0i/S8s9Oz;*N N;N?P.TsMȣW]A H`?/_\Fߠ3UvN['vۣ,Ut-{yvWг1iPKssM5 0.+ eƀwyӜ(溋n/Jc*@)>y,2Vnj9v1 v>~q#s@@ughY-HŢ/^-5Y wo9 ; OFB^m8W\?ơ#X"1ܾ|. 7ۡ ]cf3][Kmd^/bp$/B @_űGc!x?:X30̋DۄRE#ɪG]MAH"5L!~ z]kMWdC+9z,Ggܦ\`/ OaX&s ׸8HLܞ7=5bOgՎZbb,Ћ1\Q6#TZ̀8&_RAh3SGegcr $/D}^;i6&g`M*'Z]jvݞ'5'߄{s#  顜6ƎO Uelo KS=[K{/wk9zK415E9\>|)wXDcik!*۾ҟll*g e7M[΃2os8Qgk87Xk=žC̓& ?1)>Ū=YZ k˦VӒM*XKug8bSam3#j~,_i1 7:XH GaN$Y{OCѣ ıkzw*mMg;!g:*zϖ@WޒG@WDt/LZs[U%It ioToG2YjaAY Gl~C,|_Cyo0Td6d^/WXore8gbܡc\"dQn]l8ܓJ~L?R& jz+yшy\etsoצ0=J]ȂzA|:-nX3=ׄ˚ ͭϒ]<ӏ.[XX3Q~5ߨQQ·s!MfjQhd+jk-ШD9))`~ 7/{$Jf-`⾁Ƥ: pkn}lGc e67t-Q,O:VU6Ӵ:L?\ Ř7pRwZJMߪݬG(_߲0\,4#w D<A^M1{ KX'vpfQAUm{0"kƌ3529 }=2P{ VnP'ƹjC|L0k pKco @.5Ǿjƹ>Gڴ_V\{Ba\ :57ǡ~|Grj'z+Z U=XR;[d[ ūɳ(+lH5C߼ 4Ql7RڠIGM$c> VwsТ?%~(*R^+~j/d}XeɃ {G`̶N W^Zko!vE?FY{9,3Zc;VyGqb(4xs"6lcQf2 QI]Ĭ 52Q{C&˄T'o.ꘗPJŒvn/]EWECTꋎ2MW^Hw3{v0 JP#) þ6! d)bQ_U/hNJ56>| 5m6!2n:~NeKb+dE\E>u1hЍOtP\ë3oC»yFJC%wj7j̰5!`LYQUv"AWmZ†w,48rcsM@eH^0<@fDɀlj q!#m ^j3}&r#XO+d.!=Aw̡GX: 7r+^b[) ZNS E.2i2 ӆ?HλpTcT 1 dlE71k%[(EyaQ}r-.ٴgFVNC(#|Wh 5Xeٱ86P*ʨv:\U屏ʿ*7'3WWusLR£lMOkM$1/&yiDO6z cEPh}PچhUqm!:N\SVY+L՟rC n.`{gۑP%43-8.sP竦^^_:ń:z2TS1֯. ~+PV G*nm?xmZctfccۺ⺨zR|0٣+Z3gw42Y"u+oLID78jْz9qbBd?˦t#.z=}Zm]xG-X2i~M!;"tN&v+]n3% IDns?ΉL%xt7$C(3u(ix'0cL;i2[T`EĸmtC0kk6=9H>8Q Q2ʰDk|p {|nQp# ^ؠ}K5PUNs0N"9ėd}+lj-Nsn2xR(B }0 UԶD ^~<5[>u,~@~vjDdh*tKÎj-E2d ڞ$H'*\!ζc3w9[k~%tcUJ.bø$Tf`CKxg_hD0eG;c+Umbcu +y߾Wa*$ZVϯ0:u_E edS>RPpu/ܔ*&$ik#O `;Q2ke709~ѽtr$6ȫ8fJ|bمM5vQ$)".tj*x T6j%Q~;~w-W;?.-gR SRI" #JȘf=GeDžf6vGH^1 wq16 jp3 {D=>Tl9.!c{sGڣ>fasµłC3>\̘Ϛ(,KQE`w.aM,.O4nHyk0é4y-/1#u]JN!J0is"056ve8^*Y֝$N_Fea7H/IE&m=Nf>#el.d6 iMF{KHK(ﰎYy3PIz|`㋰M+H dq>WrVH}Rq9QKrUD d!r4d ԮRf *kV=V2";L.\:2AD7a7[CD+Wfj/dI*ku&3@ޙ.?3]y7o9ITuӥӰp4%)WڊcՃ]Xd{Z=u)NI.moNLʥ !ج+2{[u&'ԒU SBOy"W P=f Y=iFkm 51h/> 7ۖ0zsK"a)V) z5J7ɢ(+$DoF *ZDqWn|Ӂ݉hޏNݞj}d&uCF%QU/w[W5/H8= .]!벯ԐT[@T({_x]A66( ],!l@}[jGkg f(/Ou,ˆ0 u_)D,n#}VP?ke_x|k̻̃[#4[J?RJ:kdβo CՖ:їv¡xQ hMKau{f~VΎ#MXDln·>J*n7$= _S|i҂p/3#ŰcۄG$w!DZoC!i05EmAҏWpi8;2RvCۄ@V Iw#8sNE5$P! /-wlq\Ȯ$׉^!;+֢s%JmV]IlVߗ`Ub\5"/T#TոUf_v 0X`ϽIl PCX!z^Z0F:SOTT׸o'hi #a/>—EU bzl)oB {lc['w?-BWTj>^4j\ن$Imx&Rj޴zVʢFSSd󬟨긴m(~K RRic!XmsbɨfekY,hG\/2ÌV}l>S}V(̓aL{96yxOJlZ./ԉNx]p0@/sբ!/sd+"c\Μ-dK4:,x oڌT`hыGg߁sɡw3s\=G܎ :%n6L#&cj'rE<0$8v?Yu/:!;Ct\n>wP @Vxs\zGP}\D6kJJ߫{?]pvE@{{Ys =Tq]U!8TVWn.iPPm0S,b)OMWR QZ9A@^fIz@Ʒ$_:=KGS"E%l9PTɄ |bi[*'P$9]zBQs\untj\y<'5O}Y9[2GP% ir`uR<{Yǖȩ_59ny}Gst^pօ+$%S(]*T59SiK2#;\vbe gu'TDbZ*QW .On5= ==kbև[5'0cL5tfp\!f`tB|HQw5vC(E.= S^wUtF}@Mwȉ3(#EV &98=BXZx_L`uVDX8dj[LjTľ]J d6{5OK-$V1Q ~V9ur#<\YK,/J{,o!__(uh( VXɟ+RsMo'ڸ0xoh;9B{X P? OͰ}\ fZL%GU7Khmn^ΕH9^J13X&qiˍwP׵TqKg̚rft^> Iz4A3}ylg T%dhBd1tl2/m)b7?–lyB96Cc =)▏ h,K#BӶ `%\ⷀHZg6<Dw/? ^k&n}V.5XwM'Y0mw_g;yS3Nbfg`ȕw#)?wg[v~4Y5f2bn;1-n.`s2UDoLOppl/S{b*^*UzyTD tKܓwH<@%ɋKԖTsyCL\`[#Hq= Øfh_vS`+zXßr`9D$L2uur0keտ}%oHc3Ku U 2HtYb]?S"~7W)ˍ JHwuʐh-VU29jk`@F{xaYЎ#uuU e'a_X~VF/w 뜧F4 rž`;8Viq4J@le৳i$ _\`kt, -}ѯɫZ7x(3krU}P`Jym\v/m g;J."߃"obed͎ՙeNM9A$/gL5omof͇KȄr$oh Fׁ%b\=X.)mRT$^ѸI )Cn6chOg9W G/1)ZYok`B!7Tq,k;en buS8E{w3o! O%3*!:oyBf#kT87TK1o|>'QM U ӼdIWk$B_zN3͍>TjB@Ѽgk9Od[ls|<7k]䐓[4 Nϒ~*AhIF\e#\4vbiÆ JvTzْ4hg)mt~ חmL\{pHپW{LQ&b[]C`^+cJ/ (~^ D aY'ŪȈx"6`%CmV AjT Y4 >;OuIAS"nY^^ {Zj#,UWbT3iR& A  4)|+wV{AàH<Z~.U7rp UP+%1zD\Ѣ:o*0la ˝C7 1ko4 6 Xu0(ނz y>ϤP~pVHETo 70B7R14'L-2*8Ę0׾]{@˿ c/A+Ә˃Fq\)ʌTbhph ~G%$Y(&S`Ssb{h^BuφN1r\u% $NﵳflVa)hTCAW*ISi~WSs^SA *`ds[s]TE=Ճ WΌIXPpr23PLހ\! b]0{ OF.|c,* *jkOw3+& u22`-Uu6JK X%ۊ>Z&xtcNR7! NivQu|N뎟A59/[.y7r5m Н%Xl15d t{ l)TI- 64 kjAI1[Ҫ&Ndw~91ńqGq2((p>oG`[/5ASϥ#~uF~?jI}@hV0*hmTZ;Z҆G^O6L.Q'J'ϩLs̕p/!R] Ռ;09ZUFCUԖf)pN۔ k}+QMrK1uv.c3V4)g J$y#a.~)9T#IK R1`hx/{^Y$'K44kPE4$bMV}vX(0"-F^t5{*kt9DP@]bLpOxtQ/V ( DE-+yGUk5hЉ>d17W-oMmR2cOBc6[6c%o5~1|Q֙4kM%XLko9;G&&0W2`x ##94 D bCdAi!5G|OC_.5G:>c:=oo{:"*lY=v_ z1yHuD$m[ +Umbͷ]ۅt0zls'Y4:h˨j픠Y/57{ Ԋ9>Rc^ {z&'az/1<{ kY1|c ۷sڝ|#ef6$ёYP=geyK* .@v)NsO̎ g"rj2nYQ6ȗo̦ n`2oth^{L1.Q|ܴю*cQ56/Ĉů h$gNv斊?e* \gU0HK/Gc |A ( <*jFۇa:A.7ޒC;(;8׽Ffʌ?Aiz }:F<(TT(, lbSqGXu*`>#[%0$Kfإ|J=J[QywǹțP7$0|~-+5l-Za[@sDB]gOr§aDpy}VMH-Z:CǞ' ={~UO$̽~Eu &:_A45t򠂰x֎)N@oyx[(-HWUҕ:N@ .z^-/p@SbxHZ K̵hHXR e0p s>}yܜ"Լ_))EiU62ϲM jsSf) ~!ư [uߴK}\Zr< H"Fg,,7oj{Z]WPKV jw)"hVgX@ɣWֈ#5ukdy 0wrC}ȕL^ܢ2moǽ7A~F;hbr肆6l |7S[(v0HjXPda;Ş≳DmڶK̝yl%EÚ~ cH7|j DPj>|9C0L1vlRVI]~GNE˩,?)5oIBNMVY%]t%n Jyg"%kI qGWcLѐ\sm Yas3Fz닧t/§O%mgo$Xh@@}V'^=cZK9JHl8$~u|S֯uVlMY2{'b%μXrhÇ/Sk_?j_ɗ8>NzV];*=c p5#.?\ҶP}j;9n4ʋQ9$1Cf>r ɳ,2UHJ4I}Z]{ˠC"n\02WG5o_#?oмL;LvNSr}A:P\9.5NׅQҭHd& 6n#gFs) >[,(K~5 _Is7%}l`'Zi r*\k, A$K ^=gAv]h\&Uy Se+5"VqRZ;5CjЄPx®d!2'1(ht_ŸO"6Quze;&s[ J3+g m&G(M06G@cbUiш~h;L"L#.l= 7!޷}J4tc!?辵twяKAI!& oBvny(H070\푖C>|^Yq-?H{]o]TVWvUc>"U<3!)d@~L6u;l#l*a ́`[*Y'n$bd#ﬔT+pU&dHq.cn31FnC[WrP 0n0ϭggs+03<$ņϜoւ -եɿ#XqU3dhDIEh ȅb%-Ch2i>}_vKd WWI&?=r bbg}B.}aۡ՟4ȒT2+\ōB{Jɽ<՚_a[/~/kǙq|ee*Y9؂e>zPRÝ) pJp_b4kIHI@lx)IML\UnK7{# Y{ $m1T4uIA9MvAP,HOh·Ee]\qܙM@(H"8%!؏coh.bޫSHgx+Y)]ǿ`+._|!ePп~V8q7ȿ'QLa,%9[Nk 4<4đ;sezO% I쭤$e$#魤-ՎW*H0OLӂ:(+2փn5i0 5n'ɀHt~naW$/Oag0dQl}fϯhV|z:9/rͪt CZz^QP m V-;s9 _db/3F&:!,eշE:`&xw(,\c$Mث-`Q&f:"^$Z= <&\ǟGkSo.{bб-.aU]hziQ@`:_q[AtxH*'trKE`|isدO;zmQ#Wz^ ČSL{#mӡ)!@:楗 V>ɭ_Fw8;ZvcGv9u9,&C1ynrjk\WA4vEح7f8]U?;.gDqw4ԜLc<1Q\ d79O%JKV ywL W#qJO[& XjTsܫ |CѼ^#8Kq€P3=n =whPyD5lžBron%ϴQZz}(# F.KnL 4|wMy yV2.0_`2MĖ Ud yBI9lKVpDFѠ;`~V ԜEOr͖3JG~f$PL/Ty덷?KKiKd˶@7ƒcg?Pot^~-ٯso+Ym 4%#Y&؝hHijx:[ߔL_wMf4 v$lKJdڻ{r|2 .Z6rld>3igbs@-VC #߳/?ȼne}g+-8V qmTq-dQ+.46wrw&#Z8wY2h $m8LTx]+ʟea$OT%ouX>oaDo8{ʑ[}$jQйcm@lx H w(6x|ʋo /O#ԑe4T% ~. -[ eO2eA [O=q;q AkRZ5Bм5˰<&T>cĖ q.4–1-炟g3.* xZ)z6y<1H^U,^ʟx-9Zy>GЙf_\.?TSYh&֒85`E+2,kn*̾Mft=T IP`HSLC?{&rpZ #^& B%x/`{R`..  Sd˸7JF4!66EQK!,WpdM<) LB)X " $"3ZGGO~Mjf$ђͿ05)_66~ȃteMQTUcʦ ꔺf G>Թ>J|+ɍwǼW3r:|5r?!HMH\H~>E&}v;*`G8p옵j0D1j_rV1tiU/Fu` E +n,QDWPm? 62vxrjeUgҧZ:ot+TIuST囁Za/7>~& N(_>pѤ򳔠P_@.T QҼaOWKՑl E:6gW2C0%/^ZKg MTdq1'N;!{,OsBٸmME1ܟԁbn' fI7,#Ÿ N`} G=Q ;;uoxO헵V?w*<"$UfEsQ*7stQĴݠ i#:V|>A҂#&KH)䓎Wnv U:`0aOLL\͐>+QW+Ox,ب^/d:O"$d %4|0Е'hzTv#!ٶ*2['sg*c0DHK}hɆZĞ~`~_>/Q-tR+@݁.EO.,p!Q?bjy&$po$0w!ZOSƋƮM}Ve_=˫=_t]xmW 8j/p e/AdmhyMiv{* $b^:Ж}DŽ_&gχ@tk(QC"~(KN=+TG)"a&3$6qtfۅ5 r[{nFFƖ `h?NN(G3nx2^O~lύ0(DV+,&0AWPl,{тmRH0mSNkT[j+gĢKc|ֈ!WJtS&dD#ipHYM2Ѡcui(?3zzvr/K!BNpuB,}ﲬʁ 3yVy" Bqfr9A;,59b״XN 6c rGn| y8F`[/=9*4[K8'%W*gj[9drrj?Rp>?7#s l[xִ?5owX ^s$=௝.GPro%bVz v-'Ph֫&$z4Rw& 0Ur܋nXQ[F # L>`8ȅh<I thP;r_`Se̊6affo^ _&#cVyh_&ԕδdwj,Wd|dU&XoEa'sfr[Oƀ B a5 ѭt<#`L{YpR]ONgǼ7wj dz$oufP&)lB7aee7G*!Ͻvwyz=3 KB*jo)t7g۱S>(T vG Kp]GDT Y8mLk `WƅԷH]?٭+ h6w#>6MkILX,*Js 49 NadmWMnkx'oF֞*KP=xBv|- `Rҕܤʡzqi@k!{W>UFw5bCY}-9pmS~n1/x#5.ںdA}G}֖[ڰ7h6r{S޹D:I&Ћ6|C*hdWFk,⩶^@!ex׶0MqBk`m{^l(%c Lέcf@ڔÆ2~uO&ߪjJ jR4& jSGBoR3L`rM\Dvoa˟*['u8$Jɉ)wh(`Cڰ^3X %܇ޢŵ([ȃ^VI%nb;Q"&nInPY'bRVG6gNjJRq$ j>hM2o'A{6`lT;`X7#b āZ2[Oo )sXذ̯S,`K{QBҙŷp62|o"x0鰬't%('~*;>SNV@Ƽk"o)~zv1H[LEjS{)W`sġ{+ do x@V2O_7Q Pن~_:\C567sP%z]SYK\Z7v( {# x_x:4/`ѡq{ V=i *)2R i^WF}(fsFDqX" *Rh_wDSI`I |yc!n?ѡtaUMvYQ":v?f=qGYm9n8VT?*kA7Җ\. 7ҔS}xMv(3eT!SE2Wbq^ dރi󚌝_z?2 ɮ.&|foiY/ּ (|IJz+1anB1WO4/7|* )P/T2%8k}mDspJ5E!Jdys1շ*g\{$(v15JqZ?XAQp:-v ˉ*3Cvޮo'˾X\GʋtjND6u*$Tt,Nv_*p2 hS L1KmF &/39f6y׻V=0Ok!)(U23ă3gmcswQBK:U)%HSC=;-[wfs_93ȁ 9'W1Χ X6F(ś7oS iUq-x|sVS5XDyx;oIwN49QJ(P(vr/ I%}:XIw:Ƃ@`{)F'|*6Jiq||W av* ~*W* ڱ$L1w%}{e2$NIzsUwõԍBO0wNQuqVP)RlT;` m:0%P8`q萮.`4#la#Q]ՐЁn˗rqWfn W tcU~FXU&#z&ݩz[ S_'Ha\0X 2G0ңz72" QGZdfFZ'O]0 .NG|E\ˠ>J8x?K5_UG˹ !H,$' RS~p+㒟=RnZfchztGQlt+Z@ 2/M#„R8GcsƃS`RVFjہՄ}94G73`)Xmu0 O1e-cjʏyKu5—8nOaRlr![~l~6FRhхa:m HEP | oaww  j.fQH-j;51z:2K,|F4pnicӽ{65mߓ@0˞';4TͻFۮYdZ/?U9d8mC| (u[AZHʫhn*mph't{998r Ģzs+oZ%zaLmŹ?P$8g ok!D0lB}"Y6b1K ) jCO&qlm8.rb/wbU哙-2"U+"HϤO^'̩ٙ c塖UiϭVݗu*m|o#ܡO A,~Dj ck2G`- I 0IMu2 iMȗl=t"`_> bۨu!kGK3-16"p9DhBtz!T\CFPz Bg\\U.yeĴ ,3)0ŷb\7ʜy|!T̈́?&۰A!o4!װ oz "nV!(Zw&–81`rf[[ wFt=ܾ <mP 'I4#dDO(i,:L`w^@ lڼЀTnㄱӣ4xw7:hkxJgj"8_R;*RacߓjBI)GͧDB̉rȶWلv8z hi{k,^6(V8Gߑov섯1;O(WLLF]AʒoqGVvDn2T;bwt6RXX@u^(f$:Z^21^^V%UM02uz`rT%wꭚvl~/VPj`=m"|fqZԗf`!UM(*2 x'5=LnZ=6:]:>dwJ3W-\[@:GR'{ YَXK >M-а"FY1RGX?=ـb"FhZa^Nw9P[nD> zQ7fƑ3r"n=(* #$GUznj%i,'w憗loO·48ᚶuG ezz,5%)1z=BS0&m^Jԍ8K+Vm+q?GH?pbNz_UfWGTSDǨ85݈_:աq@y|$]<4}{ĺ-=0opESrUڇ/1&4;C^6R4,1Wq@)"h̯IlI:?N[YBSLI~Ba/9*liE X4/En/kհ޹PJKj yz䞟+kQgp|)eR0oJpu ؏+}~)SYN0mSf{s#D Epx\!bqi"zѰ]zпIb}G_L$Mޙ33s4Y֨#?H&vd,Y$ڿfM)@@^bMj^4,N|LB҇F6"Iވ\{Ŵ[S2^Jo6P&h=esPR0a.!~@\#9)B,M%PGd4*HwVSrSG%lDs3ú+keD]ڇyv"*0L4'|BX"K0ш$.{5 .~6ä%6t1A2NE|CJ1"p)uħFeΦVXRA} hZs\o9S^eg=udzo.P ,/V'SUġ_ OuRtf}Tiiv7nM=!ՐܬH,`b,=zop)ʦy\º(GdĽVR"e"etW3k{2jp绐2 6xKC}}bt8}i.NefYMvѣwC(t !$FX$X}C'M!dmlÃ` _F7N$>T*ˊK)>eh?_ |dɹeY4"%JVU%U^:kiMDyxj- T H^Q! zvϪRsG%RqܭDfrtRN>*??ΨZ2,^}׃фGwo]PL/C<9,$ǰ+Ͳe>^ 2uA扞'MFO>a7ZxO!o J-0pg6AJNڟ2Hd"$2LgGZPSAm<<"/޷L!}Z. ݃C`[4,;%}OfD()w8Z=.S!b(A._#scpzwpxG/) 8ÕLӞfp"H[3`s=tOj">8I;[:+:BcGۛB@yUKYW]2:Ά"?7BmLd/F<¬`52<8Ev{<RV8AgUniPz^Ǚ-N)UJ}Yq.g^#MeDMyяfU}'?Oؔ-x@uo>H:k^S8gɹ5쏜ge`yͻЩnp 4Qk0Qz ~8}lѾpCzT]×K50֠7A>>9Iqh5Ek7?L/;!jc&P1VH3g::"Zf/KoNʯ،ۊ+R3hSW Z"}=CF4HHK{Ӥ먴CV"4Lo=+>6me]Y*@hHt;3ezNX{bD,D/Iu,t,+`z|lad"ǃ0anOt £"=O%om|\$<}gZȨu y& W!t'y5>K7Ru<݀jKg5ulc[2>¼u͇,-gz./;vT3 6iブ$d$l#VV]LqVzh&c243@3bDXf=R' ir ECfʁE,+f`'+r;馩t z ~\,Z-:\#3^I.Dy/(_-eh lMKDQ!rac2Oj*3.J Tҋ^pDF-щh~ePi'fߴDՓwMM ;v)a242)*ذfyqՋOO mc8:1ڮeY6';y`jELfΣ kHQ\|1ɭvh* G7Rt,!XGߤnӧJ !v 942=lJ]x5-3 GPhE#Fm+3q d]Aj#]@*vIѬZQL 0ת&A<7(: + o,({1#ޓ r|&ES5n٥q)M+MZYp,&.6˳3{3Fx2:a%Xĕe7;V_*(mS˺}< o?'{t}ђ1YiY~hv{}ZENa+Gdg`}σI'F3ę=V ):8ǞqaUiBJ9Vuwv!f(;f `OU0.WHn1[OfMtwס̲w:+:# Kߥ0$T(H\rkLiazv֌_ O qt8W%nşznq`fUuI]x+c[k.`ghWlʜ*9m&ΫuUJ1R9fH@vJt$tK]z[hhJ՚W{Sv$>o*vBL,җTpI(i$F{A=ғ_r$ {Agr_2uЯs!!`?j:D6U8'($ ~+ / 1;DA DIB!Z 5U벢!f.Ԃ  ,r{,6u{ hWsz/xlߠzx^C/M'HkA*_z|6^!=8㢁 6nN_)]k1򅑳R1d)-͍ 2e K+jVhY?f[?Jg1%6r (I g25L@ѪsV'o5 S?\G\w$~{a`!#^HT6<~h}S~ܫG*oVߘ4a9LWc!RSo7`{Tj9_ǁ)uSzeOx)8]S* I9?ƪKB;:B|V @5,d[dYa |z9e4Ft'=ՙM(gDއ"hJ9z^L34bA^-x7^{=o2ڄ}GlwqRw0Ȁ^/x,E1^J>t~5A"w$qnWꔈub!g0f]97':up;҇ EU\>T5k^aW{Fy UWc&UCi/$NTU U$9r)gKIvt{S6p  HHf-SRGnϢ>_0q-C. VOA`D\j/D_(-K:a(a~<4(CU٩M!wB2w'9n:0Bz tZZ/yV]ib^jR٨V;T[?a2B_$ވc/-:[څ䋯ޯ>J ;5;zji8Mwø/@ϱiР] Ԟ,兿rRj<ÃA¡4@P% KV}V<:`ly3WxRl܉}2?eCaɯ'tB74֖¨bL&-s?K"袟yP_B#Z,uƋ,*b>"9d'{B,N;@mWCʫ暑a07c훉 E`F^ܔJeODCs9vvQ)JB6ԟXoygȊ3R|4Ku_&۰@%a')7I&DV'TpyH=G< B/ڄ*5ϷsEMZ\xe`k3h C A@`$ yjngi6:J ԓ TpGWޛϓu'i$R Wj~qSj1P}~L(quoR3=w1.<^N]ӕ?9kP˭AboH"c: g>`#9`s01owb ٨m]{ |%v>h=Du2sZdwQnI Zf6.(bpdokr`Ӟ`?Q>ef#ױWO,?d=a'Jr~n3akj4~˺Z]s

]Z_v= RSdWP> XzHK m()ͣ E59`HDJʂ~ VP,;ug<Җwo@#Vi E6nOڡVh8@̶`4hLN?,mD5#1b.e[t[ r/d, 'oДPŵCnd 14_0+D |tpH3;sW+S쉠-$#:پi ͅ1mΟtQrJrO5o1Fw9]2ZWp4uGugjvCWhR~]~EʲRݑ y\:G8R#H0G,qq~}!pW"yr/đ'wȳZ:/ƈU7Ŏ#>C"JCv<)^Fdj}P2HM/lbmt6D+`f$3/X6#SR{*Ć>&Z =ɕMXMwI=Y"^-H+%#T+KLnid{6%*>`U$֧_?x={o\xmÇwK"5Uu\4!'6@BRNw?}`:8pW/ G0ߞ0 N]&aFB}4{''asE‘=bϩjfn=2K`ɜKg=?i ǟ2/rmݝ]=?r6T!4F74+LYŅ, -M%G|y}`N `&kg34Tt^PjX4ꋊYX"?mMN;Z! LQ9F?cGq:kQpd B/CKh_iĽBoM :m”~ |\;Ge?wqn _dOc; DODl D-zGf%s瑌M*`OpS@d@ONSy"wsK2y( C%-e9 9P9϶V?m4Y?C@HOynSp_K- D@TuO`jRp0!n4Q4XOS<* E[8IDq dJL*fgO}4{rc?6V϶d:ʖ2HKo9Z ݒ4oMiޭn<@A`4Y6f#I:7SX=Uj^ɊeY?uv GA$teb`57@uM j//~Bu!5;=P>MedޣWǺz`gY9tJhИCHLOj)[ p-qU7F][ף1hRiJA+mR(횅;zD9Az7_,b,J$pk0RotUޯ8* ca$ cZi5lɃ7#KKY K="+[4i :?r˭^XL<'(s46=3D'UΞt_9) b*ØvNOXhPZH@idx-tQY8?a_qa2bZ(f8d>H++ijOm ~0z B}\l~ < 7ĎQ@FhmqݤPȉ?ZS%8)2~u.4) w*"^h>0"Q)mׄ\xCn ˵=PK!`]Q+6t, "Y*N_ %Sw6 :Ϲ|೪36xrjypSM&o`2=:H)`VmnE:Dvxb3昑_z2[D|jp] t?gl޹fD iy$^B:vSO&fs("FVi)˕]rMeOr>vЀػ`'goK[W&(9"2 2I +x6k_*tGEW_{L2F h"'6}լUME X~Az6%<$@(s>k0:D҂!%ޛ'Eव ᜡ@e`YzuUI:ln-K FlK>VJ g`)d{[N7ݪuOg\w˛Y+ޔ{ @ tٵƧ] ,Tk)a4d`>z EӊilW VC9c3Eȼ|+ d_ff,Fa]%a4 l{$_ -Ivt\hjz )ynh!L2Ox=8캷c@Rj|4>ߤ N'?qo-~p~o\uQ֓tA A (/o>=MZJ{*ODz|Wm`cXØz()jt}UccgtͰ:xD:wBX]8OO`,E0MLsa#?Um^XO82EbdmPtIeOU\'?>ʟ%ݨ׮*+pJ-NFc>d1'1,rHк8-Qd{p}?(L9d/PIuuADrBjsxxv}`Dđ&M~7 ձو l30}-[Tx6j-~fK޴b<ǃ.x-dZ/}EPGv 0T,oɄ~[[8(%(K+ Bmo£`\A 䛊$x%Ҽt>!o ̉=/5/0U2U4` QlfY)s j{uek0KCt_ ey2x:\UrTaǿ tSO]*0R.n٢18@qo!= )C{c#yh=2*K\^3X' NLK)ނ wI w%NǏg|-$6 d*=M|Y0}( 3zsվW3ULTAXLf?qAJUL]vC#&7q 6ݛ.T!yF裺ijW\ Ŝ4w?'av-I*sWؒ^ˠkuThH!d3%A\!sr Zpaʦ!b%Z͉?=0&J!,;lk{.]t/;4!£~y"_tQQx^"㲗,;_ ]u| (Ku`bEix4e%FZVP#4;I)1FY ~5~* H ((o {?fPb=琉Ud}oQq̱WȨ5t1YLDS)cdMey:1+{Mu_te8ph>iҹ!'ò2$'/K,`ر> F.w'8?] 䢟͑0Qɡ%c X,9.?p&n$ZX(jL}RW32IH16'8ыPpLLAYt_O-<ͩsr]#۟-0ͅڲڄf(vECb;\&h?EvRi_vY*e7-SCټOs,9. u6 YZ