perl-indirect-0.38-lp150.1.3 >  A ZY/=„$6a0p7&8&-&m)#x|:~8I[\!AUבOh[Քc; ^+^A&3Σ,} A~r#Ft۴HĘ1Od_[((f;nun#NsR+Qo)(Zq4j0*+h> Y].(iN_FPpT0l4[8͞fr{o&Wq 3f0d2df0b135c6cab73cefcdf0d669f7f58e7163601e85423a13311cbc63dbe835e3542668104c746c7e07301c1fccfdb6fda2c2ԉZY/=„PgBwv̷u6D֬vBm{sK!AA=PtU +A81oc-W"ho] p7o=vJK|j16:Lr0u9j֩Q9k0\,F/ѦPO64V{CgN8V%NU%dN9aM}{HE@|B ƛU geiRm8O߯? stAE3P)zYbX>p> ,? d  Z,0<@S\u      0  X      F x    (*849L:FG H0 IX XdYp\ ] ^8bcRdeflu vwX x yz Cperl-indirect0.38lp150.1.3Lexically warn about using the indirect method call syntaxWhen enabled, this pragma warns about indirect method calls that are present in your code. The indirect syntax is now considered harmful, since its parsing has many quirks and its use is error prone : when the subroutine 'foo' has not been declared in the current package, 'foo $x' actually compiles to '$x->foo', and 'foo { key => 1 }' to ''key'->foo(1)'. Please refer to the REFERENCES section for a more complete list of reasons for avoiding this construct. This pragma currently does not warn for core functions ('print', 'say', 'exec' or 'system'). This may change in the future, or may be added as optional features that would be enabled by passing options to 'unimport'. This module is *not* a source filter.Y@cloud126 9openSUSE Leap 15.0openSUSEArtistic-1.0 or GPL-1.0+https://bugs.opensuse.orgDevelopment/Libraries/Perlhttp://search.cpan.org/dist/indirect/linuxx86_64i&=#XAAm$A큤A$ZFZFZFY&ZLYWYdZDWZFc9089be86ff737afe0f66f9ba871eec4f370fa3430a7c90677a310399c5ac519aa00644b092d81afdeda27ac4157575ae73d0ce814a2ac5c26c7f284527df3eb31b4b363da58efacaeee2aceb3bc4e5b3f1c56bdeaef285bbf3c4ad1f6240cb0f54637db729fe7b9b49076261df3bf40fe29d266f4e61c39ebebcc7142761fd870e7b5371b7dc6ce598abda77245ae9d19e7c221fc19c00c77f204c68f2faa9fffa9b75a99e1e06ef80983d551b6ac6e2edacdb2fb1e9632a717997b5d7ad5darootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootperl-indirect-0.38-lp150.1.3.src.rpmperl(indirect)perl-indirectperl-indirect(x86-64)@@@@    libc.so.6()(64bit)libc.so.6(GLIBC_2.14)(64bit)libc.so.6(GLIBC_2.2.5)(64bit)libc.so.6(GLIBC_2.4)(64bit)perl(:MODULE_COMPAT_5.26.1)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.1Y@W-@U?U+SN@coolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.com- updated to 0.38 see /usr/share/doc/packages/perl-indirect/Changes 0.38 2017-11-04 15:40 UTC + Fix : [RT #123374] : Compatibility with CV-in-stash optimisation Thanks Father Chrysostomos for reporting and contributing a patch.- updated to 0.37 see /usr/share/doc/packages/perl-indirect/Changes 0.37 2016-07-12 16:40 UTC + Chg : A large chunk of boilerplate XS code, which is also used in other XS modules, has been factored out of the main .xs file to a collection of .h files in the xsh subdirectory. + Fix : [RT #115392] : Intermittent segfaults with heredocs Heredocs should now be handled correctly. Thanks Graham Knop for reporting.- updated to 0.36 see /usr/share/doc/packages/perl-indirect/Changes 0.36 2015-07-17 22:15 UTC + Fix : [RT #104312] : fatal hides perl errors in modules no indirect 'fatal' will no longer hide compilation errors occurring before indirect constructs. Thanks Lukas Mai for reporting.- updated to 0.35 see /usr/share/doc/packages/perl-indirect/Changes 0.35 2015-04-06 22:20 UTC + Fix : The module could end being disabled in one thread if it was first loaded in another thread and that thread was immediately terminated. This is now fixed and should address test failures of t//09-load-threads.t and t/42-threads-global.t. 0.34 2015-04-02 19:50 UTC + Chg : The new environment variable to enable thread tests on older perls is PERL_FORCE_TEST_THREADS. Note that this variable should only be turned on by authors. + Fix : [RT #100068] : add link to historical tchrist post The link has been added to the documentation. Thanks Olivier Mengué for reporting. + Fix : Segfaults when the module is loaded by several threads (or Windows emulated processes) ran in parallel. + Fix : Update the Windows ActivePerl + gcc 3.4 workaround for ExtUtils::MakeMaker 7.04. Thanks Christian Walde for reporting and feedback on this issue. + Fix : Be really compatible with the optional OP_PARENT feature. + Tst : $ENV{$Config{ldlibpthname}} is now preserved on all platforms, which will address failures of t/41-threads-teardown.t and t/50-external.t with unusual compilers (like icc) that link all their compiled objects to their own libraries. 0.33 2014-09-29 20:20 UTC + Fix : [RT #99083] : Breaks eval in an END block in Win32 pseudo-forks. Thanks Graham Knop for reporting. + Fix : Segfaults during global destruction of a thread or a pseudo-fork. 0.32 2014-09-21 20:15 UTC + Add : Support for the PERL_OP_PARENT optional feature introduced in perl 5.21.2. + Fix : [RT #92806] : Tests that use run_perl() fail on Android Thanks Brian Fraser for the patch. + Fix : indirect constructs will no longer segfault while inside the empty package on perl 5.8.x. This fix may also prevent some segfaults during global destruction.- updated to 0.31 + Fix : [RT #88428] : no indirect in eval can trigger for direct calls on __PACKAGE__ Thanks Graham Knop for reporting. + Tst : Author tests are no longer bundled with this distribution. They are only made available to authors in the git repository. + Fix : [RT #83806] : false positives with Devel::Declare [RT #83839] : false positive using ? : syntax Thanks Andrew Main for the patch. However, please note that the reason this patch seems to fix thinks has not been explained. + Fix : [RT #84649] : incorrect RT link in metadata Thanks Karen Etheridge for reporting. + Fix : [RT #83659] : false positives Proper method calls in string-like environments (like "@{[ $x->new ]}" will no longer be reported as indirect. This was a regression in 0.28. Thanks Andrew Main for reporting. + Fix : Broken linkage on Windows with gcc 3.4, which appears in particular when using ActivePerl's default compiler suite. For those setups, the indirect shared library will now be linked against the perl dll directly (instead of the import library). + Fix : [RT #83450] : newlines confuse indirect Perl sometimes resets the line buffer between the object and the method name (e.g. for "sort Class\n->method" outside of eval), and this could cause direct method calls to be reported as indirect.- initial package 0.26 * created by cpanspec 1.78.06cloud126 1509883200 0.380.38-lp150.1.30.38-lp150.1.3x86_64-linux-thread-multiindirectindirect.soindirect.pmperl-indirectChangesREADMEsamplesindirect.plindirect.3pm.gz/usr/lib/perl5/vendor_perl/5.26.1//usr/lib/perl5/vendor_perl/5.26.1/x86_64-linux-thread-multi/auto//usr/lib/perl5/vendor_perl/5.26.1/x86_64-linux-thread-multi/auto/indirect//usr/lib/perl5/vendor_perl/5.26.1/x86_64-linux-thread-multi//usr/share/doc/packages//usr/share/doc/packages/perl-indirect//usr/share/doc/packages/perl-indirect/samples//usr/share/man/man3/-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:Leap:15.0/standard/014dbde429fdb3c904ba86222a027895-perl-indirectcpioxz5x86_64-suse-linuxdirectoryELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=b8d276c197d2d0aa9861c0f9c094d3a3b6758876, strippedPerl5 module source textUTF-8 Unicode textASCII textPerl script text executabletroff or preprocessor input, ASCII text, with very long lines (gzip compressed data, max compression, from Unix)RRRRPzv6a^Z.utf-89a448bbe9c7a959571eee7491e35c2ecdadef48b22733fd3f8866167e0945d2e? 7zXZ !t/W_]] crt:bLL ~5a M l? 8@(>uBTyiaɓv=̦O7_Bzt F("c4=z)bz #pEZC9\DAy!L]I p y}]ZEU(:Iyd m#gC,b="<" 53@ ktFɽ. 1ԉKɕRjTgUjj|d#74hCWZ(J{5"q.nN 1tG0vnkdH%e]dղ꽺Al+_[֓5¯+pmz˛$qj##T ?sL0ϐ~W{Ĺt?//F iBBOiߍGIT!'4oj/S"y |aUuw>2˞:Q'bayrqkUc1-i,QJoG7}֓ %wjdVOCǚ GaWtܚEFL!gE't_a|FĦ1";Al[E g͡D׫ : !(C7\QC@Sģa aW' %AjgR.厜e0 ^^Oeяk(L)oJ hY'ЏJ%E,B0e 舻&`>YKQۮL:fy^Tk2={ʍm]sv`!Cw~,xv?Buug}u(Rj9x-3b69+uF`~@Z4!t?Ѱ/#.8%t 7{E5 tSAk6&"q:x)b6EbPꥈ=<מ_hHd,A/]K HQn"2Q?IxQ+QnYۇ@blD9~%'|-z7[^; "bʛDdk673=*[#vD%"oqv4.g9=i 0ʍf2"w,/\`Fpξ5e;~ϼWt;(wE*T=ۏ綡rnN&9{kS/pSfr$Or+;/F46fӕ񥺬` {uΤ%oૢ '{Ֆ RJPdZ\̕GC`2AƢ`Np;j  5L7&0+o2(p -9@5C$ƥpV v";uI_' _?m(kTfcŸ| %]#I cS-}$W;% QdY 53Lw_@gM꘨܄@@,l4;Yge{>]5 7S"[- ׈iruEd, u<~@}ׇ3gM$j^gf%\2JtJ!%ՠu)k:{D.Beǫ-HŬ`!kÉAG2 w\[r{e Y0!?ӻG~Y){5wȤ@;Tؖ(2UJwM0gK}-xkQBe%=F4E c0Jn֞Qgf*fa/M$S:'گ1nd;/O,u|G_+ؙl7˘=(?}&wgW%ؤ &^a13Rm\z5P ]mx<@1;`Hs|[pf:7`ōRm#cA[Zse_w‘q1@GhQy3 Ɔ`l@?R6M] t+Hg3QnO ( H~-f$MUL}#> 27*>F _J."3Sʦn 52^HjYxiyTX@/ X]k|3od:d6{ <]21IQ\UB+3(9~94g Sp[BK/TymO8Zy ?Us,ؠgaFOUl^uyJ6Pю韢_؅yуrWl6sE{yϣ?Kp˴x;Awcܝt^ ehMdQv))y'._)*\ڼ<^wzxGp$tM]m%a%4" ݯQR3O%rY\e\tVչoVVfn*VO}k-^a117t*ò4S6x"n$!rJYyQc ח` Xx!Ip46y*M~k5ϚHNӔծ* :!ƷiBrh'Znי]R_m=n(_|0`EGǿN^)4#k0-}8K0)[aU)3\2룘IE˴Ez2ћ"yHKUd2$ƜکY%X#RuPLEFYFVxgG "`-ϩr6.l4Ralϴ7\[Tz"W#Z;8"JJIugM@q +! OW'o=73ѪZv+J!W\]te;ʔ(ZP%Q:*O=s(r;K(ɜC\x㔇b+oo ʺ3KpU3`]~eM .|$%/dHF(&ٗ0Vn:FD/Hf5P<#֙ÜԳ5$]0ƛ0!pK}Gw_}hwEuY3cE'㕬#.酻ȓYX+M }˾+LtPC/? &9+1|ܗ$~]U3SI됫ÒKq6 K 5AAiW^m cx c4&lp7g*GY =k"4TY{&(K!-Mp7 d%_~9 Tᗓm<4/؝eR{^$ qƒ[,Ǎq*+;zT%uOlc*Ba8)snY\Υl9Y+4Tf6Ӭ'C D 1&ߪu@\m|x@y˩9W2^p^@ҟ%jj~-{}7B hcéV\wݜI:x 1ӹbxOnG/59Ak(] seWncCMyG RKr%77&݆w<wYLIPswDhAO@y%j :@H ^e`U5^lz2U1?cW|]%}3 ڛ$~^o+ 4p ^bMvx\ÀfegÑK {H+d5bpO2.Ƈ Ssp:PC#㻣tj_12i ,7Hc!]JRdZRKsYѠJzU*t8 *į4 z|gzn/Bh<D28ȄYZrcũ H]|0;?飞jM GHň ӄ.FT{^z1f5=|BTJ,Sĩw chEX0 D=r`G:m54u` Hns'OA C p@\M?Ebm:yr8'EݓBT_Rlcgk6A9BxBehD`XlUO!nwo(({ɪz⽈k*7HDm`%y,v3,h;`} 9 ZvCO2ԔfnbA=eNMY6C?AWʯ=W]J3ysmX$3$F_Z|8ߛ,~oX"=$D q9^VpwUuoGoS{t4+#R01ﰌt@–Wrvz2p[BW5wvD=Jp\aE7--]J DqKYx1̂1$rZ [ ib  j#w]υ 'C֏ff1\@! y^pýr4O}tXwW蚆6@eB?Zjoh~|ԉI \i2 #k**rp<8yyЅO@, A! QK*iDzѓi Y6s:>MBNH~]l!6iZKH|MLPcfV"7t6Fͧzb:CC)gIZ +cDo`O+ >sUC{nj49l ]?P׼` (lRz!ցLiԕ٠lSz?/co}N:_ltacI} SH-n0A 43RЧ!c3w9Xن-n7DlߪAS04.:(`{xnzy0p@ɵ-A>_2ń] z 屈3*0Aɞp=DꤓCxG^z,Ǥ jM֊ MIQ@ĵlE_ k~p%M\Q.q!AB^?3 P 9Q,,_&2}KI%9S,Jks_q.HmӶ}Dp2J!?HQz)eDuDE/ԛq~5]:% 12k(oZ1(޲-`^2C]E'Ak, -6nZCԙua^}n{:\h4$(;V&uO4_-ޚ:ad,bHkKo}Zt^P(\ FgvONVN!3\5آ{< }J0&hna9L{CDv/yF8qѝ Ygb.%[`[( Xrc핞{MʝBL3+2ɧAr$pgW` 1Ę%S2aPfVQ$E3)ˠE:K;tQ0``NcOj ,X_aީJÛ'X}VLc*S?"6@̀j̞>Ha,c!AXQz1o-\ x3.i+>lAYld!860Wv|A0pHʺ%xLfV飗nb@kR@'[~a0mWju4@J",K6nV0H1FyWkm%'i90cNZ74ST "$`8+!QALԯ[)rm S* 0jIXԲg wV2.&{u).zfSh]avB@ <ǟ[Dp?CC̥J4<^c%/K,&x鈁Ǽ(9\_-Vn)BDO&1 0t75Wͭ1B>{f?l԰4Si,qLq _u= ~ .ȹİ;@}DjWq\tX6hgŮz&: vֶFo*YkXoűɞa9 H?%bCU%i.x <čF3eIIɓԧ}ZX*Q+i޺ϖߏeBTNl$al٥۽Mo䖓Hu(C;pWϢrog*#1oh)\'h8~}\ 4}G%lu(POBtr2HE8]J|u=n?0|4J۶CFKuʢҠKުcpWM(w:93lY[ bF{ Z_Cv7%e\X=#5,y<)DWPwwh;ﰛ*K#OKgh "aekAޱ$-h=tL@cZ+0"m#{Zʼl'ቊh>>jGZ@(cŎ(Fo׏\?+eIَm3tr&["/oTndN_ȸ~gב8U*Z5ԅ'㪺Dx4xP9~?`۶7~G(TiAwp=m=Qy&)S?5G" N8,عP/a֯hGt-=Wc:vR^= X=dF-HD_6~μ\U4J$|Ȧ3i%K;d$G1t)6upsyY'|5#][%bDu Rr`{ϦN(6,`%G>X]xi.kC_!s=Xf~sk,U THu\9O?e'eg{ˍCH|TdU\pQLv}*_rāמg4h! p3_HٽQ,Nat;@(r z3B{^;^YF]Fܡ9kc$I_%Oo$,ȕ;uAe}aY+yPTF{0Es[4V}lμy!HOѾۘq-X6ǬЄSi!a?Y 㴮ྦOʰ5(DBH`& )Cy8xCRJ+{mE~.?@^"z^;WcGoT Nnd?Yi DΤs5hI0 jMRs+ amD,:TqKu|:l_|2?-y2{ KȢ?@K>Elqg'0sw'(¢h9^2O`remoG\ZJ#2#V(g秪MXN"~^$|^"x6.!&BbdJqXq%lQj pPPx[F s!dƐ FAnY.ܰ$RwGΙG[B"Ux}z4K`'`.<X~B I~7Բ 2 Ei6;3R!tny$ʐWڝ@d!l܇Oho*iz3YCeЧ%U9WQ;scwIzO)Ԫ>%-O&OXtk&0H]+Ch*ZH**T =9A;\͕WLG@3tkLAa2oIT AJi׶6g8=h;mb_ўU-n\C~gD!dgas+NB8]HhgP~SO贲eӮi<`O?*tjHw䖾hf`֟֩o7 ᪆)X1 "M·ZVq,\M@4XKTfF-O3VZ"t1OQ0|\?jf=%}m\ebkGbiX3?\#*?5Xx0 )Pj/S^^cOd)OL辰8*Fpz@P%'Vlp&ԑV>̓6H]7 #L@e|KF DkWT#sڲ?G-d8-~Zøg՜މ: #$f#rl0yź-gӟM\* !Dє!GjHÐ4 < nf u]&}|JbC3J= W]3f $#~AK)\(.L/1-Aqho~*togPTXYK榭/AcDb: B\,7B)hIs暕v2`a%Aji2DKevW4΀0y䍭BPH-ɑw7Atw>tO$2egdܼ#0m,nN7&[u=٠(qEaZ$ئ㼑aUdٚ*q[ڃ:m]{M}eRY˚ 6 {uc̊W\˹N39]Pvr[Y *a8 |P@bE5GrYj(>%j[Ț99ݳߛ>"ſE^=ˆ+5|L7>^FR >jn"_^&fDlojL!Վ&D] >bunhoS}C 2u落e]V?mb36\Cĭk2pKP1m )3[ >%h9p|82+S3E(!b)]hjDkaVe Ƥh%_JXKhX,0bzah0cT" ][L5 vB7&QBu5,3(/YL”DŏJvʵ%a+sɯOFB`  /qО%O,Xs :1.9ۅr&*(iѬKFtB~9ՓCBMAB*\ɞejVtZSNK^lQN20sXĖΞSu0fFIҒw̯?xxWRs8͌{4V%;aqv^oOVZYŚBQ}pP`o] ve ]/`Q@@*o.v-̯T q>~$ΕQMKTCA @ܒdWgxpYmÿw>HEeO,{r2JY8'$*zo /qhF ~KCA>JA`Muzm _ [Ntԕx{s̒FD]^JsM8PjР0Ŵr7r3YQv m$ų^)|䕞xYU5~ :j/2V]/ȇzt:G d~EB)Hb8:=IU0 tw}vG ,%թqԠ `04nK]evueNZrcw1ڧ Oچgt-pIWUKPE W奕nn&EH{r#*f]$FiЗ5ݏ6b jM8>MUW>)5Q\0] 0ѓU/F^ePiϖdfojFM84H8,DHLc"PB.bI*qğG~$JZqspљ M3b7Dz0z 0ɔg :( pakW2ا혧DO6be /5<%2&imq~p4&,E I2CRMԛ?߮A ed GGvK3Bڛ s/a^ Mvy@zN+ ڝψ'*mK*~ȽeLW=Ud? o c ",hK̟f33cZTsk uJi"жe'`i#oJ`[Kѹۯ)u.Db!eUrf).|H9 =oxx\j0tbUC?*!*1~*JDC ,^ <Ȕ,K| '9hĦhC/{ R!'_!7_V2kc,sUK4p;O?YZ2osȵՁThץG{wv"Pn1 6`hPyJ4p@2艾ºpd^ 0fJМ&!H "Hi> w5z~.@\&s4Q.$NP$|[t (F\& e=X{ּХe,DqҞ-5F9D\rsM;%[L5qSIAXBoJ?+ם"eϳĿ̦m/+d[kX9|=JǑR҈+ѠMЭ/Y dW; PWtN$T.[׫;\%GKH5 mWHITX ^/}a80XN~n>8CꓢaМ 8:4=I;-9Yn 1FPJ찄W׃g!ZU6SxZՎ:*!bs\ʚA;Cb꛷z g7)N ͱe 0o@`#ț UF;Rǎ~e~+'l9o#^BBt&:FoN&-&'ӯ勤Nͯpf@lIMɐwK%a{냹 NB5/*4:wφЌ=kW᧽3ܥ{&5 }` ktGgQٛIWFݬש"pH-+&1d5CC#j-Ɓa_#&|ĺds; `1 tR(e GV0t]ssl DP] 0G;[2 b{&,лPNVϵ4݄M<A>{$|0]Jp5n}0WjJ߹ᆳԦJeb_9XM$M3O(1r[ZDWO *5g@jT?`3S Dhѯ@56{MP@ &\ ??ka MR`psM9s (CbxFp&:i{bq]aPNz m+:Sp8Tb?t}~o 7~pFHI\7I!)qzIOءpPLٚ@yQсО=\άRmeq)9M- HT-(73aHSĆoW!(xMG][fA\&F3ݫg&":/ +rFN8`tO_!yB&7 1ʤjvЕ=RzXT@2  *6ɫNp*Kl`RKjCIJ`ؠfey' ڸGex:hg - #RG 8򁛼DYexpfC \+** ;`ƙXsIi#݊hW"ɨ)RBG㓄TsJ()sհ&>GvG{cX ' C "Vٙ ZʑJE`!`E|ҕ`bsdBj3B\eO{u'wKeiu :>v)rĝs5Ž4}PWj Φ EoR;Z 2~KS;EZ)V)>؁7%_ޭpE,9B7c;L' +&)+oMkE)evT"q]g<5͊]}q)+;u (rw_g3oŏ= gal#%ns֑ħ,ȧk6={MzN'Z@.Q]KIÞb'BOF\ĺÄ?<)O[AO-7Yppt~&Wʅ=~_fX:ـ@&vRc3þx7ƪ>}U='Qa ~B*\aDu27p_40|e5OXmFxL= K\{ &g Z_xwU?5 ]&3ckr*k?AsKykM$ST%ݡYQ 8L ɑM8$S\ЮX5m 1K]ԳBCAh4u`z2 0 |_{ةm9V A_Kt; rZIƦwy2(c4ް"ɣN6s`I}nWѻZ[pc˷RJF# F/eqtS j  #[o2=,%BDB㶛D"_n)yeP3ҿq ?㺺JCo)FQQ). kaMsZ=̷ADDN4]g/C\x9x~̓I_Rbzce@ ^Zr-K+p7[my./o1s0Gųpo7SPҰm C6SwCȭڞN7j a`JqI(< ٙ‚ 5xv"Lu NrՍ=z u?+e};;/E<@ DCN:\ԑ_D6{,Qk<"*#z[+tSuB:@9mW7wSg_޾@NPw0 e đSwJq?Y Ș4I0|0ә裞S9Y1)Q%=\NNuʞow&؂Qަ)Ŷ?`Hȹ!PַT^~pxkay,՗~3h+N*!6đ_!UM؝V.RkD^$7lO!v/CF:tWBG<`蚤 1_  2njPTi/-Ǝ͛E/>Юj֗5WG˅F{K'z^6*bgrB$<ڡTq8^#!&%.9xg‡868Q;aSfIt=BTl J8gFq_cqz6+ ӓjMx@cY# r,L ?RG7CԪb* N6 nM@OQFҍ:vnY!Q}iː'f_ЛFDә8>Tw֙سa5|WDlѝ ]P͖~ht2sQYBn]$)HjW&R Zd!nXK՗n07sGi%[A&ܽ2sL\,"V_toi~}ĠxE`K{o&sIm߬$,,6{&(\;N~ROpTQ[!G[ӘĄ_|mg[Q^Jt\]r\17^l&_vn [mT&9{7$xN'`deB,Pz3>~+,q٤%RXB([ ?~Q}OfU9jx*m;1 _)q]K:!9uzSJR&3h}e;6zu͚)'cZgd!fP ;׺<#{jRKoqT#w,࿇>l iMOAa)LAqΌgkVEUl}S3WϗIۮ1 ,t%+3aD=k=|9ѠuioW8u+qTиSTĶ,]Sw Kc^|+`{B\'(A_)~Lt4+kֹb;ztm. aBW%=W J =([ +* 3)kV̏ =:dRcOuc~agi r3 b@[x.qy?bgL3˸Q'ӸH”"`7ܮE .@bqzRQ֢d\QȌ!NZo9_5J6)Uݵ#U[Z5ǖ޾cp)ak=dMR9cdšx^!ސ; ɜXcv*4L+P#2xqxڱE:f)J úx_ 9=K|  K0zG&,@p "E8 ·b`LjVO ˃ p6EG);g$)?Rֺ" n7hlfQqVq[û[}n7$S~"ߊeg7+']Tfr4!1 `fi7V훆KLS$$ȂK5ҽ:אh~qvpx qG a~e7=@5U)$

r7aѺOѡg0՞!4Vq.{*1!(z}ztp')' r($Z+>D+O(>šgwk<"_8/|rbUp8y=]Ub'q|&wbXd}* yM__oO>'3wJtKp(C֪ H/#Cí2"!Ǭ>ǰ|[VT,>4.tFbbr-d3aoW1lg95~ S4Ϙ0iq&v ({[#Th)c4a9m߯ɏpD;w} D(P,*D^cM@s闝vS\ %#!ٶH}-y]Oz$MM>}Ѿ)fQ;Y@^ I (İ/ {!Km$ۅ1["y _3",wV^k5)ޯH&܏ZUbSa$(4 5%]RvD rg{ eݒ5yd*<}`N<[Y{!W#L \h sdƬ^s?vc H PHn8MjltL`ycXᵱԥkx v3"^R%1 6y\䣡i B1g2ƞ;j6֍ٗỶeW,e{єzT{t˰IU\[%Rɘɳs\Bza ]|{af*)H;& ipTfphwEg!z"?V"$ F(H}HWq֤PTxqk\mZEYgd(\mS%Lॿ}IA *`1Iu}V(S>Vv ,K_4{~_Uv=e|-@[mU=Of'ىy7p/\x3-+WBG+ap.wOQh$LyXe1M|u<jLl (a,*_kl!ecfS N2W >j:&w|)dQ:悖?u0]oӍYK;}5MS~'D}(1&k#ĹQ/^}wu]1^H!1 ?;uGKV %KG GDW oD`Ѡ-OH'YJ9`wc۽#+~\3iTA^낤F\NX ss-4<%A>0"a*]AṂU2Z^ΉΝqY2YԐz5JߚT,CK0JO'Ts?vH'+.=O@^ zDu%5Lj^|sE1bi&ʈ/Wa&>df?h Dv}1NAP1Mɸ-Aau|b3(N +82Bdj8$ .yTV'lo+iGsޞAD Q _:had}uؠ YZ