|
#!/bin/sh
|
|
|
|
# Display usage
|
|
cpack_usage()
|
|
{
|
|
cat <<EOF
|
|
Usage: $0 [options]
|
|
Options: [defaults in brackets after descriptions]
|
|
--help print this message
|
|
--prefix=dir directory in which to install
|
|
--include-subdir include the laview-latex-struct_0.1.10_amd64 subdirectory
|
|
--exclude-subdir exclude the laview-latex-struct_0.1.10_amd64 subdirectory
|
|
EOF
|
|
exit 1
|
|
}
|
|
|
|
cpack_echo_exit()
|
|
{
|
|
echo $1
|
|
exit 1
|
|
}
|
|
|
|
# Display version
|
|
cpack_version()
|
|
{
|
|
echo "laview-latex-struct Installer Version: 0.1.10, Copyright (c) backbone@backbone.ws"
|
|
}
|
|
|
|
# Helper function to fix windows paths.
|
|
cpack_fix_slashes ()
|
|
{
|
|
echo "$1" | sed 's/\\/\//g'
|
|
}
|
|
|
|
interactive=TRUE
|
|
cpack_skip_license=FALSE
|
|
cpack_include_subdir=""
|
|
for a in "$@"; do
|
|
if echo $a | grep "^--prefix=" > /dev/null 2> /dev/null; then
|
|
cpack_prefix_dir=`echo $a | sed "s/^--prefix=//"`
|
|
cpack_prefix_dir=`cpack_fix_slashes "${cpack_prefix_dir}"`
|
|
fi
|
|
if echo $a | grep "^--help" > /dev/null 2> /dev/null; then
|
|
cpack_usage
|
|
fi
|
|
if echo $a | grep "^--version" > /dev/null 2> /dev/null; then
|
|
cpack_version
|
|
exit 2
|
|
fi
|
|
if echo $a | grep "^--include-subdir" > /dev/null 2> /dev/null; then
|
|
cpack_include_subdir=TRUE
|
|
fi
|
|
if echo $a | grep "^--exclude-subdir" > /dev/null 2> /dev/null; then
|
|
cpack_include_subdir=FALSE
|
|
fi
|
|
if echo $a | grep "^--skip-license" > /dev/null 2> /dev/null; then
|
|
cpack_skip_license=TRUE
|
|
fi
|
|
done
|
|
|
|
if [ "x${cpack_include_subdir}x" != "xx" -o "x${cpack_skip_license}x" = "xTRUEx" ]
|
|
then
|
|
interactive=FALSE
|
|
fi
|
|
|
|
cpack_version
|
|
echo "This is a self-extracting archive."
|
|
toplevel="`pwd`"
|
|
if [ "x${cpack_prefix_dir}x" != "xx" ]
|
|
then
|
|
toplevel="${cpack_prefix_dir}"
|
|
fi
|
|
|
|
echo "The archive will be extracted to: ${toplevel}"
|
|
|
|
if [ "x${interactive}x" = "xTRUEx" ]
|
|
then
|
|
echo ""
|
|
echo "If you want to stop extracting, please press <ctrl-C>."
|
|
|
|
if [ "x${cpack_skip_license}x" != "xTRUEx" ]
|
|
then
|
|
more << '____cpack__here_doc____'
|
|
GNU LESSER GENERAL PUBLIC LICENSE
|
|
Version 3, 29 June 2007
|
|
|
|
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
|
Everyone is permitted to copy and distribute verbatim copies
|
|
of this license document, but changing it is not allowed.
|
|
|
|
|
|
This version of the GNU Lesser General Public License incorporates
|
|
the terms and conditions of version 3 of the GNU General Public
|
|
License, supplemented by the additional permissions listed below.
|
|
|
|
0. Additional Definitions.
|
|
|
|
As used herein, "this License" refers to version 3 of the GNU Lesser
|
|
General Public License, and the "GNU GPL" refers to version 3 of the GNU
|
|
General Public License.
|
|
|
|
"The Library" refers to a covered work governed by this License,
|
|
other than an Application or a Combined Work as defined below.
|
|
|
|
An "Application" is any work that makes use of an interface provided
|
|
by the Library, but which is not otherwise based on the Library.
|
|
Defining a subclass of a class defined by the Library is deemed a mode
|
|
of using an interface provided by the Library.
|
|
|
|
A "Combined Work" is a work produced by combining or linking an
|
|
Application with the Library. The particular version of the Library
|
|
with which the Combined Work was made is also called the "Linked
|
|
Version".
|
|
|
|
The "Minimal Corresponding Source" for a Combined Work means the
|
|
Corresponding Source for the Combined Work, excluding any source code
|
|
for portions of the Combined Work that, considered in isolation, are
|
|
based on the Application, and not on the Linked Version.
|
|
|
|
The "Corresponding Application Code" for a Combined Work means the
|
|
object code and/or source code for the Application, including any data
|
|
and utility programs needed for reproducing the Combined Work from the
|
|
Application, but excluding the System Libraries of the Combined Work.
|
|
|
|
1. Exception to Section 3 of the GNU GPL.
|
|
|
|
You may convey a covered work under sections 3 and 4 of this License
|
|
without being bound by section 3 of the GNU GPL.
|
|
|
|
2. Conveying Modified Versions.
|
|
|
|
If you modify a copy of the Library, and, in your modifications, a
|
|
facility refers to a function or data to be supplied by an Application
|
|
that uses the facility (other than as an argument passed when the
|
|
facility is invoked), then you may convey a copy of the modified
|
|
version:
|
|
|
|
a) under this License, provided that you make a good faith effort to
|
|
ensure that, in the event an Application does not supply the
|
|
function or data, the facility still operates, and performs
|
|
whatever part of its purpose remains meaningful, or
|
|
|
|
b) under the GNU GPL, with none of the additional permissions of
|
|
this License applicable to that copy.
|
|
|
|
3. Object Code Incorporating Material from Library Header Files.
|
|
|
|
The object code form of an Application may incorporate material from
|
|
a header file that is part of the Library. You may convey such object
|
|
code under terms of your choice, provided that, if the incorporated
|
|
material is not limited to numerical parameters, data structure
|
|
layouts and accessors, or small macros, inline functions and templates
|
|
(ten or fewer lines in length), you do both of the following:
|
|
|
|
a) Give prominent notice with each copy of the object code that the
|
|
Library is used in it and that the Library and its use are
|
|
covered by this License.
|
|
|
|
b) Accompany the object code with a copy of the GNU GPL and this license
|
|
document.
|
|
|
|
4. Combined Works.
|
|
|
|
You may convey a Combined Work under terms of your choice that,
|
|
taken together, effectively do not restrict modification of the
|
|
portions of the Library contained in the Combined Work and reverse
|
|
engineering for debugging such modifications, if you also do each of
|
|
the following:
|
|
|
|
a) Give prominent notice with each copy of the Combined Work that
|
|
the Library is used in it and that the Library and its use are
|
|
covered by this License.
|
|
|
|
b) Accompany the Combined Work with a copy of the GNU GPL and this license
|
|
document.
|
|
|
|
c) For a Combined Work that displays copyright notices during
|
|
execution, include the copyright notice for the Library among
|
|
these notices, as well as a reference directing the user to the
|
|
copies of the GNU GPL and this license document.
|
|
|
|
d) Do one of the following:
|
|
|
|
0) Convey the Minimal Corresponding Source under the terms of this
|
|
License, and the Corresponding Application Code in a form
|
|
suitable for, and under terms that permit, the user to
|
|
recombine or relink the Application with a modified version of
|
|
the Linked Version to produce a modified Combined Work, in the
|
|
manner specified by section 6 of the GNU GPL for conveying
|
|
Corresponding Source.
|
|
|
|
1) Use a suitable shared library mechanism for linking with the
|
|
Library. A suitable mechanism is one that (a) uses at run time
|
|
a copy of the Library already present on the user's computer
|
|
system, and (b) will operate properly with a modified version
|
|
of the Library that is interface-compatible with the Linked
|
|
Version.
|
|
|
|
e) Provide Installation Information, but only if you would otherwise
|
|
be required to provide such information under section 6 of the
|
|
GNU GPL, and only to the extent that such information is
|
|
necessary to install and execute a modified version of the
|
|
Combined Work produced by recombining or relinking the
|
|
Application with a modified version of the Linked Version. (If
|
|
you use option 4d0, the Installation Information must accompany
|
|
the Minimal Corresponding Source and Corresponding Application
|
|
Code. If you use option 4d1, you must provide the Installation
|
|
Information in the manner specified by section 6 of the GNU GPL
|
|
for conveying Corresponding Source.)
|
|
|
|
5. Combined Libraries.
|
|
|
|
You may place library facilities that are a work based on the
|
|
Library side by side in a single library together with other library
|
|
facilities that are not Applications and are not covered by this
|
|
License, and convey such a combined library under terms of your
|
|
choice, if you do both of the following:
|
|
|
|
a) Accompany the combined library with a copy of the same work based
|
|
on the Library, uncombined with any other library facilities,
|
|
conveyed under the terms of this License.
|
|
|
|
b) Give prominent notice with the combined library that part of it
|
|
is a work based on the Library, and explaining where to find the
|
|
accompanying uncombined form of the same work.
|
|
|
|
6. Revised Versions of the GNU Lesser General Public License.
|
|
|
|
The Free Software Foundation may publish revised and/or new versions
|
|
of the GNU Lesser General Public License from time to time. Such new
|
|
versions will be similar in spirit to the present version, but may
|
|
differ in detail to address new problems or concerns.
|
|
|
|
Each version is given a distinguishing version number. If the
|
|
Library as you received it specifies that a certain numbered version
|
|
of the GNU Lesser General Public License "or any later version"
|
|
applies to it, you have the option of following the terms and
|
|
conditions either of that published version or of any later version
|
|
published by the Free Software Foundation. If the Library as you
|
|
received it does not specify a version number of the GNU Lesser
|
|
General Public License, you may choose any version of the GNU Lesser
|
|
General Public License ever published by the Free Software Foundation.
|
|
|
|
If the Library as you received it specifies that a proxy can decide
|
|
whether future versions of the GNU Lesser General Public License shall
|
|
apply, that proxy's public statement of acceptance of any version is
|
|
permanent authorization for you to choose that version for the
|
|
Library.
|
|
|
|
____cpack__here_doc____
|
|
echo
|
|
echo "Do you accept the license? [yN]: "
|
|
read line leftover
|
|
case ${line} in
|
|
y* | Y*)
|
|
cpack_license_accepted=TRUE;;
|
|
*)
|
|
echo "License not accepted. Exiting ..."
|
|
exit 1;;
|
|
esac
|
|
fi
|
|
|
|
if [ "x${cpack_include_subdir}x" = "xx" ]
|
|
then
|
|
echo "By default the laview-latex-struct will be installed in:"
|
|
echo " \"${toplevel}/laview-latex-struct_0.1.10_amd64\""
|
|
echo "Do you want to include the subdirectory laview-latex-struct_0.1.10_amd64?"
|
|
echo "Saying no will install in: \"${toplevel}\" [Yn]: "
|
|
read line leftover
|
|
cpack_include_subdir=TRUE
|
|
case ${line} in
|
|
n* | N*)
|
|
cpack_include_subdir=FALSE
|
|
esac
|
|
fi
|
|
fi
|
|
|
|
if [ "x${cpack_include_subdir}x" = "xTRUEx" ]
|
|
then
|
|
toplevel="${toplevel}/laview-latex-struct_0.1.10_amd64"
|
|
mkdir -p "${toplevel}"
|
|
fi
|
|
echo
|
|
echo "Using target directory: ${toplevel}"
|
|
echo "Extracting, please wait..."
|
|
echo ""
|
|
|
|
# take the archive portion of this file and pipe it to tar
|
|
# the NUMERIC parameter in this command should be one more
|
|
# than the number of lines in this header file
|
|
# there are tails which don't understand the "-n" argument, e.g. on SunOS
|
|
# OTOH there are tails which complain when not using the "-n" argument (e.g. GNU)
|
|
# so at first try to tail some file to see if tail fails if used with "-n"
|
|
# if so, don't use "-n"
|
|
use_new_tail_syntax="-n"
|
|
tail $use_new_tail_syntax +1 "$0" > /dev/null 2> /dev/null || use_new_tail_syntax=""
|
|
|
|
tail $use_new_tail_syntax +307 "$0" | gunzip | (cd "${toplevel}" && tar xf -) || cpack_echo_exit "Problem unpacking the laview-latex-struct_0.1.10_amd64"
|
|
|
|
echo "Unpacking finished successfully"
|
|
|
|
exit 0
|
|
#-----------------------------------------------------------
|
|
# Start of TAR.GZ file
|
|
#-----------------------------------------------------------;
|
|
|
|
? |??V ?}@T???????h?h??Y!)??LѡP ?H?q?F???A1?H??????z?????w?[???̔4?i?=4??Ǡf??f%?^k?s?:gΙ??^?g~????k?????9?,?/)/p,??v:?(?{<^wy?w?%????eؐ!f??8|??????????
|
|
>x?ġÆ???A??̖?=?_??kw3Sf?J?A?B]?Θ???K?ƛ
|
|
??\?(u?Y`Λk?m/??- ?- ????b??fƘ?]?ʜ%ws??\??g?
|
|
??s??????p?8
|
|
?6??:iB???I)m?Y?nHK?ɶe?ܜ?v{?I˵e?dMNͱ????1?6>5Ֆ?????'n?Ym??+X&?R??s???uE%μ???5? W?G?W}??-f??,-?(p8?Da?ˮ?5??-&z?mL??i??PԢ??9?f????NJ5??ڵ9\??"???[?0???M?q??~??<}?5-?F[??윔???d??P?@>?@>?c]?:??C??P?????i9LANZָ??4?vY?J&,?????c4?/of?"B?GCMZ?#?k+?֖=Tm?4??R??)???Ԍ??츙%v?G?^?2???HE???aT??GEv???F?
|
|
?Wmkx=????? ?R?8K g?&??` 2??٬g70:??2&#M8??? ???J6;?\O?????/a䛂?ϲٱF??͓B4?vZ7ĵY?̢?!nN"??7?&??A????F?Uo?k?Ս&?Bж?>N?H??4?oy??F??ϧ??r???ȵZP??C??p\ш??Й?@3
|
|
???QK4?0
|
|
5XXQ??A[??(?p?'???
|
|
*5-#CӚ?%%a4%Hy>?ҫ?<??,?h>?y?j8!
|
|
?j }?-?^??Y?DK Z~?b????X7??Iu??Z?::arFN:/???1????ԭ?p=b?H???????re?隿<??t???2
|
|
??y/Vt3?j ?bХ&???1y(??r&h?Y??&U?劬U/'?????Ic??-*q??Z?n^?BJ?Ƴl?u?W?j?0?̐n%?4Ty^???՞_ ?A ??6?7Y?V?Qߛ5I?3)?5??i??[V?n?????????;W?`??B?ٙ?9L?????????e?rj???lH? ?6?5#?SƎeƥ??eCu??0???O?????a?L?J????\%?2??>?΄O?r^?>Y?z"?*?DCB????F???W?&?????j?Ib?Iv-2a?????$a]
|
|
????|?-?Dʞ<Fo??S???|ڍ?CU??P?@? ???V?h-??0?i??*79??h%a?m?8?d??m ?Ls??-?\F?U8?ڒ???ז???D
|
|
??????Y???vPBnr?U???%%?d??ݡ?S2k?=?J8?dM???{M31?=,z[??K??q?w?lN?NH??_VJ?5=U?8??e????F)U3ׂ"??*Y?s~?B?사?q?x?(RU}~kE?d??fQdF(?4??j??)TBM??Y???I?%KCGE?m:?n^?CJ?c???>???fa?!?0fHi??X_3?=??5*????i?^Ҥ?,?f P??3??I??HJ\?E?.Id?3㒕?F?Ɍ?y???+? ??\?C?9??$??Z`?2?%???s?Y??&>?????s&u>???Dg楽?zIG??R??5????Э??;??ʒ??0?5'HN-?:u2?"C??-?????@??d?m.H?O&?I4?%?z9????w?Us-??i?hc?)??-?-??O2?ܓֵ ??ِ'??]?-???É{??a5?}???\?&??S?F??ݥ&l؝ E??v?a???e-?ig`D??v?u/H?VV-?sg?#ɮE??Bt8;h?p?m??R_ OI?-<O8I6??Pؐ?ɍn??}gX?wۥx P??=6??NF_Ә?n|?J/?:?Ȱq?Q?9??6?) ??q?????,?(?q??c?E??v7?Hߠҗ??Rk?;&???dJ=^{)???7??OF?x?(*9z?y?s,%L?R?;FN?1?[#I?Оa?am?}6?!Ο*??AM՜i
|
|
ak=B??Yl??M(Tz?0???Yư
|
|
T?5???<????|<і?>!???̖?????#???1???f????!???qҲ?&e??m"C??c?y??&?M?埃?Mʱ?e?-?38in??=?????ެ?ӏg???vG??=???!??Uu??66m\
|
|
+4??
|
|
????56-? '??YZX??c?d???ć?aZ?H'?m?*?Pu??sRY??l??n????rg??\?t??I?XkT?,{,H?j?d???d?Mʚ????J?U?J??ٔAAs/2???ٌ?A>?
|
|
??Ñ?v??"6:?[??Gh?l?F??ZJ?õ??2??????K?F52sYi1ܫ???*?@????<?ՆGo??r@3@sx*??/???X???ל9ܱ ?)??0AZ?|o??3"e??s????MU?c~??"?hQ???S?h?A?f??z???lj??֩?m?? ??????????<f2??c???M?ʴ?L?3K2mb?ٓnj??*E?Q????7?9??iU??w?<*?.[S??ݱ0???Z????P?Fs?mj??"h??d?"???
|
|
??n?40??3???ƥge焔?JC(#%????3?&?҄-????m⤉??9??>??I??f?ٓ?WgѸUc???l????y?m??ɩ??I?sF???M????#
|
|
a??|?[/a??@???R??? ??]?"?㸅?I5hӃ??b?gh?g??X???3S@0K??'t??f???%?`?N?j??f=~2?x?|?1d"?w?B?9l?????j????X|?EUz?-??Y3_?????JpGTS??gQ?,?"?f;4Lyi?L)??x??e??V{????vh?,?:???r^?ZuDp?7{??-i??????0?'TR?????)XBͲ$XJ? h??
|
|
l^?M?-??V??Ê?i?d???3$T?&٢4??2?????m??c?
|
|
?X??Вxo?,??&5hK?m芚??4?ǰ?ַM?Λe_??A?y6r??Bm????????Ŕ2??Lg.???z3??BY??X??]bU?H֊????d??lٷ6+??ւ?k??4??<?|??q??㕉<???a/??;S?]??z?/P???i???뗪.(/3??T?a4??,t;:ũ?N?˦??? ??`j??<???? ??*?%?M??x36??ÅV?l?Z?|B?????`? _\??????f?<??anO?ŕ?W?C?^?E??=:뗦?"?????."u??Ki???I??l???????@?N?gh+v?4?uS?
|
|
KIKZ}??????\ڙP?J6x???????as???靮?]YS?n?jNZ?p{?5Me?{?yO?????W??d?pt????V???(bn˓??t7nK랚S????左u??|9??g?T??Z?R????ٕ?o??F?????????0?}o?0F??*???b?4?UB?~i??????t?=> u?&^f??????Zh?k?*?ܰ?Q?h[tڲ??N?&??UV??M7?8??n^??<?D??Uw·!H26???]??V^?,??hI???(u??)??5?T??fK??a??Q?=?\? ƫR?@???~? ?u?[?&?q\??????Fl??J?{L???!fN?ћx#U?C'k6[?j&?J?I???`sLɐ?C????b???~?t???w?%S?W/???fP???śY?a??M?F???eۢ??f^ws3lZ!??????_Փ???˼NWi+???',?!???P??sW???T??3*o?4??PB߬ ???26p???Ɔ??>g{?d??`? #e?;9??GA?/?QXg2c???$,?;Km^L/?'C?6???lTH?+???Я???_?5Ð ?SUE?s?A???ƥ????JENO?L?=?T?B+ ???.???M?+??]?o5??Ѯ?a7F????A?C??ҹ??Xz??ctKJ???w???!???o????i$h2?4}????]??:?e?A??B?N84g??s?N?];K&??rҙ?Φ>??vN?b?l<2HK)?i???a??/?١?n? o}?px6I?-2é?Q?'?=]eͰ?0?~Wt?kT?.??5?95$??y?'ㆁ??p?6+҂?U~?3?i?J?Rz????Y???o??G?<??p,q??K??3RmҲ?SƧe?&?,WS???ϖ!Ç
|
|
%??<?l4h??A???????.????Ջ??b??????n?0?????{"{??ޓ???} {_/?7??8??7?d???'??k?{>{?ޟb?)??c???2?^di&??|?mm2??ާ?1????ױ?J?n??d?????_/jk2
|
|
e??;Tǯ콄?ό2???????Y`_;???7?7S{????Ԛ??>????t????4???J̸?0lj5;=?W{?vs~?????*ğ?N??$~ (?4?-???
|
|
????n?}hs??^??f?K??% ?$??RGE??(0?~???>??rܲ??J??fX??ʽ?<???2?ӝ`#c}yI[P?+??iR???0?!V???n@??g)ˠ<????`J??6?7x?8???\?r`yβ{??nG+??+?^:MY:*X?R{I
|
|
??|??g7??|V??=??͗s?t?`?? ?`??,??U?d??F??e.?w?O??`???"πW?9:sRT?o??$?Y?HL?8?<hPR??k,?-&8 ?1??Q?
|
|
`:`?s?%i???&?a?x?????˝d6_?gϟ??*u$K?x?g??E??"ǀ?}V?9???q?Ke:??.???>!Mq+1??????Mn#
|
|
?m??f?}? Ĩ?9??P???BVni?fX?$?G?9?љ%?n{ɀq.?,O????g???f?qT\镉?Q??W]e????G%&?G?-?$?$]?n???),?%Z?w?œ0K??&??Ħ'?A??ֽe?[WW?????nM???Tz?;u??w=R?J???_?x?G?u?խ?? ??????5?]?ެ{??ZcN??֭U??LD/?c?<X?nWU?[ ?0?? V?j???r?[Ͳa?????~v?a?7?b?ں7X6?1???j??7@??3??]>N?c??eƾ?:_a$ˀ??KǮ?L2#?*\捤?e??4?tk?,TE?>?Z??_g."??ܵ` ?vWU???)r??MX[???
|
|
?c?̀Zz??oBղ?b9?1 ?d:WIY?0?6???Zؤ0?{???*?xu]??v-|BwYʀ??QR????H???BQfo?xĤa?/?lY?1?_?U?Jހ??>,???????wi?fv?t?Ӣm'(
|
|
1??U ????<?K?B??P>?O?s>?g+6;???i0?K͚^?_??? ?0?2??????????????7?Un?N????²ޞo?$?$$?g?!s??M??0^87??0:??͕<?'j??
|
|
'??d?????????d?
|
|
?%?4?2??7??O?i,aYy^?3???*p?bS
|
|
??hTݎ>y?];?Fd??G?];?v??G????8hc?y삝Mb??f??$QH ?Cey?c?~֗rY??/
|
|
-???a?ǀ?C??U??????~#??D??hN?hϙ??j??T??嚓??EʊOs1A?4?M??T??@??8?j??R??X1?*D9??"=???????:?[V ?|,??Ty p8?:U?z?X}??W-a&[Ĺ]s<j???????)~'r+[?H??b??'"j-?S?T?ibR?Ղ?%jVN??a?T?ٔ,?+??L?,M??+?i???i?@?%?)??|?=U?I)??}z?F???T??%?Q??P@eT????
|
|
?=?x?4??3?.X??Ǩ??V?µ??m?? hN?4#~[????q??|W?>?,/{?Y ?GŒk?DXM?p|? :s??????ՃK?gTD??t???%?+1z\ ??Ǖ?҃J?<?#J ?Mf?{QC ??!:B??a??ek??yq?%???h??ra ?Gc??MNz????K9????????b>??Q><?L7L?F`*?+?P?"?R?B???<84ɬ3?U???6u+?Z?)xas ?Iub(?g???Fz??O??9??N?uf?!??L?,?[ȩ?i?F????/T?B?%T? BMvP??
|
|
?CW??$?uHϮ:?????,
|
|
????)?e??Z,ru????O?MYIC??9?Ck??Z?I?͔?,??iR2?8)V"p??K?@80??
|
|
n?6xG*???@?A????u???~?*??W??l????C??????2????7???;??a-??8?{?ҷ?Zp_????q?2?W??]&????_??=???]??a??gpT??M?v??m??,?5???
|
|
[?C?s?_U?`??/8??8??r{?Q-h?t??w? {g旃???? ?#??&*h??rrٜ??LY?"?} ?Y??C ?g?[?h??G?U?????????;??}h
|
|
?`?]u??w?\????Up?`Ia?~?? ?Z?R5?Óa-?U???,?*&y???N???:Yꮶ?0?H??:?b???b?YZ????dB???2D?~?wo?A1??7"J?y?Kǣ?+?eN?X,??Ç????2????p?g????&? ?%$&$??u??????/?Y??*-t??*???<B|??2x8??a?X?[?????????(tV?X?qG;*?6A????̏fR?t3?\?}F??4??????J=?u????͏??ux??N\Ա??G.?Yj??ԋ??p?U???? ??s??? ?I2??;??6?<?Ĩ?@?2?#@I????{K??o??????ь??ep????L??????[d???:Ԡ??'&K???p3?<lP??????q?2ne??7W?4?ɂ_?P+Y&?4?Ԗ????e?џ?z???d2㿐?kw`
|
|
???z???K/??????2w?t?;???MR6?=J?̯??}??????X?e@齵HwK'}'0???%?3??|?I?.?@e???"e????/%??cdrL%C??i?:?u%cP?`?WVv6?zl1u?8???G7?Rh٧uD??__Ӕ??ulQ?^?61??ʱc?V[??L?MQ??V???M
|
|
:Pqo??s????v?b?f??FE?DA4D^?lט?M???D'G??:?9?7'????]??7]?{̟L????&?ɔb?n?lj??y??t?????1???:???J6G????kWV??)??LcJ????&S?*??ޗso?s??w??!LW??????Y??Rfϱ?? ^?^/???Gk?????^?????&{?b??ĵw??Zj??w?k{?'??6?????6???^;?{?$2??k{}?^??9{}u(?a??J|?Z??^~?:?^???{?j`???????~f?????c?s7??H??0?f??ث{?g?N??^?٫???*?/???{????.?2?ޛ??a?+ث??b?W??q$?5?s{
|
|
???,>e????k??H??:?>??R?+??ƲW{Y??t?~??<Q?Ob?7?Wv?4????s??V??"?i??v???W{????
|
|
٫????????d????^.??????UN???>W<?????b?w??=?U?^?k!{?O??w???β?{,<???n???3虒?>r?/?w?}??y?]???/??qD??;??i???????u?^?????|v????&?????ky̼???p?
|
|
Q?%???<????/M\?ma????W?<????:u{ꧨ?zܺh?G????<??????~?Ƹ#[-????γN?P|[L?_???????????V??Z??i??-??
|
|
??|????_?2"r??{????<u?S;?'X=0m??????w??{A???.???yd?s??="?m?????|??g6t??ǰW?;_???'?k7??x????ࠫ??O?T<?nW???o;e?W)?m?s푧J?;?ՙ?s.?????_?}?{[??>:h??dž?=???w"?n?=??'?f??+y???ǖ?9?{?Fܶ?y?G/;?`d?kx?P?S>^???G?7^??????{?C?wM7???u?=??????p???fޘ?r???????sF;?ڶ?>>z???+^}j??[???r????>???-S??{j???1i??????6?q????C?H~??w?gW?U?\8????^?ܥ??;;?,?qmA???E????b??{{U\??????v??Xd?????t???͑S'4??8;????œ^x?G.^?[???}V??Wz????SN??1??Hߞ??.??q鞗z>ڪ??-???????7j??3???{?;4}\??/;;o??_???g?{?k?{?ٛ?츶??h{??Od??p??{?i??ߗ?v????}?SV?ˮ?uQ?ѿ?>`q?i?n???M?[???O?oO?t?C?^?x?r?%?8??_?D?S?kn???cdT??~?/}?`ɸ?s???<?????Sk-?}?????V?|??;r{??????[?:???-?V^z?#\?֜5????'_ضe???'-M?ow?_???6?f?ټ??Y??ܕ>>??_?????ۆ}l??w????3?Ɩ????v??yf??;ڍ?v?w??kS?cy??[???=wGoxbRrߒ??m??????㎢+???)[?|???????h
|
|
???q???O??VG?????ث???:??v??{??/?s????<?Sz??Q??????K?????
|
|
??<<ì???DO???|f?>????|???``??????zN???\u?>??6?|o?r?ϯ3?3??>?? ??^??'??Šb????
|
|
?????
|
|
?y??=???w??]???????Ǡ<W?m???>?נ^4h??v??A??cP?W??????A??c??^????@?=???O}~Ao}?n?|?
|
|
??J??ϳ?? ???????1=???i?j?a?A{)7??0}6???C?>??A=?b`?
|
|
??2?wX?֯A??O????ʠ??? ?6??6??YiЯ:귋Π????A|?1??Y?r[c???????<?@~???????s
|
|
????A?o7??}?r^`?W?A}?b`?A?|h0`0??_coY???A9???? z??|?v?~??A?'?'?ȯ7?0???`?M6??K
|
|
?5??????~9d?????1??YfP???????B?|??/g/??]??Iӿ????(?٫???h?f0o?fPn6(?g?????]A>??p??y??????N?!6B?ߴ?<n????vC??9???_$n?5s??8?????????_/?|?????w~???????????RΗ?F?쿤??/6%;;
|
|
y?w??W??_,??5N?&?%?_.6;??$7 {?=???)??????ۮ峟??=????_???_??E??y???)?r??g????֜?6?????-{??@?w??'?[gQ?'?????&?El???
|
|
????r?g?8?y?c??W???
|
|
???`射?+m?D?z)T?sM?[9??܌vJ??R<|%??|M?'V?;]?+??˕B????"E?}ñT??bD??????lT?y????O??2W???Tv.?څ[-???w?)??A???"z ???(???ע0?hR鷶??,?R\?G????)??E????.?k{r?????i#?-?nR??_?V?=???LѾ<???#?????????C???'???*???՛???F?z??dq????;?|???1????Q??u???t?u?|u???+??j?ϻ?*????>?V?Qm?~?N?E;?$?s}9???????D{l?;<?-?????v??*?-???7?q???q?????U?;Z?a?f<Z*?k??vj?????ߙ?D9?Ro?~?5?????^n?`????}"??G8???[?v?????????0????U??(G?R???$?ru{R?4?rg?fMܾ(?Ł?j???H?h?ҳ}_q????^??F?????˥???b3??lY???4Vț9\<l?*?{?o??\*????S+?=???D1?T???ς?)ʧV????ˢ~?E? ??b|????,?ZěT?ݤ?ߣ?ϏD9L??.??ҼB?/???E?f???7??X?ڞ'E?????"·?8?qx???$?[?ZO'??ج.?????\????J?I?ۉ /?r+?Z=_??(???j??b^??_*?v?a?7F?#?#??,???J????/i??U)N^?X??gp??)w?z?^'????~c???LM\??E{|X??wv??qrF???O??]?Ҹ??Z?(??ϸ?U??T???D?WJ?
|
|
1ΊlLQ>?Ϫ?J???c)Γ?|?Y??E?ک?y???I?? Ҹ_??H????k????D?S'????v?(?2M?&?q?R?˒_?D?S?]??m?wp?H?k?_??8?|1?%?qm??{??4mW??_E?U_?.??D?[~R???&g?y???(?Lq??v!??g?&???dC??|???G??_$?T??F;'????D?ub~X)?B?Ҽ?\-???T?˱?_I?a?筤y??g?qj???:????"??E?K???Eb~????E?ޢ??]?S&? I?_?s?4?k?e!?9??)?P?Kf1??㯢^?_S????v???kD???"?N,?F???q,?W????N??? ??r???B?E??D?[z???X???(u<O?_+?\???????z[?S?X_H???E??h?#D9?5?>???Q???E}%????~?)??<X?(?JM{? ?bZs??x???S?<??8?q?Z?L?o?3j>V???n/???U?K??#?L?C?k?r?.???TW??j?f}7G???)?
|
|
?|v????8>vcE??Y=.???i?C|??6i??S?????????YV˱4??H?U÷\?(?C?????AҺ J?N?z??P??41~?j?????F.?Z???"n?v)???/!?/???U?]?)"????]???H??????U̟?k??s???^U??8Q>ɳ??@?w?Ѽ|?z?^??????Ajw;???D}???(?K???#-?????5\??(???b]?z??fq??&ѿ
|
|
??%
|
|
???sQ&M??N??r?~?H?x?X]>??jޑ?Ŀ????b?)??z???????7?t ???? ?g?&]?يf?Jmp??k??l?R??d+do&[z?[???(rz?w΄Tx?
|
|
>S?_ӿb˯??{??No?m?r??}]??T???k+s8f??^??EC?!?B?#???o?@??e?|?>'?į?q9??xI S?*s??s?u.?!hR??"?????69+?+?(az??????=TVP^?h-t;???̢???2G)zT?-4??']???m%??l??s????'ë?<?????U?⏐??S??P~\Q7;??Rb??"?rs;???R???Vhw????ݥP???<$???R??Y8?8? ?.?w`???j???wR???UZJ???\!???!<???Z????????s???Mԟ?tNy?F??M>N?Ĕ?+/u;䰔~Yr?c?`$?"?\? "?OW???`S?,?)~A??Y?{?#_-??b?ݕo??K??t?]??M?GS&
|
|
rYiRm?\H?a?%???????Cc?T?
|
|
?O"??P?lI
|
|
"r??? W???)|*Ai`^J?R?<???bWI(??9Sl/-(????.?k????R+??R??f????'?]????^]]<ܥbe]?aE(M}ѽ??t?^!]Ȇ?{.L&Gb=qm? '??U?e????HA?Y46???Ƒ?9V06`e
|
|
#v?L??C???)r??h\?#?I????u{2???a?\???m@#'٩??f?]_??
|
|
?B?]}A1?;??I~R3??y?:c#)"xܙ?
|
|
~`??&b|Rs?\??Er|??EO???+MB?k?ٍ?4?J~??(??UL+???(y0Ԡ<??HEP ??3?
|
|
ȗ?? J?*??9E???
|
|
fkJ?\?tr?B???D&????asT?)U^?;@y??j?0?U&??8c
|
|
?c]?^Fآ?$S?m??P? %?֦t?Dm"????T?(??R????l)_??=?N?z?!?CZ`?_?????P;??v7?8?Ŕ^???ŝ??S?3???~?r>?????<O?I??;???G??R,?x"i?@?;???????I?\XZX?en??t;X?8$????@??pO?.8J^?4??l??/?x]?
|
|
??<?KN?ژ??PY?2??GW<8L?d&?u???G????ӽ??s?WT ???N3p^?*
|
|
1C?o?b??!`??RE??o@d????Ѥ*(??/by??ܨ?p???6?????*u??M???%?x?bS??S??????ʝ #?,b<?E??@??'??-??z??z6J?%҃???N>??#?^?/c`l?&u??J??????(?r??'?T?*B
|
|
9B?????Ɨqi??H????2? S?<W??@??P?n|???U(u?<??g???>??ε??0ደ?/`6y?>?`gy9?ʚ?.?QG??*Ǩv???uB??Cq?us?E'?~\sJYA??=yj??a??U?7?????P??e?^\??-t???nS?m,?Im????\?k['??7?ά?V??????,Ҍ@?0P?
|
|
?KJ?g????l?3?a?i'e8?vmJ??????ᘫ*?`RT????Rf0<Kc??;?LE+8??J]?e̠? 2?W??YY>k]??`*?)%.{??C?`?+w??>EgB?*90 ??#Xk??Jo?M?,??iF?S.???PCa??},K?"@9??F???ǜ?P?5?-s??a?X^ʼv?Kq9,[??y???Bp???P?")?E?Bq???"?Չ?/_T??5?????ޗ?Nm?u?NH]L;?Re5?+?Wd?iK????t?oxI??/??Wu/?&?o??I??~???v?Q??8?i??7QT(??֞???^???E?t???H?lջ??Q텠?*??JS???D
|
|
3t.'U?Lv??t??.?B???p??????#?t6?G???+??Ε?
|
|
?+????DY?諆?|??]?)?A?ul???^~?E?i??!V???(?]V? T?`?Uu]Uzs?"d8?#????D(?fH???gk?*?|?????&??p??qОG3??,
|
|
???{?DF?,sz??)uH+?;???gIw?h??_???D?+??|:???N4)??rO1??Y"?}?%%????-YՆ??}?{?RQL|??I8$????k?)?ĈC(?4R2????*??\@Ex?oGʥO?m?|?L?K?L8p?Oٸ3:)?HΡ?!%B,5t??ؽ?T??T??$
|
|
"'??;?B!??=8e2?qI?t?E8`?k?*?SX@?8?,?=?TP?J?mʞd?Lɱ?]l7[??ml???&???-??????<??;?_?g???~?%a<?wb?O1`P???F8?R??i??????-f?pN????3?Ǥ?%N"V>
|
|
Jj
|
|
??ZN?ne,?̼µC?uh?f??-????O?????og;??݂??tv?(?B??p=?俚?K???????7hx?=???2???????~?xp?b????j
|
|
o߿X??z?k???x????-?A?5?????{5|????V??@_5/???ᓅ???????f???\
|
|
?)?L??~k??????+4???eZ?D??4|?8?_??/p?:5? ?}????Z??-?p;?5??x?/??B?y
|
|
???_??+?|???$ʧN??/??j?????Z??????L??4?r?}?U>?W???&NZ???>F??4?t??U?V|?7v?&?ÖGh??_??k??Vi???6h?G|? W?K>???????>S????uB??????=M{?^
|
|
? ??rF?'??oԔ?~
|
|
_'??~????
|
|
_+????I?W??F?{5|??B??7?/??n???[B??7 ~?????{???f??n?Ի??L??/?^
|
|
_??Я?????n????B??_.?/?W?O?{9????R?????[x{???????~??/??_???tFأ?3???????[?=??\a??_.?5|?H1.h?-B?Rÿ)?o??
|
|
B??}??9??c?pޯ??
|
|
?g4|??7mW?|??/?~??????Bޢ?????V?[5?^!?????t
|
|
_/??4|?TQ/??T??*?????|??_ß??_[>BC?7J??W ?X
|
|
?^?I??? ?-????5?B`???B?_?尓?h?L?????>Ol:?%|1?????E(|?_!@?ń???Մ?"?2???qXN?{?'???5?_@??"???~ ??L??%?߈?¯ |l?ۚ?oDHf?G?8?ӵ???=#?&|2???nX OW?w?K?ㄟNx??1ń?B?2?/?qE??D???{??? _M?(?/#?[?_N???<??qE??D~???????ض?:??????^?w ??????#?o ????C??oڥ?Ex??????'??_?L?}??#?E???+?G?? ?%᭄? ?I?΄?%??D?t?w'|1?s??2???
|
|
?o#|%?{~1?{????~?/!?r??"??_H???U?/!??o!|o??~
|
|
?o ??L?? ???3???????
|
|
OK)??>???;c ߇????M?8?_Ax?o????o???͗?i%<?3 ?????'??N?7?|1??? ??=?? ?<?SIˁ?? _C?j¯#?2?J??????/?k߁ؿ??w??'|ѳ??W???W~/?&????O???o |?!|<?M?x&t??>???h?~ ?7>??q?Hx?G??'?0????????????2??C????Ê ??B??????O$|%?~1?[?|? ?o"???7??????O????!?¯"|-?k ???[??u?/??????????????m?@?ل?Cx???H\:??툞?'E? ?q??Hx?O????d?'?J??h??#??~$?3??4? ?/#?(?W?z?W???3?W>?س????'|,]W~=?_C? ??? _K?%??>???>??{ ????Jx??????'??i?7}????(#?1?O?????y3??C?8'???14? o%?Ʉ?&?V?????$????J?§=ń?H?2?7???}??%?.&?
|
|
D???~?/#?W?_N? ?<?w??????*?w%v?~??B?L???E?h?Ox???'?ׄo <?w:C?nD????L???D<??9??%?$???$??#?mt?O??4???DO2?o&???}i?O??4? ߉???????L?2??@??????ZIx????????~?7~9?s ?<???_??????o%zj ߅????????/????Ц?O???O%?
|
|
?G??4ވ?i??O#t?o'|??????6"o&? ??%?t"o!?s?Ax???N䭄?#|&??E?\?o%?t?D?b?????W??'?D?W?N???@?MՄw~? ????<?_C?h?????R=4? _O???$?^?? ???$???%?o ?,!|)?M{?xD?(>??V????ț ??q???» ???ci??C䭄?>????%????'?"_L????'<??SA??DO%?i???? ???YF?,:?'|???s _C?D?????>?????$?u?_K????E????I???ShS?G????wyӧ
|
|
???Q????1??#|,??!???G?2:?!|%?A?{ ?L?(:?'|??~!ѓK??i??c"_L??_F?E?? ???$???_L?w_M????~9??y?!|
|
|
?#?*??_K?h?~???z:?!?&?? ?$???????U??C??oڧ??:??>??mi?O?Vt?O??t?C?CD???~?h?O?????>?????????鄯&|1??D?2?_L????아_J?,&????&?c?_F?5?_N?? ?<?????? ??g??~??N??!?{ ????????? ?$??W!<=?`?O?U??%?SD<????'?x??Z?Mq??;?-?_N???? ?L???O??Ǣ?Um&??c?.???????????5}??4^???S?d? 0?|?4??+W??u?W ?\??I?p????R?p?~9????j? ???J?w??sb7`8?P???p?>q`8?P??x
|
|
`8bPoA??ԛ? ??? ?ԛ'?#?
|
|
? ??#???G?p?qO????? ??#??
|
|
?G ?b???qwG?? ??#>?????????}?/A????G?
|
|
??????/C?????
|
|
?+????╀/G?? ??G?$?+??K?E???J???W????|5???
|
|
8?G<p??q?x???נ??? ?G?? x ??x??q?????X??-???x?????>????{??#?x??8?P?q$?a???iG?? <?G|????C????? ?D??|??x?Q??????G??<???p2??x%???
|
|
?c??ONE?/<?G? ?4??????w??#v????g NG????G<?????,???? O@??<?G?x??p&??8?M???>????=g???? ?A?G???#?|3????X?oA?? ???#>?V??!?S??? OE??|??x?i?????oG??lC???<?G???G?p???I????⥀??v??? .D?? ??G?\??#?؉?#?<?G<?L?q???
|
|
?g???? .E?'v??g???????߁?#?؍?#? ?#?؋?#?\??#?<?G|6??9????+??G ?E?|'??x?y???݀?B?o<?G??????Հ?A?Oc??D??|/??x????'/D?/|???A???? ߏ?#????b7??????}???<????? ?B?g~?G|?%???1?F?'~??????G?O???>?????{~?G??c???h?????#???#>;??????O ^??#>?/???C??D???W??n?C?o???x=??ī??? ??r??J??@?? ??G?$?g??K???#~????? ~?G|'????݀?G?? ???8?J????B?g~?G|????c ??G??????X??k???_F???
|
|
???'?W??] ???#??:??8????)???#>x?????ć ?F???6??x7?5???m??A????G??:??$???Z??J????W ^??#~???R??????G? ?&??7???݀????g ފ?#??
|
|
?G<?????,????7 ށ?#??q???? ??u???x????} ?F???!???????р?F?G??G|6??=????????? ??G|?>??>???Ļ??#??s??z?_???W???????J???+ B?? ?0??x)?????G? ?7???;??#v????g ?G??>??#??(??8?1??
|
|
??C??|?G??{???p??8????>?O???{>??#??G?q4???đ?O???ώf?4????3???#?F?|?G??/???݀E?o???x=?s???Հ?????ф??W? \?x`8"X_??I??X_?x)`8?W????Z}5??a???a????0lq?OG<0M??D?n??'#????[g?#??f?7 ?#`?1?? ?[??&?I??(@}?q??1???x????} wA??|???????h???đ?/F??????????c??G ?@???G??%???݀{??????G??e???Հ{???a?6???W??G?p?@?/??G? ?+?? _??#?????b7?8??????y????S _??#???G|????1???I???ǰ?[?????} B??<?G???q4????H????gG1<?G|????ע??NB??<?G??u???m?G??????G??h??(???d??J?)????Ǡ??????#^
|
|
x,???A?i????ǡ???<?G?lE?? ???#?|??x
|
|
???Y?3??7 ???#x"??8 ?$?????L?q<????} g???{?F?w???#?<?G ?f??????G|p.????[?ć OA??<?G??m???m????????G??
|
|
????<?G???G?p???I????⥀??v??? .D???m]xl??j?IK???M???????g????X?????Zu??\5??j????????-??=ĬK???6????l?md?????[}?S????????}???O?
|
|
tˣ?:??X?ֺ?S?m??:?N?+M`ƒQG?1M?.is`$X??????3??f?j?v ?^o7??@a??cM?i`?0?So~????O??/R?s?wϵ?????G[#6Yw???2e??\O??W9j.Sc*?ںp?f??i?}???
|
|
p??????跲b???M&#"6?U*{^???Y8?T?v&??f??$???u?p?Տ????snmVN?V???Aٶ?~???L??p1???O?R?%
|
|
v??
|
|
?????6?5?3c???????J[??t+?)e?a???շ?%?$n???HI???1??a?a?0u?Z?kѓ?r?Sr?w?e?bh????_?????f??*Ֆ_e??O8?90??7???uZ?m?rK?cu??K??%W???Y?F??????D?iQ-????}??i?G,8???,]??v? vZsf?.????0?9kUj?uIf?udvL????io?eGmj1?Zu\??:?<????F???6?/9?ؘ??֟
|
|
?????^?6_??????=?*?2?ov??xVw???????-??9??@a+??ȋ?@?D?;???X.?Niu?\`=\???=?\???TŰ?X?ԅ?3?հ?eݼ?+6잿0-?P?????We5Z߫Qi?̛??̝a괶?I??~d?^??E???_X?T???????Z5>?Ze? v/?6n>??|??3??H??{o??r{??IV?i???`?F?X?Կ?'????%Cw???C????V?8_?m?]???,˩??;??#??v=\?+?s??=
|
|
k ???? ?????
|
|
b)*???X?6??? ??(H??9C???????W$?P????7???^U^????D???_sU?^ ~???ל??
|
|
????(????(?d,???E?U???l???f???"^U?????Tַ??'????OD?????;?~':?M?,???Dx?3??a??1??u_??L?X??=/?z?r?????u???????h????D??~??1C?2-??
|
|
?>?}3X0??Jkj?-??}??&???>?b??w?ًe??1??y?r?o?,???????????-?p?bq[n??*???q??
|
|
r?????W3??_??뷪?FC????+?z?????
|
|
?惲??͍B??z?E????oZ????zm??????$Fm?y?",??|-??^6?CC???pc????xj?<?N/?Q5>j???1~?cq?1?+K?8??g?bI??ZO?(ߖ????ݸ|???/???ͻǰ????????}???n???)???N????n??b??5?????????=?,?? I~1??t?,?YG??QI>?˻?????? ??q?HE???7z/?V??Z?"?????}oP?kI?Ss0??J9??J????֢?N??nf?-)7??N??rnrv?w)??x?{ʛ??䮾???ݙ?i??b???Җ??mLܟ?pchN???K??'???~????q??????q1U#?2?&0?????1l??e??Q8~????????Ɏd???ɭ?????Q?Ձw]??D????l?{?;??}?7?<U?5&?*+?{
|
|
+0R^?x?.?(??u????????x??:ݠ_^1U??P`Y?]C
|
|
??W?ܞ?RSnK??ʭ8?Z,{?
|
|
(8????1?헯?닰??Ƙ?UY??X?{??{R???_)?6?xfF??MU?y??ny?$??~?Wb? Ś??Ë??daҠ?߁Y<?k??,??X???;?? ??̐uq???r?&[}??r??o?k?x?w?2???????b???9??C??/q?
|
|
???<?{v?a??u?;??????˶?q??@1?^?o?o'????19?????}M`?4??"?Ǣ&?~H??Sn?????0~??%SK|???8ͷ????Y??>>?x?/?A??G?'3S>??ǔ?k???g?A!U?X7????hl\??W?Y?4???"-eZ?wt|eЙ?c?<??ۇ؈?X+
|
|
?؟?i??RW뵭????*??Q???N?0????
|
|
b???
|
|
???ٹ??cs*????`?v??̉&* ?1???[CKۗ??8졾?&??
|
|
?h????Q??m?g??Yy{????3YKq??Na????w\?????ٷ_?nN????b2QXm??iX8>*b?<^V???h??????uJ??B?o$/E????X|W??7?*???u?&??k?o?J^?nƧ]?)O???V?[}???Dؼ??/?,k?p?3?«?Kª/ ?
|
|
???/?&?iƒ6??0gp?"`T?-IK?ʌ???[
|
|
vZ?4K???r?{0?G??C??O?U??ai??Ӱ??G4??(??,FN??8?SNUƇ??T??o?????2?3q?\??>?z?39Yk?0??o=3??a1?~?Foo?*:|?E?&5?~?#?tt?4?Z?]F?'??}p?:?j? ????????????????X?8???2:w4+?Ө??R)/?!?w????b?h?͌MY???Q|?z??????c?}T??YY{???rU?n%-?[)???cJy?ԛ?ǯ_??q???DŽE_?????+????ߘվ㰰??1?R?5??E@y<??ཛྷ???ˏ?
|
|
,????????gt?_?)???w??:?X?ek??????R???[>W?/??1?9X=?:"?Q?? O??+?뭤??/V???,L?BI??gF??گ?W??{?#???g??3?????N(??????J~&?_??nt???D~??`?1J??????Bɯ??y?-?۹_7?Z>$}&O?????????Xx,W??ke????5?nil?8?E?0B???]~Y???Y??F???ڮ?+?
|
|
?/`???`(?O܊C???S???
|
|
??%??0?⒕????K?g5?c????c?K`?s??P?lB?k???78Z K??ʉ?D`?m8????F?S_#?\ p??[0?b?|?Vd??{T.??e-?"&?W????ye??U?"]??_??g?L?'.-?&,???{? %?M?M0?Ty??"j?????YQ?Rb??????,V?5j-?~??0?-?I]??/n?8Q?Gq??K?yp?Ci?~?l??7.?wؿ?CU+ɿ*???[???H????wܟ?4?k5??b??????@?`???b??a??ſ?????\??[?~??<$,4$,???yH\??"????h9?[?q?%ZNF;?!U?7???ëj?g????G?p??:L???a%Z?gF?"??R?x91?Ʉ|Nt??M??p?=܄??$Z??D??_?-?V?e?6ZF???ׯ?]???.]???4???%?E?S?????цb?d?pⶻ??I??Ożd?8,????5??WN/??҂bR?QT??23??8QL?/??raK??N?͗?{??bɸ9?o>7?)_?ύ{??l?&?A?<?`?X4 ? ?b???8^i?"???x???]?Ƭ??c?u???!???Y?Yh?%??????ɝ??g??۷SW~?NM????/v???]? ?/??F:??_???{????Ɂ???b??Gd??ɳ%??
|
|
V?i?ɋ=?(?1?d3mI?9?_??G??K$f'????69??????
|
|
U???js?????????[?Nj???;q=?)???V'?ǷE????uX?ս?z|y????M????C????T???<(?$??O^_?^d??~???????#?k??=???^q??xꇁ?뢃:????????\??k??a??uwŹ???;?1xSo???q??g_?X~?u%_????????-????Q,VF?XI?.?X???^??"`}S??i}{??-????OY??k?j}???t};?_?og??uA>Y?[?o??4K?ep????6w?z}{???o?~~???K??????????y=woAS?}b=?pY??(Ԭ?F???6?U?o_??p}{?M?K???????
|
|
?>??????o'}*???|R[4??3?<^?r}{?c??M?k??v??|}??%o?m??T??K{*?{瞢_??????.?K???6?͏????m؛??!?UŖ???]? ?M?V??m&???9?sG????*?/?&?K:?;Fs?b 矻P????9?#???J-?????>????L?Z??/,??P???=??a ??O?I2???'???v;Q??s+=????nu?ӻ?0??o?)ײ?]?Vn???}??V??_Ut@?迈?XLǺO?:\??B?'?J?q?t???F?d?ё????u???v??&i??L??VTT?fRa?+ҷ?H???Jz????-??i9?\?w?S?RRB??؍)g???N?r????????ߎ?A? 9??(f[??J>??P??H?|???{?nU&??*??u?4??o?!?????p?l??Mɗu????S>?????<?
|
|
6??g??<????*?????r??|ۂ??????e?2Q???????||?b?Q??Ǩ???>???ym*?=.5??*9Ḟ??i??¾????Q???SY?[??#2>?????????8????.??H:?b?_W&t???????.???X??QA??}r+?o)?v??2?*????*?'xz??wl1ί?ȯ??w)??e?~~???U?_?:??x????O3?6y|????{?_?-F???4l<?f????K???N3\??p????c̘?o?Y>??Xhg6m?M??;7???w??Y?Kbo?w??*??s??O?i{??|????ӱ=ĉ?0`??=컅??|???? ?i??=?Ӹ?}?n
|
|
j_??>??Ze???g?-٥?/???M??o?&??!???fi???Zj????F?تu8??(??/??f?p?????݄x???`o??;'?????į?^A?J?"S??ǎ??i?*?Iu0ѽm5|ߔ??{?E??m??????g":???;-????Dv????L?N?N?B0?"??1? ?????-?3pU?f????2??p?M????}??0R?f.???L???d?|ұ}??|~i}?T@?3??L????y^??vZϗ??ӻe?ѝ??8k-܁C?e????r???8g.?^?^?zLxY??ݝ%?? :?3|??&?P&~t?7)??3M????k?|?b??i??pĆᶐ????8???A9g????ɾ??~?{???2?]O?Ƿ??ʫ???bS?+!???dY????ۆ?%S7??'??Wkspp`Qm????Bօw??4u?/^|?e?'????g??8i,v??N??]g)????TDx???Q?q??q)k?U^8k?????
|
|
???ԫX???k?'?o??????q'??i?*?{????H?}?^6):?o??G?Uk??a.?^???? ?}l??|nC??A???x?_???q?z.
|
|
gYR????ߧ??叾J?g>?91??)??˯??U!?Y,~[???YP?GǛ?6?:(멍???[?zj????=??
|
|
u??~?8??gv??;?U?;????A?*?[????ϯ?~I?}?&??̂
|
|
b?|?L??YM?k?? ?U????'Y?Rn??x?? P?????Ӹ??a
|
|
sbT??1??-???g????u?ت????c??u????^#?*?g????????k?p_?ռ?!??}iL??????bc?~??2מsq???Dy?I9????(ʼz?Q?????j????bݜ%u??/?%?lN????%?[????? ????C??x??
|
|
??ҩ????]?{?)ܿ?8?m?o?(??]?????;= _?a?ܿ?;?=?no?o?8=?6O C?9?1???1???9dűqDSWC?8JRE"I%$lX?wZ??n?>6?Z??????U????!W?L???ϊ?:"H??gf???????_???W?????3?<??3?? ?
|
|
[ۖ?2??W?w?/?Z??I?*cݣb????e?zX]^???G??Ie?T?G??vP?r?|?O??K?(?????????J???#eH?????>fG?=ȸ?e?b\?O?w ?Sm]??D?=t{??C??;#<?ɐg|I?x ?qx4?Z"̸?ۈ?|?sq???^y??W-?͕??a@???x??Y_+???{???.???r??I?z??g#?s???????y??L???*???9r? |?q?tɿ???t?-~?|?????4??4??+?Q???{??f>"i瑬???s??3n??&????N?3?y_???q??
|
|
????X??? ް???? <?nͧq??1?8????d???7????a?@?/???W????
|
|
]??t?-<???iMJ????j
|
|
??kOH?]????wH?????r?g?`?]>?3xKs??}:߽L?g??O?8?PRP?*T??/???O?n??¬???hҎ??
|
|
?????cM??{el?_??iķ???o?}?6?_??IY?}??U??Ń*?
|
|
?;?v??+?|-)j?3?yvlU=?k???!????5
|
|
??ɷ???E?#?gn?{?Sn???{??W?e?M=??/?ŨA)?????x? ??e?w?????=????
|
|
??0??59??ҏZa???a??9??M?Y~?k??`v?k?3?Xo1??y?x?q????=nHfD?F?ү??j?(?ܼ??dfZ?z?䈬??WM???|?Y?#I??߈??h?q?+???W;)???Hf?l?toLݩ????x?%(?d??͞??:e?^?n##?????ԡ?!%?x?$?؎??GX46`,P?[l``??5lL?e?}?K?r?0???,?}U?????_`?ļv K?=aV?????Q???K?H?9h??֕q??4KE<k???.(?G?}????_???4??p 7?$8ޒ`??G??UYuEP???80?de?w??2$(???r???x?x?K??`?w㸭2??ʨ? S:?R???(-??*??$
|
|
Mǧi?\??Hð?r?????_!]̛??BO??G?/]??5 ?$??`?Q<L?0?%?`?P???:??0يݰ???l?^?r????c"n?#
|
|
ٗO?iA;c???????
|
|
?:Ъ?{?S?5@JZ:Z}S?b?0^4??
|
|
???????L֔"]?=??0[??o????q?|?x#?3???qC^
|
|
??b?fX*?9??%?????U?-??F65]???z~CV=ݾ?3?7X?????,?)|G?CY{@g?????q8>0u?Ћl?>ά??f;??~.??
|
|
?!1?,c*?O[a?'??/<ы?
|
|
?<?? ?<??bRw??????(???uܭ8<??'?Ë??Y??,ͬE.ӈӖ??5??\??s.?Ok???"?n???)?p?n???ԯp?
|
|
Ձz!m4???X???H?{??B?>?r???^???'{5<?>n}?2?%?y?{????fjw?^x? Sǹ??c]
|
|
?@??#vf?B?ڴݥ?~?>? g??J?:?t?????i'-/?%`F???ĉ??r? כ?#C????b??~)?I???.Zp???%?g???? ? ??EP?5J3Y??c,??$ ?0?Y?=??????o?}v??̡??سS?4?????;m??zb??;?^??[K?f??D???N??L]?i??4j''M?M?!???Z??L???P?G?FftNLqB???h]?8??!?J???%?9?}????(?r<wDV????&{?g???v"??;????M??|??????Y?}CE???^K?G??????D:j?&?V?ڜ?????????贈g?͙??J?L?i????b@??{????????XIRm? ????G6
|
|
??lt?C???Z})?
|
|
?YN,?F?`??T?
|
|
4el?g(?+?B?I˷??????-5?oe??V???R??R9.ѕ??'???z??Hd:?)??z???b`PK?#?,????c3~? x? ?7?.oҹ??ل?<b?E3?Ţ???*??,h??&?f
|
|
?s?Y??
|
|
д??خ???}?y?u?????9???0?9??g8H?{?*f}u?¬=y_|??Q?.O??I??[??hf4sʹ?;d?>U 3I??V?2??ӛ???b???#??U}?T*?????"S???<???9}A?sG)??ܯ)??.?۹????W?>?'??~??S?1?e?)???Z??s??<???C?G,?Tr?P??
|
|
?@?]=??]?3D??
|
|
d??'$?????????ۑ??p ??K?~???Z?P?U?*????n?=ҿ}????N8/(?+??A??Dz:ݸ?????=???'eޯޥ?d???&??????` ;-a9?j?Fu,??wۈ`{;?g???C??x|??M7k?+????n?9??1@??p?s??j??\/۷lui??І?Z??=p_?i??G?????j??V?@?
|
|
/[????/k???V_??G??$?o????
|
|
M?,?D=j?sYj??n`!?d??z?r?~@A6?????m?JU4ԸF??S???]??h?? U??\??X?????h?1??~YN??=Zt???2<L$∃3????z5;?'??#q??fZ??f?]???Z}?#??K8??A'w??-??c??C9???~E?GS? q'i`5??Ϛ????T?`Gʋ|??tY,~خ??=?? ??_?9"?RC\n????c"t[??aL?}?????o)????N?T??d?E??,????HvaV?⤐ci֬R_/???=d?ƿ??]?,?;?
|
|
=?Q??|???Q?RZ?7?~V??}/??X??~??Xf????C????B`#7N\??%nV??e???D0h?x?v
|
|
??]?? 6y?6%?%???n)!,?-ŏ5ۍ?cL
|
|
E ;3?LJ:aVwx???????N?'?????`0?A???!??咧??tG???HMˇt?dٛ? M??f??ٱ??R?L?%ͭ1??^;+5????M???;?m?<H?]?c?nm?[܆E???@"???)+ܩ????????ꨧ???L???y?hs??
|
|
L????Sa?ž,or2??Y"?!P?Z?|??e???C??t?m\????$Ui
|
|
U>.??+o$?r``???H:? ڀ?C?K?x?fQ?w???_??6?B?Qz????8[?` ?B X?
|
|
??+TW4??}?.?"1?sWQ??*????9?:-??2X??}pL?X?*?~N?0œ?6~????fqv?K????%????.????Ċ???X?????????@v?????T??!?P??~l3?;?ݟi??Ѩ?]??Һ;?
|
|
電ẫ?UГ??}??????K?˸,??ڮ???%?QW
|
|
D?????Y?ت#y?҃??%ы?E?!???ү???n?)ؘ??'n5 $?|???k??
|
|
P??JgVրLh!{?#q2e??(?`F????y?@K]?z?vjc??1??????9?Wwi??].۠?d?`???sH.?? ??_?_J?isu?#??q)?ۃ??9??/?U?#?_?V;?v}* >???^
|
|
????T?%[0??l rjlC&??k?dk~,???}?^?A5? @?z?S||?dx,C??RG˦J?@Y?TQ>Z?q????Sp])??<dz?E?!?4|???????I???4-c(??C f??<g?bq?u?E???S?֢zmQ?9U???T???_,???z{n-??_???JH(?9?DЛ??nSȍ?!抎????|
|
|
????y?X??A`o??mf'??آ????}???/͙su)??;kT?Ax?ɇ8??u?.???+???p?|??>S?ѿ?^?J??,?U?q??ުݗu??_7?g?T??r?r?g{?ZT?:??????q^?????$N??|???&z?B?cx?E?5?m??????K??ݾw*??.??}????l???l?I??Nk_??j/W?v?ὖ??XaG?h}9??~o6?m+???_?ݻI
|
|
??{y?^???ަ???\??ގÜN??ʁ7??%??$???O?zj?
|
|
x[j?
|
|
?????????w_B?u?f?+^a?;??zt????x?lT?H??y_o??Wc???Uo7x?? xc????+?q?S??1??????
|
|
jx? ޟVi?
|
|
???}???i?}?`-???x?}no?d???ཿ^
|
|
o?[_o??7D
|
|
og????Zx4Gzt?~??|?~톢??wC?_????5+Q??do???f??s???G?u?+nWQun???"??w?
|
|
?G???弮?w???/?E??_+6a
|
|
?)?#Q_??;ԗ?U?27`?]?^GR?ˮK*?r?5????Y?$?^Y?2??CO?3ZKP \5G?Eimz۽?J0?7?&t0??M?Ӭ`?\??٘:?F????-?x???jtf???
|
|
?ePDw?????=???5???ycx???ƅ??1?????G{1_(<y?o~5"&je??NУ-??A??o??k)/m?-=??>F]z?N/|?f1@?k7??6???,???^???o???????+(?}???zA?JT?d?B?e?V??@X????|????wD??qQKI??Q????KkK|_?o`Ux?p^?Z???Ћ?=?E??s}d?^A|??=??G?>??]g???<?????Ӯ?:+\h0??k???;X?A?2??????G?-??WйB?{??mi?0?@??S[?f?6??2?M???c4??wTgj2O
|
|
gƅ?CY/????앃?^6fv????D?u?_??qZS8??Y??,?KZ??T?`??? ?m?1?8],??????*?4??iĺ?pk{"??k?h?-??L=c*zO?HL
|
|
Dݰ?#~????,?t??qe??? ???} ?|e??u5??$??>z|?hn?`?+?l?Ǯ?)?M?h??3jY_Qi????[h!'
|
|
?G?(?K?(Q??͂??)?Y?NKP]?}?/??,-F?pޮ??\??}???????????l?NZ&???t?e?@???܅l?r8+?? ?c?bZ?>!??2L|ı?*???O?????F???F????+???M8곢F??x??@x??(q?p[????FDUo??2?X????b?@`?
|
|
2?}???h??t%X:,g?j??I?8?:0??}Jw??(59?i?WلŒ/9?<Ö??Ͻ??O?e?K??lg[?@??Z?bR|?]??;??`G????G0۬?Q?U?`?.ɾ8??6ƒ????YY?Lc??~"Wȁ???"WH]mn??2έ???8B???~?r%i?5?r2_fP?ט-?k?|n???֡?????6?+G?}???2??C?????|㱻R?G??'?r???Lm/?+۾?U???????O/??]??Ʋ?U֩?????Lko\e?Km?Z???[?7 ??˭???
|
|
??x??ھu?????M???k?ޘ???3??g?o|?U֞??:?~w??ϧ?l???2???V*??wZ{???????????????wǞs??~x?C?????{???9/+??-??gi?[??Kc??-T?p?sY/??b????M?6?_???dLE??*??2h?ϓ????V?b???V????2/?!???u?\?}?{?.~?Ĕ??LV?R???<??@? ?{`???P?w?=??v?MYF|??b?E?6g ]i?].??2?????R??
|
|
??@FJ??a?W??}??h k?D?LY?ԯ4?J[??-??֩???J[??Mi????N???^S?????i??V0{G???g?5[??Fi??jk??V?? UZ?%YݎQx?h??Xz?g[????WI+D????,x
|
|
???4?-??+?w???
|
|
?ī?^t^(??Q+Z?Y\4??Ľ=?????Js8?wVU?W?????sJrvr?_#??!sNp?O??K??q?u?O????hr??˵?_?\?;??:??d;??h?o+??ǘ???9?cɈ0?oiJ?O 5?g?y?/?&t~?
|
|
?$_?U???|
|
|
v???=M?,^??^qn4??O֜??ߛa_Rcyy?U???u???;"뚚^?+??}?g??Dj??????l?O??J?|????M?o?Vf??cV8??y6γ ??Ԡ:?gL?j ?i`????>?p?
|
|
?a????vBR?m??x[?V?
|
|
??wBA??6?ٜٽiG?2S?0L
|
|
O?eK??{?R:P??P?&c?4EA?
|
|
ڈ?ʖJh~*q?驴&?b?˱??Vȫ?Y?
|
|
?p???K?c3<5?r???0?J^?y?n\?7E???OtdH????????_?x?k3???\#0 ???Fn??b4G??;?ؿ?
|
|
??ƴ>F?%G(_5x??D٢Պ????W5???-??}!??K??U4?W?.a6???
|
|
aͬt.ƻ?f(??? ??Q+Lv"???G?w~&P???.????>?y??P???6̗Z?}z:?
|
|
|