perl-Try-Tiny-0.30-lp150.1.3 >  A ZD/=„֊4[T9ԓY—Z4i5Ak$ƨ t0x#ԹO,{rU56M|;EFg0S-maS#:;+nݗHd>0B\Uc5l'B]!T34bR_ӤhhD}K1D؋1fa7e4a4f0a9a8b630e7cc5cf78b1697dcc8a3c65feb7d9d4767d2de42d40f2e6c99f6516b5d2744baf03eb9d6076c24cf12e4beqZD/=„L3_Mg?V)TrFxP53&=J{xl\Q| - ݃'Pq#F˭*<IT0IP[xܟti_7tmx|Q}B5!}(19ņmH;zRak"}ZO9{|d[Ȥ{m0TĄ-1& sϘkc-aDyZ췱k=+$Hž0}D]6M˟bXEW@xQpL`+.d>p>!?!d  P   " = c i p          e   p       8 X l ( 8 9 \:FbGt H I XY\ ] ^qbcd e "f %l 'u < v `w! x!( y!Lz!P!`!d!j!Cperl-Try-Tiny0.30lp150.1.3Minimal try/catch with proper preservation of $@This module provides bare bones 'try'/'catch'/'finally' statements that are designed to minimize common mistakes with eval blocks, and NOTHING else. This is unlike TryCatch which provides a nice syntax and avoids adding another call stack layer, and supports calling 'return' from the 'try' block to return from the parent subroutine. These extra features come at a cost of a few dependencies, namely Devel::Declare and Scope::Upper which are occasionally problematic, and the additional catch filtering uses Moose type constraints which may not be desirable either. The main focus of this module is to provide simple and reliable error handling for those having a hard time installing TryCatch, but who still want to write correct 'eval' blocks without 5 lines of boilerplate each time. It's designed to work as correctly as possible in light of the various pathological edge cases (see BACKGROUND) and to be compatible with any style of error values (simple strings, references, objects, overloaded objects, etc). If the 'try' block dies, it returns the value of the last statement executed in the 'catch' block, if there is one. Otherwise, it returns 'undef' in scalar context or the empty list in list context. The following examples all assign '"bar"' to '$x': my $x = try { die "foo" } catch { "bar" }; my $x = try { die "foo" } || "bar"; my $x = (try { die "foo" }) // "bar"; my $x = eval { die "foo" } || "bar"; You can add 'finally' blocks, yielding the following: my $x; try { die 'foo' } finally { $x = 'bar' }; try { die 'foo' } catch { warn "Got a die: $_" } finally { $x = 'bar' }; 'finally' blocks are always executed making them suitable for cleanup code which cannot be handled using local. You can add as many 'finally' blocks to a given 'try' block as you like. Note that adding a 'finally' block without a preceding 'catch' block suppresses any errors. This behaviour is consistent with using a standalone 'eval', but it is not consistent with 'try'/'finally' patterns found in other programming languages, such as Java, Python, Javascript or C#. If you learnt the 'try'/'finally' pattern from one of these languages, watch out for this.Zg#lamb03KopenSUSE Leap 15.0openSUSEMIThttps://bugs.opensuse.orgDevelopment/Libraries/Perlhttp://search.cpan.org/dist/Try-Tiny/linuxnoarchPLA$AA큤$Z;Z;a]Z;Z=Z;a]Z;a]Z;a]Z;a]Z;7010b15c12e237d17cb989df3167201f01f825a5bcf3f7cb10bd3908b96d1b4e66ba71faef7705b57eec3655d4509740c318bffc6735bfc547fa9d2333538ddb1caa49eec2b615ab342b46919bca2fc8c647c007386263b7aec8eca95c541d78f1864ede834871a1207fcd19838b6bd5e1ff0a8704f5cc523fc397126041ed0b6c7eb089021283de176a5c838217ae16453cf9f67899b27cdcd0827045f6f7815aedeac398533b1504135b7d3914fcb25ba23f93d878a2c1a131d1c281a845f9rootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootperl-Try-Tiny-0.30-lp150.1.3.src.rpmperl(Try::Tiny)perl-Try-Tiny    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.1Zg#Z8@Xs{@W@VjSϣSU@RmRNQ@Q@QNw.Mc@L@LLΫK]K5coolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.commardnh@gmx.demardnh@gmx.decoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@opensuse.orgcoolo@novell.comchris@computersalat.depascal.bleser@opensuse.orglars@linux-schulserver.delars@linux-schulserver.de- updated to 0.30 see /usr/share/doc/packages/perl-Try-Tiny/Changes 0.30 2017-12-21 07:23:03Z - expand "when" test skippage to more perl versions- updated to 0.29 see /usr/share/doc/packages/perl-Try-Tiny/Changes 0.29 2017-12-19 03:51:26Z - skip tests of "when" and "given/when" usage for perl 5.27.7 *only* (see RT#123908)- updated to 0.28 see /usr/share/doc/packages/perl-Try-Tiny/Changes 0.28 2017-01-09 01:21:33Z - enabled some tests of finally blocks that were disabled on 5.6, now that that functionality works (since 0.13) (Pali, PR#4)- updated to 0.27 see /usr/share/doc/packages/perl-Try-Tiny/Changes 0.27 2016-08-16 01:43:35Z - repository moved to the github p5sagit organization (the primary is on shadowcat, mirrored to github) - no changes since 0.26 0.26 2016-03-15 23:42:02Z (TRIAL RELEASE) - switch from finalizers using an array to a hash, to resolve segfaults when creating a pseudofork on MSWin before perl 5.20 (Graham Knop, karenetheridge/Sub-Name/#3) 0.25 2016-02-22 20:16:51Z (TRIAL RELEASE) - "finally" blocks are now run for all methods of leaving the try block (including via exit, goto) (Lukas Mai, RT#112099)- updated to 0.24 see /usr/share/doc/packages/perl-Try-Tiny/Changes 0.24 2015-12-11 05:20:09Z - fix prereq errors in 0.23 0.23 2015-12-11 04:04:35Z - fix syntax of example code (Rudolf Leermakers, PR#22) - 'perl' removed from prerequisite recommendations, to avoid tripping up CPAN clients (Graham Knop) - Sub::Util is used preferentially to Sub::Name in most cases (Graham Knop, PR#27)- updated to 0.22- updated to 0.21 - 0.21 2014-04-15 - also skip the test if Capture::Tiny is too old (Martin Popel, #17) - 0.20 2014-03-21 - documentation updates (Flimm, #15)- updated to 0.19 - fix an obscure issue with loading modules during global destruction (ilmari, #11) - documentation updates (anaxagoras, #12)- updated to 0.18 - fix tests for pre-Test-More-0.88 (Paul Howarth, #10) - work around [rt.perl #119311] which was causing incorrect error messages in some cases during global destruction (Graham Knop, #9)- updated to 0.16 - remove accidental Sub::Name test dep - optionally use Sub::Name to name the try/catch/finally blocks, if available (Mark Fowler) - also throw an exception for catch/finally in scalar context (RT#81070) - fix tests failing on 5.6.x due to differing DESTROY semantics - excise superfluous local($@) call - 7% speedup - fix (fsvo) broken URLs (RT#55659) - proper exception on erroneous usage of bare catch/finally (RT#81070) - proper exception on erroneous use of multiple catch{} blocks - clarify exception occuring on unterminated try block (RT#75712) - fix the prototypes shown in docs to match code (RT#79590; thanks, Pushtaev Vadim) - warn loudly on exceptions in finally() blocks - dzilify- rebuild for perl 5.18- updated to 0.12 - doc fixes- updated to 0.11 - fix broken dist - clarify some docs- updated to 0.09 - don't index Try::Tiny::ScopeGuard - fix require vs use issue in blead (RT63410)- switch to perl_requires macro- recreated by cpanspec 1.78 o fixed deps o fix License - noarch pkg- update to 0.07: * allow multiple finally blocks * pass the error, if any, to finally blocks when called - changes from 0.05: * documentation fixes and clarifications- update to 0.04: + Restore list context propagation for catch blocks + Fix a bug where finally blocks weren't always invoked + More documentation and tests (many people) + Sets $@ to the previous value at the beginning of the eval, to allow the capture of an error stack when calling die.- initial version 0.02lamb03 1516708800 0.300.30-lp150.1.3TryTiny.pmx86_64-linux-thread-multiperl-Try-TinyCONTRIBUTINGChangesLICENCEREADMETry::Tiny.3pm.gz/usr/lib/perl5/vendor_perl/5.26.1//usr/lib/perl5/vendor_perl/5.26.1/Try//usr/share/doc/packages//usr/share/doc/packages/perl-Try-Tiny//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/0fe03659a365d13f3dee52a98d21f7b9-perl-Try-Tinycpioxz5noarch-suse-linuxdirectoryPerl5 module source textASCII textUTF-8 Unicode texttroff or preprocessor input, UTF-8 Unicode text (gzip compressed data, max compression, from Unix)P㖋Ry;utf-81fec6ec48cd7cbc41633d5031d0f10b75b0966c0cc3e697e84adf5c8d255c451? 7zXZ !t/cK] crt:bLL ~5*18G}cP_mi4auZT5h3uaϕy%\Z"a##sakS0 ['pYr( 47Xr &+,~d&dٶ$l%<o3oː8b=4>!"֡yTP)EVYJ#B)w9JX6ISfceJ5sJ/$眸fjyQ^-OS㉟ܟa<37)$U laSn>P,%m.$Ԇ`D>| cDsPq Sy\؜N.$%i. %&8Y"(~ݳҶ!BK ʓҿcRw,9gw;&jv}"=v4^Cb D$-vCl5ě؇؟,ĘStr.s73x)JR݅ 滪';t}^+υja^>Q.{bf[%; $:[@* SJOJ}MVAR0bDTG6i~Y"K#:o(J8 ?#N"Ilqͪb}#pPmGQpk͓)LoFe+a}u|wn*D;Z0 7~8.Z0 / o>${n>pa(A{\T"Ŵf'*>4}Tcfz d kvǧm4T> K9?V3P QB8rМ`ycing0iܻ60kI޵0 2G'Y@<՛u%1P2n> 2g7/g$n"r| Wщ\G 9}HNqRϸ\q|$O 6[e{>CpKKQ%?H c^-nLȦGцE?Oύ̯ܔ-=8Gu6Ӈ>%s3j{E:4hrD6m],:cu{̄'UYͽLAmsqҟπ(:uNQB<1mJ`ֳAYH ֕Zm"`S!uC0_Lhe^ ~{uqch+lEeaY3!RK&[qukv=Ң}0UV r|n2H(gptє^ԫѿo&-QqL;E>SB. 1¬)[Dyo_ac~LC}PՏJ{f^3Oz&@ tQfM<)HB,ax hQ2j~l,lmQJ@9}̃&,"h̤k÷I.,ȏ<5 L/1f$Nt%WϿϱ?U7ZP8)ԇ0 Ω%'b+hzb5"%[T(AQh#7>_BfMM8Tf٬ȒtkM:тE7Y|rW|:x@bHW\s7a,J:4Z -@㪽*7%K`=CgGjcBvp.K͠' cNFi_Չ!Ki d1zki,#<ed}DO''iDws / 5KRt$٬y@Ŏ&lcn9PദEx9t\IXyaWn4q i9(tMU뙯gBVvOЌUC@P+̥+S`O ؖZ<J|Vo?Rli;X;4Y`JkX!`o=-0ȉVdEyʼRw)EgaC;x(J6mJF)I}qfV hgq:@jkYw,P$hyzIlK M-"%iNc@pVV }*8Z<%c5fMl?!I$vWLrKZ'pq ^^CTceG7cDkdΨi;^-UZmOn"kw[^iB\:- \aG갔[on0]Y8Ī^^R{_N`~.ˁqC@ŅL$#vZ91Jdd:2; o٨oVVM_'OV`,oUA˄Ȧ̩nC( I=99|:,V30ywsO0bK`fwv{ĐN{u/HeGc91L:d)^!_<'=Q%<_Iy GͱB+/l: 5AQ̐H]-<*<0;rZh*-:L0MtSqyw.++UݘJBг 2׳ 2&5iZ CX}ݴLww~yru!'gO9PoOx0҆7dmdZ/^vZb%d5W2d-S.+#Di0[}k/DFlӰY ^=  +~+yWy 3ޤ{PlHo4Z'c0˶mP\u0m H:2qjj5!qʧX^&1dPNy"@2 h0$ׁVI3aMg]b>ޛ0NS*9ǔػ!)5":l79hqQ#M5RM D8,!ך}EC\E%;O!l ȹ^LgШ8^w3Do'^0u׶éeU;w,w;!`TH@NF]MhjaIvkPE/E`G9"nYz_%Q"e:8Z@#vuGr=BB9 Xe4:Ai>O7>U;"Ey@Z4óA3 t=U" s KylrZ<Ē:U>j"$) Yʼn əyoG0@u 2s¹Ӌ/ jrTڬ+B54ŝHۨnqX'l3MW{L+!>cҩ5:DUNjnt)Tj| #j͘Ś2xSe9]dks|#E( 磜%N,ٌ`fD'Wo -F-k :OuFU PK2G"dk|TgU@ # @dӍCZ-\0dٿ"=AK؆C7IˎjaB:wn[*%<+^} 7|ɄRHfkא[UQaf_.ziG(VMOX&_` ׾@< MXWCbP*fYAFq#{_VT_ޓ; cת\p*0d7A8<f;k|ğyHݹNҡT$hTU.Sd8x}ɸO宦~,^x-`sT-rì؟i{] XVo$jşA~G/.uxͳ:))?íJdyAZ4կeں'@Xw[#W66ऊ] -ro%%lzC_2yDeY t불p9 $ugfcPqF_"ASOy6QR s (-&@*ɑ%\B9-a0&BAۥ'@gAU` I 5P >+ ͼ0%{H ڄoJ{Wƕi Y]V}kXl`QBm _笪7E{Rp뽢'N'Q)KdVRϮ]46mjR 7̲//eKU

8!BԽis=x&zy$* l9j2elG9 .N^" nF՛&cCN@Q63L}Td3"_fY9tڛIjF3nqŰ hs pXjxbt=aR-h-@TͳW1jjO/DF*o9*F$E(3bKbTlX:FrbIAlԻ8 kbk=T3oSqmܳڽ_"8 "Y9{M0/J?r @I/MSmե꩙ .yRdV04HD*_G,,A]v )Moq(Ѯiǻ ';/z*3[Ss=I6T/[x}WG>J.򊔤R1~{@ EV־j*bntx1p~4Jv gkbv֝>QTދXgE `s5Kb0\s/ė/vt[? Qu`81MjZp.U]^I!ߺ_>^#$_)ȋWF :4s2tI!~XF^Ya>rb -7~'d O)/n.Ka,/Y(C$?Tz3m+{f<P1|A3/ ,d4S'Z?RBm$wL쫞"#uB8'~Q nxaڬXR滛Q36"qT>S~9Y4ۨaDn`RpO8=JG!ѵM?A}*D mDDF]`*a\TߖqATZz!C;vDlXusx |UAclMcO2yvX>{94˻'LPoNrXإS?U!1C)+IOdj8PBe@MgX-xVkAz=jS |L,:QBtO䏨hOQeQ099W\_6 H@'C)-83Z%4(* 80lÚ=Nwz/$s| %qj 3K)d =اYU|a R` Ij_-SWҮS~$Bo*}[y},~vQ ,4fjGױ[f*9]xpC]k=]•z_L9ҁC`&sݐ܋l(m 628#LV{wkv)TE W+l./xQc{T _o6v]<ԆɍZf,Wg"pؠN9 쒚D*]%!Mhv7^ټa& &ˈpY\1-$'o(0wD'VS((D^111u)D ^)zDl:zP']2?PT` ~(6~~q>[&[s]q^DpA?ު$| o@ »Tz-Kgb.[[bTКMkns'!J$T({@0I~]BݸlIv;q'Z]7?T5Ht6+wٌxsôUDtYZ9mϥçUĒ$VV@:4k ]ESd4λ NJJ E[F;ŋhQ: >Ε: Vx!@n& T?`=LxoW1:~n%A=*ղm0_KPzB畔v (TPYd0zppg0rGo$X{Ư6͔ro2h2B򘃂Ku,l;F6r R*K\jNs%04"ο*\;lGSq64zxЏęXھJVfezXv+{+}xYL76`bFqNY7!D(;P2,ЄG]a5x4vϘy~A6X|#7Ky,'y=; WfN`84^3^mY Qܣ:J[c ;k. X-%C1z~#:5(bu% ̓X398^P]:3 C O#cc]j}'"U/{mWQ?&Q{+kon*|\Y:s Du;B׻7x02@j(.hDUY0Q&\ }ϊD" ^c]2ȽG ~@-[C^%d<]&Hǹ1hKAtrƏ`pi\zd(D3P {,Q+NzF"߄C?ԓEĽBPStkgk,m=VrFUoڋ-ER{ld ؋x) F:ǒvw?8#ÑΝ*O7‧3*@56[Q lʶw}!#!?"40vVŨв5!lÿ i>;%mXl?Bt-T̑AFݱRx`t2Y&+|: Z5^F# ɘPV`%Bh)K u=<117x7 pW]57dՒQY~밼H4sQ $"K1ڹq'˂I nBOD/n˦Fk8a?ՕƠl2A dlhS8+cD9ʫHjܕuh&_b@G.CN ~q|x9݁oL>X%aՊ(b ձC[{9Afj+ =`u<~>2!>Cj~t;MGZYXZm_Z4zPh$ؿQe#qϹڡKc&˷4ƠϤvгwD,]꤈qK+ASbHr[?[a6tW.0!AƑ²3(c5 @֧/a "_ۢGzJ% .(rez|"xG0q(H_|l䩨+^'tsYv3HvJM]URB_6Cr M]b 롺g p& V));+, Ei(\3?Fy 2S갳O.q<(d4B3CWbs-B1XvQf6L|* ^\,k]CS cSð nZ: >~HX'C?suL<雠̨uѶj/ xP so__`L1M1÷Z|X\D$ڴϑB{ < FG׉fAEY`z9hrKs]NyԻEY-FXFYl$$R|w0<40? uQ1{\+PzQjIi`G]+-'H59jQ.3^ej{ y:v8)E_ڦ(K@:vyY5ww݆|!ylv!%~]Cdڧ.gE!* 豛yt8ڊ(N̴CnH9N R!D5YlӸN\ͯMݰΈ ?"zLp~;kjm2G)?I!1U6^d[\n2HaMތspOdY_S,lc:aWIy턾b yh/e?x1ѩ9mi+j Owx{K&B9@-;MqhXW^  h}`&{\u\]X\|(Xy?&"{T֝|FԹ/oV9{UַIM+7Hl^\ZpFm37q|1_CUi@jU0v! #lU9($xD281ëtATC# XAH kܠ+/ǔu5a -a8&:Vp PECĀ6%'Tzo~/AOt=r~[*HN$ wf%銬;z]?ضWrlK1!_fADmL_b2y4oY^TUtč)MU #~9!yA]-'x ځeڅxQHkJ5@m/fi7KraSIA0_3,k,䂆DP0e(z4x`ja= QDfz]LV$۴ fnhj2zd<.ux utRɔ/_`:M'[?.+.qѡrɄkU2/ɸ*}un&T ^[\ZPp $}Ln`|s2-Sňv7 0 ` 0`icJղ8,Zqs;9 G*8D_':u ]}X!{&mLQ Wڃ7íld.<{!VnU/&utcS{me[UCO+>L5(/nah{%iS7<$˒,e6 wTQo4In,sZXXpl|xݯ! }nL1׼vo0)4^G.CӭtW뗮2K<$EM"ȅqt~ eQ`es3 ](f~ӗǥ$?cr1T#wp;92XMl(; M$ia9-% sFE X;9vA֮\7SF$وL u 2v+NbkMuKJɕB0V\>޸e۶B^5LigF260PG/1>{ޟZ>YrSnYRx" j6`bTb`/<5%T_0_Z*;`fU+@܏@=O)%ׯsBԕ: ` ",Ij&͎!o ~}djZ`˦koMq.}ڍC4!cn̪>ԾuщWe[}m [/&Z\naC^Qq| EksÒ%:Bc %[6]*:˖ϮALMAȇ*q7[\D+-^]:A9eY^t3TR&Kxt-լFm;JN`6y[QaT$ Lӌ(a󸈞CE9Oqۗ{Y]f,)m͓Js2AƯ~j͇!\<<\_{dc1.9bfh^Wh3s*LГ,uA'\gcE7g`ؿ>^S6YqkmUuGؘ(e$vcX gVH7U(,_alAӛ[3آg/y!%}OxrLyU AZgf!(Ʋ{/s#ʪe!b9֌xH |ܡߤ8px[o*F&""kY/R5$geNE2H مA B[ m]y1'>E&q1_7"j98=!ef s^'ZQmWM=(BMU98ЀմVgQ`b삲YHe*K7Vivk~ ! 2#Oı/ 9y2ŘɀK%YQ2̦.uHrCǾvfA0 Wzs @vh2.q&V#<~"# (xv|N@C֍)# B:wdeBxX=N˨H-# ͅstPNve%˰ eUVpW31ƯrW;^RD/F0[ThgFJK[r[}2SޡV$}f Җwo#1@<29˄AiB3_}2NDzABz;EafQS8PԜ_s*j M:axVʽ_K*?W NTqaUk+s%qv34)Q 㹖5TvҿIQ# : # lB@B2mר4E%H0#.~Ѥ 2ʆaK} =us !'"RҼ]?[5];y9TIHʝk<;U gy;UhGKQi Op,&{B9wܪ-LUg`uq@܋>}ȭ/>5mnsYF-H]x&WʓR@ۅQ㎊g& Nm3aQ[toFPu`fأO}\8 89͆U-2ܴ$ ^@&ydr 6nȌpڙMt.6[C~c0$6vU*>A 6zG ոcֿU}5pXLGt|*)o]P@[EuWyEUC"I"'jB1ӓ&ͰJ4`QI tPbuZgffbNk"6xl#B\S[ trd̓ڐ|r@4ʣt]TV>jG<<^+ria|vH \cFRp\*ВŨ9$KHD=ֈxJ536/KˆL ɦ^itetѺf^>ҍ_So"M$d[Iյ1d-SKkSY4~`i˙+rA# 40[ 'L(k=tqW[h(1uh3##kr_a.C3<{Y2aCa7pGZm773סHJ#Bq8%1W+bCК.撄LD[YfͬU2'{ȕyf̔<L .~oJQNaut 7 ͤR,tpF$<7aOofh|TsJlxK6SLFCJ%$1ryT$A"\< .a5)y&n]c<0W%\q11sF\@b^(VT/.äiIE!rNY*iK\"0G8*= ^|h^ R/U;(D)~$UDY-srZg_}tV{gӉCr6'=Ġßzc@q z@@K= m^PhB0yKvC (r{ f`2A I"TǖE~T c)"b\Eׂuh#?*{+"nu5*+Xl(ubycy;v_R-\_Bm8gޔb"Dqʩi*[(MQ/[_>boHণ3Wj=ޙm B[fՠ+W^k1pgj/E Pa]@b& i9)<3`E}-v /ۨz'wO@U|t- :'~4_2 AHU-o د(I 7{h5!O(ȕ&>/D•ɛ# ~!Sgm}H$}5d=Ҵqh'*l۽}'&tn h:28mm#LVQ\o%￘qql xA8ycvih]Lj:Vox 3tUNF}3NzTV;::3|;^+Q^RZ]"gq8CKqS[l﫷D9RA<= RYI_r]0H[bIݥ)nhZ@0Ƭ;Ok7JI4{lR吧c||e_ Yo<뷰Pav #롉ӅϏ#㈸gI;az3_^f!VL\Ӻr|Zok2qٕrFcaK1g'W$McʠC;70–]kX^4] >gY[ Dz BYL?F_0vJ DóQ2Pk1|uZβp6#dN?9gGU'p$3zXT` Gs bX} 6 2twk.gD.3%mVc&y=8n6Zo@;b^OkE5$v:igkܝL["X޼2k҉@ww$B^gL)om0]E返L2 *\SpCc[Ɖ,PXu Zʳdjcxmϵs/쟞@LW|پW(; }؃0tA63~z2X=őZws`Z41QAT @|czhvO?>{"&3}~4( iaIP,6m&^ l AؠwۮlHpcU3NbsF9)8,%A iŽ[fdJP06qʶl;`r`t]hHΙ6whWBzUH:2^0 t{@5²ߎ-7^/'vU(1dpi.ǖb YZ