|
#!/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 gobject-plugin_0.1.12_amd64 subdirectory
|
|
--exclude-subdir exclude the gobject-plugin_0.1.12_amd64 subdirectory
|
|
EOF
|
|
exit 1
|
|
}
|
|
|
|
cpack_echo_exit()
|
|
{
|
|
echo $1
|
|
exit 1
|
|
}
|
|
|
|
# Display version
|
|
cpack_version()
|
|
{
|
|
echo "gobject-plugin Installer Version: 0.1.12, 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 gobject-plugin will be installed in:"
|
|
echo " \"${toplevel}/gobject-plugin_0.1.12_amd64\""
|
|
echo "Do you want to include the subdirectory gobject-plugin_0.1.12_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}/gobject-plugin_0.1.12_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 gobject-plugin_0.1.12_amd64"
|
|
|
|
echo "Unpacking finished successfully"
|
|
|
|
exit 0
|
|
#-----------------------------------------------------------
|
|
# Start of TAR.GZ file
|
|
#-----------------------------------------------------------;
|
|
|
|
? ?Q?V ?}|Tյ??;?!???#?d&/??f
|
|
!(?t?$?dd??3?6-?cZ>{?????/????R??jk?TP??r?z?z+??:Q??@x??k???s??r??m??\??{??~?s?>???????.n?7??n???v?y|s?~W?;0?ZԮ\?e?Z+??T"ms˭??W???T??T????[+?*?.++ST?????\b???勑.^<???ɿ??x?*?z???s\!w?ڴE???UkQ???6[
|
|
???? ?6?7vx???l?ů??!u???ӺE?Y???u?????nU?N?cŲZ?+??˝
|
|
+W\S[ӸʹtE5?p6ԯ^Z??Y???~?siM?s??g?
|
|
??ڕ?4?Z??3?*???s?w?'?١.l?z??گ?`??x|m:l??u=??f74?Q??
|
|
???:?k??ŵ5?????~z#W9ol?u.[?xu}?Z?8YA'i?N????9C[:?j?RELG!?0C-\???8jk?u??F????jTi?ٱ?HjH?c5#n?Κz??U???`?h???aB
|
|
?(??.?f ,?fH???u???s?^Zۈ???L???^?M??;???!?i??TÂ???r?$??!??D?4S5? ++f
|
|
???????W??9I|??k&?G?*w??A~-Ⱥ3N)??????5?:??,?F??l?{Zf?K?K???q֬ C`A?Y?3e?|????f???????
|
|
?ʸB?3.PU@k^??d`?l?T}??1?inL??m??? ??7?3?kc?6N?:????zډ Ŷ5??^??U?o????m[<'4 Q?v?זz?9S??D-?h??N?^?.???8?????Un?ug??I??O????k?)CQF??????\x?/???k???Ӹ???????>??-??É> /????????a?v??u??<k\??m"??v???٩?;V???e?P?:?Տ>??-o?] ???UKs?????ᕦ5??3R???qƌ??I|???1k?8Åv㐼??
|
|
O??n?k??hMy??S?63???.^???&?!?٠? +9?pBL? U!{u????~????C???5YS?N5p??Ή????)J??C?X'??.?Z????????y,=???5???%?60?/q??e=? ,? 4C????44|??!Z?i?8ß S
|
|
?f?P?܂Ĕ?/??8?~??Ʒ??|!w?"|?M^????ݡm?????S??"??H?;?V???)v??U?E?k+?????l?ߘL?6Ms&?1?w????X[??}K?G??폺Wį?l?Uū???f??e?[??܅5ݷD?THv[7??????į`;?oŰ?C???~ ?[F??[iE?????V^R:???i\1????c??6??莟ϵ???ay??8W?????B֮?v7??l?xݐR]uf?"aʌu$kGg??Ӭ?[??gp?ե???"?T
|
|
?I*d??P)????(U?鏖?m
|
|
?#A?E?:?ҥ?or?p8?B=e ?z??u0ɝC҈?f!"??#?F?V?3? yD[?viGI???????
|
|
GLCh????????ܙu??} r?Y??a??,?q????2??O???d???S?????c???'S??j"???nt!ƛ +{vԪ^???4%???4!??6Ϭ??hf.?y?bU??w??fy8&??s?*????[??;??Dô???{h/????cCyl??WkQG??g???????R??o?mx??4??T?ټ??3?rov7;(????3???H !??b?f?8??fe-'?|?[z?bw?9??y???t?-?UNۥ
|
|
????v??vɭ???A ?
|
|
?%!?
|
|
x?????݁ ?D?GE??,??Ω/???|?:?k???E??8??I#?????5_ͪi??ڈ??}K??O?L?e/?2斗??Y???*??r???s????q}??~IrR?NQ?Vhh,W!?S?S?T*???+?4mZ?7O?KEQ??!_:?f!:K?ɜt???ϗ??v?a?9?N?$+:????jI%???X?(U?2?u$_z????+?<Y??b\???Mu+?????B?MQX?d??T%39G?Y_u?G?ʄ??_?W]??{??yp????kQ????????7??z??ߙq??5?>???c?}?ȯ*????C?;???g??䕛??#?-)Ě}9zl1?2??_Q???%??
|
|
?k?Dn?9?M??T?9~?$? ?F?? ?\1ǗH????H??&??+I??O???II?k%??$??w)???-I???J???)??,^?J?Ra??x}D??W?6})s??YJ?.??? ??)????{Q?1L??T(w??gח;?w`???Ia?v?|??86J?هzJ1}q
|
|
ڏ??o(?l????)>R)??ǧc;t???\???\}}??m??焻y??T??'??7Q?Gq?5.s?G;w?'H3??x?>w???d?8?g?f(py=???5??+1=?t?6????*?n?';???k?>2?A&???5???N7(?ڸ?N?]??????[;=AOH???vmrG???Ä,???<?`&-ʌX??????>Ik???
|
|
??
|
|
B??m\??????????Mx????w??-??}???x?)K?1?w?3?szZ??.??y?+????d????%?!Ok???3?Hg????b?jZ
|
|
l8?-??Os?3P?@kI#?D??W?-J???Q@Y???`ot??O??c)p?P;?Fި???N??E??!@k??V?<???{s?ſ???Q5.???
|
|
???U??
|
|
{???fQB????o?????kkh?_????
|
|
?H1Mdt?iO _??mFYZ_W]?,)*-*?~G~??+Q<Q?D?ڕ?$??q???J":??=&?????2l??3?-?p?D?OVaq?9???u?c?j???W?c??1???o??Ϝ???"?e???s?nE????c?1G??`?B???B?Zu?????n????W????>I?? ?L?/???g?J??WExfOpU???W(??ȳ
|
|
???R)?^%????? ??.?)??|????U?!??Y?Gx??[|??O???-?{\|4?+?? ??|???χ?|??? ?8V?s?????#>A??
|
|
x???<_?? ??(vZ?/p????L?%?9>Y??\pU??????^??'???Qǎ?PZxV???<???K&????2????U???[??ArM? aX.?????????)??/?0L???4?aX:?w?p2?a??w??YbZ;???A?A?X?z~?0??h?
|
|
Ôꯢ?W S??J?/@?P?J??C?B
|
|
?
|
|
a??
|
|
|
|
?a???>???Ρ??? <?֟????h?i??K?O??@x??
|
|
??\Z?????????@?O??????-Χ???&O???? <?֟?WB?rZ??W???p5??C?O??!<???<?K ?????L_I?O«W?U??Y???dDu????I?
|
|
?/????????HG??!????qX%ݯ?K'r)??[^Fz?????????k?y????} ???]tU&??s???,??@??2Z????2?+;?9?˞?E?{??+Te??7m?`?_3N;???l?%???Il?X7x?5{?bEYw???????_???y?OO}???>?x*?YG?Aǿ?#?~??F1e,?Q_עD??9ݱmїI?????Q?_!-???F?A?f????Hb?u?<5?????J???ϑ??nR~>??*???'?!?fG_g֡??@!?q?@D??0??d}g?6N?}K?nC???i?z???4????w9?MKXE/????%????}P???3dq?=?k???;78?d>????>T?t??B?=i?????[_??s???I??H???$????ײ?@????^R?/`??
|
|
_E??߀?zs?B??0?1c?Cc?d?T?1??=iM?x{7N?no2_?????]ڈ???Ik?V??1j?O??'?? ???P??`??L??Y?,?;?̾?ܧH~??7i???/;??#??P?p?%&=??~?4??uO??}=Ea<????g?io?i???^O?W?h?????<%???yV?????&?6?5?ghO?????F?{?`h??g)??P0џ?>4@o??)8Z?%?>jx?nH???ﶒD?'i??Pu|~??+??D????D)??????K?wOk?k?8Z?
|
|
ɺ???6?V??ݳ`?6?v??????u?V>+__0|?_?*^'????Ϛ<?!??????!??5ڢ?^?S6ʮŸ?*????????W?u?lo$???Uuݿ?>?;???????綏?B?=??-*????g?zR 8?W??????2a;?>*?$5?w?{?}?3??'?9l?W£?Б??]g?پ???دu???w?
|
|
??58????? ??!9"????7?u???|?qb/???Ӛ??`???w??Y|?)f?+
|
|
??U%b?df??u?t?Z\?,?????8?f???????n
|
|
?Y?e??????G??P??n??E???????7ߊ??S????.??q????b?R??????Ĝ????`??????9?v?\Ŀk????e???mry=-?Ԡ
|
|
?蠟?S????V?~?9}jp:IF?P???@q6?????'x^?˫?Xi_`@I?R?S???쓃??#?f?W???G?? _NF?(?ݳ?, ??ȅDz?l$?M???????%s??D?M?o?\H???????T2?Gd?????Q???Hd=?^?'?n"??c"g?[?? =??S"?4I??T?6?$M???;?????ܚ??Vx??,??]?=??.??,-???1? ??w ????$x?az?ؒ?`ɤ?ݘ^????9?{?7Zr?%'_w?????
|
|
???ċ????N?|s$???|?ȿ?????H????N|K??d?%o[?R???ϖ????%?C?9?D???pFn/???3z{i? ????ɒs-??? ???Bz(??rƼ~??$????+?ے??L!?9???k?^-??r?qkH? T[r??\m??M???w??-?;?[???7Y*??z??aiXc?ڳ,?v?JR?ՖL??zK?R`?ɿ?D??D?P/?;e?E? ????[??괃f???be??j?Cz??=||p???[liH?ɲ??i??]??k?????k?????k??????q???>f_?K???UQ?]b???g?{?H߅^G??O뒵?U?WEّg?o??K????{)??#??C???0???x~$?????w?,?w?ς?w%?[^?~&̿/?g?????'?~?Ϣ!?ۊg?c?M?7m?7uhk?ݢ}???|?NJ|??o??w?h=???Nn?#??}2??ߌ?1????/??3?{????????P??G?QNCY?r ??Q??܄r'?{Q>??1?Q???-?(???(???@???([QnB??(@?ʃ(_F????{??55??????ղ?yE?j???:[????mE%3?(E?-C?&"C&???6_gQ?+خ?l?dL?,f?k??$.??? !?????"??k|v?я]?~?]\????pmt;?[???t??<????L?AV?N?P?\=???????7?JQ??F??5??Bf?wz<Y[?x??n??Tm???4m???tm???m?????'3|?r???ԣ???33|?Re????P??EYs?????z<G[??????L?.P??5]RȪ˿????:???k?F?OP?L??2?T??A#?B2i???o?6?g?Ҁ??7r5???7?a8???\?D=??????????
|
|
?'&1|?wP?,.??q?w??w?ҧ??y????f?n?$1???
|
|
o?A,w????$???yj??,?n??7`?.|???_D?0? ??B|/?ň?q?|??yT
|
|
+w???k?2??O????o??S|??睊?C?W?_?????P???????_f??z??O?m[C?y?e??R???+H??????;vQ<z?~+????'?w?ϩ??5g%????e2???O??i?~%%??E??&??J3??y(?ܯ??=oK???~@?????%??t?~Y?n?w?5????>??G%?o%?_????????}22??L??s$?]???0??j???&???a??g??U=.????s???r'd??Uf??m?f????g??_????m?4??R(7??Y??wT?+???????d??le??~J???d???~E?x??R?ejk?J??<???)i?%??tn?{]!??Ma???d|?܍???%?śj?k?h?[!1FK0W???&???7+?I]?䝅)t?O??V>??>(??2(????<e???!?H?? ????3??RYW*N???k?V,w:?Wb??Z?2??J?k??ѹ%?cT?D?*z?ci???>m???E??%?w??|-?ع????eu5m\VCiB??si??j{?sŒ%?j??v?57su????????Ѝ-?US?NWU%:?1?V????mI_f????2K??d|_ո^??g???????51?Lo?X???^??-1?7mgW??v??5#????g?E???9=s7?(?h/?xGʝ??:?9??rI?{sf]9???Ɓ?A??_??^\?????E?;??gm???Ǹ܃/?)?????s?8Zn?^??v~???vP???q?d??(?????|_??*%b?]????????;.y;ۏ?-??0??㒟@?&??J??.??ʥq?????ސ??ri???1?
|
|
????"ʩ???l~?!???r?!????0?7??Wr?2Ր???2?Y????|???T?+?q?|]ag_<Y?w????e??=?????|??:?<?1???????? ?Ԑ???Ua~?a?T???????#?H,?y?x??g??yC?|?wn?UJ?????ھ?yƏ1?C~??ۦOg?ϯ?#???b?.? ?2??7r???3
|
|
x?A????0?{??b??HDq [%??t?Z?^?FH??Z??]?39????.s???
|
|
q? ???s??????????UkIy??2E-?i?P0*???q??9?c????????Ғa??O?????*Ļ.????Yzi?<??,G??c?`?>W????:?y???pY?7O.???-ȭh?w+z9T?????x??r(???L?T??MR?Fd?*?vג?L?[?0??o???Q??|??{??pW?c?s?7?Hێ????p??Wj????s6?zٻ??bnA??'*
|
|
??%Kα?$?g???)??2>?i??,?@????J?;G? 9?`3?ےrߑ??$?-?P?/???D?u;e???%?Hʭ??c$????????.???DπIR/U??oH?=&???H?l????3J?^??y???|?=^I?6??g?DO???u?????2?Oo?S?9k?S???w?Æ?查?s?j=??o?F??&?F~?$ejE?????Q??zZ?!?k??Tvn]U?86?t??l?Z>???A?/?0????*?D?C??n??O?7?????N_????C?z!??O?tG???/
|
|
n?????0 ?}ͮ?vp?Κ????mv^????tvȲ?֕??l??}h?????-?φ?[H3?o?[$'3?@Җ?u%?$=?z|b?66aktBɹQ<?VT$}]0O?A??G?tUV??n?E??K??2??~:[?쯁q????H?@)??m ???H2:?0??RSiC??d?7?Q?8?(?w???Ζ7??9?v??!????2?4??0c?msovnt???I?n??F?LQ???A[???!???%??b?K?h???????2?"ҜnWs??ұxX??vUN?
|
|
??????:$?N??
|
|
{]???jvEs???????I????災"]?;_J?xT?w??8w??3??!^i??????{W?~xn?gmT??s*?$???\|?yZE?J??U<?{P??*?V ???jp???B?/??u???<???yZ?vyZţ???U??yZų>??U?oyZEW ??U?oyZE
|
|
??U?(yZE?U??U|?yZE?U??U|?yZ
|
|
???*?h?<??ˣ??*?<?⣪?ӺH?E?V??U?i?D?Vq??<??k???*???<?"???*??<?"??Ӫ
|
|
???*?<??{P???<?V?Z?+\???p???!?"o???<]k\?^[/?3?]??3??m7???"?%???[?Ż????
|
|
??????? ?>o??\\??|??#??|???????_????>???s>^?|??????ޓ???+_????|=???z>?@?????|=oS?????|=??|=?5?z>??|=??|=oI???wf???wJ???wb?????|=/?'?|???z>yz>ޏ??|?????x??????}!O???|?????<=??yz>އ??|????x??????f???K??Sh?i?._E?O?_?p??
|
|
?ᩴ?4??4Z???i?i?
??4|?g????JϤ???k <?֟??!<?֟??Cx????p????p1??9???????D?h?i?2????p?Ki?i8?e??4|v ???????̍?g?h?????O/?$JW\>բ?3?=????Xd?Y??α|?s1??ω|?7N`|?k&D??K??8??/??K???4.!>?3?U?3?9??3~???^????xs>㟎1?3?g?g??1???Ɏ???ݻ???>?k?Z???77)??~s$w???1????N`}?dU?V ??vS?WYv????Ӧ??O??????
|
|
%??b?V:??:z*?y6????J\S)p?*?? ????d??F_???j;?Z?4o????V?"?q?̇"r?g?"v?>h;v???{f??{???')??d0?a>? :??????/0M?9?)=??d0?b?q?yk#|?`??G?a??A????????D??O?2e?#????{)??k???5??:?????h_??N?;?ɱ[ϟ|??<w??p8??6????<C??????<GݷPVZ?*??I?,Zf?ђz?B?!?0?W?????G2h?7F ??<?_??ĸ???ߡ?????#e/??=>r?ɜ?5?w`ԯ0??Y????K)?r???????~?\F!???W?+O?Ƶ??Y ?3< #Ǟ6?_o??i}??I?a?.??$??"???O???S??}D?{v??y?c?zU??GXk?u???~'?m??R???O3N?"д????w????
|
|
?;??*??ȑ|?wge?ȢEgc???6]??)t???=??t320wP??ƒ??}$d?t??>??$?F?gP`$???F??????g?{??ߘ_?Kc?/?̝??GКj?????>?0?;?`}>d{.??)z??3?RE??(1t???n?mX?2hs????_????)?zM??E?CU?|M????<???S??t?L?@??m??6?_uzn??$.t=?????Ӽ?p2?멲2??֒?Y?7 5R????p??/??=G?rto-?qtA????{?cdԇ?P??gGÝ?<Ţ*???j???̨???p????8-?? v?%?Z??R`???2/<?$?锚~Y?????>TGj???ss????40X?o1.#??h`???'0V3??s-,qpbY?Bl?l=E??Vjkm?????$vpVl?S[wɐ??
|
|
?????
|
|
??&???ɡe????
|
|
?w?QOR-?b?m%??????ܣ!????D??&? ?!???1w+???DÃ?1Hՠ?7???2?R??^ -Cq??:)*? {??t!?Z?????y??]Ǚ??D???[onf
|
|
??%??a?=N??w>?"??0? p*\q?72? |3г ?!1?gU??wt1?????]?6?????"h=???????<ɲ??wS??`{????cam????z=*^F?a0??G`Cj??????u?~??F????>??U???i}^I?r??I?)?u?O??md]?t ???^?tH?Ȱ?]?kxM?~???W???????Vh?A?E??p?C?__PHS?!?IL??? Iw?
|
|
)2L<J?m%??"??7v??Q?? P??%??}???њ?X<???4ʣm??<k??J????-?J?
|
|
ZU??ŏ?^E???/}???r,I;???{?8%??!{???gHz)??x?4^t???Bo?z?_?????S?z&?&?u??0?/?;?
|
|
???-???~???ͼ??0??????(P?M???l??;???-??t?|???8?}??????????~5??ܮ??????
|
|
???ԓ5??y??iC?ΠfNQHE?^???h??v??]?m?!??$A-?©??$^?N?kcS?????+?AO^??c̙?KNK?W?G???rB? ?=???<?M?s?58??^2?o??:?|?D·?<?x??#r6???
|
|
w3?[??'"|??????/??%??,?y27o~z"??{+?????I?
|
|
?o ?u?n?????7t?d??X??7g!??i???N?WA???s~r????AO?
|
|
????????~?X???X?wk<??[/?>?^??b??߬%?y?%????????????ד???N<K_?b???MPx]?x????5?ߴ???~?Y{?????A???Eݖ????ڒ?td????_?j?/}??24[r??,?О/?ٓȗO?{????????۴x??O???1????Y?Ӫ o=???;?mK?%??+???j?ڛZm)?;?n??L?[*?e,?t%?(IY?J??-??:????I?]Iv?D??~0^?ȳ?????Q????;1W??W??/??g??E????????NIӇK?jC?zC???n??0?c{????O?????R?l??????q???}?@??X???;?b?c?=ޗ???=?c???;????????m??p9$???p?Dy/?P>?? ʗQ??r e:v?x??PV?\??z??(7?܉?^??|?A?/?|? ?t ?QNCY?r ??Q??܄r'?{9o??PD?2ʷP?Llj7?4?(???e+?M(w???(Cy%?.c???????4?S??C??i?O??/=???sz<?{Y??P֛??n???w?
|
|
??k????d??E9f?gk?=???_????A???Ŕ?r?????.????=N?3<q~J??R??????? ? ~??????c?.???=|????
|
|
x????? ?*???????ڈx?ڣb??o;?!~???Rds?H??$?-Jb???z??k?ӈ|???zm㼘????\??ſ?x
|
|
?w?b??ˋ?7 οqy[ ?~>??&?IV2?Y4?ñ?,??????<???%??o?????????"d?-OH?Ϳ?WR??&???9L??KTJ??s??$?}?v ~???Z??&??H?Ts??i??r ^-??%?????!]??ߐ????}>!I??Y??#??$~zS$?< ?\??I??<?f~;_M3????D??$?$?9?Jҟ??c%|??|?o???$<?_O7?#??D?O%??%??<,?'Y¯y?/?0?w?g??;-??%?ܯ??s???s???I?+??mgd?? ^ ?? ??v???%sm??4/$)#??I??in??nx?L?v?eI"~Z:?+?ͫ4??Zj?T??T????Nxa0m????r?)Ѵ?$90ZF????e2=zBCc????k???a,g?X?Jƈhp?c.D?????\?9???E3??DM?x?N?q\?dQ?`|7??{???y??|?.???2?????htKܭ̜??????cL귩w?4?_3e??vw͡?t??]?-?k????I$#ޖ?=???PIFy?F?
|
|
?:?չ??rD???D?:?K???M??ˋ?܍????M?}1.KEg&%>?$????$?7??ٸ?R"?'?7????? ??M?};.?yF?|?????????\v\??M??V.d8V??7??ǹ?P?I????ӆ?WՐ??7)????o????\??P~<???_(?$?=6?<}<?I??z:??F?Im???+?W?F????@?I???ؼ??4??????|?^$?$?7>???.?o??X?ɳ??7F'???$?L?o?(:E?5???M?Ϻ???
|
|
I??XVQ^??qHL????3?N?04e\D??TXM?_`??k??c???4?E??ܹ???b?ѿ?????5|
|
|
_????H?@ ?
|