python2-mock-3.0.5-lp151.5.3.1<>,lh_˸/=„r2 ꞩ^1g| b.ԠjUكD٭{sԖn-j jVG0.q@Hu5>ɊΆc6Jr"%m2,8 hΥ# 5h# 6g r_&Ee`]{eV7Jɷ(ts><(,CYD"Jv t!lto_p ) Ai^nxCq?La>A)?)d ! S HNX    h xX(8 9 : B$*F$6G$LH$I$X$Y$Z%[% \% ]%`^&(b&c'd(0e(5f(8l(:u(Lv(w(x) y)`z)x))))Cpython2-mock3.0.5lp151.5.3.1A Python Mocking and Patching Library for Testingmock is a Python module that provides a core Mock class. It removes the need to create a host of stubs throughout your test suite. After performing an action, you can make assertions about which methods / attributes were used and arguments they were called with. You can also specify return values and set needed attributes in the normal way._obs-arm-9LopenSUSE Leap 15.1openSUSEBSD-2-Clausehttp://bugs.opensuse.orgDevelopment/Languages/Pythonhttp://www.voidspace.org.uk/python/mock/linuxnoarch >oq**Q=33>AA큤A큤_______\__\___\\d73af30dda37a4cd7961d7584b0e5bf2047f3c2135910748336a86158f65b080ebe995d73d45287ac9b5d2899a7c9f074c287dbe9c3614b61a26908998b8f78d01ba4719c80b6fe911b091a7c05124b64eeece964e09c058ef8f9805daca546b5dea43707f390abba9269d9b284d6e6ab8dce4bb2e441db3315455424035a07761b1946176b6d6031da0cac42e0f359e77e47c121de491809bb2bc6cc53c8564d12751c6e75f5d3d14b7fd4109e6c65d869e23347ee1f77286fee33ecf3c5fe30f2117b2c0e0f14ae1719a59c3456a730d5c9c85539beb26c7aa53416cef847d0f2117b2c0e0f14ae1719a59c3456a730d5c9c85539beb26c7aa53416cef847db6856a2cba3de51599a836c094bd0166cba923dafc88d8849427419909aa352e95bab8dd6437fd7bb1e4c6002a7f7c741449d42e36f14feb7e086e9c25b54e8b95bab8dd6437fd7bb1e4c6002a7f7c741449d42e36f14feb7e086e9c25b54e8b5831ee149d3850b28df8ff02fb7bd07cecda81e85cc8435c20827d3922202d343495948021cf30144d004fa30daf9162ca2717d1f9eff1bacda234010e00e414rootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootpython-mock-3.0.5-lp151.5.3.1.src.rpmpython-mockpython2-mock@     python(abi)python2-funcsigspython2-sixrpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)2.713.0.4-14.6.0-14.0-15.2-14.14.1\ڭ[qrZN@YWmcepl@suse.comtchvatal@suse.comdmueller@suse.comjmatejek@suse.comtbechtold@suse.comtbechtold@suse.comfrede@b1-systems.detoddrme2178@gmail.comseife+obs@b1-systems.comdmueller@suse.com- update to 3.0.5 - drop remove_unittest2.patch * more in CHANGELOG.rst- Remove dependency on unittest2 Add remove_unittest2.patch to facilitate that Remove unnecessary now unittest2-fallback.patch- Condition python2 build to ensure we can build py3 only package- adjust requires for singlespec'ified python-funcsigs- update for multipython build - remove test runner because it performs dark magic that causes a failure in test suite - implement fallback to python's own unittest instead of unittest2 if we're on Python 3 (to avoid dependencies on funcsigs and unittest2) (unittest2-fallback.patch)- Fix pytohn-funcsigs Requires- update to 2.0.0: * Fix #338: depend on a fixed version of funcsigs * More 3.2 support dropping cleanup * Update sync point * Add Mock.assert_called() * Issue25347 - Format the error message output of mock's assert_has_calls method * Issue #22138: Fix mock.patch behavior when patching descriptors. Restore original values after patching * Issue #24857: Comparing call_args to a long sequence now correctly returns a boolean result instead of raising an exception * Issue #23004: mock_open() now reads binary data correctly when the type of read_data is bytes * Add version info in the docs * Update six to a version with raises_from * Fix #328 - handle unicode __repr__ on Python 2.x * Drop support for Python 3.2 * Fix typo in docs/index.txt * Fix README.rst checking * Be clearer about Python version compat * Issue #295: use a setup_requires dependency * Improve grouping of imports in tests * Use six to detect python2/3 in main module * Use six to detect python2/3 in test modules - adjust Requires - use pypi.io as Source url- BuildRequires python-setuptools >= 17.1 If you have a lower version the build will fail.- BuildRequires python-funcsigs. It was already in Requires, but is also needed at build time for unit tests.- python-mock now requires python-pbr- update to 1.3.0: * Update sync point * Issue #21750: Further fixup to be styled like other mock APIs * Typo fix in mock.patch * Revert "Issue #21750: mock_open.read_data can now be read from each instance, as it" * Add 2.6 back to classifiers * Record sync point * Issue #21750: mock_open.read_data can now be read from each instance, as it could in Python 3.3 * Issue #18622: unittest.mock.mock_open().reset_mock would recurse infinitely * Folk should test 2.6 locally too * Closes #279: setuptools.version is too new * Support python 2.6 * Update sync point and sync docs * Issue #23661: unittest.mock side_effects can now be exceptions again * Abort installation if the installer is using setuptools<17.1 * Closes #269: setup_requires pbr 1.3 * Closes #257: version the dependency on six * Rename README.txt to README.rst * Make reproducing travis behaviour somewhat easier * Cleanup version number handling * Overhaul docs * Update docs * Remove stale MANIFEST.in, ignore pbr outputs * Convert to a package, use pbr, update metadata * Bump versions * Officially drop 2.6 support * Issue #23310: Fix MagicMock's initializer to work with __methods__. Behavior equivalent to m.configure_mock(). Patch by Kasia Jachim * Issue #23568: Add rdivmod support to MagicMock() objects * Issue #23581: Add matmul support to MagicMock * Issue #23326: Removed __ne__ implementations. Since fixing default __ne__ implementation in issue #21408 they are redundant * Issue #22823: Use set literals instead of creating a set from a list. Fixed an output of sets in examples * Closes #21270 : We now override tuple methods in mock.call objects * Suppress a couple more DeprecationWarnings in the test suite * Closes #21256: Printout of keyword args in deterministic order in mock calls * Removes unused varargs and varkwargs from assert_not_called() * Closes Issue 21262: New method assert_not_called for Mock * Closes Issue 21238: New keyword argument `unsafe` to Mock * Closes issue 21239. unittest.mock.patch.stopall() did not work deterministically when the same name was patched multiple times * Closes Issue 21222 * Closes issue 17660. You no longer need to explicitly pass create=True when patching builtin names * Issue 17826. Setting an iterable side_effect on a mock created by create_autospec now works * Issue 20968. unittest.mock.MagicMock now supports division * Issue #20189: Four additional builtin types (PyTypeObject, PyMethodDescr_Type, _PyMethodWrapper_Type, and PyWrapperDescr_Type) have been modified to provide introspection information for builtins. Also: many additional Lib, test suite, and Argument Clinic fixes * Issue #19594: Use specific asserts in unittest tests * Remove shadowed test * Adjust comment * Issue #19013: add a __main__ to unittest.test.testmock to ease CLI invocation * Issue #19013: add unittest.main() epilogs to unittest.mock's own test modules * Process DEFAULT values in mock side_effect that returns iterator * Closes issue 17467. Add readline and readlines support to unittest.mock.mock_open * Issue #17047: remove doubled words added in 3.3 as reported by Serhiy Storchaka and Matthew Barnett * Issue #17015: When it has a spec, a Mock object now inspects its signature when matching calls, so that arguments can be matched positionally or by name * Closes issue 15323. Improve failure message of Mock.assert_called_once_with * Close #14857: fix regression in references to PEP 3135 implicit __class__ closure variable. Reopens issue #12370, but also updates unittest.mock to workaround that issue * Remove incorrect comment * Closes issue 14634. unittest.mock.create_autospec now supports keyword only arguments * unittest.mock: removed another bit of Python 2 only code * Adding unittest.mock documentation * unittest.mock: remove another piece of Python 2 specific code * Remove more Python 2 code from unittest.mock (obsolete function attributes) * Support subclassing unittest.mock._patch and fix various obscure bugs around patcher spec arguments * unittest.mock.MagicMock objects are now unorderable by default * Removed XXX from unittest.mock docstring and switch to a nicer try...except...finally * Remove more Python 2 compatibility cruft from unittest.mock * PEP 417: Adding unittest.mock * Ignore patch rejects too * Add NEWS * Add PyPy to travis * Issue #20189: Four additional builtin types * Just hard-depend on unittest2 * Fix typo in test name * Some basic release process notes * Ignore more editor files * Add testrepository configuration * We never need sudo. Containers FTW * Fixup ignores * Iterating on .travis.yml * Setup Travis-CI - drop mock-unittest2py27.patch, no longer neededpython-mockobs-arm-9 1603462347 3.0.5-lp151.5.3.13.0.5-lp151.5.3.13.0.5-lp151.5.3.1mockmock-3.0.5-py2.7.egg-infoPKG-INFOSOURCES.txtdependency_links.txtrequires.txttop_level.txt__init__.py__init__.pyc__init__.pyomock.pymock.pycmock.pyopython2-mockLICENSE.txtREADME.rst/usr/lib/python2.7/site-packages//usr/lib/python2.7/site-packages/mock-3.0.5-py2.7.egg-info//usr/lib/python2.7/site-packages/mock//usr/share/doc/packages//usr/share/doc/packages/python2-mock/-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:Maintenance:14700/openSUSE_Leap_15.1_Update_ports/a178e34da0c62fbc0d52f5cef6566380-python-mock.openSUSE_Leap_15.1_Updatedrpmxz5noarch-suse-linuxdirectoryASCII textPython script, ASCII text executablepython 2.7 byte-compiledRRRRRR1 \`Eutf-8faa0c9710d94516fb3f8625d955fbf78a23c39633a50a77309726e8117ca3529?7zXZ !t/#>]"k%) H5fJ`(`WP첖aʥ vZΑ'UkNF/Lw;Nvhѳptwxu8#-t~O=̪'*y3d^g!S3dbB W~V48'@);>"6:r7A3$RG2,g1r!9nÛ~̪ljLeϧvn%!T{>]~ ,<Axa7;\ c\ s*;s$hZv;$=WMģVYu긊>J ?Yżzm Űd_kͿ O nx+x@XxS/KS!D/DѰ E.i:'~f ?j ?c1%_;: ^P)EwF!`z~+ b9~!|[cJ5qezhMvz#kٯMYpO-zLwxۯ{B`,Τ7B nb%N+_`4aE Y zݬøOЬLNӤ ~e\!Ur6TOᚩywnv6}~+W?3̎L22QQruijK*fPO2w$HGq!,J u#r jg}] ,c<+ ׎@R9|pz"}״̯.y|?~0aS/KEIOST=L2qF0r]r{$@>ϚFeѵ ;t (<(vGRqĬx#I45m2YY1j9{dnmQ謚SN<*1(T{솏&fL=vثYm )5 GQʘ"%F0: YUZZ63hb|]ҲG#E,:sio: &<| 39Zu- :[0Svxk%it1 ߲gǭH T \g-NJps-iGz{kѪC "6ʓGg;rG5Eqz (R { ǛAV6T|.=d m]^@.209ib'pj(d#F%G^޲9(㗑EZm r'KcSCfg՚2qKh&-vC_ y7Ɲd,{ ",>Pf"V[9oᏌ7Ԗp& T"wu6W֒N23Azf)- 寭tZ0h(Ҿ LVHLĢ~RStxTe&5 Rt>msiE.*11gF֒(g{-4/5ۖ.Z1H ͦPj\#EF]xK#1OOt% ݎ-U:(H\J>@) v4-4'm&DCMm2NDcOgM< a>eR,[,rna׳g+e4˽Dz]UJ))SKNR1@xpIpjs4((Zӈ05o8ԙIіܟ.<ʨ*=>:heguv*!aB-UiM#wuK|Ejڷ;,p&yF':= (8S'xՖsByGe}Y|85y„&a/AMfOZs=6?j'VB~9! W-\4>9u+RR3U79.YjfuhmZ:[G GɅ%ۡ&<69E =ə} pF"[*9ЩAuQ PWĶG $vCtA|ٵl0ix. xZ,Nw XCo5iJ=Q$6d5 _eC Z6 ?+즁-a'y(X/VAɻ-3U8N@J][+angȏVX×٠c9=P6.L3e_wp|G8K :j+CT" ZTl@nyƂ;E|'*8".D2Mz6;{DxgM5"M(:-EA$q&*8[sʍ˳7|1WzUP[!k*N-eXOM/x;]$y:vߦ\HQe3qθ`2N$ȮjB㍿KWnInj#I%7(F#P]L˂\dZ6DO5gxYR:=F9}Gͣ:Fef2Z\ 9aq5iWNkId^*9u84uGi⦆;.@ꮲɐ|\I4BQ@dy`( B ~kD~\fz .uXW|Gq!sϡ7]R(29 ?UyhR/#B89?+Zb$Ձ>: (0\>eNdRu8 t}p>5:> Q;#|0dUn(3MXv+0DO$YHRLG%x%V{27kʻ7.iw#Oeu&zr24CU'jq=8R\ً^MbBI;4f  =M,)0R[HaMOȲ?%|Δ- 43x=<Jʮ݄܅@ֹ,,R)jJ0 [}IuX@Ѥṕ UK_۶$xu%f﷘V5,G牾sE.?pN!jb/PpiKwQQI2J% }c홼i#N bmiy? _Y'{D,2~{R0j1N8lZb%]{WrЮˣ]dȢ(O(yo F%^+x3ZtEa-NfAI/TR3kz܈~Lb jV:VOb]YC\Q3QvoUM@쓼}$`Uu/GG5Dy`L4\& /NI/٥w&U#y3L焟}oOrRLV۴}/6{S~Wϳ7ɌfNM8:'ZaʥUh퍏,] MYӯ[#Kc D,:[2'WuHc* GTٽ^MFѨSTo}INnЮS#q^#(b!lKK~KTN~Z%l߾ԠkJՅYxU` *"zۆ\F鑷&p9r]5F9wWCWK2|HI_0U w^HY9GS> e+>Hf%}xI:i"V|K7Үx.35ز߰O윔rW5GذuVc-:;%R-vA qUz@lG6|w@0sau F31}Bog;k2 fMHe6s?Zo 혎picintwkt.Sh0 Bffy8Af& JA`gGIz%I5({^߭'|wk3Ji/Η0{E2k<݉W@}pS/5 KvrR$΋- ,z=!Uύ5HO.7&5v$o7&kUO~4ns9+EOr$& jy#TC~rgŌ@s>N=Kj;X.ڝԵeif&e0׃)0.o'werg,I NőhʻS]X\fuN~(0KWž8hcn'/ZF Sw~9tT(cT.MՐPzh:+Ϥp?z=PvT~iLW<-ϵEʙ?'|֢&pL= Tw]t(YdfKDFodMIicz g1wk>Ə"mMJW~ ܽQF͡Fibc:$7MB&i{\.<>Rc pd,-nڵ@Gz,HwCK+37}J빂=ho%JCX8(`"=9zkQ|} ٷZo6v:Eg/S݄K)J_?&cc|5DwB:6ҳ]q6wm}"D@z vq )H`hߢZuΌHU H4z|)|h[ۿUψA$D( 05K,h,I*+`&movgf*|$mRJdL_Onp:Y{"r71cR},EaLg&mr',ՑUGF>x81;Jx@&=iKa٤TZs2ethSKO{e?|ntZ `Ew>y֙12?,%E]kĀqc> `ιDWI9`D'5bw>_AC62뼑CGJćMį@}$=]@}#xDyZGdO;!1|y"f1|oU6u!vv5{4O'B7O\e:9ܒY~X{ʟ$IA[a\ٖ»C^{m }L޵"63~4q3 /?bx!G{|Q!mjѱJ Sd͡VBVkB2G|9(Q[w{O{H&?z_2b2sdWehCj*ƉX{6N[Eb N}= Ӻ&Ü@ԼF7'"z qЦ͵cF6Ev.dp?mUcñS # pB3.JM37Mw9^"AT6W #ff:em ݆ vs8EX.\_%4TX+$cTcBsG˒)NȕEК1zb\SWo0mBd-+zY (d:6EA8CnG}r+m3ΫFTQ*wb=\aB Ptk1Mo+ JhʳŰ=4*X78%xצp.TlAFFGH&,TY vK؋I=ج0S̡4ጐJ" msz9…:!#~]!ȘEѯeNPv긦V)=)I[K"0ŗҹ*U=05IG%Tϥ](;څ`fk>1eX K4H (q~;_ϙeήC7_htw,wFr^i7ᖘ| qw`%.{;S)j^bk^j@NF2/RgM #.3tX]9iMiKvQӼ͂/+94=ʫTb%~s fY'g;r`lw֬lգUrG!q?}3X(1%ޙĝk(~vS"$VJ8?%=BRimӲ*D-$@̕\)R"ti3nXwy)> U( %{muƆdwH³Lo]?&Y*Ouak8~8jx=?<&_?z]ƶN'L87=hoJ xOU{ \^p);fE@< =g`'/[zPIZxdXxr4)߷Mo~_U31@aA׏  )#ZZ3\7E+z\cn@ֳ[(p!ELaWոi5}mHʃ{QAi*Wz+dy/y)ORLO 4g>vWisD0<9 샣8 y}6]D*S >)ϩSb<]]e%EѕV7xؑ\.:ڟ Sn삋iIWU@Ŝ^q2ԆTc&xAō3 4:r.Q-Ubъ;Wt:&րXVbHM:+#+ϝ ,#idIjߍe6]~YN2J N(6ѼmI /$ IR5d+>jZG1f_33ރd|eg74*nVsqCz۴ {hO{e/Q9xNnU]%ْo=Ph6cq&ׯuA;Yyiv6SbG>_}=6+{qŁO0/15wU\(ї֬&[qCu Feаc `)L29ceO vɢHJ~gեqots8oĮ\,,c]#d .]!xi觡"Q^砽;?B\~ :B ~T&!oB'DXX3y}XPio,vh[L4J&8u3¨Ԋ7kTH5b5"ĺ/"2yo([/|:vȾ@ ǿZ/CTnG s/jmr"JJIJ6OZ&):3kO`⎚m:X*{ggVo8`Yz%/aD4ٞAq(-<|t t7{lݨT5Je i.xeO߁0+{#bX=:7u1a: &Sx6UY:E:å ȲJ]\K@&.xDfPm`kA,A)"쎉o$ \{:~PV6A9;_oL8'dMh\oe)-k7U-o(%h";|{+۠%4ku n[m=Y0Ԗ̍s\5/`bHF\fIg4fKP`cubJ>C̥WcwyD!<s'T`HJڭb,gxMgS.}ov f9iCEdM@^T̈#dCm} |r6."WSt"ѷ!uI-$6&mHuZ3*v}Z#cBRzGpNd`# fmo Z/ܘjinj01O#͈I?XДLN>\P*u; VPnO1+k/'cviyS%?NҖla.E#9 ᰋig^eY Iv fdLG&MH(txm҈)qt#NBZ5M u6>ؿ Ȟo*,u_(gM=%Uo Fqlhb O XpCKG\U脁N`4 $oӹV-Q~SY4x =f)v'[T2&^  \fUdw1?''}qHjqS)0Fi@r8͒fdT ̄3$A'Naʱ=*յ]ksސoHd[c%3(:}d]3Esf,2kPХgҪ#df9~#sW`I]saGȀ%WI4KuۨCɮA9>~SClyZP ʮv;aFUM,|gK'}GJC֔1@l,qg`D!eGg2j#B6{ؼ\^`ĝ0뗻[&!xf!X65>vA#:*K_Z!Q!7rh혘7(u9 8t;Z-L-n. =_s:pM (Lj`ml$|:,k_汸O.؀1=l^(rN3g8/ܰ ܦ_4޽LZBVKwK˿rCxyw.Hr )w޿a${$6GCfrxAl#I̅SQv\~Ⱥ X8)^ qDu)~ʆV lz؆gq4TkUQꑁSX: ?p,;@h~2F3ʎK @(/B9>Y&B}+>:ur&Wњz\>hxG[[F&ŝJ3KWIN䒱˜pyF#2T9&fTXA: _Eс(5G*q: j(%+:=A!p%TἭyJˑХ̢5bqAE7Zz^N,Sbؖ?bY"n~-`x&<Z#Oڧ lR"*֤΁>%>cGe8~4:3:ѸBp\O G Dz*]5eœFco}tF:%]>EF8 wZE3q:l_K%FQMX Pf̷TYȠP[cWq6k|TӜ;2$P7a_%̴ K ㆾUHFd7T !ß`Ν $! 6짘Lj~f /J1)"x ӡB4i"$]5UIƍ#j+u jՏu)=dM8鱛/rb4&{e(8#/z#B'LRŏ)(, qAPrY Y^,Gh;2wHFQ`lͷ~v&v-z̓A=Ry{P.iڲPp@Wh t2^C킐 `:v֯chr"$ Aȳo>ES8IzD!a%M-4C quxhΏ'Y5:'mY*gȰM𨜅$3 _ݵ7xxhߖv.Ɖנ'qn֦Y`E.NV)w)ɖK{4Ad;ǧԦXBr#|e{e§{'Y8 HlYfAvhc֎yryBjJdssAWx@48i?|$"W>Jn揈j |wNOۉiۙG& JKI `14@K0`ߚCv}|r.{i{1Tz u?,C|{k$6`JbQ2swA ֲކ,-0F D+U(,0K _=ܞ15w#v i/\剖~kcܨƘ@V q \(@q[OF%C!4[=,̷?M{Fa7Z>$K'352$%\6듈hX:q/l 609\GKLSWm `#b ˠ`(?)ϧR2MJs:qQ8ŶڭzH@1jo[ vSSb|b)Lhom{ᳮ G +}SntB27lGq+;^bMpWiNP^n8lp4""6D6]&PzUa.jΈLv$U6lK~)MD\хDKU!GIT'K T_^Ecd?]x3i 1Лۣh|>|< mwK%s%t hyCS 9`H`KrL8g!򧳅QL"u` }Lrw OR k1͌Y.JyΥbe|^l.ֆ%T{w ^[XrS=~6Àu nf*!ބsl 4Ky)ظ} Xs2@O w!_l¾ҧHH3YYRd vN$ L ?`mX۹qd 'sK /oshA"1~e>E,nNlwr`)G`2)>g)g֦#&v?slR=e*x&,E,Jp % ksp" +tDu7%ZOrW`uﶪFr8WX1{r5QEZ'Hi.TM%z`3L?Rjo2!y)hVIᲸz.c=N4jEnw{&?׈#e?Él_[lJxX B a`\ƠbD^*ΜB ić'7e[qbQod_:3Dbf)1,LUCOږ}moz6B3V uV|%lxVh(btMYH+T,PZ*sӒbE;QJJ'P料5lRx;݈J8$Uvdz:moWnWE@vZnW2\E#2I&r6yW=$&Ӣ<:ӥU,^7VL_\heҲ;'vȒ$`h jyXʔ!CWoI+ML[Xl!ـT֠9*20x_fҥ2_juߪ( SiGjQw=Aa6p^.Sh?"-NPyAYZL6 _+ct&dnjTna3}C.IHo  &z eM'Ѕ ~h!PZ a@XDi,~:8^2ȏ`v=FW~Xes> @s9.3)9#̍iǟj&U[pQ 9Pq}LFR2TZ3l.dP|ܻöcpRpXauB\O$#I>;IS@Z꓍r8+rԃ,WXFNƐ󿆧K|gn B3 rL//\; $qg*Bqx0qR }i+ԩR3aeҹ,: \hZ.j6GJ9i}Ϊ*:i q.Uwπ޼JHcNvw+%Wg  z⧯#V}jv3ɡimcŤ9zW7ed\,W&/nl?rD¹-~; ?'\aFWjW} z21Rve[iK,F/@ Beūl49n}#3Ԟ|$F(OvrOO@u.G% &C9yfC's [#[qވƯ 2[>J1T ̚$ S0 {e}Nn!&ӏkWmi(݉iԵ#LTniG:vv<>^5<ϒq1 t lA-tm=hͭTPo?Aʆ)sH?"V~5 5 пE)x7 >r ϋEUHF#j݂&~lk/7P_VF]l#Oo,0 E0C%q6 IbG&z.H9I7pd5+`ؔ{!Cn)u\ >S;߭In]Z}$VQ`~b8[}4~u@(.gަT-{A.6d;64(CPI-}C1_J@'礬X3 Ae?t殏h+2_H!j)~zO9S Mw[.\TyJodՙѭRQ#.z{6o7A߇|nSz. S2i ~e L`3e\j!ٷRȹt4R]-./l$|΋w#F[Sl|-]-D $4|㞶 YZ