|
#!/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.9_amd64 subdirectory
|
|
--exclude-subdir exclude the laview-latex-struct_0.1.9_amd64 subdirectory
|
|
EOF
|
|
exit 1
|
|
}
|
|
|
|
cpack_echo_exit()
|
|
{
|
|
echo $1
|
|
exit 1
|
|
}
|
|
|
|
# Display version
|
|
cpack_version()
|
|
{
|
|
echo "laview-latex-struct Installer Version: 0.1.9, 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.9_amd64\""
|
|
echo "Do you want to include the subdirectory laview-latex-struct_0.1.9_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.9_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.9_amd64"
|
|
|
|
echo "Unpacking finished successfully"
|
|
|
|
exit 0
|
|
#-----------------------------------------------------------
|
|
# Start of TAR.GZ file
|
|
#-----------------------------------------------------------;
|
|
|
|
? ??FV ?}`U?wZ@J)Z%"h?PRނHR,PۢbH۴
|
|
?MMR("ZA?X???eW?E?U?]|???)H?">x?H????wϹwf?Lf??T???????o?=??{?}???Y?W\???[l??t??Sl?:*?x???<oKB??9?,ˠ??=q?@}????
|
|
0'??/q`??&???~??̖f?=?_??kw3S?????A?B]?Θ???K??ƛ
|
|
??\?(u??oΝe?a/??- ?- ??fo??|c?y??2g???ۜ?2????W??`?9?ott???|G??f?YǏM??2>#y?-3k???Ԝl[F?m?i???????윬 ?9?? ?#m?SSm?Y??Kz???f???e?,u???0?xk1?TX??M(?Y??q?Ns?y?<?? aV???B??CM??]%vo0ѣm)i????F??fdCQ?"??ܑ?fK9>??k???w??
|
|
^?wV???6 H?1?{??F???ִ?[l??s?ǥ2???c?C??? ???t?????8C????F??09iY??S???e?*???O/??9X??PT??M?m??D5i5ӯ?dZ[?P?????J&?&??H?R3?????=mxIʀK?"e??"??Q???aZ/?YoP(K\?q????J^*? JV?,9H?ɚ???%?t;g?????grJF?p ??A??;lv?,X?
|
|
???A??_*??7?
|
|
?e?c9??
|
|
B?'?h??n?k??E?C>ܜD6Mo?(M??%??i??]?? ?0??M???m?}?????i<???b?;??#?_H?*T??
|
|
?k3?? ??jC?? ?3i?f"/)??hHaj???:?????Q??(?iO?+ATjZF??5?9???hJ??B??Wy*?7Xf??|t??pB:??@?ꛡ???h??????*?i?
|
|
nY?nn!??4
|
|
B?,'tt섌?t^?m?????ԭ?p=b?H?????b??re?难<??t???2
|
|
??/Vt3?j ?bХ&???1y(\?r&h?Y??&U?劬U/'?????)r??r?F-H7-`!?T?Y6??/(D?YGfH7?R???P?j/, ??? ?@?Hś?I?٨??/??ɚø4[v??d?k??U?z?R??㝥]0]r???̌??lz???SV???J???9?&Rf@????r????#?qɩi??P?????>{????<??g?2????fk?3W???x??Z.h?'kQO$\řhH?ܛc?S???"??P?VV?1I?#ɮY&?at???$??!?TP???A?H?R?v?<????I.??H:T?-l?q34????j/a@??"?#?fh)?r??j?VV??sIV/}????0??????e4Z???-鸠}mI?zK4????߉
|
|
?us?o? ?&wX?j?[RNFͱ?*?%?f?????Nք?^???4???R????jx牰???ꄄ1Z?e%gZ?S??c??^V??>a?R5q-(R˫??q>?.4?.??0??"uP??V4?AV?k?Ef?BL??0^?V??B%???5????di??M?MrH)wb,}???,?:???)
|
|
U^P?kF??F?b?s3"m??K????%?
|
|
tƕ1~?h?I???0?%???Bf\??h?!?2?f?r?0!Ԝ+?b1璕??Q3̹B?d?s?0?8??G??tΤ????̼???Z/???\
|
|
ڂ??߮???ղt?^YrUf?fɩZ?N??Zd(C?E?<??fhA????)?`???4??F??U/??????j??~ ?mL7f_?Y??u?)Cfݜ{Һ??#?,??dԜ?ѡ˷Y7???p8q??>?c?~????:}*?h2??Ԉ
|
|
???h???1?wr??7??{???)Z?ʪ9w?s$?5??]??gMw.?ͷ?{A?+?) ??? g"ɆY
|
|
?6?????˚?n?/??V?Ǧs???k??ی?aR?^?6?;J?6'??F%A?9.>?U6??%=??^L?0????T?rs?i??#?`?x??l@??k/%6?#???2??HE%?Bo??`?%??Xrp?ȉ0?xk?"I?S",;?-??:??S%=5<???3?!l͡Gh?2k??xB??JO?0S9?V?J??????̓h?(??m??c3Y?0?l?\??P8b??O???c??:V:?~'-+k|?Ʊ1Ě?1R??Jj?ȴ??s0??9ִ,?ex'??v????Uқ?w??L????.????0?cй?2?F??Jf??WS??֔?Y#Ӳ?pbh??d?~??e??aX12%&> ;?????D:1l?U??+?
|
|
???2X?f??w#G?X??;K???NO
|
|
?Z?J??
|
|
?y?9S?z?5>klr??+yV?+?fcͽ?PÂ??g??*??G??m??8??Lou?????A?j)?n???*??z/????e?Q<?p?>?d??#???V??k\h?? ??U?|3/???ޓb??_S? p?&̦@n?iΈ?
|
|
??ω6?C4U͎??E???Ny?????????Z??jZ?>\??FHfrVvZV6? l?3??wdN?'6>+Ӛ<??? ,ɴq!4fOH9>U????ۃo?s(%?,??'???yT?]??L?5?ca?݅?je7?????????P3?E?Hk?^E;?
|
|
??i`X?g:??J??? )???PFrB???Fg?LF? [h?۸??tWs1+|!???̂?'??q?Ƭ?p?.g~/?h??qRm???e?S??)/???G?L?
|
|
???^??݁x}5???BC#?JE??q??j??/??\?????|o?4?Sg*??`?~zO????*3f؋??6??|?7?z0?
|
|
dx???c?D??s?~?ױ??6+7o??????T[fٳ?f??+㎨??????RY?-Dt?ph???|?Rf?????G??\G????fY?u?{????"???o???[*?*^/ڹ?!??aRO???#R?3?
|
|
dS???dI??=@?2?شB ?V[*A?p_?A?6?
|
|
94?fH?䍲EiM3&dz?5????$??&"???7?%?ޠI&MjЖ?i??5?mIi`?aǭo?ܝ7ɾP???#?l?V\???f????M??)e?ٙ?\&????f??"?v;JX??]bU?H֊????d??lٷ6+??ւ?k??4??<?<??q??㕉\???a/??;S?]??z?/P???i???뗪?//3??T?a4??,p;:ũ?N?˦??? ??`j??<???? ??*?%?M??x36??ÅV?l?Z?|B?????`? _\??????&?<??anO?ŕ?W?C?^?E??=:?Ƹ"?????."u??Ki???I??d???????@?N?gh+r??5?uc?
|
|
KIsZ}??????\ڙP?J6x???_????as?????]YS?n?jNZ?py{5Ne?{?yO?????W??d?pt????V???(bn˓??t7nK랚S????左u??|9??g?X??Z??????ٕ?o??F?????????0?}o?0F??*???b?4?UB?~i??????t?=> u?&^f??
|
|
????Zh?k?*?ܰ?Q?h[tڲ??N?F??UV???7?8??n^??<?X??Uw·!H26???]??V^?,?iI??M(u??)??5?T??&K??a??Q?=?\? ƫR?@???^? ?u?[?&?q\??????Fl??J?{L???!fN?ћx#U?C'k6[?j&?J?I???`sLɐ?C_???b???~?t???7?%S?W/???fP???śY?a??M?F???e۬??f^wS3l\!???????x??hɳ?y??? f/LOX:}?Ce??}?ƚRŅYx??????vM?N??????56??pv:?ح$;?CM)C??Q??
|
|
r??xY??:???u%a??Yj?`???
|
|
????`?B
|
|
\?5?0?~???r? ????*:????Ʒ.eg'T*q~Be??A??ZI8??v? h?]!?h?
|
|
~#?????0R???z'J???$Œ?{???Rj%M?/???0O?~8D
|
|
N$A?A????'? $ԙ.c????pơ)se??wJ??y21?Y?Ȑ???8t6M?ٸ????f+f?AZL?L??
|
|
K?`~I?5u??x?ó)H:m?N͌z>y??*k?e???????]??ty?????d???????w??QڤH?2T?????)?L鵎?|gA???o???O??>?ѷؕg/v?u???H??M??N??m??%??????-????~?????=????? xo?^]??^???^???????{???'?? ?}({???a???????{D?L???X?~#{?c?????=?????&??,?x????/-M?????V&????Z?^??m?L????녭M???}#{????????Q&ӿ???^??1??z{3],|aY??Zt@Q?g??T?.??????_i??8?c?f???z??n?+r?]?s؉??? %????4?t?aӘ<??
|
|
?m?r??1U????^?`j?P?(c?f?K???B???]?[????\o?????k?u?I^/?;? ???KڂJ???7H?j/?? A?G/p?<?8KY????S??Y?)?K??u?=?|?˳???+⦻??0hJ?x0Kx?4e?` J?ō(?;?`&g?????\???#??v???Oz~??X*??t?Y???r????>c=???>)兞>9??????9}R?=K?g$K0??ϒ8?Obb????~??&?????ba?}?3??܀>??}?
|
|
1'Z???`??2?o????òw????7????JI҇?????`ia????'?a/j?*?x??R?jv?G?M?????`?N?????f(n"??M?af?{???? 9??Q???Vni?f?Y?5?uz?3?????>?\??PsiB????????Ҟ??????]g???k?'&?G?-案o?O?t???SXnJ??w'a2?^,M"KӏMNL??Ԯ?}?\??v??????k??9wg???k߭}Ӽվ???????????5;f??]_Y?ڼs^?[??0]?͉????5JWЇ???!u??????};?\?w&??jW??Y???X6,5??t=?.???ڧ????,?7??w?+?ȷ@?;0?;}?^????}u??H?s?Q??]a?>jF?u??I???ef?րY???}?9U??\D?9?sn??ΪS??%R??ۛ??vm? ?Ǧ???#߂?e??r2c@??t???\??;>?s^? ?V?+Y?U?+?k???R????"?̀(?YE?l??2{$?#&?G??\Ȗ?3???U????؇%^vR????&
|
|
???.?r?߬??oE!? ^?*?s????z???Ԛ>??9 t????l?fg??9
|
|
??p?I?K?>??g8x?f???Ƹ???????z?Q?f?_?9w,??yfKBK??7??K]l:Ć?Y ????ѥl??!?Q?P8?$ ?LNMu??=,~&?V?,v??y????9E?{Ma ??s??y??V???M5?ʣ=Pu??6m4? ??6m??Bڴ?
|
|
?+???Y???v6?ŧG?œs??BJ??(ˋ?b????˪?~ih??/
|
|
?<?
|
|
?ɮ?]^>????F,?? rEs?D{?vVΘ$??,???
|
|
RV|?? ?G??l?/????Rl%?AU3???/NJV!?!?@???????v??ס߲J??c?_??M?ñ7?r?Փ???5_?j3?"???Qk??T??oL????Y?z???gQk??¤??H#??4.Q?r??d+??̦$qW9?d?Vi?-^Q?????M3?:,?OI??3?MJ9&??ҋ4?&T?r?w( ??(??*?<'?W(?ųp?i#??(w?j?=FEfX?r??m3?@S*? ??|5?ϸ5?C,x?ڼ??fyٓg?J??*?\?'?j*????H?y??ԗ?e?'??\?>?"rgS?, x^???J?@?<?D(?T"?!Q? ?Y2?ދZJH?????
|
|
??6([?Ԥ?CȈc/???Gk?K?<?7lrҳ?~??_?Q?DT??V?)??:??)d?a4Q??[هp???????C?:SZ??lc??????g?1??T'?"x6l??߱??;͐???D^g&!???m???C?????fA?kT?????B?*T?PB? ?d???`8r??LrV???c9?,??o??;? p?*?2Z????"W???څdݘ?4d?#9?????5]?L??҉?F%3?sBa%W??T??R???&/`?w??X?=t?+?]??M1????~??d[?k?WW?>?w?<0?߱?
|
|
?????o?'???q
|
|
)?{^??|?X??Szv+I?&s[M??o??^?[.??0wT?8?~?M??6?-??bp7?m(?>??q?[U?`??/8??8??r{?Q-h?t??7? ;f旃??? 7#o?&*h??rrٜ?
|
|
?OY?"?- ? ??C ?gM??h?G?T???????n??c;???i
|
|
?L?
|
|
u?]w?H????Up?LIa?~?? ?Z?\5???bX?xU*h???ߦ?I??S?!??N????.<??~????X?f?X|S?ք?V?8??@????_??[uP????*D?3?/{鸕?q%4? ??2x?`???x^F:?3(??????/?a ? 76?q??????/?^??*-p??*˻?<B|???=?ea?o0h???enG??bx?r?;?Q?ȳ ??l?aN4??|?????3???y???~U? ???q?ǔ???l~?}?Ó?v?ʎ]??8&?៥?8J?x??'??[l?ꞕ-?8?F?!?Ps????es?}??z N(?4??ZPl/d??????-A??fʣ ??????3???}?1?7?0??p?A?NL??B??Af?<`?????????Q?2na??7W??I?_?hY&?4?Ԛ???tʶ
|
|
???7"U?&???t?]???9?uw?{??\z?<]?H???????]?n???Qf~?͇??-??/h?G?/J?-E?[Y:?;???ň?,????KM?w?*;?t?)??????^Ϛx)??#?b*jyC˖1-+?HA???????t?fS??"Jzl?DS??Gvoc???4???e?Z?FTF?ߡUL??rdJ?jK?i?)*)??"??e????~?+c#H2u?I1]?n?5?GfLlTTrDCd??:?\c????1:)?????I??9I?DT?????b?E?R?d2uZ?#??fȭ?dSt?$S????L??-FNm??1??סeTT?9?w???:?NJn9`l?)9?K?L???x?9D>_?r?9 ?tY?H?|?L?c??2{???I?r?z?Ŀ????^???&{????b????????x_#?ײW???{?g??E???&??f???^??k??>d?D???v?ק?Wp???P?b??????7??g?#?u????W{?d???3??{?e?? ?+{?#??x?T?SK?9??ڰ???՞?bث{ur???e??r?~??|%?W |?x?????Cpױ????8???9???
|
|
??G???A???}??|{?^???^#?+????z:{?E|'?dz?[?+;??nc?????$?)??.???W.{峗??
|
|
ث???????Og?b?*a/{??^n?*'??`?+???g????????~??d???5??"i?;?~kG??W?;???F??im?iwINJ6??w?}?????:_????/??aH䓥?_?8뎂??<??bG?k??7>}wȯ'?[?p?????쳃?R3???_2&???????}???U????˛?1?簳߿?.?}??z?;???툨k?????ml?;?Ų?Ǐ?Prr???;c??\x?U?ԟ???u??-??W???אz?gk?^??yJ?e?#"?l???O???'?????U}??l??D>Q?|?EQ?:?Lu}F??????!??x=?ۮ\???????????^s?xm???u??0??
|
|
=???n?>?]??ڝm??????_%??e????.?֜ק?˹??w?3ۮ}???i?;?X??O???(_??ߍx?M??[?<`???????ڭY??Xݼ
|
|
?w???????#?-n|?Ń??Lڵp?я?m?????=ҩnѣ?uJ5???>???????P?҂-???2q??w?????3G8?Z??>6b???^z??d[?K^?9j߬???z?˖I??>?ej[{Jڮ?w?v
|
|
Ί?s??7?s?0?+?<???b??a?Ɨ??????ð?i7?W?????룮?????ͳ?????]?<;???^??pS???:?#??苋ƿ?ʃ?lݯ???>?Y??һ=?f??p?>ߴ?G?v?;k鉌?v???????????N?ϊ??fN{&??n?
|
|
L??ӫ?[?????=???}???_|??V?o?t(?^?ؓY??e??7\???-Lm????=?x??W?\ri????gA??)???龍?Z~?خ'???]???Ǯ;?ϕ????/VD?S?Vܹ?ǰ?7??_?́?QOL??Ӓ???GO??????WG?~)????wO??ާ??o?m?߷?_uhѽ|?ʷg?>??Ϗ/yq??w}0tQr|??/u{??D?=g???J&?3}t??t>3(??yw?e??[?u?g~?'o?-?ߏ??h晥?lo3????=??Ƽ?s???Ox?^?????7???kzy????>q?#?7???%??_g
|
|
?ׂ??q????VG??.??????????t??w??_5??^?]x???????W??%W??/??"?yx&?Y???????k???}?O=???????????????6??蹮?>??V?|7?r?ϯ5?3??>?? ?{\??5(7?A9$???;.7?O;?2??{?5??o??ۮ??/1h?':ďAy?4??B?h[}~?A?<b?=m??v7Ӡ{??w????A??k??????@?
|
|
???{G}??M??? ?t?v??????y? ~???\=??3Ġ?9j?'???"??
|
|
?r?h?^?M?<L??:?X?xn???lP???3Ơ<m??O??5?7?i ??@~?A?W?W????Ӡ|??????h??3??>2??n???}Π?V??}?|?A96?_h0n?m`?,y?A??a???
|
|
???????UcP_?ؿ ^>2??]e0N4п? ??k?r?5???A<t5(?9??&?~???O2?O7?_g0?~h`g??8?dP_W??f???K
|
|
??~9d????6??YlP??????
|
|
???|?/????;_??Iӿ?vQf???]??j4O3??5(????Y?r??"?qn'??65??x????q???bC?Mk??f/??n7?????_?????Yf????|!??????j??՜O?r^z?ΏWp??7??????8o)?P?q7???#??kW??Q?? ???.?|???Mw\)??f??>ɭ?s??KD9?xUm???
|
|
~/?{@Q????????KE9<?嗈?_???3?v&??pȤ??r??Dm?xG?}??v?Op?I???Y?????d+Q?/s?T?"NV?ƱT??/v?
|
|
?????,?\??6xu9?h+??±t?f??Sڼ???Rܪ?D?|?"_Iϟ{
|
|
?NF??)????z???r??????v?!???Y????Ф??#??Z?U???S??
|
|
???"?
|
|
?[.?s=?-??&?~k?/}?c)??&??R??L?;=%=?r????g????V?߲m&?=????lQ?s?h??_U?W^w??:߳?^j??s??*???cE|VoT?%?Q?{?M?gE<?<kR?3?,?????????J?:???vZ?:~????+8?V?]????rS??b??֧"?*7???'?i?h???????<_?]?]'ʿ5??v?X?S?/???????R???F??j?G ?Bԋɫ?w???$?x?Hȗy??n??????ɢ?O7????f'K??2J?CC?:?Jv????[?v??????E9'??? ?/?3???Q??????u?|????"???"u;? ?֬?ۗE?Hڦ??91???Qz??"35q???7?x?S?#?xW?2??0f:)??j?KcE?f?"??)?|?!?_*?'??S#?=???D1?T???O??.ʧF????~?E? ???b|????,?ZěT?ߣ?Ϗ?"?_??S?c&Ѿ$????%???-?Q???c?j{qs??q>H?a????|{i????^???7??3N?Y6?˷??K?71?@^??i_q?Yb??OQne'??#ż(s??J?)????/E?[Eyf?Am???
|
|
?T?oI??E?r~]???9???Y??_f??O={??ȴ]?o?q??????????n[{Qnu????z?)??߫?W?r???????8??ł?)?+?8+?19D??Ϊ?J???c)Γ??ҟ?v?,?pj???7
|
|
???T?+챈?.?#?r?٦?'??? ??&?????4q? ??J1.?????/W?G??
|
|
?e?W????]?kIb\[*?.??N?@????J]>??z??A-?M??7???8q??vR{??.!??g?&???dC??|?????BO??o?qr?(???q[+?I?+?Q??j??????=????J̇W;?8o!??????Ʃm">k5?çD?'????o????"ǟ~??S?Y??ra???????_?)?k?Iu?-?1?8?,?GD?d?.?=?"??u?8{?h?e;9?Z?? ?.V??GL_LDN]˱T_?"?bD?~V??'???f]?w??"?H?????-W???H????k????o?z?!?W??u??Z??B?'?&?$F3?"ʹr?ڞ?b?Ӡ?o'???u?????L1?H??*D?TjڋO?Uւ?5S??SBO?K?K?a?;j=Ӆ??Ϫ?o?r{]?^??W8?[?{uwi?R??6?'?M?????Z??n????R?¯????r/cE?%iƅ??????v?D?m??ۧZr??ߩ?'ⳬ?ci^?????o???|?D?V?Q???E??k"???W????j4?̣f!?˷??Z?m??[?]G?~?A?KH???}?\???d?eb?.??h???|?ci=uT̟?j??s??4??H??3)?@?w*E?H?~???????\/???j?M???b|???+?o?a???=*?
|
|
??z??X_??ĺ?-?</???????.?K????*_S??w"?j????????u??¯??n?ߟ͢|D?'??z*??????n?l?W+?3S?7?*]??
|
|
K\?68}??L6g??k??7?-=g?-??v:=^?;gl*<u????_??U?A???y?cfز?\*|i??1???????????cG?W}~?P|eH?P?ț..??=?@??d?#?ƿ??8??~\?C^\?T??n?,v???Կ?????????M?Ɗ/??<??^'+.?}6p?嗗)Z?A畔Y?^V?(E?J???????|W????M???V???dxʡ??C?J^?2?<u
|
|
??O+?fgpUJ????Ynn???]js?
|
|
??b?L???S7????]??:fgҥy?r??Xm\?\?N
|
|
t?N?JK??>á?+?? =ɀ?^T?"??|ݙ}.vAX㯹????)?B???z???ɚ?Rz?n????!K?pL?$Q(nDD?? 2?E?`*??????:Ku?z䫅???]y??$?!M'@??5??t|>?a? ??v ?ԅT?Y?,(/?gQ?:4VLހ?$?
|
|
uʖt? ",?rh???G??D*U??_+r?2??3E???bH ?r?f?*??R?*5???????\??be?g?????.+?
|
|
+Bib??U?}?C???6|?ܳX`29??k?O8i4?2,?TM=D
|
|
̢??Ovx@?4α?? +S???c?B-L???F??rYNʔW&??ۓ??
|
|
+?X??6n9?N}?4??~???Dl8b?????fO?i??#?I???$m?45?c???:?????u.z?]?^i]#??n???U???Fi
|
|
?bZ???FɃ ??)?F*?J?'??m?@?,O&HPjT?'?(2??UW0[S?????#?&?0?/qx<?B??QQf?TIx]? m?N??W??W???3y?5Ȏuza??L???vC l???[??Q?y??<J"?S???J????|?c??9?ꅇ<i??~??B????lw???0c?Sz]?Fw?B?O!???????yl??<?W$qc?l
|
|
P??q?CH??㉤????zXf??2b?QT^(}raia????v??`M?? ?@?ނ!<?[???(vxҜJH??6???u?:Ty?????1;Zˡ?^e62y??"xz?\?L???ו??#r ?{?????????f?4??Ub???X??C?????`C!ހ????I??o?_???չQw?*?m ??
|
|
.?U??śR??U"?x?bS??S??????ʝ #?,b<?E??@??'??-??z??z6J?%҃???N>??#?^?/c`l?&u??J??????(?r??'?T?*B
|
|
:B?????Ɨqi??H????2? S?\W?#_??P?n|???U u?<??g???>???5??0????g6y?>?`gy9?ʚ?.?QG??*Ǩv???uB??Cq?us?E'?~\3KYA??=yj??a??*)?y??RV??Ҳr/????]3u???6耤6Ϭ?\????ɦ??
|
|
??3k???<i????)?4#P&Է???b?Y9??6??Lw?E?I??]??c?|(%eg?mh8檊3??f40????*?:S?J?e?A? z3(p???UpfV??ZW??????R??84
|
|
??rg1?St&Ԫ??`?0????????ؔ??{)???f:?i?!A
|
|
?1&??Dz?*B̀V???????-q??aIX^ʼt?Kq?,[??y?٬8?+B????O
|
|
?Ufx+??W'?taP???W#x??g?:???}:!ua0 ?`K?Ճ??K^??o?,?*?????v_~????'M&?@c5?N???????qz
|
|
2?(?o(?(?Pĥ?<u[
|
|
??s?Ջ???^?f??wW??A;`Ur???|EI8F?\2N*?J?????F]"??(????K35$:C?
|
|
?$?? ??#????J?{?-w????`M??w?UCR?n䃮??Š?:6?????|Qd?dA?U?fLґ??HU
|
|
kAv[U?U5?7G0?h!B?s9r;?x^H?Bn?h?wy???[?????lMl"7??4???`?o??Id??1???RW??r???Q.}??p??????|?Ի?WΧS???@?2*+?1ߝ?b߷?Y\?ܑ?!ߒUm??WI??-?ė/??Cҍ_??f??J?8?"M#%???J0?2
|
|
!?
|
|
T???v?\????W?五?T?????;??2??????R"?RCg=??k?ME??JU?I? rbZ??S ??S&???tM?X??&??1Y?T????ܳL?Ŭ?ܦ????+??v?%???
|
|
k?8?;??|_[I?O`?e????x?/???X???|?!??}?%X?c??c/???lܛ??ra???L??<:#=%??/?? ???_?@S????r?tc?&??z-C?4?OmQ???????g4x?p??8?\'??D??w??&??\^z???थ??A?K_?}W͗ ~????_???SŃsh???Tkx????b??гT?/ƣ?
|
|
o?]a ?Rk?8ϼGï??????%??4|??c????? ??,?4Q?g
|
|
=S???U???7/3????????k??????~??_?cת?Q?C???>?
|
|
_?????????R
|
|
?Rȿ???+5?~!_??]?|j5|?
|
|
?ߣ??ck4????W× ~??_*??R?g???c???IKq>_??~???*???R???ƮӔ?x??
|
|
?T??5|????J
|
|
_&x?zM???L??5?{??R??>F?٣᫅?
|
|
_&x???r?
|
|
?B<_匆7??oД?=?~
|
|
_-?=?,?'~F?W???Nܨ᫅~
|
|
_&?=>s?Яᗊ?LܤѳR???S?G?W??{???YW?{U?V?{4??#?_?'???h??3?_Û?G?罜???{?֭j~?m??gj?A????k_??o?
|
|
?U|A???_!??d?@??(????U?K?)???/zVh?8!_??/?7k?L!_??~????Bޯ???h??҃?????|???,?c5|7!????E?'?$
|
|
o?$?E??5|?????Ӆ|????>E*
|
|
?????fP????~
|
|
?%???|??i???I??c'????ӥ???IBޢ?gJq?OS???<Z??*8/???H?g?>l"???Ħ?9?~???`??W?5"_I???_@?[ _M?,?/&<???T????{ ???s?????O??/$?f??=??+??O?e????|k????L?H"Gx????*?g?݄O"<??
|
|
+??j>????n&????~L?7???si\?5??$?n?/ |? E?ń??K ?>?_ ??4??ȯ$|?????f??D???b"???m ?????B??oG? ???Wv*|{BG?>w1????%??7~/??)?-??D?!??L?$?Ix+?+H?e??'?2?g*?/'|?'=e??%???J?J?_A???B?j?C?ń???K ߕ?/~??_E?W?????j"????_K?I??%????Ox3??'?+?o ?O??Cx:>?????R?!|?o v??;?? ߍ?q??????E???F??/??Jx:?g~??H?.D~*??"?E????TF??i?O???JZ?_@???&?Z?/&???_J????{~???W?>??o z6?'?k ???z??'|????B???"??????gBG?7?c??????y3?G????~????O??+?+i???.?D?{h???vX??WhS???????$|??/ |K?o5??E??V"?????ߟ?+???+ _C?? ?f?%|-?h?O?^??'?T:?!|+?7~??^u?cW??"|?'????|,?Kh?O?!D>??o??i????i??J??i????~?3??4? ?/#?p?W?f?W???3?W>?س??w??'|,]W~ѿ??~%?G???K?o&|??%|2??>??? ?Jx??G???'??i?7?R?b?G?§????{?????&|?G?B?????$?gy+??off~&??O????Ӊ?"? |?????}??"?. ?"_Mx???+?/%?-???;?W????J?w"v?~<??L?L???E?h?Ox???'?ׄo <?w:C??D????@???D<??9??%?x???$??#??t?O??4???DO?o#???=h?O??4? ߞ????????O?2?????e?$<?\@?? _M??????? ????_??????? zjߑ????????/????Ц??O???O&?
|
|
?E??4ވ?i??O!t??"|?g????6"o&|??%?T"o!??Bx???N䭄?%|&?_"?D?o!?T?L?"????????'?8?W???>_?MՄw~1?????? ?????'|???zh??????I?=??F????Nx?? ?@?!|)?M{?xD?(>??V????ț ??q???» ???#i??C䭄?>??償H?Kh?O??D???}i?Oxz???3??J?G??'|>]?~&ѳ??Yt?O?
|
|
"??g~?i??E"_C?L??????~
|
|
???+??~:?? ?[?M
|
|
?B???K?M?*?BG?>????𱄿??f??$|??????D~? |?????C??????????w?"??H?2??'|??C?J??D????Մ??? ??~?_ ?a¯ ?w?_Ix?k??????L????H??'?#???Y?7???g?(?M{?8???&?cߚ???oA???A????H?[??>??????[ ??g~>????D~*? _D??????????>{%?=?? ?8?~5?? ¿@?:?'??D~%?"|
|
|
?~3??4? ?g"????h?O?O????K?@?????y?>ү??/?&?1??????G??'?3
|
|
m?#??o!?R?!?? ?D?$???!??;e?j5atw?u~???????|??Nn?????1??=?`????>ƙo?????r?????2???k/G;?W ^?b?/E?`8?Q_?x.`8bQ_???8}.C?G?"??"?g"?G?OG?-?? ?тz3?1???@}??pd?ބx(`8P?pp??1???x????wD?w|)???#?N???h???đ?/C?????????c?ć_??#>???x/?+??u???????
|
|
?G??????U?????~
|
|
??G??5???e?????? ??G?p??#?{??????G|????n?q???i?{???sǣ??'??G??7??x?>???? ??⡀????`??????'??????#??????#????h??đ????Ϧ1<?G|???a?7?????#?x????M??⭀???????G?
|
|
???g??I???倓??? ????? NE?/<?G??4??\????? ??#v?????NG????#???q????c??)?ǡ???????????#?|+???;?,?q????⎀s??р'???#߆?#>;?????' OD?|??? ?I??⽀'???? ߉?#?
|
|
x
|
|
??x??ī ??????OE?/lG?/???#^8?G?p>??????\????{ |