libjansson4-2.14-150000.3.5.1 >  A e9np9|kIM݂.ums2-Y3C7)tp@?d  \\`lp     $ f |, X a (8 9 :j >@FGHIXY\] ^1b=cdcehfklmuvwx y(zDTX^Clibjansson42.14150000.3.5.1C library for encoding, decoding and manipulating JSON dataJansson is a C library for encoding, decoding and manipulating JSON data. It features: * Simple and intuitive API and data model * Comprehensive documentation * No dependencies on other libraries * Full Unicode support (UTF-8) * Extensive test suitee9Vh01-ch3bٰSUSE Linux Enterprise 15SUSE LLC MIThttps://www.suse.com/Development/Libraries/C and C++http://digip.org/jansson/linuxx86_64ٰe9Qe9Q52718008397a160e273a389292d6bb59a522683b30261976a3ca23cdc301397blibjansson.so.4.14.0rootrootrootrootlibjansson-2.14-150000.3.5.1.src.rpmlibjansson.so.4()(64bit)libjansson.so.4(libjansson.so.4)(64bit)libjansson4libjansson4(x86-64)@@@@@    /sbin/ldconfig/sbin/ldconfiglibc.so.6()(64bit)libc.so.6(GLIBC_2.14)(64bit)libc.so.6(GLIBC_2.2.5)(64bit)libc.so.6(GLIBC_2.3.4)(64bit)libc.so.6(GLIBC_2.4)(64bit)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.1cXTZ@TS˯@POPO'N^Npstivanin@suse.comcoolo@suse.comefimovov@gmail.comhrvoje.senjan@gmail.comjengelh@inai.desbrabec@suse.czjengelh@inai.dejengelh@medozas.dejengelh@medozas.defcastelli@suse.com- Update to 2.14 (boo#1201817): * New Features: + Add `json_object_getn`, `json_object_setn`, `json_object_deln`, and the corresponding `nocheck` functions. + Add jansson_version_str() and jansson_version_cmp() for runtime version checking + Add json_object_update_new(), json_object_update_existing_new() and json_object_update_missing_new() functions + Add json_object_update_recursive() + Add `json_pack()` format specifiers s*, o* and O* for values that can be omitted if null (#339). + Add `json_error_code()` to retrieve numeric error codes (#365, #380, #381). + Enable thread safety for `json_dump()` on all systems. Enable thread safe `json_decref()` and `json_incref()` for modern compilers (#389). + Add `json_sprintf()` and `json_vsprintf()` (#393). * Fixes: + Handle `sprintf` corner cases. + Add infinite loop check in json_deep_copy() + Enhance JANSSON_ATTRS macro to support earlier C standard(C89) + Update version detection for sphinx-build + Fix error message in `json_pack()` for NULL object (#409). + Avoid invalid memory read in `json_pack()` (#421). + Call va_end after va_copy in `json_vsprintf()` (#427). + Improve handling of formats with '?' and '*' in `json_pack()` (#438). + Remove inappropriate `jsonp_free()` which caused segmentation fault in error handling (#444). + Fix incorrect report of success from `json_dump_file()` when an error is returned by `fclose()` (#359). + Make json_equal() const-correct (#344). + Fix incomplete stealing of references by `json_pack()` (#374) - Use GitHub as source URLs: Release hasn't been uploaded to digip.org. - Add check section.- update to new upstream release 2.9 * New features: Add json_auto_t to automatically decref a value that goes out of scope. Available only on GCC and Clang. (#301) * Small documentation fixes. - changelog from 2.8 * New features: - Always preserve insertion order of object items. json_object_iter() and friends, json_object_foreach() and json_dumps() and friends now always work in the insertion order of object items (#293). - Add json_object_foreach_safe() macro that allows json_object_del() calls during iteration (#230). - Add json_get_alloc_funcs() to allow reading the allocation functions set by json_set_alloc_funcs() (#262, #264). - Add json_pack() format specifiers s?, o? and O? for values that can be null (#261, #270). * Bug fixes: - Fix a crash when parsing inputs consisting of very deeply nested arrays or objects (#282, #284). - Never convert numbers to integers in the parser when JSON_DECODE_INT_AS_REAL is set. - Fix a use-after-free in json_pack() error handling. - Fix subnormal number parsing on mingw32. - Handle out-of-memory situations gracefully in the hashtable implementation- Update to new upstream release 2.7 * The json_pack et al functions recognize the specifiers "s%", "+%" and "+#" * Add length-aware string constructors "json_stringn()" and "json_stringn_nocheck()", length-aware string mutators "json_string_setn()" and "json_string_setn_nocheck()", and a function for getting string's length "json_string_length()" * Support ""\u0000"" escapes in the decoder. The support can be enabled by using the ""JSON_ALLOW_NUL"" decoding flag * Add "json_boolean_value()" as an alias for "json_is_true()" * Add JSON_REAL_PRECISION encoding flag/macro for controlling real number precision * Define the maximum indentation as JSON_MAX_INDENT. * Fix cases when some malformed ""\uNNNN"" escapes could crash the decoder with an assertion failure * Avoid integer overflows with very long strings in UTF-8 decoder and hashtable * Check for *NULL* key in "json_object_get()" and "json_object_del()" * "json_unpack()": Allow mixing JSON_STRICT with optional keys. * Fix int/int32 mismatch * Parse subnormal numbers correctly- Add baselibs.conf- Update to new upstream release 2.6 * Fixed CVE-2013-6401: avoid bad performance in large JSON objects * The json_pack et al functions recognize the specifiers "s#", "+" and "+#" * Add the "JSON_DECODE_INT_AS_REAL" flag * Add "json_array_foreach()" function * Add the "json_boolean()" macro that returns the JSON true or false value based on its argument * Add "json_load_callback()" that calls a callback function repeatedly to read the JSON input. * Add JSON_ESCAPE_SLASH encoding flag to escape all occurences of '/' with '\/'. - Drop defunct gpg-offline and use local source_validator instead- Verify GPG signature.- Update to new upstream release 2.3.1 * Add support for optional object keys with the "{s?o}" syntax in json_unpack and the like * Add json_object_update_existing() and json_object_update_missing() for updating only existing keys or only adding missing keys to an object. * Add json_object_foreach() for more convenient iteration over objects. * When decoding JSON, write the number of bytes that were read from input to "error.position" also on success. This is handy with JSON_DISABLE_EOF_CHECK. * Add support for decoding any JSON value, not just arrays or objects. The support is enabled with the new "JSON_DECODE_ANY" flag. * Avoid problems with object's serial number growing too big. * Remove "+" and leading zeros from exponents in the encoder. * Decoding functions now return NULL if the first argument is NULL.- Provide pkgconfig symbols- Remove redundant tags/sections (cf. specfile guidelines) - Centralize the shlib package name- Create initial package (v2.2.1)/sbin/ldconfig/sbin/ldconfigh01-ch3b 16982357342.14-150000.3.5.12.14-150000.3.5.1libjansson.so.4libjansson.so.4.14.0/usr/lib64/-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:Maintenance:30918/SUSE_SLE-15_Update/a1ced0fb55d576ce4a58a9c69fe0f3f6-libjansson.SUSE_SLE-15_Updatecpioxz5x86_64-suse-linuxELF 64-bit LSB shared object, x86-64, version 1 (SYSV), dynamically linked, BuildID[sha1]=5676b75bbce2f0e95297a7c4f461feec1d787013, strippedPPRRRRR!|ʽ%(utf-86975af819c663793c4ec12b69c9a9e38eacfccca654b7babd1dd6bdb9dde0972?7zXZ !t/[X?] cr$x#I6y ~3:І. L0``&6NP<,j^GyLac: Y.W\OF{=hO ΁B{8߾9@?qS5Ҕ@YS$L% 6ߢ뢢ʵIB{wFRnixBGLP]8И$?. V~\|3G/-`cUk kw+i۪Z-dk8ACCe:Σ))oļLlu&1/t 8|E߃Z vv$#AiXK`7緰=ɉn8,xT)_X_3[7}^M*}6|Q!+yĜ"SH_kb%ctwz&aZ𓠒uޠ:D{6n&.F?Ͽys~?^uu 8JleӏOgҋL̶e p=f_dz ![;2,{7hKkĮh=k&T5xC;U(=rdl qK 'm>!cP?ۉޡb(z$RHG/?\7 R'fвFtMM<r@x)Wbet[iYQB P5#A\), -ȕ$ *aU(Tlʱ\ٺsx\퓴σ1r?AL?& g5e %ϕ=/=lW |N 5X80[;_+ˉliO9`\٠20[?0ǵo|80RomW' c6s]+ <5oj+“ k—QUyW]$A͝:%|`?ᾷtV{nXnr /@ =!Ow7[ǫ 0[w)l*Hfʖrqyyk]|B[9r1"*GoOqGG%/EZJ1Կ ` 'Rp{EG8( 0pZ|:̖xve}UӏkIʪqH[*chdj/kĠ+v l%qY_`8C;s1A\Zw~MU'`H)x (ÿ"*m]&!Ԍ`3mU7f?>϶uGx}㗕L@4307̺Jb IFJM~ޤ~}xpf F(2 )RA\B~G,LVYbf޶ᬨ#Wo:6q(ZWV:H03`fn:%_d)ue$ ۫'{Nreʚ+i /ϛ>KfG +Tz|س/ݶܡ)ɊUbFXg=\HWa}&.f17mFRZ 4T?'$lJjDwcrr[ O S9̟Ql)$ *ţ>7E"몙::en$pԦFf/PcWN<ۻFF)/4)(E8nL! r3r2woA^Y v_Vbx&—̝XMTmܟZ%,Q ؼe?4@,֡yebYn(2љLG߀_O,r/^xl@iQ+$ra6oTh^}c m˝/lPL kCd'7_+jv3xr.ٿĈ=Ol &SSNxb8i|,ٖtp p-mؿ\/qm|H#j#-xt\minp=O#ۘEyw։Ў-;ѲgـnVNg+T/wC{ܿCEϦ@KTDË=1Rd FI92JĘ [,Ě=> \3_KMpϐ01YWOWgqJGtDhhc3?WܒeG}.H#?=4qE pW7T P]oսY-!2&}Fal4$a _IeW|3X7l舵F2`1EGWUpTHJ5fa{z\׳߮L<2sB6mϼMcc$(qQջ]8$p;)C6\ؠG޵J,xJ(U)AP(ױ_)C'oC.?5pYb>jTt:{MG6FFIFG&}q:i>RpC ,]2sAB@+7M̾ ?qfӼG#Q;;F S@69 T`/sDoƌu.1~y Xq71ե`P7zrqB*"Fd0Q5R%~"r1;Ѥ ]qR{-n#iAOLVyVcbG,4^arwkz({{m4%.mL#=Yn1蹂ֹaCv}- .A!$͵Z{iq3W}/qÁwJ~beJ>ц64B.F BM4VOń &.E)`N˨`~R].eaO/=MŞ_K-{v/B[jC_ @2ܵs`@P mj^>AQ9A|@rF'lxM9T_0q zޫݸ=?)Pf+E^S4ם&Jsc3@r{2lew1o;5jy8WH p9n-XzXn\䖦':Ƅy)"eΝ7ȵɿZ<#3Cqh_5Tح!jb{ `)R|RM#0GB໥K׈)om(VS^ zO.YXM7kO`La1l;Q$ģ˽xjCލÜcR{`M:|͍aJ~?w;v`gP$:Dp$طgGdg~N5D.i4G`3}^KKh.a W_-Xj%1eK~L$9%N)bR/&*VcICZ+sP8h3W1f>bc$m77 '99"qES`st VYZ NH+vORIhFxةZCWH$FrgE0G6dSO9f].; V6 BiLk X ر-yZj9Tᒃ{-]Ƿ(XiB13?7( \ƞ$Vʈ_ s^>^lpIOux2Y1nǨ& 3'~\h wk''Tk h"F G≥;,J9U"txF}ܳJ+dp`D; a0">⁡/|\)&s#Tg1t.)' `@(S6&L!VulģvGVB{n{8=> a t??p'nU_Jw]plsLJI=m.e?ea7IgbM֫b|pRR iŨ3om> I4>jsA0OO#$ី[`u.)N/Eݢd%Xr&. ^!Ul6IlIrZA~|B,?v2r{'tA+w2- p7|My˂Ik$kQCrOM歃֗\2WxgЄI I*%\rKFTfZԜR zɗ5V~tOG:iLUSW.$mU;8 eZ6  V!뛃xcN`rݡ (7}Hϣ &N 6a.ba5ދ .,)hLr#ۑ#:8Ü9f l jtLae#_ujO9Q2`G &S宭;b%!uj_ WJyuAy -I?Bw[DZ~SV,g,-4D&bJ9Ï]~)jC2vVA2R':°)%?i_xr@#'JG y\m xl1Ht?8#^F/b2OoĊ [vyJtAed |ڿ=ky*}K0{1LjJxpvk,Ƣmrmh@D6dD%2STFιiʰkݍjbܙ%7_'\[^jkIMي^Fw8B1Z\D5.X*BF3,EWlAF&`T췣8Aمi$ )\YÒqc!F' ĠRمVW E`ݔeڭْyzvAgc9,β6vFzS+z=xQq@$MW@E5Kur H赣0ͨF{n%+Tє&BHj0E)fq8 "ob(8Øpy;:T|#dTQP%x88<)A=0]um7OYbtBZr&Tԡk-M~"w$hp6 1EU>Cd"G6a<Jj'z֗~M=8)[d|r%m( s§-R$@c}z1HgڬtLW$lBku0g)"i>\.Q-sqDP ږrSke~T5+iBlRj~ GMߡ*-uUqr,Q_Eȗ:K<z%rI .2j.&91R}вZwۦº-F(՞+kgBf5d9sӛy'l92Wϳ4ery9_1 Ȏ@z){#n-awȘ-H`*=>oLKP^KRXL-yZK'imܝ%I^墑rX ZQ9 O*wTX#* oQqɴ!qb. # #ϹU֯VGB 2*GFp>SQ+N_0L>N"UPVE|ЬRlqMwҜULc|=&e d':3xSClUf~J#&oGE^4+{b0+T"Ir"SX>-m1@TGZM#e|ܟ2gs؏3e<T6%Ԧi2cӪac\I߬1x\rd)ܴiOD2S(0PkJ`[=ti6 e?r3uJcsؽ\яxQ7 ~ܢ?.<튨SlhIH.σ ŊQ\8z|9{푺 ^\dv)#iPn;fk>y$EMTPg  >N,7/A g>~?L֝t*$Hp"ZP3l Ӈ2(XK9NElS\ ~w[Gse!nu{xH-4/z;=+@&z\d>> |mV/H?"_Ǥ1L@h$2t N6pH!8S__ C]1yxpX/5.%!FԅS0('˜h6P.8$w@d7DQ J뻙Le(rJEPM~;Z=Z i׍":5&n)t:VBCլ4.؋RߚV{gmg߬\ʐ}]yԽJ,#Qq^^"N|hpOșھn H )( [;|ÚȷΆiR,S0 8*XmZWjv (z৖2vXfڥ* _Uh2mRSҲ7:9($׼IPq mm9G3fL^чG(V%uWK)]t.i|(9cKNGӫ AŔ*.܂o, ӸN,Q<᪄LJ MM21s+eU++nI&Q \lRD}j=hv8D 58d~DhܴvV!U5 r,=f˗"޸ s!p~VcT%aˤM+eBb8&Y.0N]=*$,O%I!ve{x躽7P8! !uuwѝ?X ֺ̦ƿ.#q 82+ /{Zn|r#Q1تS:,*+Lz.gx`Ō.$XWs| 1/RntݮBΠp[:[";M@QQ, a]]Ro ct\Y&Yt`7$qH~_deZzzz}Y܎Ym Lm 1E}M^{%m눥 ׁRe]_rŴ,Xb.ceG.eNIIxO$=^H~_Ŕ"[ѩBleV3ݿvju ޘG?D?2g' MsTqQ iM][ޤ?MRh9ikH5WO>F7WJ0}#\&17ӍFuDNclFziØc]|,SznY$Gbb8ngM"kzzVT}ٟf6lhP9pչeYKxiZ ]*)0&L<ώ=|\6 |RN&EH =L]O:X!og]f*.l2!vj+Acvc5Uw罹K(WL9K/cx&D;qJ}uP7m@0 G07McWZCKfB5fs~b悕龭 yqbZFw8; cyC[)1iAr+Z}LSŷkzq0:";QVz^']cӰyaD 6=Psdvu\9)S^xvA6+iwK ΪXmLW,Z6-mZ 2YT<uUQ4 c%ٖ|VѼ='#gI\"+[ۯjR"PeQu&7{YhiFAg ?Ne0L!:py,.{&\ #:Yj}0u;"Rxڹ#>`"iz;LdN豋؜ ߯upes~Z]`,wm{떬6ZArq# 3/ Ĉw@(_vu[MmSq4 ) NL@f5ٴQ#8qXD[ Eb| FFN7gE3v<l)ː7N2( \e8if~Ӻ~hsCX`/BLsɵv4Z:eD} 6Y#޺5` 6KbW/4:d;1roӧ !f^lk*ύN/-#Pjp92[XI܄.ٸncyZ]|+}e=V!VV1a:_! 6 7aq# <;=xbܵQ_᪱R *'mxm8!('Q Au&tyooQMz5W`^@dWZԃgMUvE[3k S^׺t&u3 ۆ(9W wF˜- ݀~dCD 㥙_4cAM6a[dz-GXczk8)>/H׆"_#lO߮- ; of!wk*џq\ Э`Th2o(u}`ЮڬZA G=smbΚ$\o$ y!OzwЭ e!Z壚BפȬg-V Vb l}7T¬)a*ռgT %"ƴ4Ǽ@\K leJ`[ҰmVqWų^^mͺYi1*}|8w Sc8O#r]{6"i 澷O^VϐaB:7%[2 AbjNk4'ܣ,VmC3),P"K;+_QUe"3t# _7Rq-Htʪ 5ef"u͝;[ O~8SXk_O 8* !c( S\xq* 4E]{vi{vD7B0xR9E{ׅ' E!6r)s4X8]G>YrV@V@tX$( ktKgPqx{cԊhe$fՌ_P|?16S"&xU?TrFH\FEXjV-TDRP/SV18+kAp@NH ͜G,yEtSݟdJG>} Jkdi5P\𦛍 Ôf$5j/l,#f\R$]ҨP[WYbhsDSv&[L4Pa۩ l{xah|CeMS3io.Jz>Z>)lA\ffqfWh7S3KF[+@WilgDR*+#fh@s;n{U5%#{ JopkWR|BvFvYطx/H2{"0J9eSg!|L f;i-AhVaO6=Oi {n0*k@X{iHo{O Z %yp&=^=,13jpK4nu"ZO60xX, ngAUA{nb XRjڇ3$7ݽanuAT9w]E-wن6BQ4~]._[q{@Vvp#RC.\.?ѼMU>UNM;d pDJ eXXLj>pK h E hݵpjJmd uB  ec=fcyvrU8yqzpPr:b9BS \0J9 XZ6]S|7Ǩ:[[5lx|I l'Y^}fN# 0fcB^|ߩ.crN>XG`D}cdрg͈7[k,ZPOoA f(F+C d^xg\w`#X$Ţwc z(?g- Jz#X1MNWIWa?t3F} ¬EX*Mk~I\B9vr=Q @9XVzjHLsbN8}m6FIZalv-?¸3b \}SeWJlOWGpXkX=fxgMm$#e?/:'=/g %TٱB:Qt1 l'GDg=S@BPf:Bd&ix+o y0G~H9@.ޒ|3́ DᜑI]߄f8>4KKj01C'j\7g}5Q>øߧ[%k_M crk4(\ ٠(_nohyV-s qmXBnDZŭVH(TLzދ/Dӭf p8[R`Ҹ{ǁᄡhC_hE컦Ph9]7B,G (DyWC7.9Ah,mÛ@ ȱ믧XkL!YX;`tńB#u9=n `+Zv/0$$4eػ:Ydr Li|DgJ.L]&eANM-"b\螱/ 64Tum`>D_>"FNv?1_?XAȄ89 U9`ԩ}2sap;{%|%Ξ'>zTQ '\ʄt\.="t&cg?rL2N.QsxH$yPEv`4p=RNcƗAd1w_$%ݖ6oG JdVy0W5O]$W+WD'; j˷gw n1HԘ`ij&!᳢=vz/ǒ ٲ|\rX'͕:ǀVunoh'a2Y0jGfeJi$:L'@Ld ;γIRxdʸe:,OKwu8]N⪣}@_v\ G}2yzY|N6M'} .FaZ3dʦ(Z.lG̮2rdN;ћ"c"bJ>.#m @l?jCToaLH6beXNq4/Fu%Ӯ̎YBBC4`ۍr_Q3jM@\iSS[o$G]Wu.pBCи*~m3Ov Hy('S_sB?JAS,*Sq y;V*Wd2,[DEsԦXa !߃f|vSE ǜp.`-U"c̘(]Vi%T+\\FqӾL: |MJ7U}o {_:R&֯A~F̓AZ]ֿ5kNq>. Mn|sSŠV)BRUHTZ?ETm0gn=-7Ŀs"wޯ~q؊2WKsjֹM3)ۜ*0Ҽ(xdOAQgnM\{mVTth [*ӫI2)H!ʰ[ā~yr(DÔ-TXyYNf1S<\B+G`*26T %?z#&sgEpu؃gs}^PYoᮤ;>7)T|P ." h ttrwøZ#X/ %/7ȾQ`}jnFI5#fYLX wjs QYXإ<[ HP~Y(f[Jӝme[KR+uq`">ަlɼ*> i֡`~*qeg ni>w7ԬA BD|㩧-[ NsJ%"_ Z |{o/vf}+Q]./(oZcER'I~>?~{%˪ tGɜ(}wI8Tv4Z'(WJJ AQqCߢ{vP%xtğߥsaaiTU=>L}V 4:ȡLnOG? GtAe[梚?ҢF(X{sg Bh|~KҺ~<;R80(QK) ~`#U%sdZ]4٭ĽQΌgP?othK5fא < U80I𫹫(#2 AjqQMsdfE>Fjϕp EB<>ܘg5cT쨪cP9Z/{Hr,9PeID1dV6 f#Gblîu1$"P v5uڹhx1;j\ ffJ"-Ev+ȋ;@X)G'I(V @+H-`6<3'w!NӹH%~jWųM`3Z V>"Z(Tw :Ж8N(K!.{zBcXm6j#ȕrPr[|.D9_ZT_zuG"WĕW:ެI%a vJpI?/aC\fȶ>>vixݜe`qeݓLMÙs(%c k(愄Oo|( \߰q'"2%EYF:[Sƕ!eM$^+t8 &7(M5ɘ "uɰBbw'H'?<(lzFI5uqDPv}G+`DĒ$2Feh45LrsAS=kFz}ld3/ׁjkcWrHN/[D@"\? ǒ:r(ni/yNȱיvO!nhN5IF`Q\9Q~ Ƒov^޵4ք"T:`KV}8t=ZSBM kJa4Bu-d?-n fmrއn+A$[5 25F٪?&D&6cbn BՑ'@B6~MT#bEvflHkΪ7/lyG"Ho4.u¯0)Q Ł|Ԟ`M&z\@,G[ ݽc kL0 * ,_v=9%h2q6?_@d*ЏO¬SzzDluZJk:flC΋ T3jvzܒoE;qDzx9?M%bxמ 'C(yJseСwn/;ΐdzf蹷(xb4yඈD Q>GQI 3+xc"rEaFgue?5O#]\`D&NpDTTX4r5rPѐmBWnB̆(qW`v?ak{^Yп;lQ OX@d^βg,Ri}^8joM%\ˍjP Zb !?0FjܺgmRahZRi A_rٝwRrYd@8cf,dzUn3EnVņ8 + Q' ]"B<8&nua)Bp@}6G#5 hxHZWPҝM!>dx = q:{jNbw[&2Ya1>(EFFB#s=E'7E e6!CRYDWv’:Ykv:TIUZŘf;'̺k2f~!Kf++M4ѧ0~ 5uJ7vx ϩG )7oGIe(^8 j!us&#K}$ʲu]vE.V6DDT=NQ4IZ3އ}r37TlE9l}M  s֜8Jle,Kdbߠ`v4 Yl-~'mޒb9<۽%FìO04NsJed)C?o`T8EhT,~(׌ Fb.fD*!Ie1)C!T6YoV)~ceݷhl2ud-ȆAN(v>/¹M)_ ;<0`guPYTCAB0"qv}QAz&2d_FRܪ/7p:gwJZ=<bp@.0}j}fDCr$H4QJ<\A ^ږpv3GdZz4ѰFDҠ43@֛T|!S:$/`XʗPWeRPғj郪p#f4/.rhį@Zn_ck-Y@ENaBB› G͍`Hh;﷘z#LWѬ^g5Լ2Prx9>ז f>]jWŔFe ȘBKjMN`gȥvj=YϫbO.s4F=NF?=*ghmN^(!gs4( %: ;ǡήgl e}MH%R4 ƘD's@r>dGdؗN Kf/`LR54""֓}?8hUtoWQZ;Nl\s } ]8 5h@^TXmS=moncC5F7 ?q,2~\CA[5 s1ϣث C638{E"w5:TD¹N&d@#šXξ} VY9<b> [\lxإHA11˯.e^Z5#yÿ`X|gGK쮮/gcЂ5d“)&$uR~ DLd  IHNo_[O_>r,  A/?9,gZc>$Wbkt@YaVwU e+׮ /Û, uwMZa$ۚ[="gT4tЉ<[ 畿ۃ~Ch$]o]bܫԅ 2臛C!d݅fdzw/Zh+U\\Ϋo@{wڵՙԾ:h h,=&S/"mĹ@Ck{]-L֧;-h8O*Vps^cjhq7g(2㦍#6?5)ne^+A3ϵ?^, PG|ma=mI!Pj`CtCb5a]]A C#@Zɑ_@}8?g] ' *TS/R~u@עVLl"Ctĕ/ߔ Qf.dZcښnTj\ bU+;祆 /YA,9m|osϴ$"% qRsO7mUJ1`(ؐ:d6|KVd'cum7{͆ %@x9]'4?Yf``$%Sfupwn9dZ" P -(̶Sla)g4 ÁH:ܙ;vvnsie]_A)ju<}$YXljuAW5r*V0.w>S8بc0*S=GܶD-W YZ