perl-Try-Tiny-0.30-lp151.2.1 >  A [Na/=„F;CuܚM^KԤAZl-Uq#†v3_ eRWp+<ʰmiW"p?njjBt3\MLw݆B#"`S;ܚ"@: a;!E艙-b退`AuQ_eJ-ĬW{(ؔ6>N/Kg7 N$ps{|yJ+Rx sB4ѱ=5m&L.%6iJ dc62184430da8286f706ab6b420c9c98d187150b388bea359e54227e9d76001469532240971693fb3dd2d24ac27a263db61ff0d1q[Na/=„84iVt< JGqf> v+-*Q.be2{ظa8Vc?`"8RKAǾf^{wP(S(ӎ<""(Rn(@yRyDV]Ul6N~1?=V2I- v/RyK#mu}9h|2o >{FPGE)#q?l*hy~_sw5S؃gkbnWUZ!tkRvGoqv-N {ϿO_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.30lp151.2.1Minimal 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.[NWlamb04KopenSUSE Leap 15.1openSUSEMIThttps://bugs.opensuse.orgDevelopment/Libraries/Perlhttp://search.cpan.org/dist/Try-Tiny/linuxnoarchPLA$AA큤$[NUZ;a][NU[NWZ;a]Z;a]Z;a]Z;a][NU7010b15c12e237d17cb989df3167201f01f825a5bcf3f7cb10bd3908b96d1b4e66ba71faef7705b57eec3655d4509740c318bffc6735bfc547fa9d2333538ddb1caa49eec2b615ab342b46919bca2fc8c647c007386263b7aec8eca95c541d78f1864ede834871a1207fcd19838b6bd5e1ff0a8704f5cc523fc397126041ed0b6c7eb089021283de176a5c838217ae16453cf9f67899b27cdcd0827045f6f7815aedeac398533b1504135b7d3914fcb25ba23f93d878a2c1a131d1c281a845f9rootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootperl-Try-Tiny-0.30-lp151.2.1.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.02lamb04 1528385111 0.300.30-lp151.2.1TryTiny.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.1/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)PM9娇GOȋҗutf-8c0cd4ebe0e2fc501867cb9ccba50edc890d825907e58ec8a416f8f0b1639ade2? 7zXZ !t/cK] crt:bLL zsʄ/&7$i3oŜ q.<Z{ &'=&,iyCiiwؽAmYxail}+YbRIB|y0j lwt" LW@V:}hLrD'7$$1:GXP[ujw$Gf 8yH(6SuVQ`onFŁqןWG-2j(t^2oV)3M{ŠT}6/e8 jpe(Bڋ\Mf*5t:s'vu2[trUSUU8~zo+`3ptXfMFgYSK%ΎH'|h3H\W*f&.e+K( /jdI;~bŸ(c?Z|ѪBE˱)W[cœa%b+Av$HXlOQ?}-xKgu Rfd~gJ%g;Dȅ՞n$BZwKX*7N~Jq5ڥ}fWq?b H-[H2رpbUָ wgB;n`LGîuk$ <qhe% ڱZ…}՚U>9ՈH]e$L<X[4Ӷ:[Gk[8RPd1.b4'{cr5zxpa/^TȊo<1HC\x4tdز; mɝ%cƗ``oꈙ=^*>wyk6ٻVsT[7[`/z>6R`?Y*%L>T鏘`GnDR5^*`OUIE5 Ra\ mdtm1+1ŏ4xHߢ/[A0 nc׃4@u2m)De?3 u\>mO:$MUHku1Nk B&TODgOܮ]{^v<+*/PȽΑ^SUA3Ͽ@*<7"|PU\/;(3xvY~n?%-)B>Բi9=].똹b,Úe G# qd/KjMb/HaD>ZP0nq ~JfBu_ 4JPN>y2FlJ_X|Ѫonsnyfۊs^ɜ0i7EB18~!k.r9 dm7#{pȑs8BsHWc)i럽dO\۱͓!suQo[I/A~vj4$n-NbF2P|z|XC 뀅8Tޝh.M|]lNQm=Fi@=HNYIp .T:n;Y0 .nBN e>6^jKEhrL[B Z*Ug})R}LjIw_JUݥiX\7yi^fDwE)X-ݦ?A}Њ\S.Vj5ܜqopI5\<3.F \JF.bBv&GQfvCV?s 埀,㯁_ɼܛ |%0+ MY푭D)zR_GB~(lgeŮ }Uun2RP܉e X['#ZRե r 3:o'r5P7k0jOI~74,F$3zHn 6ԏm)\+^;2q㈈)?\d\ح5<g*ˌc0Hb8&ϸ@@c!ͱ J# 7FwF&C=7G/Q4oy 7z^o~.ہl&ngkj3LR,W[avvZB5% t#VD04ΉO)lxTIl*V](Ѝ4UW3Sԏ<4WjVuI^U6}?a^AMPY]͔D"(Q~1svJh Rͤjˆȶ]}LJ1l Ii:RmD㝊]htW@6^8$K_Yr6\ SxX 92ົtJ!E=Zo*J WNlO_` ;ZR:i$0L@G#},8ݖz,L^9,% %?ٗ 腾K(VüM6,@$ {aUb+s߽PbxE_V=3mK;Cv)zSep׶VCWd9\N2$RN{$\ OTht+42%Q beubZ0)B\/$z@ˮ!Zfg/BGH2>;{-h8_L ؛5I8\1\F/Ɲ+lMQ+c}]obrr]wm ȳ !̉Dk:M9bGڹfsQzvI~!`Hz\At /O,a؈ D64jx'h9 Gʓ耤\L" ETT$!!|^TA-_]-hZO ,Z2!ߎV_U+G @an} 9[OМ/$P1z(|Xjf3l2+3{l2T M w+c*VAm6jL91nRn~GGC&LphWE#\Z˼1 ﵡj}󕘢 ;%S}ߟ.y"=4R  ڴXP4*S#_Nh*q{3c%5g4 ,&{|.kHoj3nC>g@A̖D.RB-yun;B%6LbG5S KnzdԬ 'KyҴ0?_3&hO,f( ӝy\rE@Er/';>s]ހG#cS'Cz}Z,SyQ 9_F&L`57'rȵ~bC7왉5/8D4q 99ae Kʏ άXR#s O 1<.ƤaڪKvι hMA c0Ċ LI\KCZn^U ,ʇ07Ց)8vTE?!;2' XZ+E"勲@FL5<=[Bm[;Wƹ%[1 Եa$ Bֵ {'_\PV-._ uNj.P0SFomx|WC9!ߊ4+,Tnէ*EOt]tnVoJ/wy~Za+ǟ.7brpFBʓQ:̅A6cFfi3N ;Mdx,̕-~+7TZCpt pgs#5O qDٹXhc/~TNմ%GMp3'RGm7e p#XTkR3_FS3Z}!Àe7xNIwc?q}!xo xJ[{$\IUs(\YTɪ`8(as5熕n$ կ2&fZJƤ,r-(^˙Be Шva~ӿO*:kYwjE&/2.7#߰(x"|QpJ\QEin&U1ZEL9s{PzšVz(aEmi`߯H5ӯҠ7?&ueN-Zzw".#h)q(Uz S\@;Mx`J /nK $W~#~#4x,_%K3>t{UPrPA4?U3>$Q-W֪ ܐd;(#a^$lexN=BЖ¯{Px(Ύh$:pbmdhc^<џ1 @(P>T*L2ŲjfЇ/"OU ;u@d:Gh1tT_sjf-HW8W{ٽܯ}wPX (>h:5G|?B0yquB^bfvh frVKhgIoX8ь/FqM7FZ"k[ *QӮZSۄ0kM Kk:Q=$K# k}A2qt|Rt X: Zn??Z{Ceuųʪe# 96Zq#4tZ.K-KfG② S=h͗p,(sM<[T0?!ѯ<^y,6enxʀ8}+񰝨[ùSOǴǍ;cdɵ "CUqH8A 4Ś˵ա} qG2 /uyd.Іx:y5oizrZh2f JQ?3\5rclIհ@EB $v}G[Vf̝'f-l3p#̞d uDA0>+_Vv%p6GH/o0ÛIfĂPdZ@{/S YLr"Qs I=qJ+`;)CV$AL!奂XEs7qg׋kkIͮcS9_Ԓsf꭫])cDH4AN$}<[)7"ޥz\X╬Sz"^KD mVԬ:MWގnDN( LOnL M~vM\1f Lg1R$=OigW_1Hb:1aUO[^bAX\x;; Rj,RO!ȫ!+@{)yhYs~%xm]72f+8}4r#&C;v.y6W{~!Wu9͞r#@ 0(TXo!6ji Q `gi S+@^ћT*%%#IDpuf;E:ʻb/7 Y¨¨| ]RUH%Xi=K'Vzh|n2Ϣw*nb*0/ݗqMU jN'A\V2r<@&Uqdv7XW_ G3w '*NEn_Dߓ5=>iIfv(.MA/R>b @‹ gzbi{EMQ\$rP(}C򴰴`lK]:s&0 9AޡFr3DmLx P'!?g9lJN?8)fblW[4:D^3ja>B*B V4w|)"BĦ'~T ?bjֶJnU+kO,E)=K%Xmm$YO[9&CO~=:༯bbho+TSf"Y 𵩡JN9:`d]!†WӮ.0)%"o)Xnb(cJPc`(' )SߌEtMtsyۮ7ۤq­f2G,(%ȲZEϲa;sf\=("V5Npk]'zXFG͒%tYy&R+'z+z1DA؞3K _ߗc}ڲ cx^JTMn<))]Ȯ# _چHGTqϔWM7ΰL!щ)^zeg]V:SmUKa;ZH|XGTzN俨{tF,d)REKEHA/\Z&Ij)0Q j/IC64D')kO"[q4.IOΑv?U؋]8:] ~kMx$Cl'(B^vnT=z߹!=ܢ'8 2#V.!p!( N{Eеo7FV\%!4QF|6cc ,$_PrQ*^Tg~;diX+jΦ*$DM~c'Ikf@oLA%["*yx"$Sړ)Z%܋AW]G P?qWGw:ƨH0d(!3F|;Wp6H|5EE'Ӡ$5j} v?MS d\tQ3RzXPH-Mn{%n-CfW/Ckf+1oZgVWj9[Փ8+]#-iA>ka)ݷ:9Rã%3`,W"T#Ri&Y9wS}B DFCድl(ό퀶'Wys(<9ԞMpN1_ 3yDO}؝zkw.Y)j5"}եM."g#l$w(mTJa|sKfEMKl$-ohtUh<5.gղcڅÃCsb\hҸ[:AdjhLAn$L ݍ<X`l F7QM3)4?g;}zd:?쇥3Ňyp+?R MtN̐T.(@8:BXp&5 ->^I{> a  掫({Ӗ*<@e4W2^Ai.j`#LRq?vURT#=2}]z޻}BUxIߡK*icl4c~ySY)\yƌD@TSv);_ 68ijUosF3pB\) t)hJvekdSӫq64ꁎ{I w- TE:MlmGOhwNRG/+S^Cn1Xai#{g^(2z]6D$.a;ߩcd^m'r|+t~z?/MYmo]m{>)r<E, /rv0׌DӯߓZYrM-h*rb"BXC홵 ee(Qr~pv:QfmO\o~r/mJfה Wj3G %;K~RĆYl 竫%q?ko% B1d6CFAiQb'BhW(d3IWn' zL&q~ >Vp-uF=XG~QP`kchWc~_Ґc1HҲ *_`6zj*}^4³`d|?> eƬþJA"qz2'c ,>sձS1W`SVU3j+Od.|M{3_+]ʯOez*0PڨA:J s TmԋAOȋClbOm^Wz by1F:HX6A@L|X!݄Ģ {p0AlqefC(7΃ I"Z;ah X_{-r| ( &)RGYS\V eZki#,b]4~,=xTSOolXx~JzyJ!W36GJqER15zJAG66=벯#+kƂ ţ9(H8,spSN!JL i!~}Z\ ҝ@>nk''zΨԾX]ջՎФq}43.uE,U-vKBZOi:;aţ ]bzbK-!3Ԓ\=xum^*>C 18o?,4 ʒ2m}%FH8pvh>^浛} \D b4:hҭ@x|%0 -41glrjВqEk7"M a4"!ȳ +tda€[t  [d B(^Fd5@CUyoxxyZ[;RSr$9##C\%40F`C} n}=2.D1B^xʟOb!IԂR6㋙ϟ1u2ӲFdx4B3}ݢ&,/^k$Hx9iKB[,&[/ 16F6;!(lipL=3Qo$.jQf3D-@h]ܥ9C]g0nɺNZm>m ,j ?NmmCKq46w&(}7fI. yyq^~ȹ}Nj=|SNGI.7.jfhԭya)\QxUIޠBW|p ?"ZOWqQ0ژr. / 4fDZ~=7Xpkפ\" iJf""x瞹WN񂉾z#~^UYQ٤i?fx!n) rڱFiy" P^)}]5Dl#Ef!  -:ZfcrFtͧ=٫ݫT.Mq%c̀dN bU Wv"($\͘q .Q\: <1xS^{0;ElRUzTjԾ|#|q)ytMDam!vрK7\d1q Mn"n] ɱ=yo@6:]ݪK~'0ijxJ/ ^huǨcsubOhsn~69PmD_PJԢ3"k,: " Yn' Nd!(֣z[Y-%vԹ. X[BW?ғ߈g[w܄֫#Bj<jט2[hL'CQ QM7*lmb<)OYԹj(8S+rD!b9G4zq0?֩*OZ+%L;lwAt xVMx߸4dq±?lzӫ _oulKV(7ƱTv5@ 8Vn&F߭A?y#G4ǔS;lI9gJ^:+32jP O{9Vk|PbUB+[i*3,JK2]woFOc pm`id Ņ{>|ߥx=j鹘ٕudk%h蔋Y n36ʐ_φbbScZVU,8ѯN mEA~. `_43LF!fdGܛQ(!dvߋ/FJ[e /-v<\V}|w5~RLP Dn+)+& IMutlO;}|T<|\ҧEEdnS <66< #&12ѥ=?n9ܲQjNmS6l'!r&hcĢRﲩZ ,R/\0^7չ  n:sMͿx ))$ كᔽ>6Ŕɘ"o9EYAsTVC𖱶SMMؗ6|P=3nT~,_O`TƵys95BFkvACkJ|xdqK b B#Z襌2i"yCޓǏjÂҶ BJ鹒m[,սMQ\#-v bd`5VB(D`1ihfVf|S~]1C:v 6YlaȮFHD "ih- IoMxh 3;cZX"XMf;<={7r;+I&IRu+#&RGa ǶLbinlM$C|P#QB Yiݾg;(KVԛn4ĈyWl'}9) +r_#eYg؏#; Rnу+.Ccm]jU8[)Qd1myVu>)ǮD"י[}<s;!M2h5^ c2b!/`2|z;lcHzP'}Z# ^}jŲ #[ÑK bd7fE1a) mQۢuXyފBea$sҔi Q7M RfYSmtX*]' YM,AefcmX 8êy-B;O%'Ԯ1bD:PG?E;Ie+M* .߰~yNkB#gMPd'䊭 q~sUCfS6d^绢Bd#w멆ۊjPB˹U <]x={]Ӹx8!Y"1\4Ks-LdUzvɖB h-wv;]“tkLiɦQeh㦿u*z.`,M[B"zx翶HGOUqEl, OЏd+vH`Ejk(C/%ZVŰ &3F"ԡN`ڰI0/~TSx\$ḻQ rH;-^>P}71&\)OkvVD]7_ ɂE+A^|J5'%-xzz/E3.ʊ%̨F31\ vmΧW'QbA|5/vh{Z)$} O1&9Sa06,,,gT36(Q >^;V `HW 6Js GwIÂ){ژU W(s7}c=𞃭Q\,GwxZ+ S?8Pv]n b5j#2K|%m*h&b Tsb1yJs#u8ك!"{k (wygh\CmHJkudT"cvlM@ֈz3\+Ry'_(t;q|}@N wS96f%3pSOaAD|;tq\u-urDzpDW1R"Z~R}za5ҋ$;>`tlx6 i' EشBcmw.*B#u`ͪ⨨ˇz_Ww8m!7prw D ~}XZK) _!Ip3V甅V0&@[:;. P,3| LWV9I4p>=nqD6oyn;L|"UMn/yV8Jtn_*A?fMh/@`yq\Q+wBކn+gDp˞D֩ZŬ4VS^gd똛2 %<j4V261Cs}urjZ[ݰ@݆j]"O&x\G!eۈ~7a JI(:9ȐT $R4:AV=[xWTc=:?Vm.Zqp͡nƨ{(e6BHo_+cUƒ"v=/b:JMѼOio}nK5wBdrr1< u;xV7Q*|7:{M)rRi{ӇAax6_pKrAtK?;92/!=\>%3Xfu伟sz3 Ԇ@&]" ̼̾6"B b|eҎ|}abQAʑΚm/kuF$Qqlz ^VB]e_ Wa㡎i0w_tgG+u e(}.~T!0PMԂ.[ն[HL`M7{ߎ2iX,Zla)G_H' ;Bzհ}ȤT6ud+hu =MH S %.]xZ3|C֙,i|0=eؔcqe(p .ۭO|.cQH˕n!L* #W,M@` 7xE4}G;+!O+ *Ȗ9J4| YZ