perl-Data-Dump-1.23-1.24 >  A [Rp9|}9?¹XhCa}xF&4ԄMp{#iqM\Y9ɍP)oTW+.ΘT-YqJ,t3F{uiU1UU8̶YsHMb }_[P[#Ker~zw8 @X |!v.H}S| arh) 68:)>IQc!e8:ij56Z>MIcPv°ͤy_bG(GN63f4f3f8eec1c918886076bb3fd03ee457d447ad0ce310b8afd9d33ba6e51104f85314fdf2a1031966abd9d3208cea8296b5f063L[Rp9|W@5nZOMkf"07ubL[D学rB!]+Ɔw=a Fte>:60U2yx> ׊3A)y䍸I% )@1`ճ,׆^<SB`{Xg&=lhI ̧J= p7hzdh0*yW69x,[JLtέo?Az9Mvva 9yBkz(rt40G λτ>p>"d?"Td  > @ D L P i         <   V   p       4 u   S(p8x 9 :h FG, H` I XY\ ] ^bc :d e f l u v w!t x! y!z!""""PCperl-Data-Dump1.231.24Pretty 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.[Rsheep18SUSE Linux Enterprise 15SUSE LLC Artistic-1.0 or GPL-1.0+https://www.suse.com/Development/Libraries/Perlhttp://search.cpan.org/dist/Data-Dump/linuxnoarchG&&O  AA$$$$AA큤$$$[R[RUw4QQQX[R[RUw4QgQ[R[R[Re8f610b04c17ee4de6852623c2d9969e83a3f61895035d178c6a16c5ad953e95312bd79d137a045747030d093f57bbfe3aaf8c6a975d9ef982578569e422ba356705a8eaa7b8988be3f5451028702776b9c2d038377061c3d7ddce03833330148fff0efc791332a1e975133f7ef7bccd809dcaed15f5dd5762550e1c32ea1878b49480c8360c72d79f28b8eae317c7ee085133b276bd8450967abb41b4e63c7631d1b6482bcc3db87a38ad02065554f9d3bc13321d4ef8e96042464045e2abcf41aa88c360616ab46f5604389c1fc53d6b3122d3d3b975b0c3223b8644b999f3da2b1482416b60968153dfa3fa7ee503e3d2a138135556bf3dad09970431528db8b024b6309fb583241d23b855287392d44fc4d5521e30f9f39d2b2229d49169rootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootperl-Data-Dump-1.23-1.24.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 SL93sheep18 1527272141 1.230.021.23-1.24DataDumpDump.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.suse.de/SUSE:SLE-15:GA/standard/5ac633f41598815f68d68f333020d93f-perl-Data-Dumpcpioxz5noarch-suse-linuxdirectoryPerl5 module source textASCII texttroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)PPPPPPޡmTOZ\:AAutf-8bf22c763ed0f4f3a89c39ac582583acf96459cbba1b7579acebeec200a8b723d? 7zXZ !t/σY] crt:bLL $կ1 H\'L͎u!c&$)GK0O/#&̲+H`IIJ;VN)5֔I! n;v8pNn*QrQ5M'r:@~` pR1m["qԉw&(fv65~z;7A(ȠF^KLX:܎a{έqIMZ冾X̀ -[Ԯ @sxeFq7M|[kdXR [1eFpj7iÖ ܚK 1|u[ ԭى;df_%+4\ Zw(Pm .a&=Mlq;P=t /=ٙfR!W8%Ў@u G߯gqٻ+sja䳔q/l 6D)/F~%{KC=Gyrev3^RoJ؛yC]-5iu71nAQ "8nPVQB;kf)ӡхmēZ|l>KV_3M ,Vڤo c(7Gzػ[?1qAòw[I3p[ۃ? oՊ5K!?x"rO=Nrym" g'ޔ`$L^Pf5YMF5<0h*S.ªlܝ9PsÓ[.JBZ:[FR+d1H+ Xv_K2X:z<=;SE=j7jH؃uH(meګE} 0 P$?L_=tSק;lL2~uÎAv8'A儥3\MŌSS%&B:[g^3c26 %5{L:KW`hVC\>}ECbb;L;!}e X t%ѱ;N ]Ly:VNRaPC~@;cp!nI xL3)ZƊ:9CwO۩,ozC&L#b~7H5DCCՅ-6+?x$ԓUS+Iu [9VF5DewMb ONrɋ%]3`U|YvH'nаTF4-3t2I4F0fM0E]yJɓ*lkvʶ}%=NT!e(Ȇs#8caq4hVmk}&1eS1PԕJŭY{~X: G TY$5ƌ9?M[o%Ҕ#"Mp ȅF0y0od㾩 9VR뷒`윉y-i/*M͕̊|`Q`1ZrmN tSOI+!v}"kސ?"Dґ6/Ő[gSR=7c x.Iӏ<Ƙ_nk2E?MQ@oMkQތ)%U*yW3j#1g^o.HɼN=cc&i^A67Pg4\eބh ?\l6i-? èuh eˣoWLsȁGoG,wf;಄Ҹ-"c$ _E;s͠T]42y:(-GK\*Ѯɴγx {Y%>Yflo"\q;hفuVG YVUW"tkjQ{qTbT]tuMh~-yS8% 3fO؜rzȝg܈SH0}?2.6QUZ wـG#qˊтRwj e KJc* gh9a6vqr:6 mi lRa, O2{Ԫ]EA]ワuZ8s˄Dѵ )~V#4E/9fRB%{:U!O vw^dF<&]L||.OƮ}gr pD'A_jW6zLo4Pz=:.0"8qE~9as2i̓x9)Iz7%q율m L[f `@/J=7@h6bhDLC-H$RhPrGq$?=zp{.(7nJ^2gRK.,n-mϘܕGc|e=k܏y ^Î<W&`U"d275c|?`h40W`A9.bjÂz2C&gVNhK݋GY_EGR#waH${6Mj ?^ʅީb2I!&%d gLտz֭08WRo"@ NE-IeIҌyjX-j6oąyaU.m3=焜 a3ǁ1Lѓz2󺻁kBReãql]C(2%#4v*!̎zN>Qs:\}(\RBOd"G0&$jrŕ3Ctf`:=OUXAQc̥FʁK;V!2N\P:}Z5xȁP%EȺʲ\>bψ`{[*-15P k%\lj. )$rպpJ?ԏ92: <8=!*+K9A%\܌0rѴY:K)Q AMsB_G_n9?"d'q$rbT>j*[VS jET˳ġCjD5DYtI]'A pEs?ԶI!#r"|v^%4iO_ DϼdJi ;>0?*TIf7PEJ"fJf21R)+RP R-!o[˨O8E=c9;Fv)vc=a5q>_ 1 UL>0Gji7%%uNB}Vy@{@gDZCm'ؖ@+lwfBUA;7e4 ozY˚JqS2MOPmKٮu5ʯ(ګoͫ0c_[?{E͍%baqK@VQa?QARNB$~R} b,,@yA,+Ŗ{i^*v ;ӀdW(oyƔgBnqQ6q:.֣ы\-ʤ@lLاïx'fU_0?"knO`O/ظKugtx>"[>'j#o攟$sh( 9)?<[ܒU]8n+4le`j Fst48]Zf$n1ok ~2^ya y1%׊p4`?He[q=pLXjeyi>\lU\ JX֎4D0m ~|ڻEe^H'@@ni![Ԃ}4[ӵ$B!cqԄq HR^wzLF^>@vЩy CT}N?+$inw4Am0!ꗐ2dDF Ͻ4EcHϸk)P}=`XϗMԙZ r/kp a5m % _GRYnfE2cβ[7s J&v $J:~X{&b7YyiijI/>s +%Q^|<_9:l}jBSi,Ե$YWS h̎>oPkXDUe;B++ˠIFpA 3y$2sT8(ac٘۰ ؁x29Ĉ(!.̲jK`, 8U)isû2Jkwg(YSNORe?4zX8(^ɳ`1<8qX8 n;@zDo$u%3hBY'v"R!O-_{\%r~ }VUOK~Eگu2H6B8(2)߉`@^pl$k߾;co6<$G[ aF2v B \ e4?^ 5 |w*z!X<,\ޘuŢ#*Ov& Po1},"BvtGl"Wt"MV @F )" ԤloD`CKr*dKNy cƤ,2)@B &Ÿ0XI$NUW"J®?fAhVhzN*ȷ?;'S}JNG㹜`9tRaTSz6<=(Ubp]TeLp_\,ׯH$2uy#)[5&/*>X&UQ|~ R[B2]XY+3$b bE܁hTE X1ʇr4fg rx/2q憝%p"#W! 'ȔFsIFX I0j; iNĮ:~ Tt cMr>Sp{ŽmPz.p='1Ш5p-q;Do b1% Žr UQMpu-jw^wSJG /,}[!Rk-Xeg,}ve'k=+EGsYtPf1d ՀVwnn/(BGZM)g|=:n?sVN m]}6q>,׼p O w ~Lw&Wjjtў27v3. cf~ !-'Ηib_5|#8T?e$+QمE/CD6LxV$v1  S6]>+ԫq4͆^ұZKBj]?^SNiڼj;w]mRޒ?l=BHc@\XE+s9%I|CjΠc7RRQ@p_6}J2i ˶PgC^y?Swz=HsGۡHk|Ծh*[W"Ķe 7!>1!' ha%,M. t'i7˜Eo~XQN~1&V6vŋ/N`6e(rRI8ѩLt&:5U޷)讂չ7tk9(_psD«{GA.r*'ilAܞ V/ '\HI$i}1}8;@?9NlvO|WA .Zr ~hc)vP0. d&9*,)?$a:?"yD/d "4ea C6laH{SPg.چy lUn[DHТ O2\ZmD]^ꌧNh"P+1@‘TG(\K4 `tKjQw4ƊvoS+[OPmiʝvK3.Oʌe&Hɺ v600[Skα\xBZ9*׿`i Au!V7&ZiJ1DƊM)9Z3-HNN{i1~\ UǁOVCKƧSs!7!6˼EPRQU"(:KLv0Ϫ㎜}LȫQY{HDB,aWYw P_QMAm-7N1 zr/"~FwP匉z>\3vFP_S{ZɾY K*5 針_;OM8l9%G *ƹ զ IgkDJ'!&{:M.Iv,=8tεIhVL]3 G ұu_ШDU9\,WXPZtFSŒI6B #ʨ[3,ՠvP!nF]֑^wg؞^=Jw=bpjLK/ʩ¯#ʦl<`b0;N52Eڑm HRe:~e%cfow?N/iZ7t{xZ\sS+zD~91AAMgnAv-a9<[EQ>܆~OO;Ce@us$ӕ~#v26~ 7 |OIhgH >u)Ĭ\ EOE7y:-T/1`Ya{}؅6 &V<55z&,vbUy@ؔ#E.Eŧ]ař#Q,.zx&ДD~/IFL1gG.g W_:@#Q U::Xyz瘟 G6 RW%`3U0k*ʫکlϗs4\Вn#2=}.L;&3FDJ+{b: 4c 3f&eC @6+-/ f$_7ㇿOǿt\_k'&X)ڕ|˘gLBގ15n@[P#q+u!7@4@^_ ts\Y ,1_F!R)p,Ih` a#DxniJkB RID:䮉 /sDqڹ]o 35q Ez-4u6./Y_4r}nU-ːs[㜎Zt#[4"^ƦHNkGV=6W:Nu%SPS͝~,vYMѓkk%=EƽBM"=qNte(zn(q2~ȿɟ#J%WӯRmj[ [kL|SE@X KOe&޺? jtƟȏ]~Z<ߍZ~N%_3kz xg2&q'uS]Dä I|.e0)CbӬ*:lBLV|$5Qޛb$? P#T6LId}=Zrr!z0̃vnvlP>O5kn#9WBepV{ '>dgPoAJ*j&s2Õ8}8=Lw9DfB:S\` x9ﴦk񭁰-#Mpx!)fbQUH޼lM&@w,+A%(ڀy1j*~Q TcU)5YL*(%^,3m$RjKK\Y'9 :UyT~Y.)~h@O9pW1DfD?(y:F\L{|!Of$w „n(%0C(4\ʕpUt@0=Υ@rW-qJ~qxc}05zꈇqSB ~jǓ MKۥO. ڎSV>%|`&mX?_߇!P7GVaIJfV_@7q$0Adx\л88Mg$#|8u͋HkBoPC5O@&&}qRNPRT,gac4=Fvu o I%8;_@,8'4j[)ZH ,?B-\I+Tz5}/W % y4911)E^-.+ryot*}ݿ,1.L+>W3s1/7=rZpS5_*i !nrP_" PQƪ DHvJn`՛\jhX5j~)٩ PZX=4eov;`؄~*w* E. 7SHGtCۣSݘ;2ʷPO]\1vqtGyҼ׺>Z؏vR;§bH!ay8`vKHM:[>::\ )8?;?} l2~S \ƒ5(zJHHGn(pӋ]ŏ.81n2A)y<*RHKC]t43-,A4zz,gҷP|g4nR ]wRۊ҂b?`)x?(i Э; 7NɤyװBق"|6g@ TI4f-Tm) dPfz[]׹Eu?: Ӳ$/(2}?v%5o9"O>мJ*Ӡ\2i9΃[YB_AaV;K;n n.(z Ѝwކ;YMc&5h!n VmmAkԇXX6le(5z-S"`:RWZlо\y UUUb|XKo,IĶuѝ?pץ Xa֯.v2Gb hzn %`n;$(}g2LW& I(Zާa*8(Q1Yd}`CH>%1k "8Nl9P8(V`Ucͧ ]LWI MUj^DCA٬mGlpN(DEVceW:%e5A1tngKzLbdvk#3ZhwPkDݱ%_y1TЀVӒ6U(L5' Z\ |wA w8{iwTc#KX]&$"I\<  ;,5o+jFb(̽_GAiJ0s<ٜmv~[3h'\W:4h;@En̞tuSe#HSjI:ٴsM;ˊXIXok5}rgä>@lÀEfW-,өLљ#I,L'NdvP-/{4ZUt*JT,5ᢊ: 6횓y]Wo5k͠hXa|0#YOcUD{fVG`jXW2^v#Cv` 4] tM<=D cob >d{\ QvgC6Tt1 (Bgf;\o|^fMgr>!'j4,kGdu635]4K sR67nGݼ Rrgy(5K/en^̍b$iDU!: τ hkI]xp46h~hq/ I)mB(ݽh¿SB ‹'m8 ^^~xGquytP068>V~MdzC#JYO[wEgp"8P^ #(,: RÊ?"y49ҹq')@B7m> jܱ?cJ_ޝ^aTc*J玝o`w\MF[[K*+˯P}Y>k>:>wvuU *p"+6wSj}Y!UM2TȾZd6Z%퇽02_=5U 1ӿ-9N*{ذ f]C2B=Ugjz`U85(K4RڇYX?O WȤh֘q⬱fG/K"ڊr F~m/5=U{@P$DC`1ãw/B%\ߐ z:A "w`۱ -?Js@$]{A#14ģ$i}Z..ߎ Y=GrU,%x+&,ı=}E`P/nW#@ZՇ-dܻ ) [vڧtێA*LLNI'Y[bYJj5lm*}do FyA]0`q^[aV4v{µ~O6n5&l;2gL NNL"W ׺~[my\=5 R~9'81}󚝗ܟ&:6T$7f6w #S2TKccjOޡabEܚe B@7ÊPl߈P0Ӊ#g`S͋ūPpgL\8Ǩi7by.0q9>%EHʲCoá8WAnϵܫ~ "/aDQ䌌{jݛHJzayw׽^]4ƞ _=&uzlНuLr&bi=C]كmѥ3Im.+,e׷J+)_}Ali"^UJD2o9))~}8&aQxPq QeCO)`]LJhvIOײt)Dc6'\.\l֤1exw)bn{;YS:![+윋0qPm2S.B~9)o{>naôAX̙.Hi`5r1׸WwA[AwxRChXŚAE-FiV O1{`&C#ѹCOdl?g`W=mWyn*lT!j<H/C kksO4,d s3.s3tPGtx;͸^K^ 7*ij"yo!7 J񘨺jE䲍2#tiڄ Nd!=_CeoI @uǡ8:,O9]N~p6ʊUF pfcZzvBЙ^s?vΑ./[⏔8әnLآ713ˈI5?=3ʥRj3s0eJ¦cpfSd]nOجkaC["W*o0E纣U7O;&Vgi`)'[=i+y o|0&`T  u-sgof'(os-.âo°, ~I34&O0jΛFtÁ73(2M[ %^CL^faXV&Uq9L^&yYY`H4MhvI5hzdc4u\rL!/-Tp$WՀ GcvegM{֯W\IdAII0H/v|86Jd6%ÂKz\w$g F($` PԭhiV]"Ȇ(C;OևAユQr_M>H䓵ݿokW*w90#fh6.?-|CD#Kg[SF7P:S@\POw԰CM䏔I("?'jl$_n_NYnݨ0& ߍ)ѽ|&of%pG$VFI-@>uRbV$NmeU>'Oba!9ˆ엢;;HF8 x&7%|eMVE?{=ͮ-۩.V\?79!G73~{&d/TK>lJ2Gfu0 GYE㗑r`а )p;V±ztDsϖtjI ?+fRxR=:  * >e L7SPeC"N:nl@/ .a*ϓon`Rzgm)n9Xʱl$9C矚~/FVI%!/ရd&D_&+EQ y2.+ZSe/.W\9 (s'><3hscJw!OP}s2gw5`J)HM=j*j8 %AF5kf 'z'[йV]n!ymuv89XraɩTj.9k$2nl"D3U ׋]8땲^.mՅsc(_`f,{t9PHJF{iK n剄i$,\GldKnnmqhp_m yZt#r#!|z$,'Å!x'؞f3k)s\4;TSj+<,ҜNbDK>X4%IQ4qA{޷a|wԗvA asxT!8GY9e>NU:kB7{B>y/6A1Z6x"-jd% m^~>|S {zz1!? ONFHA>CmVl̴Orj-o"&i03Eꁶ&δ`gV#kWv/#tDQr0^cMzu׸0F@Z.fG|3MڮQžǺTȦH7B'{ اyv UcYwqԝ*mmN 5@U|)<ՈY/PEEb=yE<}Nj:WZnh-ʮG6ϻNmQTLBC̏PAِyr~H'0QJ@$ ,FcWDšG冂<ꁽ[uQTؒC8F p 5F#2{hޮV&C\Uj8V Y">SA:H"  Q+ A ȠKt`6m諐s~PJh|l}YcI[bqN]֠t()47(987POMx m t/&L%&@C|*>w }Lӵy#[ M޶m=:.O~;[#NXA-`Ui=E@TܦSt>T`F?0LX9R[㤘6蛅<>^ tw8 ޺b~dhuЀ MP5ܘ*d;ʯE*pv, j;2_kMg [(pۨqlAaq *0-wsd2/픚s`-}N-Di!u1@2^TTk҉r|Nz9jbcm$/b^ʄ쿆} 0FyUā 5TmTଉBtV(57{!dGԬ FV=Xj2#(EYzhLӝЙ߇_"+_ DFZl/?ҭm0PvdG^ h8 *yxnmykTKRt/W*ǚF̚a; ms=,Z *csL ShaCaR?k<;Sf[K^ȯs1"f$;`yia@-B]\pTH6wK#?e_%z.=Dr8.b\PFZM(%F>1oգ JS.Nα7U׉ߜHJ{lhEU$9MiCfh Z:R5a^[]n.ǜՙT Rg @N"ن0]ry5=lh;>CX_v,vGZ '&(1Q_DGq^_3)' >trhI#M`*+͊Yp:+u=S.#G~o<h)J揤 p |&7E`۷o ,7s `Աzch/'Tn~ _i+;0 vNei 6_H{!3]F}1$! IW>꠶57h̖n1i,aeoV.'5<(?7sHֈV4fhS2v2Gy!19w!5$*2ձ7' /X ┋X~:fbkq`i7+ف4!Iۻz|%0Jz|WHv/<{a.ƉA?̷ غ0Sv7ӛj'Wb/sҲ-cլPXƵnBۢPa0hYѠ'w9,K#8x48cONv1/T@kN񺛵jLh4}g)*s 2\+=e;Al.IOWB0;Q&뇊)Soi PЮFjxj*'݁H F/e4LfY^%ҿl`vR1l'"+Эʭ *sk~cKeUC:'Mu%QmJ->5ܫc/wz%gosPG8ƭMuSR6ˉ 8֎9er.2EΘ'ˬP#65YNć'gO85~*SsDU4C4.Jwxq#2ʵ[(T|]F;Z||%Θ-7{Yh̐PC5!{vg#з^"ܝN5wP>`}3F}HF*KExkՊh'W:#S=Qc NtB }g$ 4s]EQ{fa2vq>9ao` ? ڈEQ2@9:_0U > ᴏTL ƞgo%X{)'%zҳk YZ