perl-Data-Dump-1.23-lp152.3.2 >  A ]/=„IX!|8o, aćH⅖Be(Iֲ|ՕX9/QOxqd@wšDJ4?7S8WT_qOR~._H;:n_XD,se.\ܛ~ˆ_?Xޞo&<^A12%?A Ose4TaCQUz$ʗ#ADٍPVoۙ$s'RsiRYA8ˑ ` ݪA% DPiⴜ\f<_@0j م $]_Cτ>p>"h?"Xd  C D H T X k t       ,   F   `       $ e  G(d8l 9 :\ F G HT I XY\ ] ^bc 6d e f l u v w!x x! y!z!"" ""TCperl-Data-Dump1.23lp152.3.2Pretty printing of data structuresThis module provide a few functions that traverse their argument and produces a string as its result. The string contains Perl code that, when 'eval'ed, produces a deep copy of the original arguments. The main feature of the module is that it strives to produce output that is easy to read. Example: @a = (1, [2, 3], {4 => 5}); dump(@a); Produces: "(1, [2, 3], { 4 => 5 })" If you dump just a little data, it is output on a single line. If you dump data that is more complex or there is a lot of it, line breaks are automatically added to keep it easy to read. The following functions are provided (only the dd* functions are exported by default): * dump( ... ) * pp( ... ) Returns a string containing a Perl expression. If you pass this string to Perl's built-in eval() function it should return a copy of the arguments you passed to dump(). If you call the function with multiple arguments then the output will be wrapped in parenthesis "( ..., ... )". If you call the function with a single argument the output will not have the wrapping. If you call the function with a single scalar (non-reference) argument it will just return the scalar quoted if needed, but never break it into multiple lines. If you pass multiple arguments or references to arrays of hashes then the return value might contain line breaks to format it for easier reading. The returned string will never be "\n" terminated, even if contains multiple lines. This allows code like this to place the semicolon in the expected place: print '$obj = ', dump($obj), ";\n"; If dump() is called in void context, then the dump is printed on STDERR and then "\n" terminated. You might find this useful for quick debug printouts, but the dd*() functions might be better alternatives for this. There is no difference between dump() and pp(), except that dump() shares its name with a not-so-useful perl builtin. Because of this some might want to avoid using that name. * quote( $string ) Returns a quoted version of the provided string. It differs from 'dump($string)' in that it will quote even numbers and not try to come up with clever expressions that might shorten the output. If a non-scalar argument is provided then it's just stringified instead of traversed. * dd( ... ) * ddx( ... ) These functions will call dump() on their argument and print the result to STDOUT (actually, it's the currently selected output handle, but STDOUT is the default for that). The difference between them is only that ddx() will prefix the lines it prints with "# " and mark the first line with the file and line number where it was called. This is meant to be useful for debug printouts of state within programs. * dumpf( ..., \&filter ) Short hand for calling the dump_filtered() function of the Data::Dump::Filtered manpage. This works like dump(), but the last argument should be a filter callback function. As objects are visited the filter callback is invoked and it can modify how the objects are dumped.]tcloud103openSUSE Leap 15.2openSUSEArtistic-1.0 or GPL-1.0+https://bugs.opensuse.orgDevelopment/Libraries/Perlhttp://search.cpan.org/dist/Data-Dump/linuxnoarchG&&O  AA$$$$AA큤$$$]q]qUw4QQQX]q]tUw4QgQ]q]q]qe8f610b04c17ee4de6852623c2d9969e83a3f61895035d178c6a16c5ad953e95312bd79d137a045747030d093f57bbfe3aaf8c6a975d9ef982578569e422ba356705a8eaa7b8988be3f5451028702776b9c2d038377061c3d7ddce03833330148fff0efc791332a1e975133f7ef7bccd809dcaed15f5dd5762550e1c32ea1878b49480c8360c72d79f28b8eae317c7ee085133b276bd8450967abb41b4e63c7631d1b6482bcc3db87a38ad02065554f9d3bc13321d4ef8e96042464045e2abcf41aa88c360616ab46f5604389c1fc53d6b3122d3d3b975b0c3223b8644b999f3da2b1482416b60968153dfa3fa7ee503e3d2a138135556bf3dad09970431528db8b024b6309fb583241d23b855287392d44fc4d5521e30f9f39d2b2229d49169rootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootperl-Data-Dump-1.23-lp152.3.2.src.rpmperl(Data::Dump)perl(Data::Dump::FilterContext)perl(Data::Dump::Filtered)perl(Data::Dump::Trace)perl(Data::Dump::Trace::Call)perl(Data::Dump::Trace::Wrapper)perl-Data-Dump    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.1U}lQOWMNMoL@K-D@CbB:coolo@suse.comcoolo@suse.comandrea.turrini@gmail.comcoolo@suse.compascal.bleser@opensuse.orgcoolo@novell.comchris@computersalat.dejfunk@funktronics.cajfunk@funktronics.cajfunk@funktronics.ca- updated to 1.23 see /usr/share/doc/packages/perl-Data-Dump/Changes 2015-06-09 Gisle Aas Release 1.23 Avoid "Negative repeat count does nothing"-warnings from perl-5.22 Typo fixes by David Steinbrunner- updated to 1.22 Deal with class names containing '=' [RT#72415] Filters now get access to $ctx->expr; the textual expression denoting the current object.- fixed typos in perl-Data-Dump.spec description- update to 1.21 Make dump($1) work when $1 was integer [RT#63883] Dump floats without quoting Add depth() method to FilterContext Make dump($1) work [RT#63883] Limit our temp listen socket to localhost [RT#63534]- update to 1.19 - changes from 1.18: * don't downgrade is_utf8-strings with MIME::Base64 [RT#60103] * deal with the perl-5.13 (?^:...) regex construct [RT#61552] - changes from 1.17: * fix dump of "1\n" (the newline was lost) [RT#56595] * start using the range operator to shorten list dumps; for instance dump(1,2,3,4,5) now returns '(1 .. 5)' * CODE references now dumped as 'sub { ... }' * fix how multiline hash values are indented * make indentation configurable - changes from 1.16: * add support for filter callbacks + filters can modify how selected objects are dumped * various enhancements to how/when hash keys are quoted + don't quote keywords + don't quote words prefixed with "-" + don't quote long identifier keys + quote all hash keys if one needs quoting for better alignment * use case-insensitive sorting for hash keys- switch to perl_requires macro- update to 1.15 Fixed regexp that determines if hash keys are numeric [RT#48003] - Release 1.14 - Data::Dump::Trace enhancements: - trace() function - prototypes - Release 1.13 - Added the Data::Dump::Trace module - Release 1.12 - Documentation tweaks. - Release 1.11 - Documentation tweaks. - Release 1.10 - Add the functions quote(), dd() and ddx(). - Fix segfault when duming large repeated strings [RT#33520] - Incorporated documentation improvements from Mark Stosberg - Apply Data-Dump-1.08-ANDK-01.patch from CPAN. Might do some good on older perls I guess. - Release 1.08 - By popular demand; don't put underscore into dumped integers to group thousands. - Release 1.07 - Remove unused code. - Add some more tests. - spec mods o HEADER, TAGS, deps, macros - added perl-macros- Build under buildservice- Build for SL10- Build for SL93cloud103 1568996468 1.230.021.23-lp152.3.2DataDumpDump.pmFilterContext.pmFiltered.pmTrace.pmx86_64-linux-thread-multiperl-Data-DumpChangesREADMEData::Dump.3pm.gzData::Dump::Filtered.3pm.gzData::Dump::Trace.3pm.gz/usr/lib/perl5/vendor_perl/5.26.1//usr/lib/perl5/vendor_perl/5.26.1/Data//usr/lib/perl5/vendor_perl/5.26.1/Data/Dump//usr/share/doc/packages//usr/share/doc/packages/perl-Data-Dump//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.2/standard/76d3164ed258ccef673442fac351cb59-perl-Data-Dumpcpioxz5noarch-suse-linuxdirectoryPerl5 module source textASCII texttroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)PPPPPPN$rmxtutf-8ae088d19616672e491fa3639672ae000e9acf8b91fe7270462b8c60b741479a1? 7zXZ !t/σY] crt:bLL "o)ӜZqHmYoc:%n{EojNRl!`7"Dn .X]tuQn|B +Q*8Yj,Dch/c Gy?!P1ʢ4pZ`gFDD&+Psdux+ՈoC2Ee7eoOgT3 60nN[ZzG)$W%"lQU~p2&1:q\R/xKߗK9S2usrt8ut.|ڑt㬝{[F.f؝؉Yh4d{/y䏡.D /@W- m3oJPH T2AAb[3!'@ZFTi)ؾ lS#ce[\1 o4D4Gj~zNwלDڀy;Q6~:W]{ɪ##\YCڗcɀMBJs[{Y)曥A!3LJY*3R1RKdnj2RL7ٶ󼹵I 꼴[] eZūw<)2b |qe XU Ö 920;K?Fsxʰ<խ6B1eDGsEBvS",^eo溛)fUÍݷtmrF(O1@_MeR /\m]dMHоU|ŊOU?<=z ǾS5\,ju6{Z6+8,-^596kj1ͬ@J`kk_P+g1;5k&SePLY*I[L^s>?/ipcCcgu^g-*(4s[ $`;l>\BF_B`BbKK&͜=HPIA'TjOm[~kIQ.(k #iEeF$  Dp SAg2tZwEyj0=rH 8dz?h5MAO :e,MUWfLi? ! ,[D;&4f`,')$s,ҙ)?{h#Q߾)(x29`M,BN6򕉯KCD%QW:҇"&a>>u_PgWO)>,LTJfc,(jB'p5`,Lx;6BlLw̏DVǰ:9>Q d}tSt/:9HrNش FV$gb|슏YLCWFcXbl&k$70ˆǢ*=on hRL82Srg{4j:}F)ϸ+XDacylw~ _]~F;5:^%PM*:rn4nJ!祗"`37~>kmg ŅhS:"gSf?L4``*f @YۥEl'}; UȯOs8 &K5vu-E,VRl73u i| /6J84@|O(؍a 5湷~1 @(b9gܯ3B#GLA9` cMqK}" WchS'$i$I  eeYZYu B$eڛ ՛cZ㯣66TQ}."z?L?@6?!z4Z|H&r}'̑[(60*7K%O9f`;$Bj[5JLt;o(Ld &kg |{QrZR9ل-1~+Ih"[T!mAY|j۶_?Ƃ]W?f_&adPS޹l%ZN%Iv1~Tf9!fPژ%%5zShl\}g삀 9q.B\`#oZFA(?7dɸ3XoDA7&v*¼RqGj 3p]cx 1 8}0k cu?瓍%sW'$CDӆ "#`<#rx-Hgc}zvŹ8;Eaj_T3mWwiw{0%)ms>!Qް!Z?Y/ 7 ш4B" aRr=ʤR`ܲMکL)qҚFY/psxg{! F UOMƝFP؎pn($jt(FF쪶0q纝ri@ !Np?s6WUPYdOvnpm7މ* b:P?)_ \Q_̖q< ̛bwޫе -AQ YSrVBLz2HRm̖[HSrc YLZȮv9GGL\lP5&^\"i/2(N&“>FS^L7XV Z\SLr7K2'.AW6#{w(H'"& PGJHhxjC=̗K8)t"Reo^AF"ߚ^Mm#tL;Y3}HA)<6XRKd]?b4k7[NH̜,ڶsbmiri&,`̂t$#I\ ĶA+EKz|HD W$JG_tߑq0vq5$F3pf߳ sP7se S6NőXoM[^:.ٹlUT"gISz*1 $  z%ȌFzu r,`D'g|`>=ĄV[ZژE`Bt>يYե3hCh#?}7Dk"СdF5چ{:TH^ْd+{sBXxal_HC'6C7-D/H`\Ox p"E rwo,y79%zYV̻a|Mtq[ X'@85T#M{@JD"Zθ䯍}֕K M*8 .݉8DI ){S0Z-.R&Mw^IpH<[v eLw:8 ,ސ<#?>dj12Qߣj~4t]v-A&Cua2vZ[u|Nz\6XEu5φZGRq:r)UjOIeQ#G`Hbw_ ] pE?öxǸ:_e8$d~f\Х(t$лV]\:^%ۃWa4 <40oqG2l MZC)?Uͅ]$u+O̹)8yRf2[%[3X~{e駻_d4Tn f̵AU.x&68 {iv3C\EhxSu:7ˬI'1pK :BCa00X^jpZRzѺVDƣPtP،C[>|Q$,e- g uzdonDԸUo-ՅɔGE @gVƝN~5;t WuID}+JFD EF %6.QRTO`g_l<<-nnL)Mȣ%~%mB1To+'-zatnh-5'MeƸd+(_Uqn%"9.Uո +b#jjl3Ȫ؃rVNpUop6 \G׶? H͋-z1L=_`cRy3z3!W.)RaxI#W.0Ȟrp A]ZE@GZ'elo.c+ڞPfU&yza;rNv+C ܷ P>@&C|kRA*\$+HoXUy~$6D\ݢVxz__ 5v_P}c#cԫ1?`f3WB׽SngX%W#~~W(2<$i#]"|]dOAn=r5y qAu[1"GdʙSV>I_x5+&l <9: 꺰E?&w(&eƓH6A83$Vt5K_C0 *c^(.;ؿ֯PU{0/ެ `ПuWa_Plrt$i4|Wm>/^h˼sDiKo4j&3?N*ܜz+589AJŘu^e9.gpo;^'i~v;h3+ MQ8ߟqP%?4)krHOCLl/=eґ/ϼjŕջ!n0OmX \cKff\wW^ 9P+mvؘ`}꧆,\tS:tkɬfM4CD%_8>TWg},:<}Nko3sr:%4:,jql+03r\SydܮyBNȩ҇5|1H X]R~줢j*Ę՘GE3xeoTԍhmxqY}&<֯k+{hC,g^43IdzT"Ot!m_<1\0!,Եq؈m0:|M( s1WA &Z~MD/cs>vh$\Rs8@ ,FiԤtIkOz^ 亠FoNLEiLY>`JJh#{a6O> =P-MbS ,8-8EGrg%X>t8P #AҮQ&1wn@P\@}qw ՜ knYyFt절b&}<7$ P$ xW ur1Ų.'l֜ JexPl:j~ٹt8ѓ;vu.ϓ9l`*-/BқpF89D\!צpUڧDaE q{"<طF'צJ{WͤonP!߳H윙Ak4٦OBpw_I6#sXX}'eKyW@MǮ4Q'DuYֶBR-vb"`I:>6]MN,UpKKgKJN?3a eF\FGnXg5f فg߉*^vgݔ M.cI:\'#_Cם5Uд,;LK7s:rx\ҳ6=oSDjw+ Ӕنx ,x;Ȼِ:r[I285[tז}MaG`nzzZ]ˑh+h4IJV1m Tm}Blr©Cvɢ/e.bp;y :G`eLcb /ܽ5"3S"!Рy'UL+n'Ԅ%ɉl0?KuV{"$:cV4íP ꭝʸ%LD ~mY>m@YY $bXTy Ze;&,$bŖ= @_oM?e3N 1^gc=3,s;QA δlR*u@0y8PtvdܕE._ Rcw.s:>(a#.X!,n Aӄ Fd@ءݭ߶]Z]}6@S11:HI&)^G\ ` 2J*dRXJݻMhpDThzfSVxiOcr-۰AUĤ2?cxCT\fTG .AUes 9XxݱFk`ϫ j5~gc. Ul-qѱ\a!YN Ήä.+4Ql$Ȼw蜾Ж*o'/m0^OْSGEF*{hwh}/ CDibSfƍJu9{+ӿ&־BV]٤b28@#Ly6Dj߆I/?Y)f7Cm:/|¥c$F Jli0ueu6M- ;(m7hy*PsH}c bCSucb`!$l~ަ3]j8 S2fOfOM]<|+Ma ń^Z9O>*h&<>& #z'C.;ھodEԘV`0@'6@\}%Cg۫ψiu9C3M RQ86{Kͤ(3E5Q '8MuA;4&+m]H`(pYۘ3'` NI[')6TE0s*!p[m!1j:` ' ;B㯎ۦm넗 `UW`KlUA .εl\cmO$4lJR.?J}wXc ]rr)8abR7nѾSx,K`uެw ]dگ 38gÂ~efDnc29ZNbܟ80G>mP/ԄYBhbF d,?3EA0U'Ke9A^^G!bjH:EIYܸ Cm4tWD~8)\3#[qx* : !H_??C wnQJ5,nV o'\jJ9}# /-Xz[EIILtΆpgwQfT%t%}q')}U<h9R+|2>^` /oB)C WmY;4+"yA׹H%zf8:'cq% nj'q K"cgQWqy+i5ϜV|5OɊ~Lna31'Q=wɫ=PP= Rg4x\h~dcxx[>oySX|钕~krAHDJQmYc̙ʌnfY}lP갋[jPC\>tzouM=M{~b2Y,[FRح_SfO y&b=8 vˮ~ mA xŎ8pxUx ]i7HնO{1ҰM50ҏTX$Jϥ3jp?V7  Dcɽb-Yޔ$xT_lդm5;IV@+kަ\nuxGA\9Nr̘0F\.Q`b0:SZdqo)Qoz8nNҦ%R +0ŁnJ>ulUi@$9,Z_B?Pektt  `_1ȆbV6OiM}^bxC]Ff)r`> b':(?șCJ각u{Ĭ7>gF{:0*oq 4//p:^?Yd-P-q.]BQT'^rVE~'ZrX9ʐ @QD!0qUv?c[o#j܍]PsMvE'9,Z3|Kvt?fҡ<fDyXM нč c:g=F#!z/=ouOv %btEVt+\ZC ~:=w9w;ߓmu?CVyjlF- .tU /ϱj{dէCp7OH8&gr,fP*fGn%jC2 _X4 iμ"^^Rg~]W3{zvt`QeCeau ({X2V 1x(8gѹ@ݪ? x{SV#O4;yakʖj|]F D_kJake)~L,`x=Cra8?ɘ\k̺x>Zt٢qlk^l : HF9*7~ HeQlO:[c(/`fi2T$:(NI>rO"KԮa~Wݟ://\?Gpfm"r`6p$% y{܏8 ׁL3ZBq0cX/eaQn:ǩхmX8O`U q|>o.ˌו=A`B:7^XWkxJԋ$$YL`Mq׭eTo9lֱ:Ђ6].yc T/4IӹρaЫy+5 `%{i5#0# kFSAF>MjK\h 䇭f$ff'_GfdKZOse~uZC-%;"m#uLT^S\'&pe[Nv~ M`}QwsN岊!QAez,AlCcoD@k,z B]'z㜬Wj _N\j銬HKBN"ɍ.:*k tCBx({5lfz$t@]I3c#?Vu+Rf/5bІƮ lrP ,e&ѹ2{dSG ;b5Dg~j*cc:zA?HTː1P$@W3Fn"cjh!՞i1x~uZoNQDH,՟&ڠ%J FSt IH4^ܯD5 itN6bVIE-+=K\$w=a6fV}*O$CB~vD2 xS,"藉WH0rۚښlyќ.*mRWQ:z ѠQA5)oxAʭxta 4&&11c39l:}kb9FpQj_V|XЦ"蹙߫IF2&?gfpyޕȍQM_|sQ}6Ho2W _$w忶}PMFDvj!/w?\zrf[p=UnUGTZ?ky.6 W -Ca#ujk|:$W%W˅UR^: U"9^ A?x%S&6C{5mͱw6jX06N%Wls^xiww1TM!bWX.'}3d{Cyh'XAQ3lUk(o$8<25Zh# !!=fJGiþ@e)UxKwVP:[`7/i gbYI7b9%*Wݓ c#i)#yK4`^z]O tiӦ uS˾6TڰLIu$:'mɁ_9IH§`T=TyTSO֯?'0F\Wt96 KVE!vRk.tIIy;ޫO¸¾ſk{'3ӁyʹZw~1YְW4!ҦJp\9`ajWϪ Fkxun;fxÞB|`H5-]P:<@]1dQ]όgF,BKW~@[R@P.Ԭ*#mZP郗|$g;*s90LRTNHlqW=PT v9Вuj B]>t[Չt3=_`9;s㜪EOsjiYR!4>K$k$^x!{]yƈve^F14?J"Wz)-(1d"Kf|=KB K5ΐ]UjhBnNeB-}<pp.Gӆ{Z׭w7Y~YwlP ig+ X tTʰQf6F z?CJj#)=rx27ؖ/OgtGl.Щ]\ Mv) Z!>MI1O3~jmθi9}Z?M!?ǢP*]X,,Xb =JKTO1J؂^wBnxg?Ji: ;W#B\[KJ6e𰰩GZ=o18N4Eٻ6NJolP.-׌9;%>삁MHi'8S}"WeXpRC|?ylc(ֶIx+xg'd_AbYb|HT[Y$Tr6[*-}RQȖ!N;N 's~zsll1n]6r:J6[_ >s ` _L_`{;7U=^ovڹ< 3NV ;?mu=F>(ƹ̡37Эn>j$f[h£._%:$A }fŝt̔vgBúlcpZ Co׉n x |vY@J %q!L$0֔6 :Ź,HWQYp;dlRW4 ~3a.q1qTpNX0ކ^CW~=.WQ$n_?ԌY͔R7o13W45t_Z@Q/QS cIĜWbB*\ &,PֱQSrP1/1^G\YN6NĒșnMdeʙ4K8bƚe0*=3L^`*6u=%2qVZUS"nS`/jBQ#,`&nP&(/rGNNzQP;~aIc٭0n8W9#MQ 7yn],쑺)k7-n!FF㭫%_iEhb)F{c 02>pq4X]48x6tuXY;ғR DJ7bF[EMK3Cn7uKPdTm'gFCѕdKܶRQ]MG-M&G@o+iy,KP((i3_@3Qw4SL%rAFdb ]ΟH.R#BA3C7 jToM NDJUQT+4!$# jx*B/6 d)ȣ!#<l*{$* n|MIr=v"A#2~F]h"Wk]s :sv:J[-Wp3@)QTe90mUQ&mqŔ-ƔA,Z$zt05.crGB@ñ̷DAED ga'v JgV#O巈b#aFF93GCo kTpԔifQ-=])"X6!ɒ*FlH_TK s2im](K3 n"Hk,5ض˥-Ę@yѽE{Zufs9,Kgf`/M'Ct== :SŧEW(K&ePR-`ML.ChG._YaeXmvi*<S=Z/чzdi͊5tBq)וG&%(t˞/6| =m~Ɓ˴rQh2,|nw7fڳ_\tx ږS^>I|*v\my)?2l OiFoxs{ K(ɛDZqi,NG*޵p[8x38 T߰6=DƬ+ngz˫:%Iy̧sO:+*R*_k u(&8+J 'QX$ !BQwz.IB1Юmԏ;nkZϪ`ɄlArm"s(j&` }h+Qk]NnOtOG>tR;)Vt lYbqQj>RXͳ .IJ49ʙn@3ݫ`t݄ WM5g {-u!š6_* "@Эn!E 17dn=&3~:@‡Fw%HK'K 8=LT@z=%2L6jE$6PhS`p>]\X, KDOf&^ ~c$lb$2#9p1:,=߀nmrwo] 3u~T/0(ZN0 s`B~;=oG̹*OZ Jh򋹇TP"B8dßi_nECWSٛXa0LV}ߔ27VӌYO>DF5:IH V"q|7y u+T & '[bN+?¯yP֔-KBN@rR*\@9l|'СMt7Zu]sS9߁7,71~τ)?dj䣲Ƅ U(v$pO:>}qCD V>ƿDB❠V-d%:%B03 Q{Yq♮SNծ H5vqR+Czf\܈ d(0 3ߴ טSgA|R H7}1ꭴQw['aT"Bݟ^ZSH Ae%qjrP8-7v^(z>*aUH4j)(}~bvzV54dHs#ׅ?qkVq3:ߜX^~$,S%c1IiOwҝq#\#rJp٨Jb}S2(5SHKB"//i|>zTH_*QHQ'+=@ϴEmQK 'btslsswP- oM+ y-(^5JlZFC$2"cbaͷ͆~E~vKOѤ[(󹪺o婝_h?nyԪw}vBG#C>Z˥g`_';ÍM%7z}(YhKĕRuF&IUvj^RM/{]IbGvVnhZة:ZD-^|.1RZKfsųUP62Џp0c@tDeDu񒍇G< Ζ\=2hdL/6e:)t+>ٗ"yF Z~gYFQW.sI ʌldÖ%yUisOT*G;E%1ճ8 YZ