python2-zope.interface-debuginfo-5.1.0-lp152.4.3.1 4>$  Ap_͗/=„9^(l6a lM /ZlVf*33n5a;$*UT:sܽC~Q+QUCfɍbq8YR)־YYڷL,Z[t&e= }`Lwins_R L05>p@#?#!' 3 h$(04GPX q       L       <l (8 9 :A F,G@ Hp I XY\ ]8 ^ b ^c!d!e!f!l!u! v!w" x" y#z####F#X#\#b#python2-zope.interface-debuginfo5.1.0lp152.4.3.1Debug information for package python2-zope.interfaceThis package provides debug information for package python2-zope.interface. Debug information is useful when developing applications that use this package or when debugging this package._͐build78openSUSE Leap 15.2openSUSEZPL-2.1http://bugs.opensuse.orgDevelopment/Debughttps://pypi.python.org/pypi/zope.interfacelinuxx86_64aAAAAAAAAA큤_͋_͐_͐_͐_͐_͋_͋_͋_͋_͋_͋_͋56e3545f2994b6bf00dfc0668f2b1ffd5f84f4704d25c342b4c5d302ca02100f../../../../../usr/lib64/python2.7/site-packages/zope/interface/_zope_interface_coptimizations.so../../../../../usr/lib/debug/usr/lib64/python2.7/site-packages/zope/interface/_zope_interface_coptimizations.so-5.1.0-lp152.4.3.1.x86_64.debugrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootpython-zope.interface-5.1.0-lp152.4.3.1.src.rpmdebuginfo(build-id)python2-zope.interface-debuginfopython2-zope.interface-debuginfo(x86-64)    python-zope.interface-debuginfo(x86-64)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)5.1.0-lp152.4.3.13.0.4-14.6.0-14.0-15.2-14.14.1_@^^y@^oj@]7@\C@\ @[9@YGYEXX*UUMatej Cepl Tomáš Chvátal pgajdos@suse.compgajdos@suse.comSteve Kowalik Marketa Calabkova Tomáš Chvátal tchvatal@suse.comokurz@suse.comokurz@suse.comokurz@suse.comdmueller@suse.combenoit.monin@gmx.fr- Update to 5.1.0 to allow upgrade of python-mailman (sr#842976, bsc#1172933, jsc#PM-1954).- Update to 5.1.0: * Make @implementer(*iface) and classImplements(cls, *iface) ignore redundant interfaces. If the class already implements an interface through inheritance, it is no longer redeclared specifically for cls. This solves many instances of inconsistent resolution orders, while still allowing the interface to be declared for readability and maintenance purposes. See issue 199. * Remove all bare except: statements. Previously, when accessing special attributes such as __provides__, __providedBy__, __class__ and __conform__, this package wrapped such access in a bare except: statement, meaning that many errors could pass silently; typically this would result in a fallback path being taken and sometimes (like with providedBy()) the result would be non-sensical. This is especially true when those attributes are implemented with descriptors. Now, only AttributeError is caught. This makes errors more obvious. * In addition, ZODB errors like POSKeyError could now be propagated where previously they would ignored by this package. * Require that the second argument (bases) to InterfaceClass is a tuple. This only matters when directly using InterfaceClass to create new interfaces dynamically. Previously, an individual interface was allowed, but did not work correctly. Now it is consistent with type and requires a tuple. * Let interfaces define custom __adapt__ methods. This implements the other side of the PEP 246 adaptation protocol: objects being adapted could already implement __conform__ if they know about the interface, and now interfaces can implement __adapt__ if they know about particular objects. There is no performance penalty for interfaces that do not supply custom __adapt__ methods. * Make the internal singleton object returned by APIs like implementedBy and directlyProvidedBy for objects that implement or provide no interfaces more immutable. Previously an internal cache could be mutated. See issue 204.- version update to 5.0.1 * lot of changes, see CHANGES.rst- version update to 4.7.2 - Remove deprecated use of setuptools features. See `issue 30 `_.- update to 4.7.1: * Use Python 3 syntax in the documentation. See issue 119. * Drop support for Python 3.4. * Fix queryTaggedValue, getTaggedValue, getTaggedValueTags subclass inheritance. See PR 144. * Add support for Python 3.8.- update to version 4.6.0 * Add support for Python 3.7 * Fix verifyObject for class objects with staticmethods on Python 3.- Fix fdupes call- Version update to 4.5.0: * Allow registering and unregistering instance methods as listeners. See issue 12 and PR 102. * Synchronize and simplify zope/__init__.py. See issue 114 * Avoid exceptions when the __annotations__ attribute is added to interface definitions with Python 3.x type hints. See issue 98. * Fix the possibility of a rare crash in the C extension when deallocating items. See issue 100.- Cover building python3 packages as well- Update to 4.4.2 * Fix a regression storing zope.component.persistentregistry.PersistentRegistry instances. See issue 85. * Fix a regression that could lead to the utility registration cache of Components getting out of sync. See issue 93. - Update to 4.4.1 * Simplify the caching of utility-registration data. In addition to simplification, avoids spurious test failures when checking for leaks in tests with persistent registries. See pull 84. * Raise ValueError when non-text names are passed to adapter registry methods: prevents corruption of lookup caches. - Update to 4.4.0 * Avoid a warning from the C compiler. (https://github.com/zopefoundation/zope.interface/issues/71) * Add support for Python 3.6. - Update to 4.3.3 * Correct typos and ReST formatting errors in documentation. * Add API documentation for the adapter registry. * Ensure that the LICENSE.txt file is included in built wheels. * Fix C optimizations broken on Py3k. See the Python bug at: http://bugs.python.org/issue15657 (https://github.com/zopefoundation/zope.interface/issues/60) - Update to 4.3.2 * Fix equality testing of implementedBy objects and proxies. (https://github.com/zopefoundation/zope.interface/issues/55) - Prevent duplicate doc package generation - Cleanup duplicates in build tree- Convert package to singlespec- update to 4.3.1: - Support Components subclasses that are not hashable. (https://github.com/zopefoundation/zope.interface/issues/53) - Add the ability to sort the objects returned by ``implementedBy``. This is compatible with the way interface classes sort so they can be used together in ordered containers like BTrees. (https://github.com/zopefoundation/zope.interface/issues/42) - Make ``setuptools`` a hard dependency of ``setup.py``. - Change a linear algorithm (O(n)) in ``Components.registerUtility`` and ``Components.unregisterUtility`` into a dictionary lookup (O(1)) for hashable components. This substantially improves the time taken to manipulate utilities in large registries at the cost of some additional memory usage. (https://github.com/zopefoundation/zope.interface/issues/46)- update to version 4.1.2: * Add support for PyPy3. * Remove unittest assertions deprecated in Python3.x. * Add zope.interface.document.asReStructuredText, which formats the generated text for an interface using ReST double-backtick markers. - fix documentation generation - pass -q to test to avoid spamming the build logbuild78 1603259792 bf1c72c05420e4dcb82afce2cca1180fcd9d56005.1.0-lp152.4.3.15.1.0-lp152.4.3.1 debug.build-idbf1c72c05420e4dcb82afce2cca1180fcd9d56001c72c05420e4dcb82afce2cca1180fcd9d5600.debugusrlib64python2.7site-packageszopeinterface_zope_interface_coptimizations.so-5.1.0-lp152.4.3.1.x86_64.debug/usr/lib//usr/lib/debug//usr/lib/debug/.build-id//usr/lib/debug/.build-id/bf//usr/lib/debug/usr//usr/lib/debug/usr/lib64//usr/lib/debug/usr/lib64/python2.7//usr/lib/debug/usr/lib64/python2.7/site-packages//usr/lib/debug/usr/lib64/python2.7/site-packages/zope//usr/lib/debug/usr/lib64/python2.7/site-packages/zope/interface/-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:13039/openSUSE_Leap_15.2_Update/da88eca998a77a667b533a4552ad8389-python-zope.interface.openSUSE_Leap_15.2_Updatecpioxz5x86_64-suse-linuxdirectoryELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=bf1c72c05420e4dcb82afce2cca1180fcd9d5600, with debug_info, not strippedPl8M r͝ !python-zope.interface-debugsource(x86-64)5.1.0-lp152.4.3.1utf-84db51c213202d1d0305e4c59b5becb9ea219efc3ea2b31f5f77cc8d4859f92bc?7zXZ !t/J*] crt:bLL i^}'2+'.h]D = p913A1XR)'+D5&@jƹ0<rf%D,PȾqytYn um[?ݢső2]!MY;"VZƂ͂[5)fF_ ٫c Copz=d˩@qˆxWBm=ݰ{D3=I{(P=+'8sgwZզp?|OA@*:ND3^Yl 飳y 5SR=P|tcl~QK ~3;G80~DRf1Ef6̏Gi|I#jN[B /kb]٢I^TjsngwRcynʐ-ZB),Ӝ-Pf|YqOq=ԕvMtUmNU+w!DܱJL%soma/NS3*tmc|lW '0Q"(ӛ‹DQA"#r^lGEec%4gq*C,VűVE1xrO8|`ꅌ.hdt@"Dv10 0z >%O?|!q,m~gx_?4W9 +t*QS4C- l]k]ҏLU+B^3^pb^j[Z@ h+ \s.,#`+(BO- /gXL*t yJNvI8< =7hT@m7pG>U[Vgqk+ʲ:'(zĞ>Cb1܅+Z4<hϽ8va}IU}m4leA$~p8ƔՂVv^Z\"%6ômQ`d@։D|Κ01}ɵIؐ3ô5ܲFia2鏩@u8'ѯ72ǫKU{jEd`f͍w?S؈A/= xTߨ2(]:۱,29 9t3Cz\Yq7FzdUѧ]]:ls y؝Db*g7j&/K >MÊZtV .Xw|6(?Yf{tC┙V{ wrrfw@6҄1F_#K`8@,dHVsD=.t9*6oT%ӑ2EaX aP.C=OMw<\6_,$W?%>DR\ y<'um6.0&WM>2AN 2eUxi96)'3zDەT-v6z3Iq+{+"÷2\dۑd+G ;E 0[;owu f-6[ ѰíDTmՒj~zD_5ŬЛ}|OԲ%&faTKA`Wf(5>Hˮw1I}}b!vYwg}+'cx1o~^AGRCT$p~(5J+j$0{5"rA~c^}'U^;ExcB1u̥+,ܵB#-.tP)1,9r~DPjaY]A4 3:~p]23CP֬NXkn-*oΩ?jzM(opm[CRÝϺg~:$.)vv 5o/$a~`'}vIqY505}j|l3' A'2A}ѡ /$j cc[vfw[u1@:OO(Il(o;/gtv.oH~ 4坈x]Ol  )MbƑc(4^wf$HXhfKe4G.+c0dk(¯ C%E?BDIڈ]摎roG`f ?nU:\O,"lDֲmU\||.f)t}|_Gџ<8sTCn @ҁ%IN+z?ܬ 檮S[+hR+@e_JӐ z}LH/)E13ަfhxmeBaZ8/-2{4!i#+K;72b¶/ozDY<u4Wn7O. ˤƅ034nlsrq辿!O.xLd*_{kUlڞH=1Odթo[MY%I'NoE@wGfB,|1>qp I.Kҩ?Qr ikp֗x#;P2Z( \zU^Dj'|#.H/0 tM-p]žϷ~G`9s'-djv!6S蠥;оzPSɆJ F/kyirU-pU <ҽ*WLM1rap֩}F^X5r^m/@; c_سЉL)Ed/U{ fC62q?#l@[>y{yհWl̳ jiw5wBu3~_.5YO|]Cw;jS:-[xwF?+V'x|Tijo-Cjd&X4"I@'}q}$,Tt#a@*6{[ldxnjˋ؁|*kX2*#)/6n}Q_v(:Xt=|?Ƣm-OcbrY_`aKʑ#upZo1sIZ=7S"g;L^?Ï![q FTġ? K*.dk/]ئ }i6nt '2'>΋&@hjV@0 )_d`xG=jr*n7xk '%ݏXEkykJLMDz!?Fr?|V$)mN$]$[g  1W&PEI9[_=xD/2{ہ૷,G`1Q]cU12BAJaG.6M;Y0uO)A(tYHL7%O}ڍWF1Tάr+.T0@dO)]R7qv^]yjH'žO gWYmPzD=BW&=30.$Z)M w)7;KccMLp.ECIWW֒h1zņ͑ 94hJ0'!p55i} lYufN0:!FĻGG=S kc!̔5\U>݊?=^ue<6OlN,P+(^W^Yy7ʼEx7{)Ғ=≫|n?ϽNv t O _*П{}$h 'Ow-8;i΂T 1S.2O骾2~q逎$i4&yqWF u!l0$5HS!::W:|ưrvwzkDJ"P 0ouymLfAGc{<20?*Џ @#DϹ'6:rvkE+n0k~]e4"V 嚂w>&/t.yp\WgmOqAr;퉦Qa,XnyOeBmӮe}0RoV\74<Ѭ쩎: aJP8<V.4;-K\#܊ˏ54$i6Somv|;SOa_ڽ .H2[ ?Ө$U{oZY+mVs' oQWg߲r^$xC0GUC.ub>[BǍ%z9"Hu[ \~Vg`72щeD&,RѬ@^z.$(ƳTR3J 9N/3F[Law$0 P^:mawX̟* pk_ʗ*9RN>~EH|̹Y%ٟ =WHJKCs*-P:1|ՂUrl{2k ( J Dkʹ\,.D;[@i<'kEv?mU5⋱7Jam3'*73~s&ZGw;cX/ \%|^0{gnLɳy{ $Smi EUꡃeA= b\cmCIsکr ORoQ*ᯣN _$bR[ xZĤtxiSO\Ⱦqsq^Or'wVu٫x}OϠ\&E _<80$d(2~vCUkQOܲ,9Ep@c*Qޑ(\9 9]`TH J~R䷕ ^_KI PNHQÛޠUq.M6XfKz_7i1lq.yĊzW\&?(uDd\]I3?ݵ 92xەV'N[·z)of^.[k| ~HpO9CoW@!>xLjln]rf[;+V2ӫbȊ0A؂U3lShmڭ ZvE^hko<_u% 28wb `~( W1I9Y7AZ$KKJlЂLIsˍtn0q4:XW"C2-qq^Fc Df##f|>hxj΁w@Bp#Ar|۾۝/he4朇UF6bn q3CulDʩEɟF;vW+!uNG-.8J%;Ì4:YښwfHg轋4c(r.V}1JL)>70`o:b(@ uV]v^Ɵ9Wh C@OėP5@)Ob\?UEENmTxf05ڸb䮋Ɋ+MuIgQII pBn>"6HhYLL/{|SWv矡 PhhFh񟕉>(`!)T9W5\ls9yTx:.^ q3xy:[m܎K-lr%m}y˴c~h)EpӻSQSD{d;TCqF D]Ǣ0&:O6ʏr4߿azN^b qb5UemIдJíPOs9^FL/YI|^F45BR4  E]|rh<7%Vpob'!0T Rpb|@Tv.LOPTt+Qֿ.TW/ꙻoȽLcs28R?Q}MԳ\N Aq$뤩 ^6Vm;4OMCٙ&)4x 5"A e̚|јBC:RݍHX(Ӡ=eEラ[o=e8էfB}+V " _|xfY\1S%Qrzu:{]Er\en]o M _C|Gҁ3@Z2`>^!ݝ"JVff$~DZo3󞌪"DXNz$TY=KL=N^0|zg:ҕx-G}McD|X}O|&g91'7"Q 3͋f:,Ј 6zSakiN.Mqj "DzߚV-sA042/} pYñ2XZ6 r,b538 {I, vSm>99i@>C$ d_#È9CuQXT aOL: ?őv"owPL([ meuLb_"A]+"CFٔfҦA8v`E "t>N?Zgz }<\A4w 8xA~щ.f'-]'CfeDPlExJZYvhA_`1PhBWk$I,%gHJ Rz`JS(Cfc2uS %x8ic[o&KޫgQ+%Kq𐷇Ɖp>sysӓwe%==:ɀRkpSbCNFY{(jLUJ]՟ġBS4n@ޜTo=08ĴHT ! cG*'ʲn4[ā(GMF 1~)E1odtl:i"yqRWݽ,̯*@w2Ht`!!5!1͘Kڽvb=|E5ۚT'4rE}㇡CڗV3KcNǠ'r8]JUd Sd7k 0 H ƨ{S4/uIzO~6#ԣO%E չ D( YŪ VTkK&i HGa#ccO5f/agnvˋ* 9&$sJ*]y~)EeDa>,ؚR+Mg_(hj"Pâ(U?[~Q֢d.FdOqGZwAS7F_ XK5oI&wjٳLtR{վ \z}[G&hJoSJx,gRPX-g_i{ߊa?rO}UL:}ŎeEb*^Nh^3N@5 ?4fv\2Y8{x$s?o:s[P÷SVt8d@?DXi|=O0i_CĨu}x˝g ׬"ڌKoW9K^ܖn}RJBxzfoMTFk1oiUz7"P<(q1DTǜRU8aǧ,F _h' |.줢 nKq|*:THL 57aDsOyKCrp|Y[N>Qț\s*JA $]vZ}KkD Wu-Ƽ{L; Bxl;Û| ;FFϻ`*ԬT75SMj]t 5"ҡ~[4Y3g9sA5[Ԧs"?bSw_ +)dĞC \ƾ\}8'y (o؍cK-tl!=?23EM#DQlaYȨcD&:Y_-HSL0N:_3͈8 ,i'gx>`C.~)sg~?Ȇk^l/B-iYĖQ&w7*:&jA[s 55^?We%iQLhЃfʽh;Ρ0 sq; 2TkQd*r i+ZϐR ^r }UQe7>iQu#}h.6wnB^G6@0`#CI<)3s8=!/?fUtm |TWHEL6K?L8|0n9_!Y1V6 fѷ =s'T t9WuZk;R7 N ;Qi#Ig'NhBa6o~{Xa>Ll[(Jи:,?G!lᦨ MLY+W]a%[fc8^T W&>@=1U^k&huB{Й!g '87 I 7yj֕{ETɆ pw0rL/rN4jqtJKra@|hR9O^PҚ42/-j*(0)R`1U%slF5&/S#2GzLx0PFv6YG:uF$/́ w#dPV v7l܄äwJE69LM^~ Xav Lt;? J9іzq+VwIR$Cի퐹VA-Dn]C3%w)9H|p>ّ$Q.kKm[ MQ0ˆ:f1GR-x8r&{G5FeS3$.c!d8TF~Vf'Ìm3~jsI~djDQn&,?HBG ;CJsܰPip`sdD,`@8.!ix'y=ak’@.DŮ5^FLwlQًs)q#-vyGx̂^kF +HsWKA6<=ɆExh f  sכ3r%Eʭ+c BH/2LB&5U|h(W8.4 X`} TY{X̴3̊#3Ue2;^<`[I3?KHx<94 \2=ׇKB~tꗆ4 zJī>HhaIEcy+d(`_o|/ jfB*͔$4*FT$O2vz `iY?oƐ]9iG CcRCĉ%p>W 򐚜؞$C%YZD+->m:&fS2gWȞ-p("a.eYzx  Coƒi*EAk1@fjjOq#W. H>@j( 12:CǕvS=}B\]Wm_0Eq9:W[ʥSN3'vl(sC k(ڸWsO /7D}Tp՟5ڽ%ѐ-dpn[4U \~/oxP0V\{~4xI+<$fvb'\hŢcWw'=婝2;n*!m!Qt{>T=$8ȠѬbuK{I"|[keN^%C%V=曒w鯇ŋ&> ՜C6|ա3=NYRu?#`z$K f>vcOց " <UkM ,v M8İ tżdFu7D aLu]#H6JSn)m /gnӟUV(J]LgJu|=&MHR] ($;cG˞̼ilYþ t"!.uBObsu b;۝=n3!g*u!%~GDJ:m!zafo~RQ26m^j\i~8ph!~+ذoBA@jPᇶgInaV D.Wd%<Ǘ }϶-'j(ϧ +>':w~+s~Ċj;@Q^3h/eM*mPzyץ 7ЩC*6({K5=4wڀC;9B:m$8|ӡ9c)Bޗ{dK͚09f+) ecs_'%>;Ѯb,Qx\9EĽTU U5˹H~^FӲ D:Tx'yOvBm ŦϮҐN1mlM@{ uCS=SS#5." `ZtRWh©:jkL'_ywG7+jL).#?Y"h u# qv o$͟B[ml3S\nx ?W׻k{cN B>ug!Rryps?#rGqC#Fdg]a殬+6:@E2O-%{>&]U}Ϸ6@']QC>Cbt3]nW"OoOk/'|\K?7a I ǂ5 |Z_X3(oZMY6DV3~dz^ NڲQ?^j+~u5LPV' sΛeUgl[^2?I=gQ9P (*opg, gء;Gt [SRkj;˝[j2,4DnMxr޳v jNre~볻y?D50/+5TrOwG YF .~RzrCTk<)8 EˆNݜ zym:lc32]MKV-uObA8l ƐPsІڑ4IP< `d[>xsPM)*R8.|2Ν¢8(ofnI#"X`گnq嬚7}6t|5aCRKM*X=uLDa~&TwjQ@3(o z {65 S09\ R&n}JS]KKaob|kVs9f|aU ĭ.ox!YoEKmvPg"#EN BE-ԙiRrv5 qTy#;\1+Y+99@A OjZ甜]$LBhq(UnW{e>f9Qt9)ΠN7/ɇQ=ꂶ]|ґAײ=<7 F*k1JwUOHmƤR],{TL0K `%_?^MNVYfn;^##sT嶯:9B\b5m;f_wp-5>B&oPp pZ"KW繶0G4N?bFit>=[ o1<Ҟ0bÈ:s?+c[WQupS#lt r w4[P~hQVe`[\39a5)N躈V G?)pS3!@d?"~vjo[^.Հ2},QsH)ڸ{sܯ}D3=T `ӏc0cNdqRnfuv5Lf8uNLPe*4a*Uۋ1m 0pI'*#B3'pmBۚIl+|l`acɤd!pne8[ޥ 9Xsx.uj`L/Voy-d/|$nο+e+~q#>BL͎m(d~gԟ,{MjQ E"^grYZuX00XY'7/h>!R4gOHϫދⶭӺ B;sgVn3jS!\Qoԡ6S 92?ٸ('Z#RƓ,Yγ,F Z0ݿL;F?'HzrNorѓIQOl }  J@ZZ_mҷ 05fE;  ޕ_}22K/ ZzGlK92?2PDPkm/3RGvQJ4$ ݊X'2 8'狻}%cЂjWx qJisThBR5VʐԀzHdqh#Ѿ]h{T-fNbҁ >;oU W}¢ A7LFɻ>2 }v.]Gu@o7>52Ay4@z;ϣ*5ˁaQ*75n~bz%R3wܥR@K|Lȃe_9܁j!~ NA Ue!V,;W:xV~'wql6(`vڼ(#Tp8 S-U9*915rFCz&)mPaܹH7ų!8@NpsT[9\P4P&DVtA/Ét Vqo~䳆\ gThP#x77}`aAZ}7屩GxWs$/.?'0g>p̵-a1hzbF ,URܩxLytR.D@:mlԹcƤHɪOhUm;4{Ht;{&Ǝ6B*sԏP\kn۽mZ:BLALLRFnUCrK y/ľl22+**aCt_Z909䆧C71)#Wˈڨsk>!;b\}6Y-qMT8yr_P'@f"YLG>hxa_ R&$lƯ̈̄-ӞBalr}CFŠ#V:Pzp$(NYz%ʱ[ٓ0E1]Ze' }hAD. DjI!4Vc|#C1YtFC1h_iG4umQS,+,TAjU1\zU{N=- x6,Fx_{ g82AR=mMAsW@}`;j= ?8^ #@߀t: 2Plwoᯒ~N!Z{HwTZH[WhЙGTYkrOflo.\pGeZo8OAV&\9~}FX) _RVO`G9߶m_ZHn.>:gt"r|F٢rihѶozu.OPkT׷RMp0*p@200 zV |Qyn0鞤LDqp_aD!m #o[CcSx4.KWt>.)C-M(Eΐ8FL!/]v $-UDOXrkpGūNR.zĭ "!0zY,U xk8iXېj*Bߣe,6.k{6~:4.xD=Փ55 IA 6|Ct]N{Yy-S}J~K&mOM Oz܌_.?FɊ:\R&]EW¤Q7)+u)T3peɔdfVeSwIL`p#Bu7*PhHn2 gZ_-luVfj-@.˦m0;Cba~4U(輹֘qgGLnUH1KCN-8 s ;8;(Nx|\+<.M\Uyp5A` 6Lo<#FvQLЦ c8\BXqj2ThERy-wD#G=H4De ݱ2f/8fK^XXZkzuj}9PE"I RR2@GB )ļ n?(M瘓´! "ܥD3쿷g~rn!uUm[AN+~zS>ڂ9zO2xcּD/0EEhÛV3zv]%Սߩk1~o\0 bԀI,O94aWr^S5(3[ܑ/A`w rx؛F ifQZm ͚7]*>"'. @б$5(xP_d>b?] ĊPH^jlA%-TFKѨOz`q7ĵ//6 $a~k F<U6KϡЁ*QA `^]`?qWSA|/V3*ZPHuRN,}śDz*z{J-ۺoAP$n+@ `_?w%\Ͼ3Bh +Q`v^sBOK0hqpfh2uп4#w2 F%.[C.߬KJWo:]b?י~DTu͗m!fޢr> IY&xu1̶ϗW<@1 C% GM2GSvJ8q"=t1ʞ7m_ݧ&6: R\b1֔ipʳ kCu@G`)ձ\']> 0ŨIl6'aX RrGg˷M)XJm/DmM>e'^r m%Zf6jR9H 0jC JsKHs 2̛,-!TKͩF'Q&*nV 뙲G2^>" ܄jD6騖n'o#.h䛡]G9{j{"T'}T+.ޭp4J8<{HW2_za(`2=dj]4z4)Qz{ j|_!!7Qyxb7nu\>8{7RϢNqV:sc ^~#Jn\m؃6#8Z|}ɞ7dRo4=:22WQ_nW}/)*:ͅ[ȧVy챚\tq)g`K=vؘq0$MBfڭҚRi2\`iWi#^[1n!%xWT4p}]T콩%ף>EI_覚r3y-Ce9Gs?5`/`) yTIEO/.8ssޔ.Ņ YZ