libvterm0-0.3.1-bp155.1.5 >  A ddᭊI%z ,1zB.u;5 ~\۞P |w~+U`A qgֵI*oj1_O]{?rf>2i?r<{WXfC鵞Ƀ+:XWcbރ2VsXPO@4upezaI 9yh\YBZzdWQj`#]iN}tkcX 6tCI^Ҳ2o~aلcH}Qn5(\/ėe6Ug0֓Og V'->݂ `~15.TAKuSO˟d 1S1E<{WĖͣULt ETqF {眝`&UϪS,eAD*V|2g%/>ZqČ_V= e뽉j=|gKGuwҷ9‘t)U7Ή=T?}p?- :v'b YKxXtVTܯ^Tm=NrL2Q /`B$.*4"l%DAw^ŲHY`b~./(/ yF@JJ=9 _84 .w2YLh=%}u0t"PhϦvWݦĿ9Ժ}>Tas糸sl=ꌗY* #*b=g6ؙY1&MA&Bߚcnjl<>,dGlz&: ĽPLI.Cus;KB26m앂x>p@8?8d   ?HL\`}       Pp!(A8H9:>4g@4vF4G4H4I4X4Y4\4]5^56b5vc6d6e6f6l6u6v6w7tx7y7z77777Clibvterm00.3.1bp155.1.5Shared library package of libvtermAn abstract C99 library which implements a VT220 or xterm-like terminal emulator. It does not use any particular graphics toolkit or output system. Instead, it invokes callback function pointers that its embedding program should provide it to draw on its behalf.ddobs-power8-05SUSE Linux Enterprise 15 SP5openSUSEMIThttps://bugs.opensuse.orgSystem/Librarieshttps://launchpad.net/libvtermlinuxppc64le `JA큤ddddddc|bafb4dc8681bf8924c761da3c23e19fb41cc89f60f04d110b84ffd6c7608986966c627cf44f0c59daf81ba442e62e9b3d3cd1091a41e116de5ea9058a57bbba7libvterm.so.0.0.0rootrootrootrootrootrootrootrootlibvterm-0.3.1-bp155.1.5.src.rpmlibvterm.so.0()(64bit)libvterm0libvterm0(ppc-64)@@    /sbin/ldconfig/sbin/ldconfiglibc.so.6()(64bit)libc.so.6(GLIBC_2.17)(64bit)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.3cʂ@c:^@^@^]@]xY*Y)j@WWVbVbVbVbV^@Dirk Müller Matej Cepl Matej Cepl Matej Cepl Matej Cepl Martin Liška Matej Cepl ronisbr@gmail.combwiedemann@suse.comronisbr@gmail.comronisbr@gmail.comjengelh@inai.deronisbr@gmail.comronisbr@gmail.comronisbr@gmail.comronisbr@gmail.com- update to 0.3.1: * vterm-dump specifically emit NUL/CAN/SUB/DEL * Optionally emit NUL/CAN/SUB/DEL from parser than * Don't bother to emit the unrecognized sequence in DECRQSS * erase_internal should only set fg/bg color, resetting others * Added vterm_screen_set_default_colors() * Delete mk_wcswidth functions as they're unused * Also accept DECSGR sequences for superscript/subscript- Update to 0.3.0 (unfortunately, upstream doesn't provide correct changelog so this is just log of VCS): - Pass lineinfos into screen resize callback; make it responsible for reshaping them - getchar() into unsigned char in vterm-ctrl.c to avoid complaints of comparison signedness (LP1894806) - Avoid remaining VLA by bounding the combining-char search to the max supported chars per cell - Avoid putting a potentially-unbounded VLA on the stack as temporary working space for character decode, by using the tmpbuffer in on_text instead - Set a much larger default out/tmpbuffer size (4096bytes), because now a size-constrained caller could make them smaller - Permit overriding size of outbuffer / tmpbuffer as builder params - Create struct VTermBuilder and vterm_build() - VTermAllocator field can be const in struct VTerm - Store INCDIR directly in .pc file rather than indirecting it via PREFIX - Version bump to v0.2 - Selection send and recv should use independent partial-state storage - Also support sending the selection - Replace vterm_push_output_sprintf_dcs with a more generic _str version that can independently control introduction C1 vs terminating ST - Add a selection callback for query - Don't emit any mouse sequences when mouse reporting disabled - Remember to reset mouse flags as part of overall vterm_state_reset() - Add a usage comment at the top of bin/unterm.c - Capture unit test for OSC 52 - Further bugfixes for OSC 52 handling in various split-write conditions - Bugfix for cornercase where two-byte ST is split across buffer writes - Initial attack at OSC 52 = selection management, to set the clipboard - An initial attack at documenting (most of?) the sequences from xterm - Notation fixes in doc/seqs.txt - Provide state fallbacks for APC/PM/SOS - Other C0/C1 controls are permitted within SOS strings - Recognise APC, PM and SOS in the parser - Use 0x99 as a C1 test byte instead of 0x9F because the latter is APC which is a string introducer - Set _XOPEN_SOURCE 600 unconditionally in vterm-ctrl.c - Make libvterm compile on arm64 Macs (from https://github.com/neovim/libvterm/pull/6) - Ensure that resize shorter does not send the cursor to a negative row - Remove debugging print on DECRQSS - Regenerate fullwidth.inc for latest Unicode - A much more efficient find-wide-chars.pl - Accept OSC ... ST without an intermediate semicolon after the command number - Fix printf argument types (https://github.com/vim/vim/pull/5456) - Partial bugfix for uncleared area after resize (thanks Jörg Richter) - Recognise SGR 8 for conceal (thanks Jörg Richter) - Define a new dedicated 'state fallbacks' struct rather than abusing the parser callbacks one - New string-handling API that streams in possibly-multiple fragments - Remember to length-check accesses at cell->chars[] because it is not necessarily zero-terminated (LP 1846869) - fix memory leak of vt->tmpbuffer (LP 1843449) - t/run-test.pl option to abort on first fail - Accept convenience formatting in ?screen_chars assertions; makes unit tests more readable - Include test script line number in t/run-test.pl output - Add a short unit test that resize on altscreen at least doesn't crash - Only enable altscreen during unit tests that need it - Better handling of resize to try to avoid the final memmove(), and not drag scrollback in unnecessarily - Can't lazy-allocate state->lineinfos[BUFIDX_ALTSCREEN] because that allocs during byte run - Initial hack at tracking 'continuation' marks per line in lineinfo - Allow run-test.pl to cope with empty assertion results - Be sure to clear DWL/DHL status for blank lines caused by scroll - Pass 'state fields' as a struct into resize callback in case of other things it needs to edit - Remember to store a state->lineinfo array for both buffers - Do all the initialising of VTermState in vterm_state_new() - Rename realloc_buffer() to just alloc_buffer() since it doesn't need to realloc now - Rewrite of resize handling logic to hopefully cope much better with reflow- All my previous builds were just figments of my imagination, and neovim upstream claims one has to use 0.1.3 only. So, downgrading.- Update to 0.1.3+bzr767: - Remove debugging print on DECRQSS - Regenerate fullwidth.inc for latest Unicode - A much more efficient find-wide-chars.pl - Accept OSC ... ST without an intermediate semicolon after the command number - Fix printf argument types (gh#vim/vim#5456)- Update to 0.1.3+bzr762: - Merge bugfixes up to v0.1.3 - Partial bugfix for uncleared area after resize (thanks Jörg Richter) - Recognise SGR 8 for conceal (thanks Jörg Richter) - Define a new dedicated 'state fallbacks' struct rather than abusing the parser callbacks one - New string-handling API that streams in possibly-multiple fragments - Remember to length-check accesses at cell->chars[] because it is not necessarily zero-terminated (LP 1846869) - fix memory leak of vt->tmpbuffer (LP 1843449)- Make build verbose and respect $optflags.- Update to 0~bzr755: - 755 t/run-test.pl option to abort on first fail - 754 Accept convenience formatting in ?screen_chars assertions; makes unit tests more readable - 753 Include test script line number in t/run-test.pl output - 752 Add a short unit test that resize on altscreen at least doesn't crash - 751 Only enable altscreen during unit tests that need it - 750 Better handling of resize to try to avoid the final memmove(), and not drag scrollback in unnecessarily - 749 Can't lazy-allocate state->lineinfos[BUFIDX_ALTSCREEN] because that allocs during byte run - 748 Initial hack at tracking 'continuation' marks per line in lineinfo - 747 Allow run-test.pl to cope with empty assertion results - 746 Be sure to clear DWL/DHL status for blank lines caused by scroll - 745 Pass 'state fields' as a struct into resize callback in case of other things it needs to edit - 744 Remember to store a state->lineinfo array for both buffers - 743 Do all the initialising of VTermState in vterm_state_new() - 742 Rename realloc_buffer() to just alloc_buffer() since it doesn't need to realloc now - 741 Rewrite of resize handling logic to hopefully cope much better with reflow - 739 Recognise an __END__ marker in a unit test file - 738 Add a version check macro - 737 Bump version to 0.1 - 736 Recognise SGR 4:3 for curly underline - 735 Recognise subparameters in SGR 4:x to set off/single/double - 734 Define some enum{} constants for pen.underline field values - 733 Run unit tests on outfunc instead of buffering logic; truncation test is no longer valid now - 732 Optional vterm_output_set_callback() to set an output func; will eventually replace buffer logic - 731 Implement Query SGR by building a tmpbuffer then making a single vterm_push_output call - 730 More efficient one-line implementation of DCS and ST rendering parts of _output_sprintf_dcs - 729 Rewrite vterm_push_output_* functions to use a new tmpbuffer on main VT object, push all output via _output_bytes() - 728 The F1 to F4 keys should send SS3 rather than CSI when unmodified - 727 Expose cell colour index as API value (LP1805035) - 726 Document REP sequence - 725 Rename/number some more state-related tests - 724 Renumber the 4x test series up to 6x to make plenty more space for state tests - 723 Implement REP CSI (LP1805050) - 722 Add --executable/-e flag to run-test.pl (LP1805034) - 721 Ship src/*.inc files to destdir (thanks jamessan) - 720 Add unit test for fullwidth emoji char - 719 Initial attempt at better handling of double-width unicode characters - 718 Fix implementation of query on bracketed paste mode (thanks jamessan) - 717 Need to use 1U << 31 to keep C++ compilers happy (thanks jamessan) - 716 Make sure to use CSI_* macros rather than hardcoding (1<<31) in unterm.c (thanks jamessan) - 715 Add DECSM 1004 to documentation - 714 Move 'reportfocus' to keep numerical ordering in vterm-ctrl.c - 713 Merge lp:~jamessan/libvterm/focus-events - 712 Move strbuffer into the .parser sub-struct - 711 Internal rearrangement of string state handling in parser, to better fit upcoming new API - 710 Now that parser 'text' callback should always make progress, no need to use the strbuffer for it - 709 Bugfix to account for UTF-8 decoder still consuming initial bytes of a partial sequence - 708 Improved handling of ESC parsing so it doesn't use the temporary strbuffer - 707 Found another document about escape sequences - 706 An improved CSI parser that does not use the temporary strbuffer but instead works entirely incrementally - 705 Move parser-related state into its own sub-structure - 704 Fix -Wpedant warnings from t/harness.c - 703 Compile with -Wpedantic - 702 Minor other syntax pedant fixes to bin/*.c files - 701 Make all bitfields 'unsigned int' - 700 Use an ifdef instead of commented code in parser.c's debugging - 699 Ensure that all enums in header files lack a trailing comma, because some older C++ compilers won't like that - 698 Remeber to 'return 0' at the end of main() in the binaries - 697 Avoid the \e escape in string literals in bin/*.c; replace with \x1b - Removed _service file, bzr on Tumbleweed is too broken to be used automatically, rather use upstream tarballs.- Run spec-cleaner. - Fix `libvterm.changes` indentation.- Version bump to 0~bzr696. Changelog: * Add S8C1T control support to vterm-ctrl * Implement querying of cursor shape in vterm-ctrl * Remember to document ST in doc/seqs.txt * Adjust linebreaking of 'break' statements to avoid gcc warnings of misleading indentation * Implement DECRQSS on SGR when set to RGB8 palette colours * Reset the pen between independent tests of DECRQSS on SGR * Bugfix for disabling mouse mode * Ensure stdin's ICANON mode is restored even if vterm-ctrl exits on error * Initialise mouse state at VTermState creation rather than as a side-effect of DECSM 100{0,2,3} - fixes LP1640917 * Pull VTermScreenCell.attrs out to its own named type * Merge lp:~jamessan/libvterm/reproducibility (#307773, boo#1041090)- Version bump to 0~bzr684. Changelog: * Avoid "\e" because some C compilers don't like it * Don't use wchar_t in unicode.c as it might not be big enough * Remember to pass unicode codepoints in uint32_t rather than int- Version bump to 0~bzr681. Changelog: * Bugfix(?) for SunOS (thanks DominoTree - https://github.com/neovim/libvterm/pull/1/files) * (Alt-)Ctrl-Space should encode as (\e)\0- Move description from main part to shlib part, since this will be the one that always gets installed.- Remove unnecessary dependency from libvterm-tool.- Remove libtool files. - Fix groups for libvterm, libvterm0, and libvterm-tools. - Change package compression from .tar.gz to .tar.xz. - Change %{soname} to %{sover}.- Change package name to libvterm.- Initial version based on home:gmc137:neovim/libvterm. - Version bump to 0~bzr679. - Change package version scheme to match openSUSE's guidelines. - Clean spec file. - Drop obsolete patch libvterm.optflags.patch./sbin/ldconfig/sbin/ldconfigobs-power8-05 16843329540.3.1-bp155.1.50.3.1-bp155.1.5libvterm.so.0libvterm.so.0.0.0libvterm0LICENSE/usr/lib64//usr/share/licenses//usr/share/licenses/libvterm0/-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:Backports:SLE-15-SP5/standard/23f94712727f2ca36c85d292fd395332-libvtermcpioxz5ppc64le-suse-linuxELF 64-bit LSB shared object, 64-bit PowerPC or cisco 7500, version 1 (SYSV), dynamically linked, BuildID[sha1]=d4251e40035c1ea859cd9c8d3f0904372e226a85, strippeddirectoryASCII textPRR'GeR7utf-8e4565efbce998c52368a4a5b91a9a50f1667773e2da5143053a8e1aaeebff908?7zXZ !t/w] cr$x#I*~E ad0uz.8,A2{H>J^AS(n%Wdnܣ`[d9mf={R&c&!n $$R־5Wrc "83U '>͝RrGda[Lc^կEKhky{+W Dy [\\J$!5_%o󦽣[6ӘN+W"a%PR>7f/ #q 8!'y5Y(H]wO8-z5cڑd^Kѷuz**CuG_R~4=8Oq-8<rhW^?twҁ1"&?C,h7:QA{ cDifa@P}V0 _`%L=y~hif x ,Xshv {܃GOG49氝iWٽq>ھ!2OJ= _, XF 18W:"WmӪ^~ˠ#QzJ2W܌NWJ|$x g:}ZlMjvRKcƢ s=JUMK |.BV.[{qNl3l)<]ZDQw?GKҏ4yuQ"kXf6X7*V)H4gʩEΪ<3NPF\ :o`,a{n3W DiQ((5B7٩8z-1ѴQu1.\ϗDL6@5hIGt}:__nil1.ܨe"  \g*@n(ӓ+0+{-'p_WHd3w CdC8.wPW(um_6 wslBe 56 \8j #TJ6;GgX}>@W0rpp܌Ev.^-+Zg^\L#bld-k^l{5D4. %ul_@A$nV⚰R ۈ.EZ}dXPTH&u, =%@/범ݬFw>4wÙZݙ>+'j>6{0 yc"w/,/Ilߍ8 U6^8ȴ1fns/qΏ5 VA.%^3"NOJG]4<0$#_DY#zkmHkzd r9FqZGF'+< ;>!iH\@ ,$ гtzDNvtHl:䁩t(6a|[e!B$cdwiyX钃uaIW'.r iU [(VrbBĺ"-|26ijR\pYnZ~ c2ȫ`hSWS" r]_Mf\h_qݔ5u:GN07=d#Xz ŧ"*sPDYwV~G\i?(̂m zܷh AZI^Ɖ"+- {.}1;/5:nw}APL7r7ocyxqծ0y 4(NirЛ#:cq~%T*ݙVidG'wtF>Wj6>g{Ngh=3@1neŋpKps$:nZ"xo$+{ZM&/?;l:)ixsU ^Ti,;{!14;KY^cMLl$^$B Ji.[:t_:sVf)ųvxcV۫6=qX\-R! WpճU.6G!{>\ݸkrO Jo\kj0| RhuWI8`wN1 5'-ŠXEͯvnY# ^ST5ε#NX"O  xZb}j {\~ Y|mz'Y0k-?h2 ;.G!yvEb0Ywo6jY̍6!G߽0{oȫ5-[m6̡Y!\ Q Ɓ|>^( nZc4%b^ftZU@rj, LB܂Rj, X6̀T,Ml8R.#E6a"Z{pHV!O3.<)Ch;katcŸ!-8$ſc]m߇Ga;ԍ sÈccPXE]4Q5_.7Rw3gfNC;8q8!-_})V@ێ{Q| ,Yfܗ+ymA^˦e3Jk캧ּP/Jȴ>IC_6N^ʡV&(F 8tϏȭ嵕5}O=*U  qQ5Ǻ£oIW%hrucV/@طt Yў(0'fFD+;Ƃa$/<PWS]M2oxs1Wzh:[3{[TԷR#w/p78+hCH~y&ztUKk(} Z4q)QI[Ruv#37[$4V7hA)>1k $ɹ$z3~GxTOָ21I9zR'9hBA)/9}Q)H,/|w!ˊ!3=Z'%DQVbց]@9 ARBhg3vcG⚰ηUyG wj iѳ'mtIxMUB{52<^^Op' pƊUK;2#L#@Q\ 5 cGT5Ղ* 70=0%% ~yTS?& ^^mnX<&yΆOT= vLң{H<Cx#=<Me+hm-dƯݴC"PaEzu }{dQ\~#е ,-y JJ~zj1g҃t{تp E)b0qV6w"/Wk~H_lˋԜ\I 0IoQ,=W(KMP: U.@܍&(u,:'ɒ;SSSPyz;ʌvۼY`τ: ) w[NLۖ_*Bx2s(O }"Pm_va%"6fW0 ڎQ!‘AqyF3"!ŖB.0> v;T - a>H:Ey+mtTC 4=W4fL9 Nە82ȃ)C9kbټ!)r 5: F"y0vMi7f.bVEQ443 Yta{uS2u7:JY=EYeF<Dx8𒖶 p\& ;> AyWǷF*'SRP i!4aRE:ʌ7!&9\KslP!oEVP4ƣf^]i.C RPvnT2LcJ1nGW\H2vpFD<_π;ܜ8 M,)Geo?뾮/E!M+#*mY!eI" wU] եVPMP)HgA.$ݫ;K!k -8O|n r".q*83\-I"-;X3.{h?z|SGLMv;,MRTm_Dά;pBLB6Xce3(}@\%BxqAơ#ٰa9y [̮k~U?k^\6d +/}el`3# L ,f(u6\ː:qyfV`rߪG~lFmh7ǧDkq@]Qo+]cILl W? 5]݋ಭa5,sLZDpǫ.Dgc& EK om9 C@b8"3&E%ƶ+Ybq{#OݶT'ȑy$}_&e2\>^Zc{QCjmtYb& E8`Bfi(+dBF tyD *aVgA.@HXАF 1t0x'au3Y3(iBw"a$ Đ.ɻѩA  &jȒbT+bk'Ng(%eZ٣Hds7kDdE4$R7[+{l7m+>VՍFg-lq^ ӹ^ևTJW :kf,ByU?u+Y,)wnF'"-X-:i^מBe,94s.,_^J{8Yï$;keQ㿖jU ۥiv!νLJ ʁyo{ns?<$cÐ:# l$ݽzmkd wv(,E0U =-_5lyOI4|웉t iK.Fc>ōsb۩N,$s'5 trUۇ+ =G܉Ri툷pkƠg;wc۲ F;l0vkL3xNTC'PTFʼngѐjuZ?thz~FHT5FHڹ]<%bǺhMl5X+ث)5[u]k&sMZXI\S$O\}gtBAwM\/?.;P 4ߙD?㉧%=(N3a|}\.oi-tcAł~]f#$C8Kzo0+bԼ+:s@jr91BpR_Vj`B! =IkYA2;qŊ6Mh8 BH+!5 ydc/޽K>;za=M: 5['?)̖!(}(AE?FjٱYq8a]T Zݙ7UQX"mYF:3rkgx8m0*%bp,1/x(E_׏[̜cp?=oQL[Z4iম#U:QL\F,{^0,&g.,=21*䱊dzPR(+͓v={ʳ)Vsa/{ Plٲ7ٕ`pF'9Woꐾr05c@ {)P҄}ps$ަ>#ыqxVR`NV> 0V@e=KkL$qh)1%M`)9uEl.EEXbE D3h,^)i(g N:Ki-4\'ʾ'pl FJNl_7`+=cAlO'uN1B %[ee'v9c~t˵)xZݨ4@p􃚭e`Zsl~*De`a͇կQ=ufQJw'ybhi `Q7 DF3SŤеИ `KrhPngR`@W%@G~l XU !R=wQZQyon#W~lRb-A*M¹iJP >er4YiY`dfӈT%90ۚgz\k|P˗NOEj9WxlO ť\ ;ەK>CG1XæͧH;ʆ_7KNژ7> S%l(K _651s,c,e>U964!|0wo=)c]zrʌػ?ճDH7` -K{jw1[c5Q1#)W(ZM_FU0:bkH!4d[FE@zVl@4l}\ȏDHޘjMgcD¢7 Rߘ[/3I|n|©;JrǴخ}Q3l;`"=O `9e7 k<-eB=:J}"3Y?؈3,Qչv xiUUb 8EˠNu'"P)tIh,>)cCbv}.TW51oqasDzɀW^ǓYܙ@&I1Ǣ"A2#,l5%IA>(㧲CͷQɃɷ$!RDa,cETO2:XC@t񯙿! Q_#7%S%*p$ 5uw622CKL(oZ^d[8Q{0+'zej.J?7Eh`jo+!@ʮt ( Q4ލ=+",Xy2eeYZ"VE.eߜ5~ŕߏjD[#~n)mkBqD*'X"C!>{H*oËL@(y H zGG+@X+ 0"<-*0 &$A*IQ);5nܕG-h/ɜ1".&X8ů69a#nD_(E8MV\5E7OLI!PWqVQH,{ ۚj1I LHH Z2,hpdлJ^\Az{hv b_[BFtໜppl, o^piecV@z3./:3[#MsCe$u6A K2}:]Y0ڑ]#`BH()!ԩh%蝿y8G)=2;Wc~==߁#r:lha5v&@H(I|,%YGF9D4~X;M3!ӊ@bnwo$c#Q{*q2d}lIz_]MŹqA"2(\B8;ۯؑ0+%QK|D;s=[vy/xutMWx "aѨ7h*aT25_zri>p~}Sx [jO5$%7YuHdĞ0GZ?Cdpwy+9B:L,V~yMb=Lu?$Y It0wv䤏jNO7uy6ߡ~ԛMzCDy ڿiK%®;y ˆ,Gxs3b"1䘥P0fdE|@{!AfiwL[T}53@U >U)H#8a8D7n˦Baxo$ _0aĺ1 8CCkCTDHWȲEXI _9~OGWxDZ!$ 4OwтoAɰ@MnVb<(~+GQ$ڢWpMUQ ȑ~ ;R=?O8!-ۼ] rm[*%KlZ0"+s@!}L.ݞf1{ Bdlq{yaHqCάvs!F%W |`XшM)zieq)Mc5DŶɫ&]kG3`h)Ccgax~9'9PVG~XpfY:~- FX:e% $ _ls~ s>X@}e&ډtod$(ޅI= {g{08$:C@%.he=klݻ!_ ėa{Xg Ф2W1[5Q~!>&exP šA3 YL`fG jPl{Ӥg/nC&"]lFGᝣlrtS˻''~\-)nb«S ␖uzW @D!>@[4S1f9KxuLܾ1Y6M0xwGvǼS:v2!A܆hz\T39ѻ{&Jeʫߣlcln.|]D!p4|A`*9Zpb(֌D[RӚYud!u Lx1rX״#3-N5skw&uVY|*}` kL<3fqNn5 Lh5volJ-q{NIZA97/$' QA (HOB?vn>͡HAqNhgfl&ֲ+\2Fd$*˫j7jQed;kG8]2 b!f]-1X1<1>kb,0¾|4.I£9"g29Ce/>ZfoƐCm͒8S YY*$c+cwP"w{닯 ..;q6ګ2ͩ!NHyro\ڱL_ ޺3* J79CĸJFd7u1"qC}@v2a?`)!=^k(]fsyn;+y- La/3a5H:g:Z;[Kmxl.`R M*ma7W>jI~-KXX4ұN-V"HxR΍Ea &/l;^HoU¶ͩ7>~ 亵$0 ʡVGOd:∻T,p%-)5yl7Es%j/pr$;bN rBoj|Iw k$v?/'ԈS˜`l 숎CbF㶆WC&H7ئRzݧom!gk4M_Nj ٨̻]S)| T;;[Ç0^  I=d!(ʄcDꟓ[qv\pyC4dk|/s}=wbξ/z$5xPd82%_P8PK9IKMP= g:.,7).dG0kG@z@"Dx_L/1DLO f4^fx.>@w^`$ԿMil춨l" '6A ҿM)1b%G])^OǥF|Q8JЋ*NDH#w}Uy;Jd ,o.ʊkp>ݾ:\^mq᧥y58%oJ3e$7k_Z`fA iG vߌ#&?ĀxcP/|i@Y62ahMHfx |hJxlXi}sv 5./  ҙAW=*0@.`Ȳ)ii0ͷ Ru1H/MP׶ȻCEșJ2_'绾N|TPfzzT;ĀM|EDT+~LG5S`(>DG%TM nCR[%I%_&2b`&W٧.St`m~RUƪ%$R14#]E6X0:*d&KZ/#n~Ju@A;RVА\[nJ=T`kqT*>^Soʫl\ݾK2RyO u`TJ`#]>iF d!|tpC'Ҋ;Ud'<8￐&vNeza٬X>"v[ҴdAdï]Ӕq4yP@tAy8Wi_wo}`esB(YsLQzh!#V,0&מ_>%I/ҢX?>pKNY[`岾Ed\GHqdCs )s'Fۅ1{ܠjO}fao8vDyv_p~iRWI(m|p7Fg爟q.`MR$:]h6846e`9VmͿ,Z!E+Q8IϼB,91bzoeY&)V{nʻ.E~LuǤ%"ThA?AP+ F\@V"7)blj:8w=ߜsܤlI{gr֩b;ȃQwsvy^6eHpf& Bid'T^8!Ly*핽W*\a03PKE5Pp-`#Аӆ=-Bv/κUXAxnM#OSBa[IfM;joo8vPH涨n:&CµtKaxS /5ŏd# SahQ< ?SiylSصS[;̲GlpA!*psÖȯHiu#G$l-t[$I"L|v?[ UơrPJc૔|DdaLg{h9VY{/?&Ș@=TrZں)֞xRP5Q""QNLMGSneQf'9aF#`e[+ۨ3`OXD뉸(9{۬.^2Y Bʻs&5Ĩ\D+U}p̿f/S|29f4rj~|,wv+-d.x=olu.uul#dkErpݾ*^[(V۫ok5sC@xN3'p:>461?1N߭Ʀ l$Jmh/Mw3G1r_yd/*DUҌ[Z5Z7}gmʥjcNΡ{u3n‰W6hP^Fz׶Ez;vf&DgOűh:!}V4Jc<(֒&+Zn;֘y;Q-Zڐ$!&mQ|0$xТLsӫW-DyWA;QƘm=;y[`~Nenwgq~B?L~100}L#wq{~e-|8Z?e3"o͋z"yH_S7Y}?4|z74:,bCS/k@]Mp6TufaɅ>4(aaNHKv=@GU^C}߀avaة':V>iR^biDZ t&%KFMɒwZ="d cΐ$H.sgU߆7K~[RB苙d,)`N!9r%{ݸt oPb(jr%{g詌i.GY>%A6*7qWpCQEC-վWmZ6gg-~YT̜؎&a1 I]\+#|Y.9kXh=0;c[æCJ|=ouOll`ҶsqYyjJ&QK8vra\ldC4颹u%0lLj=E-Ca)DY^|PM4zmRQRې!7SCmБ &v-MQ s7I%|k$Ϧ/j:,l([@1]͔Dc~u= eqЖg#xAу؀dL{!YO'e#ȔxEkUhҋ H|^| )Eòfr\9$eU$`i/az6PHn}~&tvWj&!F鷴k5$<ivy.0THXţllT0=>5:^/ Y4:U#]pɉ=?f^9q1x"f_2W8@`f5"+Xdt/C[}LzO8pƷL,IBK"2RmfɝQn.1W8uԲ7o*:迂"aa#f\x]dŋ|X M zKj仮u _!TL5Xz ^=J/\4Щ$ц;WC0pTp_ 4F7ݖp>3+z(zgxeTN(0i+sl g!]-™]I#kub\977RLEUa46j+gd^seATHWP9IMGb|-"֝/i w`ѻnU߇0Te3E\VJ |*>ANυ'ɒk^&YCoZfm34aR teQJًwm?{ ,)ۖgpI-s龎burH ZH3!EQ'K:o:#1B#))bx(DJ9VQP5q`: տDɢr;o4:D'p_/Lëk3Ҋ6 .ګV|VCUQ)12 þ@u,p3*!Y(>%  ] /KJ 9vd0L̪/jxƫ50ndСelBR VT|7= /V=oM.%P`Px8v${YV{v횡@v}( YyvƱT;2FD? JaI!;PMxDݍ{ /)nQAKA2[y:OxNmN_WT:Ysx^p.==@86 ,<㔳ЩxܻGb 磻zva,"$M|)"eBd>[$A bĖ?|;"TII!Ρ=gZ_J4|)64egZCJ 3NjTn3le6iЉ^B4GvYVQ4 X1gn{ͮwe@:Q}w<>ш_<A?Js|48d y\P-ik& 7U 6(59di}WMPO-- LrȊH` 8^]Fn'J:ʟoqa xKi++NZk4iT (:{hrK z"ܔoN !0{h ra^$`b?S\4ȩh^cIF2}d{L6:Z'|H)ڙD3Xn*VR{N޸ҹAFR۫ e6O~(WBEϧ%y:U@66EsU5#CC}d 6 U1JըW@e˄v[QhvKR+[v! taϨ0W0ܚm- [\e%} 8_0-y6 P:D3ٽu/"#m'ƽw],6s M83̫l~"c|vn5{*XByz]QU\f'O__B9 QqWZ|˭U)􄾍T}Q&; vR\:uuQ[X qI+fjczπ"o(M*ۆђ6+Ng;8mDPv(@<Sdp" dm=\eл+ʭU]|b!~2h-7Kb"S(ՙ hxDIx2_f6Dw.SqUv>ٯԤɵSHgY=!yLv ]eWj<$mۦwSdzL SUF"mH9٥ WƹCʋb )PX`m9v5ff=iJA`2#gL+ 8<-y:yxW`@[]JG'uQKܯ'Ә8k obkvV *bo[ܲ3q#QB"R')LL5q Iv.'ߺJVDG&'A[/#XHqk".nB6Bs_ HIb!/I] 3ycQ$Aʥ_fym])S9E;c{W8Fq4QjWYwsU> jY%X?d2{F3oOhuE %V<9u c?&eֹ&)H5接HnJ_E,\EY6=zT>C`TPlJgT9|[2V,R/ F??~C>D 㬾K]~M3B m !\CI eb.LoΖ`xpEiM "[R>EAZ P“U$yEW n?4NgqX ݶ$~|qpDC; HF&}Eq(gT٘tP(g17H21Kgw;}1:v=݊! z6Zύ%k`:ψĔ %*H&hmNo4񏻷7J ؎?[#㼨7g3}GBV]0YfyMVܰ וYiLnJ"wmjC%)f0ik, +5>cm/pGֲ-L#ZUR%UžGJQG4ƚlb>fosluuMBc0C7!MF M&/\'CSxŊ֋ _,Ae_hYצn~U}a\ULT1{>qEhkY5 IBd(&5uSInqcunYzC"ir =WG*ҁɃ+̗RkqZgV,OCfy1^]%[#v9_RR4 ]f‡uČJ ߻XnE1Ī憏h6\p;_,Onќ.M=90G}m4݆ҁ](kF1U޵ZK|pn!`f97bB $7hJZ+WKmkՀvGuTqT ]d7 gg{K%aKF/gv5LlS|V+5FYۓ"3KN9bhs$Ƙ{֮-0[9M {+1%SV59G%?#rg"4-HW9hǻƺfTFc4P+o!S5E-SD<)gAI(jψT *J9<XX6IW8dWuA>84qǽhKYEhi\φS` 3U.:YscP=%5htsߢۖQ/>ڟ*Μ _}OYPɪ-ќ9R-X83],ӌWi~UN/*'<ʥm}]ؕz RT^glQUӎ+\UI\>; W߿c2 CL6M?i/,̈́C僛|عսFC2KxjzmK!v}!z=LUj~.g@wkWMSp;l Q,ZPfCHxG~zni̓U)d7NQttzxOl"2yjjf,qжu<Bzo0$ ȳ10 TzRha6q+oysG LX x2ui֦$,QHIN wsؔ6>\UM1hC\ OZ;$sh^Y[cCgpts;l i:UOMUEu߶t0&QL AL?g  2}MoB|"`!N_|>dxPD}:.2(8^/>kI*CI*mش/;Lxm£%Cǹ45@SlDm"*`}]dg w12BD+fd:%ͤ `8  ""pȗh{\A{a;qjx;л;i<,>4S4o]J ȏv c!!a0 '!A25PߋaC;;.+v񚝜êAi2Q.kfIbTBˑ\m}{ZªX4DtYPO#<,Vtٙw&.;AHzmߪCT1Dj* 2+f{_?0omЅ*a~O2^yGŘnYEw`IҬXW(g6\1ˉ.=_ T&pr5X1E?";|q u /*\;ѬeM}hk JN&ZKfSx OE bmPI[qzU0[_rNZ7J޿P D=a=qQmE!c`d3)*!}ń(MNb8VL~FMrҼ?yFMcG]zF4m/ڭH@*P rh,m5,EQz|H k9-N-ة{@- H 8yM(qrUx=}:$B3T1V)G;^ -s%&|>BMF+G3Db UH]Fq gs9Ot|! aS ˒b_7RWCY`GqEQs5x4"shQmrE"!΍5̗@>鵡=WEV/K'jjp ;#N[lgʼ 0HfP29Aq H֏(FzxtIo@ (j1<&gh~n>)U9V rP]37÷..*d iAצ܌>\J]7(?r_~6 > 2{[6KŒrf7{Z(l8J{,#dteאSl6S܀$Z 6z/J+Ƚ"V|i[@!y'ՊqY5>[??F4xo6>P]7tȱM|f( RJDF dOWʅ)NLizZ-7G N_A?dȪq5ꂂxi*iT'n^ѯ\#Ytb6>p2=7H/ )w16Ωqn㑧fTG :EW5AWuŘKR,ZJN 53m'(~t&l3<];+ }R U#Mi Џ1 ~@cHd 襴h1K$Bea$~-㙗:?0F#ӣP.?ӓ*z2`v ~4F 3E DJFO=[jk)Hh|tfS}E%U]ȺֵӰ@R%fAY|\BЫg%71u'cV_ fE#CH:ؓ氮&+U:5j4EsC"3|u̕ͻαEZpR2XUis-a>et| B-l[^S*Q>ˑ4JEF>aq@'1%+4YP()uZBĹv`ZLR7 ߃_{;6@M%Yp@(X-MNh DOc[9'T2ZCҘFvG9ਲ|⡵5<٪"(`^G<>yf`dI H𙠕lVtD ԡcxΠ$yb6FUO`IڟY9c&#X'x +i9LYAw*2=yBM[6lB +sBʾPϼPF"?h/Oz.̈qޗ&?L.0^6׊8 {q♊zXӗG s2g 4E WtۧqT85UQ*s@es(&"1\ؕߣF;6y'&^G:)4S^RMҐ@4/1ʈ'2!5V]z=)+9N7TvJg'NJnsJfjV[EјHו;EhØ+. C14[f/<UI&;ҠJG9}?wjJx_E5Q ; ?ROF!hw6!zU&Ewc,Si ƑY0K;=R' GC OҡM=Tpkwp>t=ϰ<+;7g8q';C9c`T`eyQ$"! zfÁ@vykݚB +N<=Rw[teɁidHA|B|.ߟZHxM!9geR{3&AQW  $_=pffmlMF`W&2MZxFLz[es'SK4?E>,b9&|T\Ԧ2q1Q%ǜAX匲1&g^$ px3nChw$*@چVæVmRʼn= xZlf4p]ž$_M(ݭډ YB gHyOYy3]_1@1 kV;%Ƈ954<-K<ܷp њ;݀rB:|WyHk'#wf:l[ԩW>3wwOVƒi<3o-l>j&ɖ4?M߄6/00hሀ>;~z @@38xF@T{Bvxvtu0k$xڀw4*v(^t A7/L̍[JpO |k\#Jhh3rh P^E1maOo:n'hjC ]<F+1ZdQw&}jĜLXgCᏝ{0^zC})@I]Oԙ3oc}iPЊD]}A)=,܁i qJUba&¤)L0Ns } kkA_zw~-G.l\掻i,osc,)UpJDpÊ٧ǎdWiOLW%(cyHYݱC?Q&s2~n',s-%S"8[K eO4O=*xiO\ةMjݐnb$P3&0{d ۭ.9ktT!er~ɮAS>̹8nU#/W_2[s=`L 4@ـcIz%"w2p˙rR}9J+#bgn'eWn$(功@}Q:[ǔ@!h9`v`ߠ.OF9] [{S2-A8㗙ws1B [FhM$~0#Ҩ "3I4};: Yf`1%R܉FwNL,ePo]Eb 6~(-Uif3i7W)&,;h]D3lxQL <X2VX/"9%c28)!HΗDݰKFq9.{1wzΛLi!"3^gUl(?N0Y;  !AZ\QQnyu[\InwQKtr h%C^HJᕖ=lC Zg>Z&A"9b=[7w<Uv£ q=<¾^ g6)'`!S}PV 83v~Xm j"Q ?thI=5V\q5B-*6;Q B=|[zjdp)Gs\mړ] F~y#Zyv4/^a?kyiѷi4ҕ#3WױT10ۇli% ydi (+7>v 1". iH`{9W^Pjq<ap& CD7F!g?"|D*;G ~KE? f:E _L#XN۞a`@VuP|yI쉉oR\'Yw!{b~ݵ^khHڥ ҆;DskAJ99׻È|}N;0"sr\.H_϶ (I>Aw8..s&eR4|`d0`??Fle3N1eqs@7#q%P,3x/?&rMˈh'd5JA1(<ʌΉd!+v}m&Y (`5J8K&?"Z + ];LpNR>A:g82~Ǽjt2۳Z5Q,JVIeb=ETPRP2v~萓D=Ņ\Vz3SEVuom!P0:`e[Sqf=Xv|bP7#Cawp<#0RV[|a{2#mQxfv'KTОr :/.]kiL,aE4Lm/][%7iUi&ys ʟAG+27x숂7LSD0k ʎ8awJFvVtZ|> f2*Rh{2kC 6[\&2 auD *Nj AW}LuP@^U"MF>oC,KLz'>91iw(4䧞Ԅw!ԏa3 Kz:{nފހ3^~4(r[zV}WtpFP8=,ߥNsFݩ"yA7\Ik7ԡ wvڿcR&L Մ<ƥ. =\ &zSsmqUxŸmŞVt-GΎF|!A m wq ܜRA?#Qe3<uW K*h:VadRˀFa>EVQ4bٺڵYj~yϹ͆qoO'Z.h %j!,u#/MHh>8ܗ*$&?ve @שc`~8) 9 9So͏NWea q}G9u Ջv>H2X]we`OIyuFbBw Ll|h(~A&iV0jY~KXܞI[, MRm9:ZCO=)螒F )3aOq@ kDYxƿ@[L^hTA֎&6ĚDis>)}p4bjˤ(9LOt[*1tD.?/[_/9^&9r<&"uO YZ