|
#!/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-desktop_1.0.0_amd64 subdirectory
|
|
--exclude-subdir exclude the laview-desktop_1.0.0_amd64 subdirectory
|
|
EOF
|
|
exit 1
|
|
}
|
|
|
|
cpack_echo_exit()
|
|
{
|
|
echo $1
|
|
exit 1
|
|
}
|
|
|
|
# Display version
|
|
cpack_version()
|
|
{
|
|
echo "laview-desktop Installer Version: 1.0.0, 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-desktop will be installed in:"
|
|
echo " \"${toplevel}/laview-desktop_1.0.0_amd64\""
|
|
echo "Do you want to include the subdirectory laview-desktop_1.0.0_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-desktop_1.0.0_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-desktop_1.0.0_amd64"
|
|
|
|
echo "Unpacking finished successfully"
|
|
|
|
exit 0
|
|
#-----------------------------------------------------------
|
|
# Start of TAR.GZ file
|
|
#-----------------------------------------------------------;
|
|
|
|
? ]?V Խ \?U?8> *n??Ij5*?(h*j??F???âl???% ??H??in????[?b"????dn????d??Z.??9?>3??y???????g?9?Ͻ?{??{??KHn?h??`??cJ?`NI?????;v??w`??7?u?ԩc@?>?}?g?l???;v???ۄ??e???i@ʄ?Dcr?*?N??L???O?f?????f??u???G,_??(??Ն??5?? ??P.X??p?)?=y?j??O*ǧ?+???r??]]?A??;,?M?
|
|
???CZ?I?O2*??8aA?t????}A?? ^^?.??;????s8~?K??+Zae?/??9'vf?%vQ|???S|??????U?ϛ??i??,?_??????ä?z{?\?%&???l???Ą?L?̠N???m??Ҷ=?????;p(?????#U?r?n? ???|u?????????u????z????O?C???a?Q?P??X??WW???
|
|
?????Y???]?g?[?????kU???n?R?߯F?C?t??@H??J<??}ݗz{????? K??????Y?O?>??g|?????|
|
|
㾄?v??g'|v??>???O)??>_??['?; ?C??>G?s>??k??rg??3|.??|.s||??߿??|???M???|???߇O9|dS????S??5?|???.|?8???OC7?o??1|7????y????ݜ?~?t?Q?????]ߩ>??????-a??r?l?Q?z?zg?7??5H??????3?Y???j??????V?wf\?=?~???A???W?v c??Z=?eR??&??o??;?f?٬iYs_???2???f>n??LJ8??u???VO ??|??͞?????S?"?`????Ǐ???L????}䗙?w??-??j???je]j????oC~????>???c?ѻ]nX??=p?ʼno?/??摸z
|
|
?-??????j???խy?=t??????\??????㿽?5????\?????╵????࣯???????
|
|
?u????Ƿse???????ί?m;?oڳk?????暯?_wT??????o???#?蹬<???#?:??????Q?k???=w??[ݛ\?sV??1e[z_k???????,K??{TY??????4???|??? ?z?h)?^????s?h?ʆ????r-b???w?Ny??e??b??w??\????swf?9??X??
|
|
R?V?Žξ7O\|dKV??????,Y?f~?W????????^???;??????nu_p??3?R??
|
|
????
|
|
?˺??????M5깩Q~amu??F=!?p
|
|
?Q_??:?Guu?>
|
|
?'jԟ???!u|?F??^???5?9?!??=???4?\??<4?ՠs?F=[5??4?1k???zi?{D??
|
|
???(?{u?~
|
|
?IZ?N??^Ѡ??F??k?O???o???y
|
|
|M7u|W
|
|
??5???>ZC??h??Z
|
|
9,Ѩ?mM
|
|
??ૅƸK??7ר?F??5?C7?z?k??j??Q~??m
|
|
?*
|
|
|??8?Y?_?4??
|
|
}sא?
|
|
}?h?3CÎ?А?J
|
|
}?X?????A?K?֨g????4꿦?/;4????%Ŀ?????h???Q?/??1?d?????z2_?????'5?h??1??j?㡡??4?o??????!?7?П ???诿5?e?F??4蟤A?k???h?~?F=?i?4?ۏ??TCn}5?Q????N?h?9
|
|
|?F??5???F??4?:?Q?w
|
|
?-????L?SC?Oi??h????PM?N?Ө?Z????R??p?q?X??3vi?F??h????i??1??h?9U˯?h????=?Q?j
|
|
9א?C??Ҩ??F=?F|]]?O????}?r|m??<??M??F:}?QQO?S_????r???#???
|
|
???<??w?_W/D???$?Ld?_??????9?
|
|
z?>??gO(?ۀ??Ï??;6btzOTҹ?QV^?:+?ϗJ???~/?˟=??s8?f#??.%=????R%??>`ÿ??-?|??c?8?74d?,/&79??އ?[????x?<%?D??0˩??s?E-R?m?k?^????_?g??%?I????~ǟ?r;P??????\?0??????\>?r????? ?~?????k
|
|
?_?Q?W??`??Gs:?r???????????&???????YΑ?_??*?????m??????W?J:??>Oaxy9??s?t??X???ϕtF??tNr?N?>އs|Fc??~TI???`???????)?9????}e?>???2???4ftJN??Ћᣜ?G?0??_?9=?|?????O??z??????{???zɋ??`>?r?a*_O?????x??p?9~??ں?????????e9ߔ?3?ϼz????2????7????^??ټ??????s
|
|
??ܮF????|?s??u??9?????l??s}??Mwߑ~???gG=?o?????P??????3???|m?W???%??i?.?yd4?Gr:S9????6?????|Np?#&*?o??E???O?????dM????O?e??py?z&s?\n?0?<.?q??bxyI{???k/??
|
|
?'g?(??????De?U????"?Ϝ??x?t//????j??g?x??????|??M??????qg??;??r>_s???Op;????d{???|\?vx7?`ne?N?z
|
|
?1?3??-???\β>???????????Q?s?<??+??0???G????+/?y(??j????\Ot?]Y8=_1?<??y?,n?e}????????u???e?C?x,ا?߮??s????v5???q9?????#?y????J9?!?[?>??'???;???Y=?9_z>^?g?]ߒ?{q?R?y? nWe?]??'??ϫ??s????Q????1:???Qm^~]*+o傘????I?7PK?????1??????ۼ߽??%?S]b¸8???????L7?m?L3?`??j?LH?4??4?9#-92!62֘?9ɘ????L????$SdLB? )??????ȗ3?i??????hS:??KH7??+?f2?nNK??H?_?i)??8???
|
|
?&?&E&&???D?%????%???D?j4??dJb&B?B3I?_?0?M?4eB?t?E !????ThRn(:?=!r?11??&Ƥ?œ?n6&G???&????xc:`L? ??hr??fL??dJ?⒍???)??(?????&$'?#M?L`? ?2&&?D0???'b??[d?????p{&??MHu@?9ia]?;7?dv q&?xk?1&F?C`??)?D?1??Q?0m4]=e??n5"?驦h?/??1)i&ct<?A?E&;?HfJ??7??d??y\FBb?,P^???T?iRҔ?U
|
|
??o4??J?;?fS?Y:d@d?I??!z&?$???%"Y(?4sBJ2?_z?1?835M1????aL? 1 ??2bi)I?????&{?c?"#㒠f??f??e??D?i?u̔27Y3?Nc#:)?5?? ??Z?:?PЬ9#}t7????Cenc?02?%BO?O?D7`Op?22=.?x G???OI?j???|5N??N???t3??jC? 1&??q?D?? ݚ? ??????cL ??ɚd?Д?1?
|
|
#?KZ2]?RQP??MBŽ??????N7%"I???D????w???
|
|
??
|
|
?F????dga?? ?q\J?Y.?-?w??
|
|
?R3??T??Z?Mi?2?%??TSr??1
|
|
??sy?J?RsR?$cB?????(B??,??.]A֦?ȴ?I?*}??`?
|
|
?#?ER?S?9?E?dr?,)?[?Q???????)?@C?nN0'*????Mw?F?l ??qg?%?T?fLNO?Rha+?η&????^I??+(?mLHK?l?D+0Fpf?0?P?쳗ƜmLw̃0???;?Z?t;l????C???^?(.!????'%?\199?Ls?_?I?MbHIE(2.5%Av 2Ɓ? ???h?H??X]5??~o#1C??L@M o?L???t?|?w?1??LoJ2F*fuR??*tD? ?9E???'A? A?)i?+?
|
|
???6?9h]??9??6?????[Uh?4??ŀuI6?{??2??%???N7???1?P8@ԟ???2??H??q?l?:????r??c.?7&?i?)???L?ANFs?????8?ɍ??cwq1??????S?"??LW?Ze5?2?h?~?8gcD9??:?0
|
|
?c?`??????&???KJ"?`.??}??eƆ?:?"??3++?$? Ȭ?#"????)??q`H?)Qo!?r"p0?`@???Z?|5?T?z?yN.?)쉌I??@EӐIZ?9%:%?b??6?4?&?vS?kY??\k?$͔?2?$????Xc???0j?#?
|
|
q????S)?l?ɉv??_??O?I&??? (??a܇^FL
|
|
:?Y@??IP?F"L?pc,>?V??x-:>??pTE?=0?????q`?(?8k?h?h???,@??$%Z???Y????#?w.???}?j???;?????{??F汙b5E?Da?T?֬?:?9*?ا=???Q?eAiˠ*? ?W?0p?E??? 3?M.ʂ?u??e9PТ??ӯ?2X?$??p?LI?nH?O9???l???*Ü??????z?????F????V?[Z?
|
|
??*Ī????㡊J???̨r??u?<?Eg???l
|
|
?G???(??TSE)???vZE??´6ÕW?i?\E?U?kI?S?y?,?oMg+)!Ye??VE?U%éť?Pe???HUZ?
|
|
ubx?U?JqL?iZu?ў?ޡm\(?5?
|
|
5m??}䣢??|?#????<??0]?qf:|?8s|`=Z???
|
|
?Uh&?h??X?'C҉?Ą? ?2pX?
|
|
???7½U?A%?\??]?S0??ZTDM?=S???4͞?"U<!8??Q'}V?
|
|
*?D[Ȯe5?G{p?yQE T???*?Ui?H`0G?r???jJ?Ĥ?W`RW?'\TTI??N?v?h???ReD]?$?R?^?)??pE??f?r?
|
|
??Z-?@щ??j? QTUWEGĦ?????u????@?[S?T??h?Nm:D]u-?)??
|
|
?auk?Bz??O2%g?;?0<+?X??܄N?????&???@+X????Y?0 @?c?*?4?i???:'?Ԧh??*]]?A?i??|ъm2?7,?G???m;?}????}ێ?????@?j?XÃ?S???`?????p??s??k???ƚ???z9?b~,?J7??5H???t?p8?1^w??j???Na??????oq??Q/?un?O*??T?uz/?????-@??:$????x??*_S??xO!?k ?(_[???:>U???????? ?Y?K??xo?P???^<?Z??"?? ?~??o(????~??o$?xL??&??
|
|
??^?M?u?T????x????S??)??^???f^/??x?????>H???????7?V>\?????O?(?Z???g|??o#?3?????m?,?N??x??c?????^????:????"???X?w??|g@? ?c????+?
|
|
xI?w???s????.?ui???S?? ?|?????I ???!??|O ?{ ? ?[??>? ??
|
|
?po?>T?G ?~>^???>L?g
|
|
?>K????>_?????%_ ? ??~??_'???-~??/???>!?????)??
|
|
?Q^??u?F???c?.݁?О>J?{xqg???'??>Z?? ? ?M>H??
|
|
?`'?
|
|
>^???!???(?A???D?*??|??Ә%?S?,?*????~??O?>]???f?N?g?-~??/??>?)???????"??
|
|
??^???u?]???x?ف?!?=|????
|
|
x?S??|????9>@??
|
|
? ????x???%???E?G??>J?[|???#?S|????s|??????>_????|_ ?????~??_ ??w|????}~??? ?????bV?/?_&??????/??=?)????~????xC?/?ku???t??bsuiB-D??,a??;6?K?-|??'???d?mg??Ec??>@??c(m+&?6?B???0?ζ??~`?m??@Ce[?WF?m??CCc[?'Ɛ?N?!?1????ޅ0??6=??c?k?&x???t?0?????~ao??w?O?<ᇉ?g#??O?L??OA?!?Op??G??O?8?}??G"??O? ???C? ?Op???wE?q????A???'??{7GXO???f???#ܜ?'?6?O??#?K????-??o ܒ?'?
|
|
???!?G?|ᧉ?!ܚ?'?+??!? ޅp??B????7 ܖ?'?c???w?? ? ~?@??y?'? ??p????K?<????iw"? ?pg??q??D??O? ????C??Op??#? ?pw????O?????;???7F8??'?a?{??F?'?O?;½???npo???!? ??p_??s??O J?|?~???_!ܟ?'x?a???? ? ހ?@???~??????p??w~??'x??g#<??'x&?C??? <??'8
|
|
?a????N?<????? ? ??H??~?"? ??h???!? n??X???G?Q?#E??a#?O???#? ??p4?O?;?1????
|
|
???'?±???W?#? >?p<?O? ???!<??'?+?'??B8??'??$??
|
|
'??p
|
|
????T??w~??'x?i????N'? ?????'x
|
|
????iO$? ??$??qg??Dx2?O? ????Cx*?Op???wEx:?Op{?_!? n???????Y????~??'?a?g??F8??'?????K?|??? ?:?O?9?g??@?B?|?????_!l%? ޅ???B???7 ??O???%?oR?#?O??.?o??Cx?O?l????D?-??)?M????????C?<????#^D?<?w???!???'??K???"???'?=?ˈ?[#????????`?m? -?,{? ?Z???<?z=ɢ??????c
|
|
?s???Ç???M?;?(??R<?/G??f?-/??:?????0X.?o?4??? ???;??????1%???V??t?????_?`?n?)?`p?k8x???^[?6?'?j??????d?
|
|
7K????_?[ ]???f??˨^6?W??P~`?m
|
|
???Pڗ?q??,??}=K??mw????:??v??<????Np???Dr??g{?,}<݆?>2 ?喛??:??3?/A/?q}?`!?6?^??YF-????F??
|
|
? ?(Jnq????4??`)?Rp)A?????wԘށ?C??(?????j?-?o?? ????ԘB,???0???/d5Xw=?7?7????O?w?eR?I0?J{z?????0?`????f:[??e}ؐ{??'??W?a?????X\?Ob-?a??&??????wd?@4#????o(?U?2??C??2??c?z?@_?`???c'dg?????ԍ???`???C?1^9? ?R*M??B??"*
|
|
?)}-???#????4X?x?L?;z???P6?f?&????̾?pw?eOi/_Zɑp????r/k?9>$??ۀܫ},??:????w>?=c??]?-x???>%3>?*??չ9?{???U??C?@?????˵B?
|
|
???? mF
|
|
-{l??za?V?AW>?O'???
|
|
-Gu????|?u?:k/_ok????e??Oࡢb#???UzF
|
|
??@?A???Ixn?1t???Cʀ?4jL??1!cC"?q72E???i?q??_?JZt?1P?r??o?W?>%b???Rb?l??%H0V? 0???V(?')4F?????Tt ???Lg
|
|
|