|
#!/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.7_amd64 subdirectory
|
|
--exclude-subdir exclude the gobject-plugin_0.1.7_amd64 subdirectory
|
|
EOF
|
|
exit 1
|
|
}
|
|
|
|
cpack_echo_exit()
|
|
{
|
|
echo $1
|
|
exit 1
|
|
}
|
|
|
|
# Display version
|
|
cpack_version()
|
|
{
|
|
echo "gobject-plugin Installer Version: 0.1.7, 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.7_amd64\""
|
|
echo "Do you want to include the subdirectory gobject-plugin_0.1.7_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.7_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.7_amd64"
|
|
|
|
echo "Unpacking finished successfully"
|
|
|
|
exit 0
|
|
#-----------------------------------------------------------
|
|
# Start of TAR.GZ file
|
|
#-----------------------------------------------------------;
|
|
|
|
? ??V ?}
|
|
|TŹ??'!?f#~1h????!?MH$?a??˒l?-!w7
|
|
oSA.1Ʀ??????{???????֢??Q*???R?z?m?Rmu?V?Q??yf?9;3{fw??ی?yv?3??Ǚ?3gf????-?Ҷ????#s?:???sڃ?Ȝ@?????U?n??s?\??D?+?]??n^Y??t?U?**+?V?\???UV6?0]g?oJ?;?HQ?;|? ?%gu1-?7?Jg? ?????|??n?????k6]%s]%??f??o^C?9??+???6[?fg0bn?Z7??Jsss/?v??[M???Y?????e?5Wy??/[R_?r?w????Ըjq?Uޅ?뼋kk?+?ג+Vz??֫??????^L?t???ِ?c^??XW?~???a? ????AK]}m?
|
|
h
|
|
,???
|
|
????
|
|
??Y?O?˞F????m?G???]~?x?L??????i/fJk=??????5W?:??@4????0Z?&V?)C??S???NV???z?D?ZY????????t+? c?'zp8?n??^??v?/O%!?D???I??}?I?njB??k?$݅>??ƚ+??w??a5wijf1F?y-M??ÎBM?]S?)攴?ɚz=?L?*h??=QިI???pHe4X9?rNEAS(????lT`PI?-???$Y5tF?!?t?B?Έ7???V?ZuH?P+]'YctB???"?2?ȯd?YŲ`~̧?5hȥ50??L6-3????W????.#?rM?Tƕv????`'ְ?e??@?LZxo?Uu??y???,&r????P?_?w}-??(???%[??*? ??I?畏??????=??w?߸???~??3_?>?Z?i??B??6 ????j?>?]?+????X,]V???>~?HTw????"?q?KE?D]Z,??H???,!?Ec
|
|
͐|?Ȕ????,?懙???1?&N??c?m5$[
|
|
??K???Ť?]?a
|
|
?R??փr??W?be?F?.??
|
|
???X>?+<T???,?=????"??E?g?PK???l?V}??1?i_????5??L?K?gf=?D?m7f?tmN?m[v?}?q9???+m?y??j??&?mn??L?N???S??)+?R?ǖ??S?f??Z[??%[?WVV????ʲ????G???????mw?Gk???<F???????Y??n!??u?R]??t??a??(??ċ??? ???pv`)J??~??BK?z?`%?jJz? 癸D???'???B*????6?Qۗ??y???c?"????B3$??̓JF????4??l?>Si?$ݟ [
|
|
?F?????)??|????? >?# l?JȥO?*6??Lؽ?R?????????PU?3
|
|
?/??????M?K????h?"??
|
|
?g%Y?u'8U ??G),???]?9 ??3???=??\??/s???[?.???<?D? ҂????;}??.a?3BĞ ??յ?A?J.nn?C~?V?1?q+?؉???kHҮ?u?f??*&n??77????????
|
|
z?W?Җ`Q??M+???wn}?,fܖ?/??
|
|
H3??? ??E??ۮ?([G?I?"DX??????b[K!??[???X;DW??????O;G?XF? ???˳5w???U?%??????}$??]d?W???U????Kr???PvO?????LU>?{!?)_? ????~S?RB?ӚX?,`-??KE???qOHI???}?J?2??s?????G????????Ҩ?[?q?[?&.N?&dC?~??˺??W?g??g???E????#???k}??m
|
|
????U??<
|
|
y$?????OEe%??UQ16??
|
|
?EV??MJ?á\?&???[؏?????o ?[K ??',? ??{????=??:?9?????+?????6[?!k?X????????
|
|
?????pI?5?P?jr??K*sIHx?9???V????W????b?qM?uBi^%]l?l??[???k#???}Y??'??:
|
|
y?? G????%??/'???e?Y??`??G?p??????<F?????7?????=??̅g8???????\w?\u??*?;?????/?7.JOK??ƕ???g?j?w}*??ڨ2Ƒ?3?ҸY ?g:di&??e??w????癒<???L9]:?{?|?>y?)Ig?!?L???H??5?ȕ?,y?W?t? ?:'?嘟?~k?~\?'?S??7?SϏ????v?????3?v?????????ݾ ??_?k???=???????7???
|
|
ǟ???#m|??Dye?ܜ?e?Nԯ??584?i????[?g?&~?&~?&??h??4?4????,'?O???Ҡ?L16????K˓ktM`???????1?(?"???Ocz?8??@??Y6?q
|
|
?'?e?R?s?Ó?????x?m??^?U#^??
|
|
t"??ކ?K????o??r??ڎ`???|?0?o?&(?un&?%??1=d???6z???]~?z/;x?֧???AK6n$m???O??????????%?3??wR?cw ?Ȫ:??????e?8H??;?7???Is?<c%??ѣ??????m~?v??wz??s???.??U????6h?_???????YGڜ>mu?I??Ɔ?????r??!?t2j??{>-6?vO???c??+??'?^@|P?????/?.ī?D|???w?2??{0_??&u>|!?a??#.ݨ?O?.????B,?8#6W?3<C??\|??\|oV ?S??|??{<G??\l?k\?
|
|
_+???]??v?l{-?ӗ?????6Ɋ?Q?9?Y?p?3$hx?oȿyV?_?פ??7?i??c:D????th???4??^? ??vS?}??&??{?M9?C?_?{?????4??Z???4CM?+??I???????%yn?u??{??H"???guA?{??yܳ??cci?X3?_3|?5??:?X??????w???3y?S??Nexz?z?~ړv??S?B?싨l"S?ҫ?z??D3?/?l[?Y?????L??-x???sH??ϚY??ƒK??c>?gۧ?? C7????$???f????Ckh{?e?J??6؝{0+
|
|
??????$?'?#?vjx?ӛ?*]c@ ?C^eޗ5???=???9? 7???&iI?e???#P??rXJ??zqt???&??{?ӻ??=ȩ??Z?s?;?ۗ?#?]????}?=8?]?]??????B?]?????w??o ??1?(d??Vnt!ͺ???{???|??f&&?f-W?6???x?q#?܌?W??urx??8Q?DP;i?]Ŀ?ȽN?D?#????<u%Ϸ?Ŀ?H.???q?v?r#m?3?܉?rHX??kS?? Dp89
|
|
??M?)??????g?-??ӓf5?$e?"??_O??D?t?`|X?ug?#??w`|?2?3ԁ?t?w?ù-=????K?O??Ť????`-k|S,?
|
|
b????\?17??ܘscn̍?17??ܘsc??)Wj???N
|
|
???5?<?|???B?P???Z??O????????|O4
|
|
7?2?7?{???h*?????<>?i(?><?Z{????M?????rn??d~?˻A)?y?????q???y?(?@|???#ㇲ?rVaz????;5?ʿ?????Q??`?????????U?+x
|
|
?V?Q?@y7?{Q>?? ?gQ????,????;??`МWrY?\??
|
|
?pFUQR6???Q!?[Gd$?d;????]???%-?;I4&#!????<^?w? "???%???$??D????%? =?*?{[C?
|
|
~o{K(?c)?>0=b)???7?h??-?L?
|
|
?fR?`??òd?ׅ?FIsp?8?L?2Ho??C?ӭq!?????L??x??e<?2>?/2???????S?x?y4?'7?⓬?2?0???y?|%?Nk???|c?-~?u?(?m?W?}?9??X?O?ƍ?ǟ?3?0?n?i?9???̍??????4?9?N?ϻQ-??????Z????w????9??ߤ???R?OKc???{(~?у??A܇?{??wb|C??]??s?-?ͮ?X????Q=???U????w0~?sL<??LI??g2W?ק??W????i??9??~H?&?=???X????YS?c???R
|
|
2???ΰ???ΰ?Dz,??^????5xo??=??5?| ????/2??????_?(i??jY???'??WiZJ??
|
|
W???n???_W??m??"????mYc?X???S????`WuZ?ލ?_$??Fp?m^?n???i@?}??Z?Vh??sk
|
|
cE??q??N?P0D???z?}?-p?j?6?t??ZJ??5???-?i?.[?hE?J?? 7Jr?)?bSY?O?&v?+??OI?Y W?t??[eI?O?^Ԣ??ߦ??3??4?_S??Z%??%?g???C??????o>??u#???g})?glI`?T??V???8<=o????u(???zU]??հa??|??%????
|
|
?M??|]˥i?ʟf???j??yxz????????/??9?ҏ?I?7bwy??y?K?=͝??_????n.??NE?W???????甽ƍJz?n?R}??? ӗq}ey??M?_???????????˳?????l??C??3??^j?2?}n????=?>???7,?OϿ[????Jz?.???W+?3س??c????)?b??]?V???K?/d~??|?"?????(?????????.S?????9?xz??܄?U?5?????????j????=??5Mz?owOh?"&]8??=3ۈ???k?ā?%?f[c?}.%??3?c???????k?????+???y???/s???n?7?????Kl?9??|???ˀ???r???|$Ng???y5?k?biFb?y?LY???Gf3??lS?O??????3???9?$?p?¥j??y ??C??e??????.G??s????{?/v??i?s&Mع?ȁ?
|
|
?????o????;?gn?yp?s?eS???????`???]?q?P?ߟ???p?????1?g??j?!?i?yuv?:{?K4???ѿ_??h?a????G?oה????h?5?_???j????Wd?????ZSN详
|
|
^???Y?o???<?_j?y?&???j??????Դ?QMy??WS?M???4?N??????jM9?j?ӡ?ѣ???????w???Wߥi??d?1????i
|
|
???y??\ڝY?hP???Ok/`~~~y%?EW??V? ތz??H?[0_?<??y??? '??q ???۪??:????9??9'?v?????&?nܬ???[?7?t?:??Vo?/????t?%??f?d?R6Y??????C???:?a???w?|???;?? 5;?}??#i
|
|
??j??@q?zZиC??[?? m???%S8?ye?m˴?˥?S?4& ?D?c3i??M???8?r?L?#AҖq?
|
|
v]8g2?<Yo8й>Qm??G???'????ع֙??]?b????ovIU6??~vc??AJ?yi ????2????(#?5?????
|
|
?h??a48P?E?>lII????"ĥ?D?????N8?,ݾ?zo$?e??i&?b??C?Ϳɻ?in'?uC?f]7)4׀?,b???HEGi$??EF,
|
|
?-???W???*"???5??u?s)p!@V?3?X}^??t?i&?=Ow4?P?9???K7?g??Fq6??&A?????N??%???Q?????92>??????2??Q?e?B?߮R????\??#࢝?^?G?? ???9(?s?Iwx!n}??Hx???x$?p?^U.~?W??#!????K<.?H?xU?]?ūQ].?Nlp?G??|????p.?%??|?-??x???<${?J?? ????R??~xH??ۊ?|??p??;*??
|
|
?Q?O????n?c??#?
|
|
?S?M/??????X??????K?*/?j?!??D??\<K?V?g
|
|
?Z??\??3?|??o???R?)??m@???g??? 8??p?uٖ&?p7\??4?wyg?w?????4???i2?????.?L??]??&?<>M?wyx?????4???i2??=?D~??_?LQC.?~???L?~??????0
|
|
?3?a
|
|
:z
|
|
?!?;i?????ϧ???u???֟???ɴ?Կ?g??S????S?B?O????????֟???_H?O?????֟??????O??????ϣ???\?O?O??࿀֟???J??????o??S?+࿈֟?_ ?tZ???/????g?_D?O?O??????Kh???a?_J?O????֟???LZ???h???k???????ٴ??;????S???/??????_J??>?h?O????2???S???*?I???"??|*O????'%??_????S?z??????=??????A?Sl??<?
|
|
?????\??7<0 z??;1<??`??az???v26???ZҘ?Ad??ʢO???RuYN(y-%???`9 ж?Tu?%??G_9Iyy~? P?r???Wyz???U??G???~́}?U??4
|
|
M?????=??f??O_?b?Y]Q?{?j;?Y?4oʉ~??ZA?x??7?pF??b??s?_<????E?^????????h????]q?:??4-tҦ??5?x?N???H&???k?????/?'m?&?H???%?Dsx?ӻ???A??嬅?k>????????gIIS zY???8???n??sI!?9A??K_.??????S??7?#????p?<??ϛ簧???V?Q??? Kri??N??a?A?N???W???:@?=9??{f<?O
|
|
?????R>Z???ߡɏ???m?!??&ZЃ?]?3???U?rڊA_?A?S??'??*o?Xg?????H??u~4?}ָ`??]???W?????ׯ??lZ?/??v8?}1???,?F~?N??N̢??}?N?%6?o?Y?jE????h?}'o?A?c?)9?#?~?q\?zF???o?1>E?n$?sY?Y??WW| ?6C+8?????y5???h?^?????X?~?r3???G&??^?~,|)????????,Z?{Ʊ?????AЈ?dᷲ??+?}YM??}o2????:?T?-???2?~?Ta??0?t???qJ??5?RE?ޣD_??Hw?:??g???9?x?P?{????_=?{W?~?Ӛ?<?s?????ۇ???co==???Ȱ?o?:sߓg???s??c8??-??Y??&Q?!? MP?*???[?̃5????ft????q?k,?r?E???n)rzz#E9??uEt????A?룏Q?? ?????z?S?d?y
|
|
F????C????g??#?B????-E.7?-?~?>?s2?
|
|
ni?j?K?4???+???"W?i??'?R2Mj?}/??]?????Lq?e?S\?{l?L<N'2?VYsm?m???A쁎[????5?.??x????"???鑥???rk?}????/???-? ???!?$H??;?PW?&? ?? B*?w[?0V`h?0+?D ?<??Y?L??<?~??%ƫ+*??%d?Y???:m)*4"?м?Ѧw?>??????_p<???陴a????_9???o2+xދf??Z Ύ?.?~??oE??҅?x5?^#?#9???7?|?h??<2???.????$ɵ???
|
|
?r
|
|
ۣ?=??+?h+F??n?^ODJ???C?0??m(Cf?y?'?y{???AoV?o??*o???y?M?M???i?)?u}?NnzߠS(?H{????n߿???3??q?b0z?m:"?0?{߁Z
|
|
??r??/??{?7Ә??&???q$?? ,hH??PĽ4???A?kh#)? ???Ȑ?V???,_?њC_<??-6?
|
|
i[l???????#????u?*ѵ?m|W?Up?+oa?ø?L?M?????9?????G??y???&?
|
|
??Ј9?y??U????s3?t??6m??*͟W>ߜ6??Z)?Y??͌????84???j???????P2????ppKKG??"?y????????h????"??'?{?|??5/????Q??`w';ɼ*h????Mvd6?Z?t?f$sPi{p???^?*?
|
|
?~?R?h)KTJO?57??Cͥl˻T*P?g?"???S?3Z?ݝ;???IO(??f??lQ^o?oú_??=?$<?<?????&\s
|
|
?u)?4}??8?ڄq????٤C_A&?+ȸ?9??A$??ȉ?ǟG?l"? c?z"?'??????/?Y?y?ԑ ?z2֮'r?[????7?<??y~
|
|
????????k_?w?4???????? P<???:r<?E~M虻H?
|
|
?a??H?I?a??9??-? |%?Ѥ{Y?>Q???~Gz??p[F?Õ>??($H
|
|
dG????o@i?VC???an???O??QXK?t???N??t?l????H~???r?u3}????\??3??~?J?i[E`?B??; ???oGF??ܖ???q?#g??E,?BP
|
|
?i??'D?n????ov8ӫ9О?!??w?甶?2ޜ?????Vx???l??rH??~?k?u?*??z??D??;?/?/tޙ??a?g.tߑU?p?ȮqTmW??I?0?rU?q?8$?BZτ??4?δ?@?j"kI\Z??GI?9?????1?IsΩ??P??ߧI70??F?s??????Δ?/*????,?_????g?z???~??H~A?{]?z??[???ϻS?k*??l?X?k??|Mx>g?mb{?????2^?'?3_SN??Ԋᜯ)?]??E??ͫ?<ĭ@??5([QnD???(?E? ?(?E??c(??px
|
|
?KPV?\????(7?܁?n???|??Ϣ| ?1??ء???e?E(?Aيr#?(?Fy/?Q@?,ʗPC??s
|
|
?KP?{!c|Y?˗Ul?X???;<Ӛd<˚?d<ۚ?d|?5_?x??\??7?vx잯????5_?Z[|?e?"?c?ϳ?2??2?o???2?y????#?????d??z_??k??x?}j??Η?x???Z??l?f?u????>???zb?>??S?S?݆?M|`??߅x
|
|
?ـ??????99??n??ݏ?4??.r1ߒ4?T?W
|
|
?k=+?X??*?ږ??[?^?o`?|=??<???Q????ĝ??;9/??????4ƻ????t?ӥ????,??.?<]J?,??C,??
|
|
l??????????i?O???X??t{; G?????w??+??Ks4?k4?R
|
|
????4??.?{{??4????????|j???H?&?u:{?L??s?&?N
|
|
~??O????_???kpG??_i?r
|
|
?Dcdz,???&??ӭ????&?75?C??5??ܑm??̶?4?i?5?U????[?<?????l{;??4zr??ۇ?????5?^???3xc^?:h
|
|
?|???N[??ڕ
|
|
ˮ?zK?*?6,r????Bc$$??8!???<$??N2tQbvXR?+.+??WĪ??T??ơ?^X?۶??FI??B)?\?D?l??\??#S?E?W???.u?D?U???F??g%?,?R5??7?Jr???ΐ)f?????H??%2?Kb⤳X?????)??U???l?Fd?gc?o???fc?9??1U2?<???j?֢KkW)L?ؗٲ0ƛ??9?h??? /??[??Dvz?G?`B;֘??b5?1?T?&?ִ?q?z?N?e???x??+%??3v?x,?"?*?%????p?:UK???啢???ǒ?#q٣???%?o????c????)?%߿??ϧ?c??[\??ǒ?qif???X?u#??*w#?%???2UK|???(????^??????Wy,????W?O?c?a???X?}£???'?????SL??XZ????H?_??U???s??Ty,?>?.4rm???ZK?τ?2?$???]??r<5=w*?%??݃?՝?Ty,y???|ӟ.?? ????$?g@e?<????T??????=?ۨ2,&??;??R?s?[???G?t?okq?F|??0F??v?4Y??okq?z-?s?_d?5?o;q?n'?
|
|
s???Υ??V?筪?b?r???t?ۍ?
|
|
????v?k??_gd?40?C*???????7??~??w<??][>??Wf??????pηT???*1???9???:??:?yķ4z??ďj?S=[4???=?+M|_??/?RS??j??5?ީ???A??s????????????1B?0????<?ʹH???`Ae?????_????,????o?ߋ?R??E=?P?^??_-?9?߉?È;????*??:9??q??????5j?\???Q???
|
|
w??q?%???7?I?;:HN?.(??H??R????oݺ?x??Ғ????U?#?c???!?nsul]?μ?H?us????ti?$4?Ķ????X?A??Q?A?P>???i?????3p? x???ٻ̳?n?:?????Ij???????q=?????;q??s??wqr???|?ߎz?N?U?}?w(T?A??'\?V>$?"o?a?i
|
|
M???* ???Z,????%?⺶J??O?j??=.??4 ?)??
|
|
??g?V?E??v??\?[?$?"?R????e???W??"?%???n?????N?+?"??>?x?\?Up?WI?E~??.?* ?ī$?"??Q?x?\?Ȼ?*???jH?;??????|η~?o??|?o'?/??|>_??Y?/??|._??Y?/??,ɗ?v??|;??e???|?ogV?̷3=_?ۙ?/?휕/?????|;??2??N?o?-?̷?S??y?)????)??<??v?v?|;?;e????2??N?o?>?̷s?S?۱??????8??b.?K?/?j???????ż?H?/&??a|1I?_??,?9_??<{??{???Æ/?/?????܃Y?
|
|
???(?
|
|
?7x?CF]?ӛ?
|
|
?s
|
|
1 .???2?L?=Cd??ч(^?x??7F???/???u?x?2?8?EIR????G?~?~?H6<?? ??JC??hQS????$??f????&?7??4?n≞{?1d????5???Nj??(?;?! ?R??
|
|
??fA+??x.z?R?d}?x?IX??N??v??RH?0(?M??˾??~?I?/???$\??%Ly/?C?z(?ˊB?c"Șm
|
|
9?D?,?Hϯ^C2??u:t?I?@?~Ƹv?"?^???A????<)?^& ???x??2F?ED?1???v??!?0?????Md:c??z%? ??&?xS'??{??x??X? |m?K???gm??
|
|
$???kY,?wO`[U"??3ZKs??? ???H?wB??x?Qo0??????l?J2?>\?????Or???$?i??D?v?')s?
|
|
@@?!?U????~??t??D?YG?S????}?"z??MzA?'?v??L?碡? z?ѷ????^!)b?\!
|
|
???4%?o??Ҷ?+q???7?/?K|9??%??+?9????J??J\?Jl?r??:?:????}?D???x??8G??d?&?
|
|
,?ȱ?0??lt#??????_?{??f?烱??|?Z????6[?!s???t3?j?7"?(tRi????}?&???y?3?z?{?û??A2(]???1 ?p?0?D9@$???&???CD?J?)??"rfZ2?!??r?^?kǏ?d??:{yHO??I??u$???.??[?????p1???????ug?????t??:fg?_?Ƕ? {y???;???Y?Z????ss.?o?P?(\???r????nS?7???Hxi??P?t?d?B?I????????gG؟? ??????G?:?k[?FG??Q???xM?:\5???????Q?X X9??U??}?_P????w??mY??v?\civ???A5}??/?Θ???mW?? ???nn?P?Eg?t????{]??Ru???\?<?S??rſL?U?????}?3??? ?7?{&??????:?}8߷K?>?(??{O??}??T?ڇ?>???)?A?>|??ʕ˙?>? ????ObBn?\??;~n????_܋?A?P>??%??Pf?f?????@??5([QnD???(?E? ?(?E??c(???NAy ?
|
|
??P^?;?E&c?գk_]h?? ??6?E????z??`??M?vx?5?e|?5?e<?|???[<v?*?6???6??ᓬ?%2?0m?<k??q?5??x?????:7??ɶ??????X?O?ƍ?ǟg3<u?j??{`?>??Ze0??B???^?`|??ߋx?wa|??7?s??F|7?H?E?O?W#~-????(???-??X??J??7?Gi?.????z(??9??OL?_D?P?c?ߩ蟑??????_?8?'? ???z????M?}???^Z?'??}?????????V??h?????3??L???5?E?4?d?߷h?Ŀ^?3??|)??>??5z~??_???4???4?\?]?BM?e???f??????????i??'???}?L??:???4?eY???T??ʲ?'4??_??=??e??+:????,??U?l?{HF??]?;5?|a4?D????????b^? -? ?7??? -??y??Y? c?Ř?8֕(]n?v?IT?
|
|
??t?4Q???ڒ?.w???B@?l3K?JWTU?+?mn`?k?[?k^??[??u?????mٛ??ؙ??&5?o:??qJv,??l???f??kɮ?I???K? ?_G۸Us???&?9?n???9L?p???H?M??mg`A?즡l#??_r?3w??B?O?.??ry7?R??ߵ\?},???d?.??r?\)2?P??̥i?ʟf??_????\??.?ws???R???.Gjʿ?<?4x2?P????+?>E2?P???r?v?|???J?M%?j??g??څ??.??]h̾??Gj??7?γ???.??lJ1?jʿ?{xz??????]h?????Q?v?|?e^?TM??څ??cꄓ?.??N?H????N???E9?^????](O?v?e??t?BM??????.t-|J^?O?Kl?9:y??ge?????K????MWټ??r?,?+^???߹?g2?????4?eYe???????Ο??sc????7??Q?
|