perl-indirect-0.38-lp151.2.3 >  A \T/=„Hx|bW=NE h0LK3Kq>B;~T')P9 Ql g[`y ? c>f%Ȭw :|>&rI$)/DiϤю(p> $? d  Z,08<OXq      ,  T      B t    (&809H:FG H( IP X\Yh\ ] ^0bcJdeflu vwP xx yz Cperl-indirect0.38lp151.2.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.\Llamb51 9openSUSE Leap 15.1openSUSEArtistic-1.0 or GPL-1.0+https://bugs.opensuse.orgDevelopment/Libraries/Perlhttp://search.cpan.org/dist/indirect/linuxx86_64i&=#XAAm$A큤A$\E\E\EY&\KYWYd\CW\Ec3e2e5b9e73c36f38dfd8c848529d30b80536408de4068c76739a4cca9049fcfaa00644b092d81afdeda27ac4157575ae73d0ce814a2ac5c26c7f284527df3eb31b4b363da58efacaeee2aceb3bc4e5b3f1c56bdeaef285bbf3c4ad1f6240cb0f54637db729fe7b9b49076261df3bf40fe29d266f4e61c39ebebcc7142761fd870e7b5371b7dc6ce598abda77245ae9d19e7c221fc19c00c77f204c68f2faa9fffa9b75a99e1e06ef80983d551b6ac6e2edacdb2fb1e9632a717997b5d7ad5darootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootperl-indirect-0.38-lp151.2.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.06lamb51 1545058124 0.380.38-lp151.2.30.38-lp151.2.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.1/standard/014dbde429fdb3c904ba86222a027895-perl-indirectcpioxz5x86_64-suse-linuxdirectoryELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=cd58a58c2f4374c8894e7b6cd266d71a474c810b, 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)RRRRP0P}k w\6futf-86d552a89cb63995bd596598e6ef0e3ccd62a18ff9d85f64b845e8f414a295fb6? 7zXZ !t/W_6] crt:bLL dzkax'5 H]” k褍\،˾pY@ cR59#n|Na+~oq @esǔ,iמ J [VںbM.FOgY߃2XQvs; }IV<7[ +'ɩx$Yn =?7S=(j$f6yGuiG`/˕x7M$GQ*oh1~F3:nշXCdRX3ENDNtD%ߪt?HPz#{ p4_WV ;J qmwcm$э* X2ժԩo>9( z}ӹ6AIIZO_CFA64+䘸2_7b)b,p:YI"+7<Aa7EkNG$K?nG(Swڜv7l^ ZWSɃQ_(^A eI'EMW(z9pR[P%_n *w {HC˭mi:֬R6=yQ~HA^^$HHc!`ʪuf(D00Ty<w>?Vpi P+UٖytGz n ܧ.8)By<]q@t䵂 mG 6d,,@X6B֛코*ܽ9hP=Vv۷ejǛVe`IOʾ? w:>v4_ ^nvyih04 6R[#"EOp( °1J[ xotO_BEw icVK>8G[Jc՟?CCI5 Yr/0|1N@ F_Pbm#I:0Bq?8nv(2$ ssHX-|.RAE% OG@C_R9_~L @L ⦽SQ)c0 Wǽ hT7vGubVYi9-}aZx.zwwGPf&o癹XU%6plKn90cFxSBe^]T$p_֤p>Þ{pAi `0h0Yc:iE!\sXT/(~+/iV8nbf> %p"j;)T}"#S%:_[4 m^A idlY륉+~|riC͗~6^?#_H&F`^'-Z!)? I78vaֶ6֥b(6m=˩! jy5(tCmuL>4|{ 02rCL|0|܈(o'h;G| \M$۫VdmG\.ߔ\?Aqm(iv|zU%;Hasc#N~eJK9GI5i/p̗͂CfÆ{!^x3z"Cj 2ox /=>$Ԣ9VsվYX8}o|xDpS?N&\Q\^7M~Bz|m?²5aZ5^ Hyfc{$;JBo2k)S2'|iǚ}vChҳV3(),;P^rm*/Qi6i@"! W]3BHmi<]mB,ixw4y {*>dĉ0LɱHҘ#5u8xhp#gͿe6e(]յ- >h,Dh{hƿSr _ϒJQUþqaTS ,f " |k`n4):׹OVu%^w!7a|.3&3>-Vw32)ȯV8zl" ˾ :ST{gl6=RϖO".[{o@~ۊw׊|aTNi$S`B|~ w˙*=fDhCIB;@}JY8^I@P&bF3= EK'ZW>;Gs~%tԈA5LY9Py!`leC$EU(czG_#'Kx)B^fҋTPNS:*( ߎA2Њ[X/έ4L_$pr[ njw7EwZObwDKگ۪,֖#'x*EBI64mz&nR'gDoV65+u~@2P]ԠHE^:nXB,Mm ɎT /N%'鱣,jzGak&hnzlzFS^5tC2,칶\dDr%' 0QJ! E/PoN0KIk2EKd䥐DŽP~eV yJ&n?|ScM(33a?%y Ţ!3&u _5I ˒h4@բE:4m9J;+T*x5XvՖI`Y] 27_yӪڮPK"n1%ށ-}'Aq ssj{ $`mRtPsI=_S[H*Zy ?æ9^7i,7hVҝN!Dq]GC32g6KODĥb߃I~֌ެ d UVY?MWu7%S54'b 2&SH |8zO9q6\^S n-^&s<>c{Y/OR?B?$ezpH /m\5AIQp* v=vO+?>oJ2CRGNC,47pW>Ƞ}rx>P?tNs[ABx|cV*V)noP Ni7؋3~pZex>R|ݴx 5ːn\0V#pU\F9VowGSSqb{`R ͐4~8YJPzS< Zû(j{V/w*ABFgLO \6.W#֗M os|3J4)!r߾C'ޭ7Uj>^KGuj;/ӝr FϒF_ .2jC'F)N0/9w6gW a\ijvԻ\F:3?[\|CQ8b7h?=GT=Le**`))T‰|Ȩfu0_6"L91|WՃ  e?=Vaf&W]$~Jpfp|4Y"e(瑌"D=T)cK.5V+L/԰qvH죏$wc:7 Pe^e 1!^o[;Sx A4wLDfK}G9GsK*}^! &PLJ>U-}'ee].mhN?c=8tҪUN3*YPkhZ? 1!ve j8*]h\753e礰NjSSer.(%MO[A3l?y 1vtԶY)i:fm~n6Ba;C3:l#'Ғ{FOeOp'<ө9 bx~T}p+ 'Z ݴHl }AĢƲ! 1.H/& bWWx;|ZV}I7B[-;&¬hPU M~+px?LfosX:DS}\,1^)`}-a45p4p Jª@̮0RCf+_Qrp*[.ڌaH-Aț74?.{L,ݒ2x?J NZ(y0KQ,.:~r$60.e?#?@ RHO&*IQg])/ TlY_p D,ѳ s}cbk2k2τ2pS'k {WWFSlqWX<惈2boӾ 3Ԇ۟F1UҎæeh-V38cj3ʮOj9j4gdyI|2ጳa俺)i|'3p6ݗ灻]o .*mO`cź8 PtcI FY: j#J݋-S??0l"ȕ0GYeй̄Q0y1џk7~:xjrhݡ{ Ҡ/tQ耞a ց 5fr;51^B1D; ֻ\"J̷%~/` Yb6F) B9z%+pښ##CD s",O)yձe dc|Ql&t#(..F~(5| M >cu$e"ȁ B}\ʏӊIu&,$r-(w=**TޕR'~Fg[V!Q1r,xd˜xJJ *0ZZS]%I*5!V(#LEvlk0DO=sOPʂ=VUobX&-l](81{WFLÐ_fL Xک-#71}k^`*هjZ2)8Xm.De92fQIvHr-˽h,TKO?|^3ٹiyffn`X2>=^bK2kMu "tq1[34dk}pW:&O7l=΃M]c=.!K|VEԕq%ט̼{Bn:!0"rG+K>ݐh <30 d|8bX*A zs ÆMECjZdDWm+;,tN6Bj.r _']OZw>O6LbJKvr-v]soMQ`?R!Fƥ̔%oҝ7;{VY_d.ji{rA&ggnkWz$6M|w gg=G 鄄 6Mp%VTVOHoQCɎo$Z]bsYϟ8 0,%Usk|h!V[(CyHݭSۉ61$G|MH8m]FL7CJM8~?5nي~? gU|}9%$FNd} Ynoq;n_jwTR\( fC_2^Q#zVaZa`Sd5ϾM5 T7}9*uh*k3N&"gD8Nסnou̮^lr3sDô\X+@ DQ}7koFh?BEQaL]wXڲ>~(ٲhfDRzM[goD@aZwk'_fmJ[vF.]1XrfPt0|-k F`*>0lFkCȤY69:;$f\*$}(hP.C;=6{9$9/T|n!P"Nֳ6>^`Gk)4AT!6in.MZZŠLxINTA8Yv4MؾQ"^?ZF@ZN0 M: I|ݹiLw7#dO)t߯ e1 ,\ʃ0$UgϥZtye3Swe<]VPnЀ"v%b;KHY88B0J]A )Z ʢL̙BLoCzȄʠēr܃w)F_=Z)ϒRp07p(nPo@F 1 aêyu?4#Tk&f MQ M+{I&ve.q| !9.]#;8{nNȄ:n8ctn!O>δzކ^ִ+ 3sx:(`"h,1 auDo"xhI'wCw0=fL>qa᳆+ɺ} T̘VKc 쾺Fkx)}TWՃOweVyߜ _/58C\M6E=KOu+.9U^]+ׅм6^d݇j{yH:u;U\`]|(k8ip1c@^Rhx٘c^91:%#wƻx hp~_θ? !Ǩք2L0݉|uVoh-5%QP\91E<!ngLyO\d>*T,VXdw1I@+~  +c1Ք0)uT".)կ`gɉ|w `&=׈z0 / "} @mT ?@?a+9:n7+Ns> 2eOlPvLU1n{a NFjJ5WH@P*1"GpNg'u%܏.@ w1}ӵl?EfFiƗfޥ>z^G3jd?ŝHQ[vkkVgaN/c'M}4};_/a%ڒ}f4R^;S %yǧSuN^fTR<*@6 IXrD7R&Sg)ƩZ.!PQk^_M!, bM(pFB+zKafBjL!EvK>10Lw橠k}/Aõ*!spyT$-)w Z6N=uK 060AcgF ?Py N,v] 7=\`ڿ޶BFWe!  (<rk>'DU[8MiK" Cg >.fU9|bjK<(aEksi;vz2jUOYJY5ZH)n4 E2rJ^9SEaĦpοƤgF+ePgzl;w.sn%-9-g`ƞAZCbONO|56,ui*3ŊnܞyD3um`"=*7jh[v9RfpA]X1@w۞T8_#޾_yŗ PDDQ@',H8<[b5UQX]dBOYD'rƸ2/0CMl&İ.b}l8:dhw6h1πK3m/)W-Cm:>D-ZM>(jj21iȅTOt,& vd<x\wW,bP>fVt,ciP/R|NzO acJͯ4gUN5@MFAL>KɴL&*xsBraIýkvu, WZڕ C|AvSA sq`rT#eo%%jP%fs.O"-p9b֛HM+c [7wMszE{7 eOt3u6^[P&6X56 I?CZ8s2fwȜgr&3 *J4/ ,, G xZ9'ؗho“LhCwPVGGCHni[~p䧭+|'45tQ#פ2;>x&GGE Qb0ڟA"fU`Ǥ~PkA wAI:Gޱ6(bi_r+D@ekŀXZi ;k#UR;Or~"5vu+k<->SҸ; ]x G%ƾzouïT}T'@΃1ېg 9Wp9IGvV1F?A'YTBLW:9.~yF5'>¸C,ƠWնWAm%q~AQ9Fʰq_II9`"*⋱5$AnHYed{=bwlEN~6 }>(D8gsJ1 %"/ :tp>s ق7|eq} R; ogjZXn*Πad #)G@߲,T"}fpAbU1)잊._soVzcme6o9hVZJ_u>S04vOZu`B8F6,+p Qz{5%5GCL w߮ %C8sHNLœA0Ven@[#Kk=t ETn{;ݒZ7K!M .*ؿ^vP H I .y;】%cfPdI{4z I[Q~7=f9h[.n 4LTTȰe͑{iCqk>"rd@']DdJOze.AL-vOe_y߁hDTV(=s҃xjEh`:y,ͫ坯Jy]h7 h͢gt<{(e_ >vUCduVU*pIjtr-?fj#mOZwHT35ls_Cf#rMВAd'Qg,|\LŨq pS 8rHHCጵ~gOҌfHpOgՑyNt&Y, y~&m 4aNu檻Ր2 J_\a  ؉" +VrWe@y 7 T5-z r}]~K]oD/e(lSow.$n*?6DaIz5e :A-*0*bvLvTW8}}hLyv#R|xDǨǮ;A۸i DIZׄ23TքʜNܽ 1#bPGcpɾv\ܨи ǜxQ3Cj`լ1W_T;yH  כaF4>> 7D.puP ϸxhg:DE"})>At5wAo{+UzέU SkV]:}V[0NYe3Ý16=Wp`Y)?z5ljCҌ'rQj0nïpG- C;IM'yylޯޟUTer["/#C wPs1E93iAcnJ``}U&n1QXHM44 ?:Ly 5NB-ks-;\ڍx9?nh.H:g4fizYBUvj>YMcWdGv\@h46O(_+!B΃|)2:.h:k02&PRm,V(~ITcRQtPw'Xˆ ¦hß%fgʜ@ZѓQ!ע Fm Mѧ I) !*s{J?(@[e{^ U:ߗ"|, < VTcV,ՠM;+IV_doꓔfD@ ^ʧi E"agT9Tk9(?\WV7p?ܚqR!/1 Wp1/JsbH؎dь>g葃,I7?uZ [\'ՁYVx\fa80)vJ>̝OHK \[k 9cjP9 0}@-C[v)`E.9 ^"4SwC&!$ʨ\N&#IcBW;1kAAlk-?D[q7~6# XHIcj'.[ K]ZX:@!1yVD6*J:iA*#^!vHP,/&JFf1XHw^ƀ18Uvt-;YHWZ-&szY R}IG0Xnq2\T[cf !_`tGx+FƙuDRxe *{$vt P[ҖI@vw ; '5{Zca|NARO0+^'%w#*%kBsj=KVԻG>Ϊ"}}sLīk.XZa{"m잘38\8-XZ^y9vec<8 җJŐsi{ o$ԗތJKh{q¶GL9@΂60-mOYm[&7`!*k ]͓D1 }^V/d%G+JX1C79a0{ Gn6O=Ygq;{ ~ X2B:\;GCaSs #]:f>KԨw_ $=[m쳺En ,zA5󧭘9lAz%E ;š°6jA6>#F[cTnR:aI]t@ GՕ&Tc/k/CnER)c7#ZG zDar=Ls& Ă,DX'Oy7 :+:#?DĨ; 6 pAE7uZɆRJē4V.wIj@Uam9NûBM27-:_Mݵ݂KWPWC[lf..Ph"&u;# iVA~@"rOm!ǦIQ4>\VDy +NίUȾOĹ5\( ^]L-LI7tBHCͳ1=4(6Tʣ}nJUjXd>$b晖p}=L ԺG"\_\jzِ8i`UӴ%fes:s{MBwB\#OS[{eA7 UDQk-~x'B"u ;T;6Ɛ:n &,DSgKEn0wz~.U^"k3RNYx2%餻 .Z5:-.B7,lg'A1ǔ%Um3XֆI}Uڗy4uAe퀐߳)Em8lf3O/`J{{yfE37Ǘ"p nŌ|Q|F? f | )Uhz=l>;N*L  @2m9 %V/2 .ê1ܜadCݯ=/,eGr_{EzV2&YӦDM/7&4d:illgv)  = @,q: B>3sa 5s+E&Pcuv9,-<3/|UʌbȗnM{7*7Y `+"[h1" G Դk2TRہc=2^.F'{T3=YrFH&7>/?$a a;ج,#kAF\ cPi'J.4Ͼr߅ShdJK0!ʱI` 6xWp4~R@3/UWb[H7]&n7M.FRg6+"zMO N$5KhTzE=,p e"F+"(8!dO"TCуZJIx)G/G! JѸ_MJ <{ȯ]im}QafQćeGUr{ ہ߸tX~8[TM!*1]-Ȱ^ΦZ83T~<)D,"WJ1 Aut oFжj͝ $ɲ;:نMvHɾgBFC;1pr| 0[R]%trIj(A̿vL[EM"SADKr[!bmP[?~ JcX"nrd8hD+_EH-mΣefx>ŒWzm|ƹs(R5vaV%kh}K6zb~=/G_N gR Kf;bz <8QFnש JDąa8I/svricUS}qBA),Y/j{u,d쿶ic#Hŷ@'tS6^w^`G pz3 (緱Lr`AKy\rÎ>H$lGӤ] 8ww][}XjexAm`j= gOW,εJEjL*iΚ ݃֜dxSEOôLd14CY*Ȑ5#גR)I͗& Ԋx:8(bXu$emw1FP(拚Maz+R?]*0FKHrI&^"UvʉBݻgC*%^w|xW՗ǩ7 dS-e|81 Jh֩Iftu8;L?R/Oj]yWFt.N =V_JL|4X3XYB6DPK$b%3DX)ke8 |ѱ5xBxD ND%#{ OE ni &\ebw[[|WsǧJ1)v⯀!j ] hW+/Ku[|jc:pjsB,>}Ԣro/VYzA=~7. Q^vr!wxX]R7Q}8SHwwț[A6x<{T5XnęRN9l0{#C|dZ/cd׋')R_&i/ B{ (EAڿU?%}mYa tL!&9UXp5ƃ?/BǹC wWcT%?^3-|<)=Ɏw·,s~ [&E--û}KٳFv@"A4 UlTaԑnQf1c!ĄU23Ιp1A%VhOϥ)y km_U.0b叄7V$I'kgoVyFݏ<ٵiOBxowym)uQ- GOA0P_K-6"Yb% p)v0csRg39=f:C3/ٿy=,bP["2 >H4 gogm)/w>wAmaBHaZn=mrE$_J_$ _B:Ý w~$8a5ub0=SC}n؞LNdɃfSVO `">kLG֌;0x|%@u(2 E8ehy_TafYA6m?*eݤ3W~ jj_ F&ة`)էGA@ ̢V.Ʒ_$V6:y141KHyD2  /2Mq6~{C3U2h4Eڤhݯm}Xjʁe~c0A $_0fњ+*-NJKX`&a2'CHΏ+M(.u$ʣwĀ~wzQhU2 -(^ҴL{=<-UA1moV{;uXRy5'4BDb#/5Nn5b6&/fo6KJK&J;wnBS| ܜAeQMS`|hiQGgߓv"*̼9~QfT+qkZlo$ߑ܇ }XQ+aJ~bxIcGdx)ՕY`NLGި} ]5JoKЋd<2Ca6;OIt:bnp8I.cj=t=U+6uh##5~Rb;;, sJfOT bR|c&ɖ+!:ܮ_lݮx<~H*t̤*%ڬg3< kZ3cT=]Ozwp< 8?A"hƨ^uS(9̻HnOj p d3V@ק\սIU8eyFKTQcuHNe1DX﷔!]CǺaꖅۺǬߛD  3f8ـd=TT0}j_oʽg0HJJXʇ NMVnNyG\4u Dž<L,颷v!#[mk Nۣ/U!r.xp0d _6XP:~)&v-Ă^*xP|cM'GF1UAUE3>P:P~"6iʼn- y}4[or>0NŦ 80˪wDŷ d~JwyXTqR6A樓(|qFp@0jFP?[/[Hp-Ͳ9@ L[##i΃1C э 9G(q(UǎY/ E!DPëWQ/HH\\[BKϲ[G+="HQR{7e3!nnTs2'yui"db'bgxxi)ABH2B>KA5DYZJFSi!JA@)DY9CTyȞ 19i"\.NXlev&$sa*"7*\gq=vS/MLet #j:HFHj'M/C]ocFY@9^>narcɢh;(.ǎy^{ύI.,䙙K,0ʂ `麛;-  ^Κ2 4罻oz^2w}@ja,+ǒL}6vL;>ƊHV֯#4d0hP9&!sP9tsW߯Yqw,N_m}!ׁ0' -STf4`j25}P=2dZ }1I\NpXV!gΘbt>-]#n)7w{I᯼+#:-q 8|?bust\x?5Rd0N>[_51ܖ>d0sEVN18u42ρ3$?By>01mdA7a'^Y  -&ahMQ!Uq:PٽDw/k:\n2hR>&17P_ݎ uE)c ڒI֍;+Z}Q 6l7(S1J];- 普)}o5p80e͸s|J8 2~;