python3-pybind11-2.9.2-bp155.2.15 >  A dko+!LE)TFFbfJAaHI}feIyX8s8ϪqF&R1}4HqPCCNG^X\$;HE=^@l89C* XMذ^94B4>3@w]3(cSx瓐_(R;IadM, JJTrqމUS\HXEƘ/@jˑa s($U-nQ e3!ذ]z {$i8R`_Got ۖ=o?M[J/h.,48195ae467db07811a549e30d59b9d0f3cc0d34c75bedb954c55f0c2e4ae8d95c31b50604f53d203a4088c8143e2a11772dec9b23dk޴$2UBqmN(Q1Qiѓ[ kd^2yWn W!)A;#" ,CD7%Aeߝhϲ-ũצ"xM{{7YC7CCQW22 BeZ] Z _~1~65qNWOIbh9bU)*,KkpmdFU5e/\~ujU;,>,)#吭kAH$Cx@cDf_J<Lj9z҈Y ":|^Ot&lnUz총ӖxՊi~X ZO yo#+KẖKvF9*uIWˣgMsI}z!5JXv)ܘIAS >pDYx?Yhd $ T`dlp .. . <. . ". t.,..$.   (89`:=M>M@MFM GM4.HM.IN.XNYN\N.]O.^R bTcUdVeV fVlVuV$.vVwWL.xX.yXzYYYY"YdCpython3-pybind112.9.2bp155.2.15Module for operability between C++11 and Pythonpybind11 is a header-only library that exposes C++ types in Python and vice versa, mainly to create Python bindings of existing C++ code. It can reduce boilerplate code in traditional extension modules by inferring type information using compile-time introspection.dkDirk Müller Dirk Müller Stefan Schubert Ben Greiner Markéta Machová Benjamin Greiner John Vandenberg Stefan Brüns Christian Goll Tomáš Chvátal Tomáš Chvátal Stefan Brüns John Vandenberg Luigi Baldoni Christian Goll Jan Engelhardt Michal Vyskocil - update to 2.9.2: * Enum now has an ``__index__`` method on Python <3.8 too. * Local internals are now cleared after finalizing the interpreter. * Better support for Python 3.11 alphas. * ``PYBIND11_TYPE_CASTER`` now uses fully qualified symbols, so it can be used outside of ``pybind11::detail``. * Some fixes for PyPy 3.9. * Fixed a potential memleak in PyPy in ``get_type_override``. * Fix usage of ``VISIBILITY_INLINES_HIDDEN``. * Uses ``sysconfig`` module to determine installation locations on Python >= 3.10, instead of ``distutils`` which has been deprecated. * Support Catch 2.13.5+ (supporting GLIBC 2.34+). * Fix test failures with numpy 1.22 by ignoring whitespace when comparing ``str()`` of dtypes.- update to 2.9.1: * If possible, attach Python exception with py::raise_from to TypeError when casting from C++ to Python. This will give additional info if Python exceptions occur in the caster. * Add a mapping of C++11 nested exceptions to their Python exception equivalent using py::raise_from. This attaches the nested exceptions in Python using the __cause__ field. * Propagate Python exception traceback using raise_from if a pybind11 function runs out of overloads. * py::multiple_inheritance is now only needed when C++ bases are hidden from pybind11. * Allow py::args to be followed by other arguments; the remaining arguments are implicitly keyword-only, as if a py::kw_only{} annotation had been used. * Fix a rare warning about extra copy in an Eigen constructor. * Fix caching of the C++ overrides. * Add missing std::forward calls to some cpp_function overloads. * Support PyPy 7.3.7 and the PyPy3.8 beta. Test python-3.11 on PRs with the python dev label. * Replace usage of deprecated Eigen::MappedSparseMatrix with Eigen::Map> for Eigen 3.3+. * Tweaks to support Microsoft Visual Studio 2022.- udpate to 2.8.1: * The simple namespace creation shortcut added in 2.8.0 was deprecated due to usage of CPython internal API, and will be removed soon. * Add C++ Exception type to throw and catch ``AttributeError``. * Fixed the potential for dangling references when using properties with ``std::optional`` types. * Modernize usage of ``PyCodeObject`` on Python 3.9+ (moving toward support for Python 3.11a1) * A long-standing bug in ``eigen.h`` was fixed (originally PR #3343). The bug was unmasked by newly added ``static_assert``'s in the Eigen 3.4.0 release. * Support multiple raw inclusion of CMake helper files * Fix harmless warning on upcoming CMake 3.22. * Fix 2.8.0 regression with MSVC 2017 + C++17 mode + Python 3. * Fix 2.8.0 regression that caused undefined behavior (typically segfaults) in ``make_key_iterator``/``make_value_iterator`` if dereferencing the iterator returned a temporary value instead of a reference.- Use libalternatives instead of update-alternatives.- Update to v2.8.0 * Added py::raise_from to enable chaining exceptions. #3215 * Allow exception translators to be optionally registered local to a module instead of applying globally across all pybind11 modules. Use register_local_exception_translator(ExceptionTranslator&& translator) instead of register_exception_translator(ExceptionTranslator&& translator) to keep your exception remapping code local to the module. [#2650] * Add make_simple_namespace function for instantiating Python SimpleNamespace objects. #2840 * pybind11::scoped_interpreter and initialize_interpreter have new arguments to allow sys.argv initialization. #2341 * Allow Python builtins to be used as callbacks in CPython. #1413 * Added view to view arrays with a different datatype. #987 * Implemented reshape on arrays. #984 * Enable defining custom __new__ methods on classes by fixing bug preventing overriding methods if they have non-pybind11 siblings. #3265 * Add make_value_iterator(), and fix make_key_iterator() to return references instead of copies. #3293 * Improve the classes generated by bind_map: #3310 * Change .items from an iterator to a dictionary view. * Add .keys and .values (both dictionary views). * Allow __contains__ to take any object. * pybind11::custom_type_setup was added, for customizing the PyHeapTypeObject corresponding to a class, which may be useful for enabling garbage collection support, among other things. [#3287] * Set __file__ constant when running eval_file in an embedded interpreter. #3233 * Python objects and (C++17) std::optional now accepted in py::slice constructor. #1101 * The pybind11 proxy types str, bytes, bytearray, tuple, list now consistently support passing ssize_t values for sizes and indexes. Previously, only size_t was accepted in several interfaces. #3219 * Avoid evaluating PYBIND11_TLS_REPLACE_VALUE arguments more than once. #3290 * Bug fix: enum value's __int__ returning non-int when underlying type is bool or of char type. #1334 * Fixes bug in setting error state in Capsule's pointer methods. [#3261] * A long-standing memory leak in py::cpp_function::initialize was fixed. #3229 * Fixes thread safety for some pybind11::type_caster which require lifetime extension, such as for std::string_view. #3237 * Restore compatibility with gcc 4.8.4 as distributed by ubuntu-trusty, linuxmint-17. #3270 * Fix regression in CMake Python package config: improper use of absolute path. #3144 * Cached Python version information could become stale when CMake was re-run with a different Python version. The build system now detects this and updates this information. #3299 * Specified UTF8-encoding in setup.py calls of open(). #3137 * Fix a harmless warning from CMake 3.21 with the classic Python discovery. #3220 * Eigen repo and version can now be specified as cmake options. [#3324] * Reduced thread-local storage required for keeping alive temporary data for type conversion to one key per ABI version, rather than one key per extension module. This makes the total thread-local storage required by pybind11 2 keys per ABI version. #3275 * Optimize NumPy array construction with additional moves. #3183 * Conversion to std::string and std::string_view now avoids making an extra copy of the data on Python >= 3.3. #3257 * Remove const modifier from certain C++ methods on Python collections (list, set, dict) such as (clear(), append(), insert(), etc...) and annotated them with py-non-const. * Enable readability clang-tidy-const-return and remove useless consts. #3254 #3194 * The clang-tidy google-explicit-constructor option was enabled. [#3250] * Mark a pytype move constructor as noexcept (perf). #3236 * Enable clang-tidy check to guard against inheritance slicing. [#3210] * Legacy warning suppression pragma were removed from eigen.h. On Unix platforms, please use -isystem for Eigen include directories, to suppress compiler warnings originating from Eigen headers. Note that CMake does this by default. No adjustments are needed for Windows. #3198 * Format pybind11 with isort consistent ordering of imports #3195 * The warnings-suppression "pragma clamp" at the top/bottom of pybind11 was removed, clearing the path to refactoring and IWYU cleanup. #3186 * Enable most bugprone checks in clang-tidy and fix the found potential bugs and poor coding styles. #3166 * Add clang-tidy-readability rules to make boolean casts explicit improving code readability. Also enabled other misc and readability clang-tidy checks. #3148 * Move object in .pop() for list. #3116 - Release 2.7.1 * Allow Python builtins to be used as callbacks in CPython. #1413 * Fix regression in CMake Python package config: improper use of absolute path. #3144 * Fix Mingw64 and add to the CI testing matrix. #3132 * Specified UTF8-encoding in setup.py calls of open(). #3137 * Add clang-tidy-readability rules to make boolean casts explicit improving code readability. Also enabled other misc and readability clang-tidy checks. #3148 * Move object in .pop() for list. #3116 * Removed and fixed warning suppressions. #3127 #3129 #3135 #3141 [#3142] #3150 #3152 #3160 #3161 - Release 2.7.0 * Enable py::implicitly_convertible for py::class_-wrapped types. #3059 * Allow function pointer extraction from overloaded functions. [#2944] * NumPy: added .char_() to type which gives the NumPy public char result, which also distinguishes types by bit length (unlike .kind()). #2864 * Add pybind11::bytearray to manipulate bytearray similar to bytes. #2799 * pybind11/stl/filesystem.h registers a type caster that, on C++17/Python 3.6+, converts std::filesystem::path to pathlib.Path and any os.PathLike to std::filesystem::path. [#2730] * A PYBIND11_VERSION_HEX define was added, similar to PY_VERSION_HEX. #3120 * py::str changed to exclusively hold PyUnicodeObject. Previously py::str could also hold bytes, which is probably surprising, was never documented, and can mask bugs (e.g. accidental use of py::str instead of py::bytes). #2409 * Add a safety guard to ensure that the Python GIL is held when C++ calls back into Python via object_api<>::operator() (e.g. py::function __call__). (This feature is available for Python 3.6+ only.) #2919 * Catch a missing self argument in calls to __init__(). #2914 * Use std::string_view if available to avoid a copy when passing an object to a std::ostream. #3042 * An important warning about thread safety was added to the iostream.h documentation; attempts to make py::scoped_ostream_redirect thread safe have been removed, as it was only partially effective. #2995 * Performance: avoid unnecessary strlen calls. #3058 * Fix auto-generated documentation string when using const T in pyarray_t. #3020 * Unify error messages thrown by simple_collector/unpacking_collector. #3013 * pybind11::builtin_exception is now explicitly exported, which means the types included/defined in different modules are identical, and exceptions raised in different modules can be caught correctly. The documentation was updated to explain that custom exceptions that are used across module boundaries need to be explicitly exported as well. #2999 * Fixed exception when printing UTF-8 to a scoped_ostream_redirect. #2982 * Pickle support enhancement: setstate implementation will attempt to setattr __dict__ only if the unpickled dict object is not empty, to not force use of py::dynamic_attr() unnecessarily. #2972 * Allow negative timedelta values to roundtrip. #2870 * Fix unchecked errors could potentially swallow signals/other exceptions. #2863 * Add null pointer check with std::localtime. #2846 * Fix the weakref constructor from py::object to create a new weakref on conversion. #2832 * Avoid relying on exceptions in C++17 when getting a shared_ptr holder from a shared_from_this class. #2819 * Allow the codec's exception to be raised instead of RuntimeError when casting from py::str to std::string. #2903 * In setup_helpers.py, test for platforms that have some multiprocessing features but lack semaphores, which ParallelCompile requires. #3043 * Fix pybind11_INCLUDE_DIR in case CMAKE_INSTALL_INCLUDEDIR is absolute. #3005 * Fix bug not respecting WITH_SOABI or WITHOUT_SOABI to CMake. [#2938] * Fix the default Pybind11Extension compilation flags with a Mingw64 python. #2921 * Clang on Windows: do not pass /MP (ignored flag). #2824 * pybind11.setup_helpers.intree_extensions can be used to generate Pybind11Extension instances from cpp files placed in the Python package source tree. #2831 * Enable clang-tidy performance, readability, and modernization checks throughout the codebase to enforce best coding practices. #3046, #3049, #3051, #3052, #3080, and #3094 * Checks for common misspellings were added to the pre-commit hooks. #3076 * Changed Werror to stricter Werror-all for Intel compiler and fixed minor issues. #2948 * Fixed compilation with GCC < 5 when the user defines _GLIBCXX_USE_CXX11_ABI. #2956 * Added nox support for easier local testing and linting of contributions. #3101 and #3121 * Avoid RTD style issue with docutils 0.17+. #3119 * Support pipx run, such as pipx run pybind11 --include for a quick compile. #3117 - Drop unicode.patch merged upstream- Add upstream patch unicode.patch to fix random python crash- Dont test with python36-numpy. Tumbleweed's NumPy >= 1.20 dropped support for Python 3.6- Add docs/changelog.rst to package contents - Update to v2.6.2 * See changelog for changes since 2.5.0- Also expand generation of test binaries for Python 2 and 3, fixes Leap 15.x builds where Python 2 is still built.- updated to version 2.5.0 and running the internal unit tests now- On devel files you need the pybind too to compile anything- Fix build without python2- Fix mixup of expanded/unexpaned python versions in devel package, the devel package always required python(2)-devel and python2-pybind. Move the data to a -common-devel subpackage, pulled in by versioned python{2,3}-pybind-devel packages.- Add package version to extra devel packages added via Provides- Update to version 2.4.3 * Adapt pybind11 to a C API convention change in Python 3.8.- updated to 2.4.2 * made devel package python version independent * added cmake run to install cmake include files- Replace description by something more substantial.- Initial packaging of pybind11 2.3.0 for openSUSE/bin/sh/bin/sh/bin/shlamb56 1684749431  [\]^_`abcdefghijkl2.9.2-bp155.2.15 pybind11-configpybind11-configpybind11-config-3.6pybind11pybind11-2.9.2-py3.6.egg-infoPKG-INFOSOURCES.txtdependency_links.txtentry_points.txtnot-zip-saferequires.txttop_level.txt__init__.py__main__.py__pycache____init__.cpython-36.opt-1.pyc__init__.cpython-36.pyc__main__.cpython-36.opt-1.pyc__main__.cpython-36.pyc_version.cpython-36.opt-1.pyc_version.cpython-36.pyccommands.cpython-36.opt-1.pyccommands.cpython-36.pycsetup_helpers.cpython-36.opt-1.pycsetup_helpers.cpython-36.pyc_version.py_version.pyicommands.pypy.typedsetup_helpers.pysetup_helpers.pyisharecmakepybind11FindPythonLibsNew.cmakepybind11Common.cmakepybind11Config.cmakepybind11ConfigVersion.cmakepybind11NewTools.cmakepybind11Targets.cmakepybind11Tools.cmakepython3-pybind11README.rstchangelog.rstpython3-pybind11LICENSE/etc/alternatives//usr/bin//usr/lib/python3.6/site-packages//usr/lib/python3.6/site-packages/pybind11-2.9.2-py3.6.egg-info//usr/lib/python3.6/site-packages/pybind11//usr/lib/python3.6/site-packages/pybind11/__pycache__//usr/lib/python3.6/site-packages/pybind11/share//usr/lib/python3.6/site-packages/pybind11/share/cmake//usr/lib/python3.6/site-packages/pybind11/share/cmake/pybind11//usr/share/doc/packages//usr/share/doc/packages/python3-pybind11//usr/share/licenses//usr/share/licenses/python3-pybind11/-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.opensuse.org/openSUSE:Backports:SLE-15-SP5/standard/c21f382dd74ceb0a86a6d312ded12df5-python-pybind11cpioxz5noarch-suse-linuxemptyPython script, ASCII text executabledirectoryUTF-8 Unicode textASCII textpython 3.6 byte-compiled RRRRRRRRRRRRRRRRRRR^G%,autf-8c1634f6db2f6be8eb58a349c75780f03c72f6ba0525dbb8f3d4e0e6b659c0ab9?7zXZ !t/] cNDf[pmh7Cpf mP?u"Yv5kXxѨXn|O8 wn&cB^G-LNQd8ڷQFMJ\  <[棿; wtIJ* H;σx︱6,~ۧ4aL`{j:Ѧ{ 12zkXTX8+ݤM")&M:qwV#'cgɇ(FTBn{-JY tZp-.?75ȃVg$vPGܨvQ>5Aw관`XI7޳781ϵxG-ٻdp!ɒ{`\ MfؗXVvw, .U1OLk"JUB!~8d>kyVTtjThj$Q?ma#,9/*+g_Sˮr60Պr!lS-T2pK%C Iݨ?JMyJlМBX@r MA NЇv[o-"EoܕkWN 3>tFݐ-1J`a" Y6y{ls%ӀSI2~ℋ\whƂӠVZYOV [9Ȗc^U)* usM!ה>(cw(s0 +5sxBB7!W7~=r HЫDQ#Bq?2I((I5X)`lm/ƴب Ӌ?a`9+ܯnQpڪ'<B;05B{Z}Y)^JLH3Uq/ICXGSB@BUhRrjnjA}"kWʉߌ&n+ظ왳*)!|&] Gb;_[k8%NE)ȖNio H oEƯ/8֭6<۩A7(J^hk{HopDKa M ;1mA1uaGaث&NSe܂:K%qO{X]\#<;ݏvn}PQڕIjam}e:X /d s<LmqG ωؖg.ߋaB(`?!1~sux? .; ~l[4}%,HT4%,xrK'M Kݟ6K10VF[U ;_E'xitljFΛxm0I/^0ꍅT= l ʔ`pf/nB<Z;sm$Ʋ]*|̄f{j7ÈE#VyRM% Le?9DJn$;&n| *.0F\seV=Zժ}Geo$Ad`NJcZ7nI#jb;.~{DT@lớ;g_p!l?CM?` ;[ 8F S3坧n1*ݎy4uP'@$5|Q X:2SRQ_$_. @z)/:"K-EeliI@H[u_o2k}bi򬿤n?׻溳PC3Cg"zj|ྜgidAU>z89~/PiHVaC`ռ@K[xF`Q,©hC_$Jv=\kW*W#U{LPC,,g~p+ѓItbp\Ve's+.(>,@̽&cZ gxw,HR>Giʼ=\@c!T?$0V^wīf=JX>t39GTT2 B`ф{]YQ>aqCUO]B @ejGq7B$:J00۳(J!;$%zlxs'!2g!`>972r᳀%K)"X'^CVs 7HUل(U||hgu˳Cn:T%و(ySA:_P *8(: &dRZT\i>'2Y;*"EnӟA}$8fEwc[ETF9YC35{/ށe% 2kh'/w\>c妃&Q INuo2n<؈a+j+;1rn2\Pn}E1i .F^sU7N]n S>DC,7})lR~xEh?'wFaiKF,ӿZ0kŘjIݿК['1%ѲM?~oR䛁,0Ȫ<N\ ~Aյg8[ eD "WkgLDXFN8G5m;(՗{R{˘>{0Gͮ7zG.# LXRv`-cҚJ1MDqjHQaݿ6i^dJ(nBB,.={վjl.CmcʝO!bC/L{%Mes-L |˹`e*LNqCt]@PIQ0ߥy/LvM s8sfZ'Dd$ 8nԲy23oٓ+WorE}n]bV2ƦǷN5Og# UUp)|է@nl$;[ >,e 3B(v&Jd!B7 )*2\(MM)[[l 7DIՎ +G7dAD'mrtlѯN'H]HJOJl9Dҋe9\vp. Bwn8h[J#< 9@Ř+QqO6|#ԮKBpsvFT~]5N9Q-?_sVW]i7u&j>(δhp[b+(B6Y߰*}k&ɀ)c?&'Je54@I_47֋#k}gW`UDhGB,:(@r 7U;=V;{`Ǜ`az'-^bsf1QCS\Q0z,{ <X%Xǯ 6!ҌW*ö좓suj߾% N>G%Jo_XLm`$Gqz t/m~KmMԹ)MGx1TeT!0 ӯ @6]5Lsv Dݡ~D@z !dvAi7 wTCfVwև3C~Qi,Ğ $9S)R8_\G)xvݤRd-eF [7P]3'\.$p#^) wR"D!$ F?Z(Znu[C*?@iHg.a IB2%'ZKJⷧDTS[@1M)lXv3i̛4lڒ$ҨȦDWTu_з@)]G,+^V>^NnK,B'þ0dJ7I$(8ꡑub_I@4_Խpr BrKҪOvzF Sl` ʮ1 Zaи5&u&e[.Wia~A>:K`Uߍ*I!ݵQbk2$ W]=[4D!oFn1ABw9.ʐ>'wQwY>JYE1ւZeIֹroKs[~`uP! s"/=`d`dˏ)]Ļ%3)+ݜOiPF5j{VZbaZU:i"^< ͯȫT8K? {VF70V# u5ܥCꥨ1(IǸ" I&U =ӋA&WFoZI ֹo[i8=Q )Vxk}tkU` `d_r~&$g unQwc|eifG2*ijnّ>ٍJ 㩲JbuolJh dS07U$V@<Ń2+jG /,!rE$I#*%jhY"9],РYAd͸()o%xr3# /@{h&YZ`;|TuądIiU,|4`8ήް v^tflDUGW9_]nJkK,Cg0?[ς)G6}4oNs֤hY\QN/ʺZ]׋31CQ75mS'oV%4AyVaVF?$+Ux&q$F;+x]"BjR:B*9`y%5f3μcZ>r82ϐXkWCP &lx,nِ=b e5\~/݄6k%'{wJ<5mik"$` DU193ٓTcgN0˛^ȶu}2XE3&G5Pnm&+sQ;WD?!qk (B4P B<}9L >@g xwH{z;7¼CY˛+VЂ+>g;FYm'. ɺ6UȕCM׻_~.qp22#o5 #}ݟBRFw\'kƸ})2y[# [?co2f<;opnUG/[c LVry 'YΊؘө] ⿵<#b<|OUALT j0Vʗ3+$0j` mK=H+۹>ǗX݇o.تw/Aoâ!0w&;s$#U43+.cno-278G]i+!Sß}jj~ʴXCY"s`׋h!gAыz< EmvթF;@rSL˓t= x=MW%|'gc^ѕIu꡾,[Jl5nֿĘ* EU7r[pۧۆu__S,{}\UT-C'9p0re< H?Gi{'l<$P17AP."ە/H"64+y{2Kae'!< ɡXQw`q+"#j+P|U#q`PV3@vG;+hB Asb)L%#vRz1@ 1ߧb(;{L@fSÏ`wu1l>^b*YfںV)їy ŻDXؼ5ߊR-$xXp_[2#<:v0gsT*R'Y2*; ͥ}\?R/^hS9U!ZnJz=r;2am~$ _Cd/SFȒe8q+|:6zf ܛ} +O;\iՄ0,ֆ< m m H% 8>\-my.3F+S5A; {,Ur#ǃ 1 72p_}(za]zA|CJm@fjtW UP<,ىfiGE3\6!4zbŤ=>U jU4HfU 2v FvjzP>fs4lB2=@ x j4p/=LjQա.^yg],\j5dC;5 Y'ׅO(t!ޘ,@&M<ܻ!Jf^ N@Rf6{vOl 8H&|K[Ik oH_rtS?>TsT0mrV)2ȗ,!XcH2H9g┰p̙n~;];ȋжuel~]BkHzX`@0,nB39S&,%U[T Abs ̏PJ+El:50TmܬBgz׳˨sRkbڵ4OH~~UsNJ{Di%Ç%\OQ\o]͜!aָٕmõTp Bɠ!|q}ap/+K JMW~Y0_LCIEJ`x}%ܒ TxÙRPNZa0{v?Kol+b\Az^SB+WtٓmFDD}}L~O3ӿU6+={@Þ߼3Us;ܨEܺvC]yRy쿐hE[d77ɫ F zzO|f@鑙*-ߪIhEE0Ӗ9Q^zw8ɚ 2!dr>*vc@s3fJ #=UPOsއ?CAgD}0Q'6gO:o m8k/V??  &tNg{D3AcL]Io|hD L2ǜ9a.(*v ]hm YXbƇLg ,IIbwuЉY8+Uؘ9nmN7,бw-]{uöMg+jSl\kƆ!֦1nZe4'ko ^PDh^H?s|9JWJ>jKL4;~0V EU:cXHjqMN /r c\<'pLH& Um2!I<Oi[~J&֠dИa(6z?=_/!a7ĥRll.8,kg%Y6A/!_>LL:+kK#[J$vScw@jٰdY;f}j`3ja$ Lq9eL*-6EV05 b52^ f#/jOUx.ϰ48~o*}I+Җx~t9>heyjFo۷"+Q|8CaV? GTB:ϲH|`maJQӕʲ(Hi}y#9@9ġ~ah<_.̖of%J" de w;O22CB1&Rn otS*p_;|[/vH" ,Eo$x8;u2Y y runLTP$쏥3/,T]h1?7[`^ uiPk~֙ +hbg V|u'_T 3QUA0z&9EMTE-` jN5cg*nͲ`:c[$V[,B{weQB3$kpF:.KPDZOWy{(Ѕ)X4 빢c|lTvQ}h*͝b<6`icrZa_H-cNtq=@9ՠA|@ee /c;* |M ޹\fDq8_ѥY(sޜh ֑K< ҇PZݝ~l1igZٞ&fMMZ~gC-a[#V޿x :mLTHyyc ȣr<V]+؊%fi\Kf'=Fh݅/H"9`a ȺˆOX_KV6xdod@#VyNt.uw=qv2]A[?=U:|9z4g`mkPgخ,B?KlOf6t3d]Q9"sY868Z7o"w@q)hANc5a's4ղ;A gHmLDsԎNn@;OE=ml^,QM"tKCSjk;Y0{?ۻVog-$c%tO5m$Fd5^{ nem%zF-_nv+N5ln"UOZN9 }R@qip"7 G*ʜQ?AQ=: KVCڏX^|vP\ҽWSidʎ蘓O(;qv+*9Vt-rbU8M5rǓO)Rd]BL1+s/]!#Y](TPgjzL XބĥlDHƅ$;)S6[R |*X=wb}h Zړ3:s:nD3*ې rMBgr!d(aѴqT` |O s*z.y3vaВ;^;Xw`rDnǽGz^&Ԗ#͍6[Tt=m/}|>gh]%w(ҡyZ^Jі Jk'63٠F/5i*;cct81)>7?b;=TX:2 /z|ԗ96 @A^WOӥ@́[|~h ]5GBGd}IGn3kw)ɖ ;s $' .0l@Pw:`+m&roݱS$$Ujr[ᜅ5MVU^5Tn *WBP͑M3b55x~cOYYXQ,>c@'Reߒ߈FDq*%:5Ul'ϿO6+R@r3'ˊlh;R07(QLp"Dҩx ͎>[:m Em#0ʇt9IBϺ4׵ _=sB4;a sO]Y/jÃV)^gMrY(ү;))H E)i(V9?bJ0nU+4Uyts Gϸrg;Pvxc6Ѧze4*ҝ WhB ǢrDž9H7MgW.pmg_ܵ-dEs=,8[mNW6" U t3,lXBAa$gw}Ɍh,P:m`ב+?s'3+~V*v> :WKsUx%(lP{w#&fF3u!_]nLkCnJd[Tf-^ˌ7V e7:ڲ%m]^Ps؍izft.jh8c!~ ?Kb|Ŭ*2Gzm ✁V RZP OYFHTLfΦČ Ax Bh0oyD )Į{-D9u쇢.wVi71+O0|h_;9fM񄟛}cmH{^g5| <)HbHЋ,Z9 eON'߷WQ'zKEEqG4!+dat46 ntJ_1IcqzvlDt'gWr(ap{ 'qu9.Znψ!ROL8JmC2\1XN!8.d5 mtU3--8R[&1PԇR*=lݼNyl괶i& c[XPh (x/ ,d(K]iXQԈ%R*܆<6lƕ< )/mz& V!-F@5{A,J;syc8V ߥ`Fs%j=Heniܤѱoj͇Pp0Hɧ޴ K3!Z~3!dMXG$.dX]77bYD8D Dr9QTM"#;7ѥLj,rVQ$%5}0 [ V|svVkj Bc+]p3W_,@oqk鲑䵦]R4_&c TS`(~{?w)mDR)i/C[e(#ʇX-lP,=R~-|uR4ܛ&Վe 09ȹtbj$3ZC^1u:*6C3雮M0O]Q5Y+¤y(u"i<ʖ_vifEg;MSO>(+~N#VS>wdO=FeiG. vWOgD9.!>uW_U\ zіt9tbxl@؄aWyh!4L`יeE|!U.(5_κ'91.ClϯEҶ׏W\ = ^ iy5?גd" ,T>8gL17 i6bRK±CLF OH,rdm>4?GC5zPsVD HF m&ƑKwEWB(d+xnDn|cFnDdaRg= ]S2Lvd^Ȩ07!x1Os檪gAlL7;EUlc0V@}|p`=`pdU}},{?h} 뼤3Wo>J36sR^l\^{x !_DHR)]zMYu4μ"je 3T>cSL#uvp3! +rX Ⱡ?}!+ԡDCPaxˤ?()ۉ`5hkXD1>kA۹TP&sG*O\=q ? MG5}4. JwM!+eܶnP54VzbaPF}VO cS9Ї \͘/}]nh+8@TCVK( S<[Q_7I)lwaT awBupXX/64P }/ 40H%\~NhҔJu= QˢWC%(xjǻ_CZHt\im/ (E䨓;8Wk%]&(i9~iB{pVx8GxI~B 3t%'*tHx-,+Fc `D=V}w早?½|B9+fRqYܨ2U>NIP]Ņ]BF CPLP!XiA6~N荁! {)wT/!OHbS.xD72Ͽw7@'q<4\jAZs״?}qL0;>@JSl{jZz_.bELlL^PX{rˑ.XiLH2RtX {pOzO@X)z}sK7ZB[ܻJM#6沐 p6j@͡ ^v:`,k}WX\k8[ݍ^7 7z Ga?!~Z訔7Ŗ}ցj[pSa8Iɫ1a VbΙ[kqG+</[χU}Itf{YiuQSQ8=MHNwƣ).,k` )h5e:!! t@BmP'4SXDl-ra8oƋ# nD792"˱鼝φ?%m?6.ryvx>:pwq<xe ~+e"A|eMm my8vP4S-iP;̅7`FC|w{yOW.|qzmRugDNk5@68MީMTbIvvxkarHÏ~늘K^BF8dd9,2bth2c[>a(8GʀS|e}g᭾T4hH)i=`B`aJ^`'>4k^خ7GvF| Jv,6΄bR=Wؚ?x Qxf&՗qZ {icy]rArfJ}ÇD1Qo`~l pFy -NR<,4楽e'%G riv䩍WT-R/pXSge2M~D:)g!w.V۠9YS7m^(a2~N[F%Œ,_`MB351@&oRgQBևEٺF뱺UsZ.w|C(!$RL"5.*)("T~[{ݏfH{AZ)%z 84tSHa)I+1?|Gܓ=&4䭊R-:P' v H:$Ikp)HQ IfvȧOSTn ˭ \\PY@A因JkpJk +l췌d%׼{h?_ GUϽƫ Q"иv a¼U鱷r$p@7TMe1܏Ïǧ^2Rs/sDnZ{ ysAu xW`bq&! hyXFd}z&&bb"隵W?ԨڸvxF pؓuyN"bŧ 3ފo|C$>ҾCzEEE aXKU!e 6; ",C !MUG_(CDrzdp;dLaU!uGMuؚ-޵QS0p-S HqqƍPkWFbvGd KMS=:llm 0BoQVUDpW>#I(tbBҲWTڰÆd x!oOЇ~Ji:eX yhu5mLd# 0Fuu> 6uѾ  &J=zy%Z?8K= t-t6,!acka,VŨ#Wq*LwKL5pl/f*g@?\ͥ<X\i3*DZbB4F1q΅ꌊB3A~̰&^\p{ӑ_h?/\f •Gk(cp˚:L "aQ,:\}YxuGp6␀~*c}GFq`$H$ Z >\Y;:USmh)6B"k_dl(_"փ%ct7P8V)o] $% Wk.DVaR[jg^{#9\BfNIªrXCt$(3Lٍb(,yѬb!$ NyG`v7}ceD̎k|j! yJjVG]U*<nwyT'䎤,m$]'IХ{%A2+EjkQ1>DqzK& QuˆJ!dY0&J7\i09JKe' 5|!t i위nq.][\ycFUZ}-\((BQ$f%zjd嫼au\7߀gqoijz\+7Af.rY)[r,ް{8Nt$a;v*Ͼ2!8ޔVuT)aH'2Fy7wc1e< 9/Erk&O,#5he@g7Rcz;]#W 9}lF_8.6?q7mdۓVzFTmeѮ]ApWub_mcb'Q9WE …wϭ5OXMK"p~UR;OEv Fwݖ/D'|}cX= ¶y{xù(ҎHyMGꋏei=}=-TS놩FfoY6Ni$++QmOm/Τy1w T9qnsP21yljʋ~"DP$Tke?dK*֯੕B mYNNkO ]>}x?X p"boEw\v\5g܃ЎU񥒾ٌo.Oid~AcF< i 5#+(JHS^~0* q*Q]yub>^Y OvGf%͓~:֯The&;{i77߳T?Y*Op]*;p潞wm #JEv#{,Ё1kph+@+b}Xy] K2!3 n \a&s2W>Z6{dvi2H6|+WHŧXnY,9^5Klk:S:V(Qz|/V3?m9hp(DC<0\G +%@2Y8>g5_vb e<ԞM?ˋC/:$?"OZn WL!)l]&"rn(h΄2.#ԏҕ]?"I [@؀?:KPn`An[-J'W:L~A;17\pɧ12޽5*=^ƃ 2fl +!J}Isfj>qo ήvO])@;wrk%%d[S:(A7e8/d@߭H5. D:ƞ^Q \CFDnl@2A %Hj?Z`;kx?YV?QAܖ_| `^_J,R=㪥[9yre[r N\Ñn0ͱc‰ÜkGJQi6UD :U -+ 'n3`*>1 ZKOp&Mk[/B%[60x8?*h.- Waj 䇲\c|{s3VCoͶ ݯU | O;-3!cVT)!brD2״vUvTןWzI)0"(@|Q+P^7GTVZ6AmjVX134s-GUP0ϫ$?ZDNFLSq9FʟX:A6'Zg=sgC'˧XeLFt#H:=8^b^ɆŰrǤa8TnY#.G;yDz01I(gptŽn!I~Ȭ֦ pԄ^|pr8|vCly'Vi~ņT?`Sw2-ͬxEhpfK1Ħ]H&8>uId`BxcS&*K-w=a#y΃:*o 1`*A Bv[\-ۜݵƳgs"l *><"n60IZw\~C!s5LNZ2R: (9u%K/P BWM៊Dq2_嗦CG [(_b.zXiDI4cRu_ kZbj[,`y% FC"p s$gXG!% *>.qowt1è%)k3a-]XN\4aZՕZȻ U,f[lK@,5,X"iܑ2"ǷQGG2>xe 8tK%O +NTupqlԟ }p _InCd0'Z&JM,xұUi[,9B~SX}"y_"ux:/RRnݸ.dC3Lt z fr7jc(bEqT9 MްV4?:vw8c"?J9^UJs{q-aBZwW4*5&{U[(J4br􎴀B˲T[$w]\ZV3FpqX {ۥ5uI5ӘGUA,Jڼ+jF]W ȲæSII̧uPHyDF76 =CL]|nn A"A{8\|g/:`hj:3?O ,{aࢪ9c2%_)P&aU0F/1lLV3ryb-GNJg9L/BWWm=e-<äz6ntaA05bkcJ~%o^l.a˱-:.$Zߗ9 WgXGrzOF0~Nppo,"]'Ay<0>f1LkH!!u#ÕdM=-XJegD3G_!]'0ȫZ6)0k>4gp4 w(!k3^IK1ْҮMgx^I'e{Ö;Wɠ,9G?bɬz-+ӔžV_yF)w7"a$:Wh1]_K΢R;KU혘YY "65аg[_<;"3v@F&5B@6ަ%՜*Y9aPݰˈ](qּxݍݑwGNV h:^&]N\Yʊ_Y˥'uf(.ȧr{#Zˀ0nr4Xߚ|$Y*i$g9]h 񮧗Osix&8VeS**W9λ)'EA=tR}w̝-Q5)Lx_u\Pg?jûA<$Ӂ)D'M݈jJ*&1;ݭ3ݯ k&*}z.Ĺ8onmVEۺ;RNmIٗG6_L>]s+_Gr=pFe LC#k_b:/=֘Ӆ"R|d9Rk[3,0\K 6z8ᡍ&jtm_ϵqz;Pt?Ќïm#oy2fsM< mH !P+-gF.cf}?QwZTsU䩵OP>U[C-+ a(9*٧JvVT9b0eְ1ԏ4T=\h`>Oq00^6rlE5+N@\_(BM&9t*ų)J} 1~a ڤBr4hsQ4`6ns?ׄ큲jevJ}EŞKtPE[&gG [` >a{VC)F =E.7]g3I8oj-OQ|fdl^TZ>D֐_ѿktʐ޻7kK~? ;oTxpzA<'bCfW4hQDS7$rJ񢃭V: .g3/z.˧f=JsѦ>WV-Jwغ^r"4 ,)- \gk̦nm@LmHgvHpnh(ňw6E&Z(?4$13՟mWKcZo ݁ _1aF}Cz.j6yxHƤRXɑsJQUOv݈t2FF='%.TF$Kil6cSo@O5Xݖu3DWDc$ 7{U;xQynOW/hƆ%JȄ7I"x E8]8T#NDk36*s1k5r:qhNW5ܪQ ΌGGכslZ,,rQnfCr|-LLJ=$YD?YΗ>tLV2?$+GDn6y F=)cI"6e,z҈E>s8TzXp5*?Ԫ=v#rM=e7 ʴ@aaF.BQ@hMכ]vHcRf bA`=5)&f[mz[C@n? etAp裾p(fzj.]3=>R@sFUIⰻEno i#Doˠ]))ƣQegn;s 3J~Q1=顯 ]2^le|١B~g/x`_?,AF(o=mN|B_$}>3[l7ď gDkJ~9]Uo*o`&F *CʃF+3Fbl+l:Dΐtf߂ӠtNbzuVeyDIV*{c5.ɼ6 M5b`\7Hۃ"G6ܘg+щ9) gR|Gڞ~l}69=d-߰LͥQnr4,Fo>suN'-ݬz2HQ{HۋN{t(r "r7([p<1^x,3?|'^OHa3TD۽TrFFևr4氙AY2 vVR:ÉT:cd$!NLaL䈧&\1MTf['KGjqAcPtDf] QC熘o4ԍcv@ڥ70+1*RqD SK~Y;}Ȓn!ݔ吃[Vw7'x9#:i*;Zn♵o.N^4D+uV"O6<ex5Yئ8B0p Q20r̚# nE*O/8Ӌd`Gp/@Bs+>d.R )ZZ}2 lVѽ D.%j)KjЮLƇMRa#r vq0o['+ןfMNoݶ3j}b]~I.'iW”lVPT5ϑSS6_ j{2\(* M5\vcZ`^msCZ}/Î.wKxI6SaA| 񵉞"9O)HJY|]§'ۍxGzk5LRF0˜JMqt= mw Ko;ſb 4 uRg ɂ #7 ʫ괮/,Y, 9~݁C(>\pf,L'X3G^ bv1(=QŇ:pt?1Z#81=8@s킘%a11B+eFyC.nxl=hq'MstZn Q⾫5.sn>׫yJx[ۿ\o vyѲԸ\ G;IA-Lt(`YXXi]ė&8e~66E4h[/h [J #R>'p[ktAbR45zZc4;@p'l~^L´1ADn;eAQw__mwfe7zR =D0Ar:} z mc5]J/ &[%nzd /c_}hy$SZ>>d"SW,`2G򆖔2 "PNoBRH0pmU (0۟ښ29qf;<8pu9Ry[s2~MR\'OBd&3Q0 8bݱݝa ~HĦAe)/ha0WN Gh?ȇ9ϗzʅgRδjڰiZ,=wu"qyZǣxUkbVp P- J`1B &r\C:Cgb NyD&;wӝ$XeS۸rb_7BD&yklQ#3|qO2Urb6PAU|(-jUjKf%K˘m~\:9'+Hp?ZvRZw+g|m> Jb5\zF[˩-a_餞" u!ʝ4ʫSP@% e|%M$z.QOj'I~zx7 քCQ}֎a^*(4r.FE1=k2wʼk~[W ivi9b*oEǗ`mFp%zBP)l݅;4[%Bh/8=iGp/,E-9hA^Hzcpyh=6MXe<@Z*F'hh6{7t&+99FhR^r_>o%z7wG|ڌ񅑣`,(N>Q*.U5jRerD+Eu3ler;znuK|K(h(}$Aܚ "p1zЇIdSh$Wig[oyie5f#^63X ACV~ҎX:d a湸cQ0p&chHx3m&Osh Dk/.ܾʹI"kH)oEa E9Qg0n&W ]+z|n.*qY֤y,I*=i9 T qҖWl_pm)-U"T-|Dzk& sJJNZg 0̌Ϳg2ktԳ FH|{Y:9nZ|ҺK~eǮDB>Euc(*L! xIMcGE&aMɶy +dԈ, hd^"חEǿ|C4uO$u xQh22_ F=X9cRZ P# D&ϒhsX!0EN}AƆVQ.^8i U iq'z ljg޹?7kY UzL1 0kIN}|Ez9M)Υ*NXrtT0j#5%gQiFW0p%XEy6fNWO~V|i=v~urΉCO;LsAxMƍ/V;9f/X1o9T!K\͌/]*T?Pwґlc]⒇f+dp)]qՊ!$X#45jJ}v)*cidySX?e6 ؊qq]h+i{1)_ Tup!æ QhQNb9%|6JQ {1]I" L=T͕)] ~McާQ+@o@mBN3E:\^ӖO*9kGj硩hBץWʱZ[=wzalC9kZGՒH5j ^4!|HsleT{2h z'u~ȵ{TSI,g%T(I< F&VMkWMwm@Ճ!MpCL,Bcj\1`33eV-CnQnHH@ cw3Xֵ7M.k/݃͘QV3}'|'QoG# 5vZ HC|!RF{9D:B! xMozƙ'_?0vgCmS\TZxn&'xQ[ Ȑ7f{/?(0;ji~}GΗ,zd_] -|bvS=҂t[s` YLZ*PXQމ#~,aN_ű?X1u}7TH/KC](Q$Jrǐ2=i.r4 %ٟzIwdw֠p4t7Źp[} Om Jѝlм0FXzdDH`r QX˼-b<@eNyl! zNOq[LjZ-G품jy A z=}d?)ѕL}g %#lb5.kEȿݽjɫ{>#a`-V{s=4HG; Ob0BE\Z~4h;Ct$DTkgC'1_Py6IST) //xMa=H{VrQ)X(.Z DΖ[VD/Sܔir^ϲWU}˕`mJԘkm£RGZN8Y<9n:ڵr@9 \>at')TLHVuآmAez $j$cvl?~. ܧN0ށ80%(H + [w]c@C٨ tHT=TV{{\5m2ּo=ڥIaR T)@FמxUIShqD΢}it'(;k'{樌蘴-7Xpw?Թ\-r#Q(bf&J>!af/ocä}fϊ𘨋tj>}a)YY+}fD ߦ׻vt֧T /\",-_aVf$| ೝ3>BX(uֽz#p?Dgvg=̇ :m@u_ ^锤T2#3iqҼ^|arH5ɑPYE. ם6ۥi<d'lm !Z-1Ei:h>Frxq*-|X=D.VxFXW_"/W[ % R[:@i"^2u;~.;y"[ (x? pkj}eHG0 3HZ~2s;qKxUd,gImBɉp.u+R)fuêN`-挽5}MkU뢴E('nmV^ ^6':mq-@XU j}ښ 4Z(˳uز8m?NR"/۱© Y9(GU|{o80(!_K6oR6kw 8Lx]繌c4٧@ Zsƀʼ'.gk{a@z'o;Bpy౔q@Y7b4R6f=&aH@d128ڌד:qƔ fu oS:Q؞adԼš4fuֵtˠ"轆d& >p~c<Au| NF-P3ޖPZ?-2 A9p4MG-x:ɋ.|\Mo;[,\5ÇوQY[ Y~jhr} ָҠ#^zO5J5 'LG/5S0N7 5zRX0Sx& -⥸YX%=z݉HoQ_'>p =7w}3jTAzҍD*< w(f{Tnd݃ʁ)LR(\g;CULpx=cҳϜD{87L]0*YMj8;6bVtB,^kg ܿ&)@W A7e|klD7 qx?Mo;{aT2 ֡U9WTv5vjgi2ߙEUw&5jdw$1cUS@qIg6 Կ`ׇm֏a|ry7g;`?-bf═P-)6ݐSVڟcH|__YJZM" 9kQ'X~ le,NJ]#%e{Sǵwf+y|7qW=E| $%f!+T/;)P,q]zsm~^cA8"ձQyk8IL%JPx%|r`& >8+ U@\7q۝=bl`>T Krts^cU<ޑYJ(25|R_X؟h@o"jVh[IHt}WϹj λ+YZX;c( ܁=5h&H!'Q@WJU{D,1n8?膌q+.VܵT1_S 1w\yoc4QI-у4]Cy bukkd[M–#oBWQ'7h83)qy|b.s59p}n7YՋaSQj6UGEU+'~Hݣ9iiDxJm`p(##%IK}\:;F [Bt&zjOӢF~Gq aeh  mL{16MEk1LxBu=Wk-YU ҂Fpl\bIVkJ8V.=@\32 V={+*f[1x.~_ueyI[x.HZ7F߉ /xج lx+~a^Yۋ F̀J)3vޮj%yP<i^Y` ;_"QҧR16&F܃\ y@kͦ-k&Mчk_^Nb2Gd·{^!1AtleӜPxZEDʾ-|tx|hib%3T2o?N0=B# 􊗹6Wl+@vEl\ň,^!?Nqn]G7w:90`^n֊ꢒ?{8E3XΛ'|7rc0,kC36`@”w 32'lȒBkb+*i rKB-B6xIJ/V^a憬q ۀ(_oZxCCKP"$!Q>mmϝ? _ z|*?Et*F5jp[fdXƙ1dHJB#"R)gMxC =yx[$cyV[kBoe* J `H uY8xBj'l‰k%-:a9o(\~12І^wKLbOֺζ)d Cj7 &rՖ^bkTAOsy,j艮|9 y6vX1)1Plg0Vj3V6e8q LaAN>ٝ\ ?0jFsca 2 -WzEh9<6.ݘ@]K' @5*(1a3֏~.8|ٲ!CN Vk!]=FWB1]!s+D>ǞKb~( vPe18*8Ɋ^` Li$B.&2b 7&POf845lMa gWoa̚HBLbn: 5;Uv@R:£;[k;h&MF h&:x턣X9WN(n} #Wf-Axe*Y9rS}dRf#*0jms~5ZxYoѫ tiݓ>kpAp-\eݧwĀknQ-w Y@slAj`G7F ̫lOR_qf{xf7[]v3Of0=5OlSPd,#͈vXnN͕˨:_Z(ŲѭՆ{B`Իh2%Ts~N$t曏뷖hNw;ZyHtՈW]͑TZO\ 7FPXkpVrG/ IoO;\-rd[}8g] 4ojIS#—t7AbTV]>H~i*?? yvzxg oN5'831*d4,blBYW{wkh=pfIHt2qW8U%ζhV /qvrGTp + ~wkCt!s >ǚ`$әIc(ǯ O. #oDoud&Ne?' 5MVDO[H8ȪjDwЮjb0BK'hPI .a"Oϣ;քay%GM˗GNIBG-0ƶ%@1VeҌ*w9"L@GJ"@iYIM^jۇ|0Q=ȭ_?xˁM,]@S#'~;+RDŽd^6(ډnLx}[MMLL[Zڑ`2!SmtQ:kو̫r<]wYS(!'] SCD \6ތvK@spd%RLE0gs.ću p!\18%]/?Rn;}#o^dL.7Y"=c%p̜U%8*Ny9@XNFΰ8LRC6-˼nRp!]f/DUС*zgydEo r@oʼ5BIiR%;qeY@J}'G٣`@|tg\M2DW '[v6*jO&='G}wZܖeҞ>`uosW m@N/ZTlHMC=~ijUĴdvJ?.EH#|`;@m 5 B"y^y9Dou=% d%CI2lfmVM$2/<@i֫i^wԛZ&q9gmNPBFbU)/E1WW )0͛k|!`q7XϘ:y˃eWpfDݓ~ˑSun[33M2S)۵z[^-ΓXM>HMK$y"^S<$âsݝh N#~SδL]+^ve7:$Y8ɣ:yW?I\g"ef>K#EꤑYa}"[eYa1]05 qR贱B!1'16PL7/.Tr#1ίutzCL{B9RoZr*BB@\>T0Cjr+(u>EsR4bj A'\C3J7,\o:a*ȲoLU% *)ڎy+rpk9> w|NOxGY :(bͰ h 0'e kDf U$em qg[dyM#x?q֗['Υdno(LrF=G[+ܬ)υ ə]L-F8:13p*1AMħqԹ~ٴZ/u]42 Et}tG70 |V1?`N 09ڮ"V BDCg(8 nzRĉxzK >Վ)0;:~+BVx^ }sP"qO\Ѯ{dVea}&lRYXgcc`2e8xj-Gg&n%)7ځ+Mj@0o'6Gc]Wb|h?K$(W0lIӽ֒3%3nI=<_mZm $I_nu,Mڢ :@`~Jvܒ9%hyq#HΞ5DBrx^7\'S$b10 }FQ]uʗ]t;?W;Zz!cP>͌$!: W;D[o-uZ7d:~O;섶KV~bt3~Tf"%A N/ M;۬@L$hUH$R10"<'=[GYR'|{f4XrYB%#'ҟo1`9=QL~i>u&FQwP$%{U H']pTz7C;I. y zLs-@Lb[^>ZRL0kD⚯ES.d2 aX#,jm81S#W@c2Iޤ28)o  =%qdL];)hگޘoiRwl2 ?kĒCxbAi߬FL]Ħ8Z0̉SW bh0J6"|@Z<$GňI/BV[J+tGmqJ*t:~w{).LN)Zxd J/cX Fx_vG%M8%KA+ܚC߸漾V%l| ;#hFrcOӊ,cXA 3Jn2 *NP/vM`hh6 ǯ]/ۼQz>A* TB(jOvTqX:WT2/ :Ro/, enq# uls I#*P^p_!9s)yu;7)҉ƓƧ^BʬbW.~|Z6Tm00궼,y^ o; o2:Xsjnp-kG}E qŸi1*Q'Ge_s?wt<*^\-Um>={bbӨ!Yq^{3QŲgotˀaO2Fp.}w DG|}j62Iai?3p`di[(`A 1Y)C֗9Ahx)37[%,sg=J9^ la|cD,)v!9%JgRUyXR,ڒ)*ga7 1j> Y[YGI'uT(0q IqE! ng/ 0֟݅ι#-v <1ٛHBik/Z?hq]-~-e"0FOhwLcNd#OZ>~a"&`Ë|w t3L> DB.:t`moh>EqMlAxZԒ$T[[ENPպ ;,ߘe+ =Xj-тs)r:\Q"TPuФ~lG/fjE6g:"4&MDjF^]uX&beNFe&rx}*/>U4VZ`yfLadi*g{Rq $eU!Uӧ)2!0sCϻ|}`9 z<2Qu+1XFܤ7'̫]_98k`V"-=pxwd03 Ϟ;}C#=dr~*;4Ѵ;~JΆy5 kwi*3bj]3o -<˖[%f"cm['> 5F S_x/KB6oGd: G j~?bxl[XlUs(LOASKfjpm-66g߄*CRSHpL@c]%3:FuAڦhr:%EfRhYk!|QBUkPkpfv5_x_b^ƖW8 q=Rk&ŘTEK& _S*]Q~L|] rAuq53Ѷt8㎳D4 &+uHN=yA#A$T^?'c%QI, BIUΐ]adU݅9gM*yPNՐ`щ.8hx:]J Q, vI 74(qA蜯ΘC_Nb%O{&==[F37-ϱ.ڙקt/i2R$Z1VYw7JH@R1XYK|FEpcxU^1L^BlDKʇC^QϮ 9\{n VowiU,yLہ%O9WaG"^$H2zkuNq?CU%dv/N,')݊C.10F I. 4V. Jtrj<{ףyh2׋fȇMjDq!4.mIS29ܘ_CdSJ5iTlvvgXmYM2ՄT 4_*)vq3GOl~<7 -W089$3) VxىMUÚ,}YVi6uJ Zvz͈c.%knj4%)YZp45C1bW'waNqYzWlMări'ANP"G^KhiJ|x`oU+Z~"Ls!9'~KީO<ؒ}9"2dřw˱{c`*7@^Nj8 Qݙ 2I Pj+k *H&(22G~3`eH *'+.@bvکEh:&|^3tF t-݈{scQjma켯s>h 8 WmNrھ\Hvr]Wt20(aq9#1s>>3|Ly. HxF $>mnx^N^׺IjX6{\4;{T_iAGӷ+hg8{F-,e9I (~PKOĒ/m1fxj_x2ߚzlwI jĭVQ7 FDfR%X-UW ې" _tT'2J#|=qA:\XFfAVnQ̦cLGs6llIVڭ[ x/eF8DǕ#\!uOc@η57 T!8uG6)DR,a1fh"7\s7@`N|;mmGRr`}^~-zANۤT[h[sM&+3)qbLТe(`,s*AVmMޖjVΉV",uPQo2)J`QĢ*h|;j/ݗ2KuP|aa) Wd2&rX  +{ i^^2w3 ]v &0q9pu \O&AQYO;q3X 1e" pESGs枣}o{2QV FXCh;[ίyb#_s*G6S~!#S6TghޒBX~>,rqVa{xmp fG*;~˯;P T3!{!s/aGyg|,DeOQq|mgzvgO?ӔOKEx]Q?!hȠgD >Tk># ;j^;#YMY>Z JJcҕ0 HǒEyՀ|6(~@ȲmH*iߤ&8\2ܓ6/&V÷Na\fnuC.}uЙ RH4&7>1QEWe8d=afl"DFѻ7 YmRm u:x\RezSvJ&lŎB=CsV;~ 9][8aLj[wT1}|~uv#-2, 50E?\6[h| X=`%yM}쟛gOSk,7}OF)Ae0_2֋Nٰh'~`y2b12%9xܚp>3[2!z,X lHW$rK]'xaY01taom xqhR_al\LEm3YV܅hvmK: |KM47$Ui%xdCH/[ڎteme>[j)6xYO`ZJ(# >o港{xϷ/ۉ֚$ z|O_ۈLaB%P:爵5O1$ +Z|v&fZlYsq^z:#*YblHgZVH.ǟ<6]7MĹslSC *rjސc/?Mf]ʼnJ&蹂T*߹0K QpԔ Uv+fbuN7Gbw䖪whi3>~ЄQt e+ǔt[ [Z(a. ϖ; Pc4N.9vcxT%DeeT\/x&KJOman5LpDeF7zt*#[!&'=j`ͫ.@o^k.`ŮZVB)U@(g7` C>DMi ;d^?\~'S6뒜>na\SO, pNNC̑>hBXœL$q;FE4,m7kԽLDO4p! =2 ߙSLjz{9~/`1q_Gr>:ޱDcnn[E~FCX K*@,C3ЧZ$b(.^@H+X:Z-`ׂ ڊȚRiDxX  M$q yzQV5y 9Χ*`,qwv,Ir˙vF* .^c:d$Di O5Y058"/g꒛F|l#<9t0~}rkX\f6Dsz|qHp #&ZgeFK(JZ[tD;a/'4kr.k_|T{/ v H9Mf!E .ފkxX@|bׅн=ځsǮJBP~ip/@x%0 _3"̵륵׎PۨUL$M<ZB9~"aTkasLbZp"9(`ܪLPkj/eܥqr/v0MEX_sY+J[\5Q$S:ڔ  `ӻȒ7cRMov؜ϩDO! (84dTJ-Xw>j?. .ۏ.XM5S6ܗ\[KLYͤlɣ+߽4:VgEКT_l7ABk$mk MV*Ut̀|hCOJg (m  b98Ŀ ^V-Hp1(|8}.IlE9Ul_h, =+Ea6v߈Ϫiz[Y)#9c2lFС&kyD&9.ۓX m<CKe3n未!Oklhlw-04BXV\qۚwxHC؟ŬĘ'[dhˀp0|03 9 aLA4)j Ti[:R"wF1CLP *^;=ٴa @+ `idPf<)7d޺z\Hi!e2;u XFT ݴi*]T]r{tCNڌeqCuA]a,N+Q/-0Xsoo߽>Q8ؖh`͑K=ADEt"m&?Xl0"L٩WwI'2ٗe@Cmz"2ZO8݄zE,ҘpyZo/S;RCi~gye?)cdL';޾tD\'Wx_%3?H錥(̻&T)N1n*F1+ϴ͞K򛵲ь)Auy K#X\tn.d" {xFȬnP~ P,:/fn'gH`_Ζ턷o;T~JHqv;vdX)",sOzViP[* f)V.RSÂ<‘lxb,NXS4p󞏊A_@FdPnG^".o|\Z!U|qo+MbpG}\L ϙvY^:1kTƷR"$FTя`mxs R;65kk)97Ie) FJ841DPRn%\'Y}a{Lv YZ