#!/bin/sh
# This script was generated using Makeself 2.1.4

CRCsum="546345585"
MD5="77d4f3e53a35349023038be44b80a2aa"
TMPROOT=${TMPDIR:=/tmp}

label="DesktopSecure for Linux 1.00.00"
script="./su.sh"
scriptargs="./install.sh"
targetdir="installer.tmp"
filesizes="76154880"
keep=n

print_cmd_arg=""
if type printf > /dev/null; then
    print_cmd="printf"
elif test -x /usr/ucb/echo; then
    print_cmd="/usr/ucb/echo"
else
    print_cmd="echo"
fi

unset CDPATH

MS_Printf()
{
    $print_cmd $print_cmd_arg "$1"
}

MS_Progress()
{
    while read a; do
	MS_Printf .
    done
}

MS_dd()
{
    blocks=`expr $3 / 1024`
    bytes=`expr $3 % 1024`
    dd if="$1" ibs=$2 skip=1 obs=1024 conv=sync 2> /dev/null | \
    { test $blocks -gt 0 && dd ibs=1024 obs=1024 count=$blocks ; \
      test $bytes  -gt 0 && dd ibs=1 obs=1024 count=$bytes ; } 2> /dev/null
}

MS_Help()
{
    cat << EOH >&2
Makeself version 2.1.4
 1) Getting help or info about $0 :
  $0 --help   Print this message
  $0 --info   Print embedded info : title, default target directory, embedded script ...
  $0 --lsm    Print embedded lsm entry (or no LSM)
  $0 --list   Print the list of files in the archive
  $0 --check  Checks integrity of the archive
 
 2) Running $0 :
  $0 [options] [--] [additional arguments to embedded script]
  with following options (in that order)
  --confirm             Ask before running embedded script
  --noexec              Do not run embedded script
  --keep                Do not erase target directory after running
			the embedded script
  --nox11               Do not spawn an xterm
  --nochown             Do not give the extracted files to the current user
  --target NewDirectory Extract in NewDirectory
  --tar arg1 [arg2 ...] Access the contents of the archive through the tar command
  --                    Following arguments will be passed to the embedded script
EOH
}

MS_Check()
{
    OLD_PATH=$PATH
    PATH=${GUESS_MD5_PATH:-"$OLD_PATH:/bin:/usr/bin:/sbin:/usr/local/ssl/bin:/usr/local/bin:/opt/openssl/bin"}
    MD5_PATH=`exec 2>&-; which md5sum || type md5sum | cut -c 11-`
    MD5_PATH=${MD5_PATH:-`exec 2>&-; which md5 || type md5 | cut -c 8-`}
    PATH=$OLD_PATH
    MS_Printf "Verifying archive integrity..."
    offset=`head -n 378 "$1" | wc -c | tr -d " "`
    verb=$2
    i=1
    for s in $filesizes
    do
	crc=`echo $CRCsum | cut -d" " -f$i`
	if test -x "$MD5_PATH"; then
	    md5=`echo $MD5 | cut -d" " -f$i`
	    if test $md5 = "00000000000000000000000000000000"; then
		test x$verb = xy && echo " $1 does not contain an embedded MD5 checksum." >&2
	    else
		md5sum=`MS_dd "$1" $offset $s | "$MD5_PATH" | cut -b-32`;
		if test "$md5sum" != "$md5"; then
		    echo "Error in MD5 checksums: $md5sum is different from $md5" >&2
		    exit 2
		else
		    test x$verb = xy && MS_Printf " MD5 checksums are OK." >&2
		fi
		crc="0000000000"; verb=n
	    fi
	fi
	if test $crc = "0000000000"; then
	    test x$verb = xy && echo " $1 does not contain a CRC checksum." >&2
	else
	    sum1=`MS_dd "$1" $offset $s | CMD_ENV=xpg4 cksum | awk '{print $1}'`
	    if test "$sum1" = "$crc"; then
		test x$verb = xy && MS_Printf " CRC checksums are OK." >&2
	    else
		echo "Error in checksums: $sum1 is different from $crc"
		exit 2;
	    fi
	fi
	i=`expr $i + 1`
	offset=`expr $offset + $s`
    done
    echo " All good."
}

UnTAR()
{
    tar $1vf - 2>&1 || { echo Extraction failed. > /dev/tty; kill -15 $$; }
}

finish=true
xterm_loop=
nox11=y
copy=none
ownership=y
verbose=n

initargs="$@"

while true
do
    case "$1" in
    -h | --help)
	MS_Help
	exit 0
	;;
    --info)
	echo Identification: "$label"
	echo Target directory: "$targetdir"
	echo Uncompressed size: 74796 KB
	echo Compression: none
	echo Date of packaging: Wed Jul 19 08:34:38 CEST 2006
	echo Built with Makeself version 2.1.4 on linux-gnu
	echo Build command was: "/usr/bin/makeself \\
    \"--nocomp\" \\
    \"--nox11\" \\
    \"installer.tmp\" \\
    \"DesktopSecure-1.00.00-COMMERCIAL.sh\" \\
    \"DesktopSecure for Linux 1.00.00\" \\
    \"./su.sh\" \\
    \"./install.sh\""
	if test x$script != x; then
	    echo Script run after extraction:
	    echo "    " $script $scriptargs
	fi
	if test x"" = xcopy; then
		echo "Archive will copy itself to a temporary location"
	fi
	if test x"n" = xy; then
	    echo "directory $targetdir is permanent"
	else
	    echo "$targetdir will be removed after extraction"
	fi
	exit 0
	;;
    --dumpconf)
	echo LABEL=\"$label\"
	echo SCRIPT=\"$script\"
	echo SCRIPTARGS=\"$scriptargs\"
	echo archdirname=\"installer.tmp\"
	echo KEEP=n
	echo COMPRESS=none
	echo filesizes=\"$filesizes\"
	echo CRCsum=\"$CRCsum\"
	echo MD5sum=\"$MD5\"
	echo OLDUSIZE=74796
	echo OLDSKIP=379
	exit 0
	;;
    --lsm)
cat << EOLSM
No LSM.
EOLSM
	exit 0
	;;
    --list)
	echo Target directory: $targetdir
	offset=`head -n 378 "$0" | wc -c | tr -d " "`
	for s in $filesizes
	do
	    MS_dd "$0" $offset $s | eval "cat" | UnTAR t
	    offset=`expr $offset + $s`
	done
	exit 0
	;;
	--tar)
	offset=`head -n 378 "$0" | wc -c | tr -d " "`
	arg1="$2"
	shift 2
	for s in $filesizes
	do
	    MS_dd "$0" $offset $s | eval "cat" | tar "$arg1" - $*
	    offset=`expr $offset + $s`
	done
	exit 0
	;;
    --check)
	MS_Check "$0" y
	exit 0
	;;
    --confirm)
	verbose=y
	shift
	;;
	--noexec)
	script=""
	shift
	;;
    --keep)
	keep=y
	shift
	;;
    --target)
	keep=y
	targetdir=${2:-.}
	shift 2
	;;
    --nox11)
	nox11=y
	shift
	;;
    --nochown)
	ownership=n
	shift
	;;
    --xwin)
	finish="echo Press Return to close this window...; read junk"
	xterm_loop=1
	shift
	;;
    --phase2)
	copy=phase2
	shift
	;;
    --)
	shift
	break ;;
    -*)
	echo Unrecognized flag : "$1" >&2
	MS_Help
	exit 1
	;;
    *)
	break ;;
    esac
done

case "$copy" in
copy)
    tmpdir=$TMPROOT/makeself.$RANDOM.`date +"%y%m%d%H%M%S"`.$$
    mkdir "$tmpdir" || {
	echo "Could not create temporary directory $tmpdir" >&2
	exit 1
    }
    SCRIPT_COPY="$tmpdir/makeself"
    echo "Copying to a temporary location..." >&2
    cp "$0" "$SCRIPT_COPY"
    chmod +x "$SCRIPT_COPY"
    cd "$TMPROOT"
    exec "$SCRIPT_COPY" --phase2
    ;;
phase2)
    finish="$finish ; rm -rf `dirname $0`"
    ;;
esac

if test "$nox11" = "n"; then
    if tty -s; then                 # Do we have a terminal?
	:
    else
        if test x"$DISPLAY" != x -a x"$xterm_loop" = x; then  # No, but do we have X?
            if xset q > /dev/null 2>&1; then # Check for valid DISPLAY variable
                GUESS_XTERMS="xterm rxvt dtterm eterm Eterm kvt konsole aterm"
                for a in $GUESS_XTERMS; do
                    if type $a >/dev/null 2>&1; then
                        XTERM=$a
                        break
                    fi
                done
                chmod a+x $0 || echo Please add execution rights on $0
                if test `echo "$0" | cut -c1` = "/"; then # Spawn a terminal!
                    exec $XTERM -title "$label" -e "$0" --xwin "$initargs"
                else
                    exec $XTERM -title "$label" -e "./$0" --xwin "$initargs"
                fi
            fi
        fi
    fi
fi

if test "$targetdir" = "."; then
    tmpdir="."
else
    if test "$keep" = y; then
	echo "Creating directory $targetdir" >&2
	tmpdir="$targetdir"
	dashp="-p"
    else
	tmpdir="$TMPROOT/selfgz$$$RANDOM"
	dashp=""
    fi
    mkdir $dashp $tmpdir || {
	echo 'Cannot create target directory' $tmpdir >&2
	echo 'You should try option --target OtherDirectory' >&2
	eval $finish
	exit 1
    }
fi

location="`pwd`"
if test x$SETUP_NOCHECK != x1; then
    MS_Check "$0"
fi
offset=`head -n 378 "$0" | wc -c | tr -d " "`

if test x"$verbose" = xy; then
	MS_Printf "About to extract 74796 KB in $tmpdir ... Proceed ? [Y/n] "
	read yn
	if test x"$yn" = xn; then
		eval $finish; exit 1
	fi
fi

MS_Printf "Uncompressing $label"
res=3
if test "$keep" = n; then
    trap 'echo Signal caught, cleaning up >&2; cd $TMPROOT; /bin/rm -rf $tmpdir; eval $finish; exit 15' 1 2 3 15
fi

for s in $filesizes
do
    if MS_dd "$0" $offset $s | eval "cat" | ( cd "$tmpdir"; UnTAR x ) | MS_Progress; then
		if test x"$ownership" = xy; then
			(PATH=/usr/xpg4/bin:$PATH; cd "$tmpdir"; chown -R `id -u` .;  chgrp -R `id -g` .)
		fi
    else
		echo
		echo "Unable to decompress $0" >&2
		eval $finish; exit 1
    fi
    offset=`expr $offset + $s`
done
echo

cd "$tmpdir"
res=0
if test x"$script" != x; then
    if test x"$verbose" = xy; then
		MS_Printf "OK to execute: $script $scriptargs $* ? [Y/n] "
		read yn
		if test x"$yn" = x -o x"$yn" = xy -o x"$yn" = xY; then
			eval $script $scriptargs $*; res=$?;
		fi
    else
		eval $script $scriptargs $*; res=$?
    fi
    if test $res -ne 0; then
		test x"$verbose" = xy && echo "The program '$script' returned an error code ($res)" >&2
    fi
fi
if test "$keep" = n; then
    cd $TMPROOT
    /bin/rm -rf $tmpdir
fi
eval $finish; exit $res
./                                                                                                  0000755 0001750 0001750 00000000000 10457350664 011135  5                                                                                                    ustar   jmaroto                         jmaroto                                                                                                                                                                                                                ./check-firewall.sh                                                                                 0000755 0001750 0001750 00000000500 10455707565 014353  0                                                                                                    ustar   jmaroto                         jmaroto                                                                                                                                                                                                                #! /bin/sh
PREFIX=$(cat /tmp/pavtmpdir)
CONFIGFILE="$PREFIX/etc/desktopsecure"

test "$1" != "yes" && echo -e "/<permanent/\n/<installed/\n/<fw/\ns/true/false/\nwq" | ed "$CONFIGFILE" &> /dev/null
test "$1" == "yes" -a "$2" == "yes" && echo -e "/<fw /\n/<auto_assign/\ns/false/true/\nwq" | ed "$CONFIGFILE" &> /dev/null
                                                                                                                                                                                                ./check-iptables.sh                                                                                 0000755 0001750 0001750 00000002711 10455707565 014357  0                                                                                                    ustar   jmaroto                         jmaroto                                                                                                                                                                                                                #! /bin/bash

PROC_VERSION="/proc/version"
UNAMER=$(uname -r)

is_module_in_use() {
local refcount=$(lsmod | grep "^$1" | tr -s " " | cut -s -d" " -f 3)
test "x$refcount" != "x" && test $refcount -ne 0 && return 0
return 1
}

find_module() {
	for i in $(ls modules/iptable_nat*.tko modules/iptable_nat*.to 2>/dev/null); do
		if ./modtag -c $i $PROC_VERSION; then
			found_module=$(basename $i)
			return 0
		fi
	done
	return 255
}

echo -n "Checking substitution modules... "
if ! find_module; then
	echo "not found."
	exit 0
fi

echo -n "$found_module found, installing... "

test -e /lib/modules/$UNAMER/kernel/net/ipv4/netfilter/iptable_nat.ko -a ! -e /lib/modules/$UNAMER/kernel/net/ipv4/netfilter/iptable_nat.ko-prepav && mv /lib/modules/$UNAMER/kernel/net/ipv4/netfilter/iptable_nat.ko /lib/modules/$UNAMER/kernel/net/ipv4/netfilter/iptable_nat.ko-prepav
test -e /lib/modules/$UNAMER/kernel/net/ipv4/netfilter/iptable_nat.o -a ! -e /lib/modules/$UNAMER/kernel/net/ipv4/netfilter/iptable_nat.o-prepav && mv /lib/modules/$UNAMER/kernel/net/ipv4/netfilter/iptable_nat.o /lib/modules/$UNAMER/kernel/net/ipv4/netfilter/iptable_nat.o-prepav

./modtag -u modules/$found_module /lib/modules/$(uname -r)/kernel/net/ipv4/netfilter/iptable_nat.$(echo $found_module | sed -e 's/^.*\.t\(.*\)$/\1/') || { echo "Error copying module."; exit 255; }
depmod -a

is_module_in_use iptable_nat || { modprobe -r iptable_nat ipfwadm; modprobe iptable_filter; modprobe iptable_nat; exit 0; }
exit 1
                                                       ./check-requirements.sh                                                                             0000755 0001750 0001750 00000006102 10455707565 015275  0                                                                                                    ustar   jmaroto                         jmaroto                                                                                                                                                                                                                #! /bin/bash

MIN_CPU_FAMILY=6
MIN_CPU_MHZ=400
MIN_MEM_TOTAL=128
MIN_FREE_DISK=150

COLOR_FAIL="#ff0000"
COLOR_OK="#00b200"

function get_cpuinfo()
{
	{ while read line; do
		case ${line%%:*} in
		"cpu family"*)
			CPU_FAMILY=${line##*: } ;;
		"cpu MHz"*)
			CPU_MHZ=${line##*: }
			CPU_MHZ=${CPU_MHZ%%.*} ;;
		esac
	done } < /proc/cpuinfo
}

function get_meminfo()
{
	{ while read line; do
		case ${line%%:*} in
		"MemTotal")
			MEM_TOTAL=${line##*: }
			MEM_TOTAL=$((${MEM_TOTAL%% kB} / 1024)) ;;
		esac
	done } < /proc/meminfo
}

function get_hdinfo()
{
	FREE_DISK=$(LANG="C" df -Plm -x tmpfs | { FREE_DISK=0; while read -a line; do
		if [[ "${line[3]}" != "Available" && ${line[3]} -gt $FREE_DISK ]]; then
			FREE_DISK=${line[3]}
		fi
	done
	echo $FREE_DISK; })
}

eval_gettext () {
  ./gettext "$1" | (export PATH `./envsubst --variables "$1"`; ./envsubst "$1")
}

function check_hw()
{
	get_cpuinfo
	get_meminfo
	get_hdinfo
	if [ $CPU_FAMILY -lt $MIN_CPU_FAMILY -o $CPU_MHZ -lt $MIN_CPU_MHZ -o $MEM_TOTAL -lt $MIN_MEM_TOTAL -o $FREE_DISK -lt $MIN_FREE_DISK ]; then
		echo -ne "<b><i>`./gettext \"CPU (Pentium II o superior):\t\t\"`</i></b>"
		[ $CPU_FAMILY -lt $MIN_CPU_FAMILY ] && echo "<b><span color=\"$COLOR_FAIL\">`./gettext \"No OK\"`</span></b>" || echo "<span color=\"$COLOR_OK\">`./gettext \"OK\"`</span>"
		echo -ne "<b><i>`eval_gettext \"Velocidad (\\\${MIN_CPU_MHZ}+ MHz):\t\t\t\"`</i></b>"
		[ $CPU_MHZ -lt $MIN_CPU_MHZ ] && echo "<b><span color=\"$COLOR_FAIL\">`./gettext \"No OK\"`</span></b>" || echo "<span color=\"$COLOR_OK\">`./gettext \"OK\"`</span>"
		echo -ne "<b><i>`eval_gettext \"Memoria (\\\${MIN_MEM_TOTAL}+ MB):\t\t\t\t\"`</i></b>"
		[ $MEM_TOTAL -lt $MIN_MEM_TOTAL ] && echo "<b><span color=\"$COLOR_FAIL\">`./gettext \"No OK\"`</span></b>" || echo "<span color=\"$COLOR_OK\">`./gettext \"OK\"`</span>"
		echo -ne "<b><i>`eval_gettext \"Espacio libre en disco (\\\$MIN_FREE_DISK MB):\t\"`</i></b>"
		[ $FREE_DISK -lt $MIN_FREE_DISK ] && echo "<b><span color=\"$COLOR_FAIL\">`./gettext \"No OK\"`</span></b>" || echo "<span color=\"$COLOR_OK\">`./gettext \"OK\"`</span>"
		return 1
	fi
	return 0
}

function find_library()
{
	if [ -z "$LDCONF_CACHE" ]; then
		LDCONF_CACHE=`ldconfig -p`
	fi
	echo "$LDCONF_CACHE" | { while read -a line; do
		if [[ "${line[0]}" == $1 ]]; then
			return 0;
		fi
	done
	return 1; }
}

function check_sw()
{
	local fail=0
	echo -ne "<b><i>libexpat:\t\t\t</i></b>"
	find_library "libexpat.so.*" && echo "<span color=\"$COLOR_OK\">`./gettext \"Encontrada\"`</span>" || { echo "<b><span color=\"$COLOR_FAIL\">`./gettext \"No encontrada\"`</span></b>"; fail=1; }
	echo -ne "<b><i>locale ($INSTLOCALE UTF-8):\t</i></b>"
	locale -a | grep "^$INSTLOCALE" | grep -i utf | grep -q 8 && echo "<span color=\"$COLOR_OK\">`./gettext \"OK\"`</span>" || { echo "<b><span color=\"$COLOR_FAIL\">`./gettext \"No OK\"`</span></b>"; fail=1; }
	return $fail
}

cd $(dirname $0)
export TEXTDOMAINDIR=$(pwd)/locale
export TEXTDOMAIN=check
INSTLOCALE="$1"

check_hw || exit 255
check_sw || exit 254
./install-dazuko.sh check
case $? in
0)
	exit 0 ;;
[123])
	exit $? ;;
*)
	exit 253 ;;
esac
exit 0

                                                                                                                                                                                                                                                                                                                                                                                                                                                              ./gettext                                                                                           0000755 0001750 0001750 00000120654 10455707565 012563  0                                                                                                    ustar   jmaroto                         jmaroto                                                                                                                                                                                                                ELF              P4   ܀      4    (      4   44                                       u  u           u  (             u                                 /lib/ld-linux.so.2           GNU              C   K          6   5   !   J       7   >          $   C          4   *                     F       E      #       &                  %       I   ;       =   B       1               .          H       0   A           :      D      (   G       <   /       ,                                                                 
                                                               	                                                    )   "                               -       3       2   8         +   '              ?          9      @                      0  4A      I  Dc      N  Tg     [       6   d      q   t      k     "     A        %        :         Ď       Ԏ-      b                    `        :        
       $@        4         Dp        T-      Q   d>        tF     C  U        %   "           !                  %       ďV        ԏ/     U  <     P        G           M     i  $        4      5  D      |  T)       d?        t2         t         '                       ĐP      E   Ԑ7         t         @      q  P              i   $t         4     (   D;        T        d      \  tO                      X          "        v       đ         ԑj             &  d     J           2      }   h      <       W  @      =   $t                       40       libc.so.6 tsearch strcpy getgid stdout __fsetlocking ungetc geteuid getopt_long munmap __ctype_b getenv getegid __rawmemchr bsearch qsort fscanf memcpy getuid malloc _nl_msg_cat_cntr optarg iconv_open __strtoul_internal fflush mmap abort strrchr basename calloc fprintf __stpcpy __deregister_frame_info nl_langinfo optind tfind ferror strstr read __argz_count strncmp strcasecmp realloc __strdup iconv_close __uflow strcmp getcwd __mempcpy fclose setlocale stderr iconv fputc __argz_stringify __errno_location __fxstat fopen _IO_putc fgets_unlocked _IO_stdin_used __libc_start_main strlen strchr fputs __ctype_tolower __register_frame_info free __cxa_atexit __gmon_start__ GLIBC_2.2 GLIBC_2.1.3 GLIBC_2.1 GLIBC_2.0                                                                                            ii        si	        ii        ii         I        <  A  F                	  
                          $  (  ,  0  4  8  <  @   D!  H"  L#  P$  T%  X&  \'  `(  d)  h*  l+  p,  t-  x.  |/  0  1  2  3  4  5  6  7  8  9  :  ;  =  >  ?  @  C  D  E  G  H  J  U]    W  5%    %h    %h   %h   %h   %h    %h(   %h0   %h8   p%h@   `%hH   P%hP   @% hX   0%h`    %hh   %hp    %hx   %h   %h   %h   % h   %$h   %(h   %,h   %0h   p%4h   `%8h   P%<h   @%@h   0%Dh    %Hh   %Lh    %Ph   %Th   %Xh  %\h  %`h  %dh   %hh(  %lh0  %ph8  p%th@  `%xhH  P%|hP  @%hX  0%h`   %hh  %hp   %hx  %h  %h  %h  %h  %h  %h  %h  %h  p%h  `%h  P%h  @%h  0%h   %h  %h   %h  %h               1^PTRh0hQVhPUSP    [Jt    tЋ]ÉUPP= uJ: t&    B: u블th   Í    URRÉ'    UPPtQQhhUÍ        URRÉ'    UWVS1ۃ(E    EE    uEhh$ ZE   1UYR  YXhj[XZhh!V  $!#  $Q         etSeVtaVtiEtdXdt+Pnt9nE   htD8E   st5)=)   1҉   
j  j hph1EPVJ Ztfh;h!\QA_ZPhB[^hRh
  $ZYhghv
  $$    Et
j   ]   )tht=t"h9
  Pj jU<@(    h
  Pj jZU@ɣtS  Ãt? uRS  EtE8 tPW3	  5VSW\	  P   9   t? u14t& Mt)U: t!RW  U@tS  ÃPtSW  P<9}Qj o9|tPj
IE    e[^_]US]t2\QhK  YZPR   &    \P\Qh   $$P$`  $$P$  $$P$YZtRh  $$P{XZQht  $]]]t& '    UWVSuuFt\ut~ tFPhtԄuE   t& ]Sh$  MUE})PǋERP'    FBЃDwd$_1FVO
Jv B	=    \F3F0,0<wFT,0<wFTЈ	\FGt\us Ee[^_]ÐUQ^   t/h  PhYZERP/]Ít& Uj]ÐUVS]Gƃ    Su9S6t0Sj tSu    1e[^]ÐUWVSMj/QP]tXU)Ѓ~Ǎs   8u]jhSxu]E\e[^_]ÐUh  Pj P$   v UU1uj+u]Í&    US]SuS]]Í    USM]QSuS|]]ÉUSE]u]]]SPuS6]]ÐUWVSEtE8 u-}t	U    u  E       1<E    =dt+v '    ]GPSTt
xƋ?u߅   MtuU2uGe_SVtL)h)VtVÅt G=)tP_E   EU  U2u
G  _tSVt2VÃt GtP'_GE   E  Et	U:u9ut	Eu)Mt	U)Ur  E     d  EPXX$ƃ  }FSWP]tEUth)Su)S   ËE^F)F    Mt&UtPvtmFUFF    dtUCPRy#5d#CPEP~ߋu7E   BF=)tPVMt	E     Ut	U    Et`e[^_]Í&    Uj UEPRE]Ít& UEMPj QE]ÐUjUERP.  ]ÐUjEPj .  ]ÐUSU<PE  zR  zI  B<dt<it<ot<ut<xt<Xy  Z8u;z u5<d  <i  <o  <u  <x!  <X)  1uAz6u;z u5<d  <i  <o  <u  <x  <X  >3uEz2u?z u9<d  <i  <o  <u  <x  <X  t& 6uAz4u;z u5<d  <i  <o  <u  <x  <X  LG  zE=  zA3  zS)  zT  J	8u@z
 u:<d  <i  <o  <u  <x  <X  9t& 1uAz
6u;z u5<dw  <iz  <o}  <u  <x  <X  3uEz
2u?z u9<d1  <i4  <o7  <u=  <xE  <XM  t& 6uAz
4u;z u5<dr  <ix  <o~  <u  <x  <X  ^F!  zA  zS  zT  J8u;z	 u5<d|  <i  <o  <u  <x  <X  1uAz	6u;z
 u5<d6  <i9  <o<  <uB  <xJ  <XR  3uDz	2u>z
 u8<d   <i   <o   <u   <x  <X  gv 6u+z	4u%z
 u<dt6<it@<otJ<utT<xt_<Xtk6MupzAujzXudz u^<du
   <iu
   <ou
   <uu   <xu   <Xu   PukzTuezRu_z uY<dua<iuV<ou
Kv <uu=t& <xu-t& <Xut& O}Iuz gt1Z[]Ít& U1WVS]tCUMB8EB<B@    PhSQ  E  hP   19 t@< t t
	t
uƍF)ĉeUVQR{  t	Cǅu"hǃt? u$  ǃj/WuTWƍF)ĉVWSDfDD
u_XVSMQWUB<Ee[^_]Ít& '    US]C@ttPUC<tE]]<]]ÐUWV1S   tE@   @      j Qǃ  EPWjK   E/|   |j WjjRj Fx @tW   txuz|VKxj  |ƍ&    '    SVW@u
8tWl'  v )ÅuȃWSx=tD=t=tt|QR  t& xR  jLp  MAxptH|P1xp9B    Bt)AÁ   	Ӊ   			xYs  k  p@t/xB   	щ   			xHpzJt6xHȉ%   	%   	x	xppJBt5xHȉ%   	%   	x	xPЋpzBt5xA   	щ   		    xHp1J,vGrt5xHȉ%   	%   	x	xHȋpfۉB0BB4  pP0  @$tHxB$l   l	l   	l	lt& x@$ll%  tCxBh   h	h   	h	hx@ht9xxJ ȉ%   	%   		t& x~ h1ۉ@   )9@d  &    p@$$t6@xLȉ%   	%   		@xDË$t4@։   	щ   		t& @ƅ
  | 
  S{@dBh@9p@$$t;xJ(ȉ%   	%   		ʋxʉ`xȋP(Љ`$t;xH,ȉ%   	%   	x	\xыA,\p11XlB,@9XT@  p@$   1ɉ8<p@$        $tV<u@`@\ʉȁ   x	Љʁ   		;<u@`x4@\xˋ$1st:Nȉ%   	%   		Bu   1ۉ8   ~   s8&    '    ;hD  dtP_ǋ$t,ȉ%   	%   		    ׋$t)F   	щ   		N]<E<8tA<8tXEUT@l9@XTX  TWP  p11BPXLʋpЉHDA,l@D49@P  v '    p   1҉0<@ǉ$        t\<u@`t& @\ʉȁ   x	Љʁ   		=v <u@`x@\x΅^t/Kȉ%   	%   		Burt& {tg^$t)C   	щ   		Ktdu1ɉ00t<<0  1<p@$$tV<u@`@\ډ؁   	Љځ   		؋x8<u@`x@\xË$t4xȉ%   	%   		,x,,4{<uLt& H($t*Oȉ%   	%   		BtVuP$t.   	щ   		    (,P  P{(A>t& dP?dS4PVQPpHt)Á   	Ӊ   		t*GƁ   	։   		wt&,PSRP&P,*(PZ)؉<<&4@l9@fX94tv p1ɉ@r,9@s|&    pQ4t3A0@Љ%   	%   		v pB0@@D@p@q,9r1@X9@   pr,    @1L\; tCǉ   t11݉1ҍN1BD<up@q7&    )9r)t& ËDuውp@y@@X9@5XpJ LB$HJ(DB4    B0   pB     B$    B(       pA     A$    A(    qpBtP~tt|xSQ[t& xREpP3MA    7v }p]WVS)pHRpDRP  e[^_]ÐUWVS}u       ? 5th Wu  +VWtWÃtt`9t tVI؍e[^_]ÐUVuS]FSPRYuPQDuCV)Ѝe[^]Ív '    UWVSu}tB	t  tM    FtHt    v F  WVR1l  WFP}ËFu0E    uWvVXtE   E$  u.E    tW^S#tE   E   WNQ F
   $@t& ډ       щ1   v щ1      )Ӊ   19x    19i&    19Y&    19I&    199&    19)&    WVR31҅t/1e[^_]Í    UWVS<Mu1  UuEEPb}P(Ũ)ĉD$RWPMECh0h SEЃt9`9Bu-utZSJUQRUЋ@P  t& z  =$ EuOC9u9t$   5$"&    E    C&    $d#EMPQtxE EuE)U   UBE8/     Px;v \ D)ĉe    ESP]u>"tͅ  MuyWj V!f / @P2]S  ZËEYSP1	  }EWv$EkUȃ uD)ĉe܃MRVSQf / @PZ .mo }W%)ĉe؍v M:ut& EE:tuUCB I:Mt&    AEUt<:u =$uu؃j/VuMCuA  uؿ   8  ]M܋USEQRP  E1}EuP]WVSE  ǃuF   '    ^Uދt'Eċ}MPWQR|  ǃtӋEEEЅ   ŨMȍDPÃ   ũCMVQP7UȃBRURPEC`CEU{CSh0h SEЃt9t.S v MЋ`PUxPUPBMԉEtu]MVWSQ  ǃe&    =$t5ht!8 tU}u]RWVSP   UԉMEt}EuEe[^_]Ív '    UWVS\ExuuVPE@E  EЋUЋ@EZ0  MQ]1ɃÈ; tCʁ   t11݋E1ҋ@,EĉuĉȉUȋUă1EBU@4EEЋ@0Et& Ut/UȋMÁ   	Ӊ   			EȋU  K;]   MЋqut2y߉ȉ%   	%   		;Us   EЋŰx9   EMЅ1t2Lȉ%   	%   		ʍ2&    tMPQ_&U؋M)ЋQ$M9v$|uWV7u]   t& EċM)9Er)E]]E    ]9]  EЋpx EUUt2Lȉ%   	%   	E	&    M܋ETЋUPR{y]~E@E9]rF      U9U   MЋy1t8YE܋Lȉ%   	%   		ʍ2Ut& UЋM܋ZDƉu؅t.E܋Éȉ%   	%   		BU'U܋C]MЋ]܋uQ()DE؋ډEԋ]UЅۋB8t
M;Au't#MЃQUEЃ}RPW:]Ѓ{<  C@uSjC EuVC@u5C@'&    1L  11ɉ,  t&   U܋   E    511dv O8   E~E  WS=FE     W=aÍsuEԋM؉EMvUЉEEPEPEPEPr<V5 @Wu)эAEЋX@E܉)ʉЃ0؋U܋HM؋ EԋE]ԉE؍e[^_]Ðt& UWVSEM}XQSDRqƃ;sH!ƉNt*EÐt& j R9B9ډs	NuЍe[^_]Ð&    UUw<$p.%]ÉUSh#Ãt1; H!ËUERPk  ۉtCuBuы]ȉ]ÐUWVS]}   h0SZYh8Stktg	tCt
DA u0	w;j Ej
PSI;]t%EPui  u
EUE    e[^_]ÐUWVS   (7  1hB  V $KÉ@< t|3/t   <DPDtK@RVP/tD@/<DBRhKPDt1D1htR4ǃ18    1ۉ4  
     	  #uDG;GrWC	@GЃt
u@V  }  ]WPhPShYW HS  0ً00! t  u
0 ҍh0)0! t  u ҃)΋4u0PP4,04ЍPP84P 88y4EP80)CK)P^XhPSG;GrWt& @GЃW4t84 DtDPL(e[^_]Ðt& UVSjƃu~À; t[&    SV:t;*u{ uSt&Sk\$_Xx u> uce[^]ÐUWVSu}   t}WVtlV<$É08D$Ãt90@PVST08,@PCWS4411,4e[^_]ÐU]BUWVS,u   4   0QPV\uq02ua</u[<2W8@$BÃt5584VQSr58XZWPt& e[^_]ÐUE    ]UVSu]Vj"t^<
u,VhiB{ tXVhm+(t& <"t<\uVj\VPqCuuE"   e[^]Qe[^]Í    UWVSEu}EEEEEtSV_   t7t1P<Q1҃Vp@$   VP}[XhpV    hrSZYWS_XhzSUY^RSfEt#hSM^_QSBXZhhS]E
   e[^_]e[^_]ÐUMUEQj j j RP]ÐUWVS4Uj }uRj j j j j j j Wj V5@PVh<  Ã@txCu}WS4sy  1       '    G3t!HuURP3HtԉH!,  &    W'  EЃtPHǃtxEPEPEPEPEPEPEPEPWR  U(]jMRUS]QMRUS]QMRSQPVE @PVh<  Ã@u1   SuEPSsu9   
&    3t!HuURP3HtՋUЅtWEtEP؍e[^_]ÐUWVSE    @}u@&    }Tt$hjPPPEP t& 1t@E   @18 t~v 8:u'    ȍPщ@x:tÄt*:t%    '    P@HЄt:u9s)PS(   ƃu
@8 u-Ee[^_]ÉUWVS  U}B)ĉjhRWSӿPʿY^htS$տTu1E  TjR01P          XًDC t&    ADF uB  <#:  LALPt!DF uv AtDF t1҄t AADC u9   HAHVt%DC u&    AtDC t1Ҁ
u	 A
t X9Tr#    LWH@^DS謼H@D@@ȋL9   @=   s   DQS<蟼ƃ  D9t:=T19s.    Dv '    P)DA9rډ5D<HLDDL5TPPWRLHD5TD@PȋHWHQPD@TPHXj
S虹uTRh  SͺuҋTu XVh  S覺'TP茻Pth5TPjVSպPe[^_]USXd   t     PPPֺut& P1X]]Í        UEU EE]6U1WVSHU:/UH!ЉEԋEP]ԃE t}W\Etu V۹\EtM$Q¹\E   tU(R覹\EtE,P荹tދ}8WvǍD7EtJEt]0SUX   EtM4Q60D
v 3DPTÃ5  Uԉ؅t-}ԃuWVS}Mԃj:QS螸Uԃ@/URPTE t _}@WP:Et .u @VP Et .M$@QPE   t8@@E@t+&    E       t& U(RPŶEt +},@WP諶Et4 ,@Etu0VP苶Et _M4@QPq /U8@RP]uEЅtAv '    UЋ:t!S
Q?t<uЃEЋ@EuɋUЅuE<uSƸ<  }ԅtMԃUQR躸ẼE   UE⪪%UU  Ё33  %É  }   w   REЃu1  &    UЉ1҃}wEu   EЉP@    UЉB1}}E    )D  EUЉEčv }#  G   tǘ       }   1Z&    E8]4jM0U,PE(S]$QM RUPESQRPWV]@PVSU@EȉUt']M9sj V$@9    U1pE!ƅfPt& u8]4jM0U,VE(Su$Q] RMPUVESuQ]RWPVSU@EȉUOE1ɋUЉLEЍe[^_]Í    UWV1S1ۃE   ;us1UAAt   1CfH!EF;ur֋MtC
&    CPǃt^Utiso _1;us@v EDPPt
%   ft
UCF;ur e[^_]ÐUE@t_t@t
+t,u]Ív '    UWV1SE}     U    E     U    E      U$    E(     ]E    SqÃ9uj RÃ   _    CU&    Ct.t@t+t
,t_u߃ .u~E    CEt& Ct@uE9tN9 tIU؃)PPUY_PER耱uUP+@t}t?+u:1ɀ@AM CE}Cut<+t<,t<_u   }to,+<v_u_E   +u" CU Ct
,t_u,u CE$Ct_u_u U(C}u6Ut8 uߋUt8 uUt8 ue[^_]ÐUWVSu}Kx        t9Kyjt#2EKBxJv Ky'v Kxt& '    P4  Ky1e[^_]Ít& UEMUEEPQUjO]Ít& '    U卅XW   8V1S1ہ   ǉ։f ҍD
9  )G'  ?  '  v'  ۍD )ĉ PWV蕰É ߋ    v*t 󥋅 t|QDQ9H  	V    uMQP  11ɉ     w˃5wz9uly   g    t  ~      m      )ȉC   $p	  MA   FV((Pj,j0aQVRj PNQjRFPNQY    Pjj	j j j &v j jj tBV)Ƌn)5w#f9usv 2]uh  u      t& ; t|V tC5w͍fuy t    tt/&    1!   t& h     e[^_]Ív US]tRtHt&3u-KQSRCP]]]]]É'    UVuS]A	  < t<	tA|   $0ATB,0<	v     9=      9=      A     t& 9   A   9=u

   A   9=u	   A	     b     U     Hv      8v      (v      v I11t&    [^]Ív U]ÐUSR    [!  P  1҅tRj uA]ÐUSR=t    '    ;uX[]ÉUQQÉ'    USR    [Î   v W]                                      d           h           s           V                   @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @version shell-script help domain TEXTDOMAIN TEXTDOMAINDIR  /usr/share/locale gettext-runtime +d:eEhnsV 0.14.1 %s (GNU %s) %s
 1995-1997, 2000-2004 Ulrich Drepper Written by %s.
 too many arguments missing arguments IN_HELP2MAN @localedir@ bcfnrt\01234567              Copyright (C) %s Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
                         Try `%s --help' for more information.
                          Usage: %s [OPTION] [[TEXTDOMAIN] MSGID]
or:    %s [OPTION] -s [MSGID]...
                       Display native language translation of a textual message.
        -d, --domain=TEXTDOMAIN   retrieve translated messages from TEXTDOMAIN
  -e                        enable expansion of some escape sequences
  -E                        (ignored for compatibility)
  -h, --help                display this help and exit
  -n                        suppress trailing newline
  -V, --version             display version information and exit
  [TEXTDOMAIN] MSGID        retrieve translated message corresponding
                            to MSGID from TEXTDOMAIN
                If the TEXTDOMAIN parameter is not given, the domain is determined from the
environment variable TEXTDOMAIN.  If the message catalog is not found in the
regular directory, another location can be specified with the environment
variable TEXTDOMAINDIR.
When used with the -s option the program behaves like the `echo' command.
But it does not simply copy its arguments to stdout.  Instead those messages
found in the selected catalog are translated.
Standard search directory: %s
  Report bugs to <bug-gnu-gettext@gnu.org>.
 write error %s /.libs/ lt- memory exhausted lld lli llo llu llx llX charset=  	
 OUTPUT_CHARSET //TRANSLIT           messages /usr/share/locale      йع  0    w.mo POSIX GETTEXT_LOG_UNTRANSLATED LC_COLLATE LC_CTYPE LC_MONETARY LC_NUMERIC LC_TIME LC_MESSAGES LC_ALL LC_XXX LANGUAGE                                          plural= nplurals= /usr/lib charset.alias %50s %50s ASCII \n" 
" a domain  
msgid  
msgid_plural  
msgstr[0] ""
 
msgstr ""
                     /locale.alias iso                
	                                 
    	                                       "     ' +    "  5                  	 
            	 
         	 
     
           
     	  	 
           	      	        	  	        	     	    	              @Xp` CpP( parse error parser stack overflow                                                     0   (      h
                                      ̋   8         o|o   o                                                                :JZjzʎڎ
*:JZjzʏڏ
*:JZjzʐڐ
*:JZjzʑڑ
*:     GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113)           01.01             01.01             01.01             01.01             01.01             01.01             01.01             01.01             01.01             01.01             01.01             01.01             01.01             01.01             01.01             01.01             01.01             01.01             01.01             01.01             01.01             01.01             01.01             01.01             01.01             01.01             01.01             01.01    .symtab .strtab .shstrtab .interp .note.ABI-tag .hash .dynsym .dynstr .gnu.version .gnu.version_r .rel.dyn .rel.plt .init .text .fini .rodata .data .eh_frame .dynamic .ctors .dtors .got .bss .comment .note                                                                       #                              1         ((  @               7         hh                ?                            G   o   
                  T   o   ||  P                c   	      ̋  8                l   	                      u                             p         $$                   {         PP  S                          00f                             ``f  V                           u  4                           u                             u                           v                             v                             v                           w                                  w                                 }  0                                                                        |         	                                                    t          t                          $         2         >         T         g          r        {            @                                                                                            0          P          pP                            0;       p       #  pL                  P          К       7   )               H  9       `                           [                   0       t  0F     }                $       `N       [       h                                                       [    	  (                      4  0     D  8     T  ,     `  4        P          p       l  p     z                 p                   <                 @       T              P                    X       PT       H     !  L     2  D                            P       ?  P     G  %     Q      ]       b        g  8     p  R     z  V8              l       l       p=                                          (          h                              |          ̋               	          
     $          P          0          `                                                                                                          К-       0*       4A        0L      Dc              %       E  Tg     W       r  d                t           "     A        %        :              `       Ď     *  Ԏ-      =        O       \       n  `              n       :        
       $@        p      4        `     (  X    =       
 C      S  Dp     e  \     r         T-        d>                      tF       U        %   "           -       C       U  0     d       v  %        	             @       `.       ďV         )       P      "  ԏ/     6  <     G   L    X        j        |  M       Py       d       D               g       $      	  4      !	  p!     3	       ?	  P    D	  D      a	  [    n	  T)     	         	  d?      	  t2      	  t      	  0      	  '      	  &     	       
  3    

       
  ĐP      1
  Ԑ7      H
  t      Z
  @      j
  P      
        
  $t      
  4     
       
  e    
  D;             	  T              3  d      C  h     H  tO      `        r                "        v       đ        ԑj              d                     .  2      B  h      U  P     e       w        @               $t        ?                     40       gcc2_compiled. call_gmon_start p.0 __DTOR_LIST__ completed.1 __do_global_dtors_aux __EH_FRAME_BEGIN__ fini_dummy object.2 frame_dummy init_dummy force_to_data __CTOR_LIST__ __do_global_ctors_aux __CTOR_END__ __DTOR_END__ __FRAME_END__ long_options do_expand add_newline usage expand_escape close_stdout_status fixup_null_alloc set_binding_values get_sysdep_segment_value transcmp plural_eval root enable_secure category_to_name guess_category_value plural_lookup freemem.0 freemem_size.1 plvar plone get_charset_aliases charset_aliases set_this_relocation_prefix orig_prefix_len curr_prefix_len orig_prefix curr_prefix print_escaped last_logfilename.0 last_logfile.1 _nl_loaded_domains locale_alias_path.0 nmap alias_compare map read_alias_file aliasfile.1 maxmap extend_alias_table string_space_act string_space_max string_space new_exp new_exp_2 yytranslate yyr1 yyr2 yydefact yydefgoto yypact yypgoto yytable yycheck __gettextlex __gettexterror __dso_handle xalloc_die xmalloc nl_langinfo@@GLIBC_2.0 _nl_load_domain ferror@@GLIBC_2.0 libintl_bindtextdomain libintl_gettext_germanic_plural strchr@@GLIBC_2.0 __ctype_tolower@@GLIBC_2.0 ungetc@@GLIBC_2.0 _DYNAMIC __rawmemchr@@GLIBC_2.1 __register_frame_info@@GLIBC_2.0 __stpcpy@@GLIBC_2.0 strcmp@@GLIBC_2.0 close@@GLIBC_2.0 _nl_expand_alias _fp_hw iconv_open@@GLIBC_2.1 fprintf@@GLIBC_2.0 getenv@@GLIBC_2.0 close_stdout fflush@@GLIBC_2.0 _nl_msg_cat_cntr libintl_set_relocation_prefix fwriteerror mmap@@GLIBC_2.0 setlocale@@GLIBC_2.0 __cxa_atexit@@GLIBC_2.1.3 libintl_dcigettext __errno_location@@GLIBC_2.0 libintl_dgettext _nl_log_untranslated _init _nl_find_domain malloc@@GLIBC_2.0 program_name xmalloc_exit_failure fscanf@@GLIBC_2.0 munmap@@GLIBC_2.0 libintl_relocate libintl_gettext __uflow@@GLIBC_2.0 tfind@@GLIBC_2.0 __deregister_frame_info@@GLIBC_2.0 fgets_unlocked@@GLIBC_2.1 _nl_normalize_codeset stdout@@GLIBC_2.0 locale_charset stderr@@GLIBC_2.0 abort@@GLIBC_2.0 libintl_nl_default_default_domain _nl_make_l10nflist libintl_bind_textdomain_codeset xcalloc __argz_stringify@@GLIBC_2.0 libintl_nl_default_dirname _start __fxstat@@GLIBC_2.0 fputs@@GLIBC_2.0 _nl_explode_name strstr@@GLIBC_2.0 strlen@@GLIBC_2.0 qsort@@GLIBC_2.0 set_program_name libintl_nl_domain_bindings xrealloc libintl_nl_current_default_domain libintl_gettext_free_exp strncmp@@GLIBC_2.0 fputc@@GLIBC_2.0 libintl_dcgettext __bss_start main __libc_start_main@@GLIBC_2.0 _nl_find_msg realloc@@GLIBC_2.0 data_start iconv_close@@GLIBC_2.1 printf@@GLIBC_2.0 getuid@@GLIBC_2.0 _fini memcpy@@GLIBC_2.0 _nl_find_language fclose@@GLIBC_2.1 atexit strrchr@@GLIBC_2.0 __strdup@@GLIBC_2.0 getopt_long@@GLIBC_2.0 getgid@@GLIBC_2.0 open@@GLIBC_2.0 strcasecmp@@GLIBC_2.0 exit@@GLIBC_2.0 getegid@@GLIBC_2.0 calloc@@GLIBC_2.0 libintl_gettext_extract_plural _nl_init_domain_conv __fsetlocking@@GLIBC_2.2 _edata _IO_putc@@GLIBC_2.0 _GLOBAL_OFFSET_TABLE_ free@@GLIBC_2.0 _end __argz_count@@GLIBC_2.0 getcwd@@GLIBC_2.0 tsearch@@GLIBC_2.0 __ctype_b@@GLIBC_2.0 __mempcpy@@GLIBC_2.0 iconv@@GLIBC_2.1 fopen@@GLIBC_2.1 __strtoul_internal@@GLIBC_2.0 optarg@@GLIBC_2.0 _IO_stdin_used __data_start error@@GLIBC_2.0 basename@@GLIBC_2.0 bsearch@@GLIBC_2.0 _nl_locale_name optind@@GLIBC_2.0 libintl_gettextparse read@@GLIBC_2.0 libintl_textdomain geteuid@@GLIBC_2.0 _nl_free_domain_conv __gmon_start__ strcpy@@GLIBC_2.0                                                                                     ./envsubst                                                                                          0000755 0001750 0001750 00000122050 10455707565 012740  0                                                                                                    ustar   jmaroto                         jmaroto                                                                                                                                                                                                                ELF              4         4    (      4   44                                       w  w           w  0             Pw  PP                               /lib/ld-linux.so.2           GNU              C   M          6   5   C   L       7   ?          $   D          4   *                     H       G      #       &                  %       K   ;   =   >   B       1               .          J       0   E           :      F      (   I       <   /       ,                                                                 
                                                               	                                                    )   "                               -       3       2   8             +   '       !          @          9      A                      )  A      H  c      ]  g     j  H	     6         q         z  Ў   "     A        %         :                  -      b   0         @        	        P:        `
       p@                 p        -      Q   >        F     B  ЏU        %   "   &        !   L	       P	         %       V         /     d  0<     O  @      V  P         `M     h  p              D        {  )       ?        2         Аt         '                        P      E    7         0t         @@      p  PP        `      i   pt              (   ;                      [  O        Б              X   T	     <  X	       "         v                 j     5         0d     I  @        P         `2      }   ph      5  \	     V  @      =   t                       0       libc.so.6 tsearch strcpy getgid stdout __fsetlocking ungetc geteuid getopt_long munmap __ctype_b getenv getegid __rawmemchr bsearch qsort fscanf memcpy getuid malloc _nl_msg_cat_cntr iconv_open __strtoul_internal fflush mmap abort strrchr basename calloc fprintf __stpcpy __deregister_frame_info nl_langinfo optind stdin tfind ferror strstr read __argz_count strncmp strcasecmp realloc __strdup _IO_getc iconv_close __uflow strcmp getcwd __mempcpy fclose setlocale stderr iconv fputc fwrite __argz_stringify __errno_location __fxstat fopen _IO_putc fgets_unlocked _IO_stdin_used __libc_start_main strlen strchr fputs __ctype_tolower __register_frame_info free __cxa_atexit __gmon_start__ GLIBC_2.2 GLIBC_2.1.3 GLIBC_2.1 GLIBC_2.0                                                                                               ii        si	        ii        ii         D	K  H	  L	  P	  T	<  X	=  \	H  4  8  <  @  D  H  L  P	  T
  X  \  `  d  h  l  p  t  x  |                     !  "  #  $  %  &  '  (  )  *  +  ,  -  .  /  0  1  2  3  4  5  6  7   	8  	9  	:  	;  	>  	?  	@  	A   	C  $	D  (	E  ,	F  0	G  4	I  8	J  <	L  Uq    Z  5,%0    %4h    %8h   %<h   %@h   %Dh    %Hh(   %Lh0   %Ph8   p%Th@   `%XhH   P%\hP   @%`hX   0%dh`    %hhh   %lhp    %phx   %th   %xh   %|h   %h   %h   %h   %h   %h   p%h   `%h   P%h   @%h   0%h    %h   %h    %h   %h   %h  %h  %h  %h   %h(  %h0  %h8  p%h@  `%hH  P%hP  @%hX  0%h`   %hh  %hp   %hx  %h  %h  %h  % 	h  %	h  %	h  %	h  %	h  p%	h  `%	h  P%	h  @% 	h  0%$	h   %(	h  %,	h   %0	h  %4	h   %8	h  %<	h  1^PTRhhXQVhUSP    [Ju    tЋ]ÉUPP=$ uJ : t&    B  : uthL$   Í    URRÉ'    UPPЎtQQh`	hLAÍ        URRÉ'    UW1VSE    uE    ]R	
  YXhj{XZh h2  $2&  $PU  ]    '    ht+htBV   t8&    E   vt$E   &    j      j hhBVS utdhFh2	Q_ZPhM[^h]h '  $ZYhght  $$    jEt
j    \	)H~#h  Pj j\	}tR)tHt+$&    h  Pj j4BV\	  Ot& )t*Hu71ۉ	BQ\	         		t& +  E    e[^_]sv US]t)	Ph  ZYPP	P  	Qh   $}$q$`  $]$Q$u  $=$a  $)$$A  $	$ -  $$@  $$$  $$$@  $$L	XZQh  $]]]	'    UWVS]}C$uy{uC,A<v, <v_u[&    C,A<v, <v1<	v_t~{ع   u
}uC1Ʌt)PV
&    ve[^_]Í    '    UL	MUPjQRL	YXRj
e]Í&    '    UhUR]Ð&    UEU P
Qi]ÉUW1VSEptkv9 EU>RUP(~t,{)w9v)UMQRu       1e[^_]Í    UWVS(]uCP  SVW; 		9r*D 		PQ  			<B	e[^_]Ív U1҉E1h 	1P			thpjP	Pu]Í&    '    USX	R=ÃuNX	Pet9h  Ph  P$ZYQj؋]]Í        UWVSU  $7  E    1YÃ{uM   ÍCvCv	_  15	t& 	|	9r'x	D 
PQ|	  	x	x		ÍCvCvCЃ	v_tt'}uE      01t(X	R   tX	PS$ti	|	9r'x	D 
PQ|	e  	x	x	 	u x	Ph	1҅J!օt0x	S!   L	QP   L	Rj$_tL	Pj{H=L	5	x	WjVSMtbL	Rj}LtX	PS5L	Vj$t$L	Sj{v L	QSÃe[^_]ÐUL	Q^   t/h  PhIYZERP]Ít& Uj]ÐUVS]ƃ    Su9St0Sj tSu    1e[^]ÐUWVSMj/Q]tXU)Ѓ~Ǎs   8u]jh"S4u]E	e[^_]ÐUh&  P(j P$   v UU1uju]Í&    US]SuS]]Í    USM]QS|uS|]]ÉUSE]u]]]SPVuS6]]ÐUWVSEtE8 u-}t	U    u  E       1<E    =	t+v '    ]GPSt
xƋ?u߅   MtuU2uGe_SVtLhVtVÅt G=tPM_E   EU  U2u
G  _tSVLt2V\Ãt GtP_GE   E  Et	U:u9ut	Eu)Mt	UUr  E     d  EPX$Fƃ  }FSWPx]tEUthSguSp   ËE^FF    Mt&UtP2tmFUFF    	tUCPRy#5	#CPEP~ߋu7E   BF=tPKV?Mt	E     Ut	U    Et	e[^_]Í&    Uj UEPRE]Ít& UEMPj QE]ÐUjEPj .  ]ÐUSU<PE  zR  zI  B<dt<it<ot<ut<xt<Xy  Z8u;z u5<d  <i  <o  <u  <x!  <X)  `1uAz6u;z u5<d  <i  <o  <u  <x  <X  3uEz2u?z u9<d  <i  <o  <u  <x  <X  t& 6uAz4u;z u5<d  <i  <o  <u  <x  <X  LG  zE=  zA3  zS)  zT  J	8u@z
 u:<d  <i  <o  <u  <x  <X  t& 1uAz
6u;z u5<dw  <iz  <o}  <u  <x  <X  3uEz
2u?z u9<d1  <i4  <o7  <u=  <xE  <XM  t& 6uAz
4u;z u5<dr  <ix  <o~  <u  <x  <X  :F!  zA  zS  zT  J8u;z	 u5<d|  <i  <o  <u  <x  <X  1uAz	6u;z
 u5<d6  <i9  <o<  <uB  <xJ  <XR  3uDz	2u>z
 u8<d   <i   <o   <u   <x  <X  Cv 6u+z	4u%z
 u<dt6<it@<otJ<utT<xt_<XtkMupzAujzXudz u^<du
7   <iu
;   <ou
?   <uuC   <xuG   <XuK   PukzTuezRu_z uY<du5a<iu=V<ou
Kv <uuE=t& <xuI-t& <XuZt& +}Iuz t1Z[]Ít& U1WVS]tCUMB8EB<B@    PhSQ  E  hOP   19 t@< t t
	t
uƍF)ĉeUVQRW  t	Cǅu"h\wǃt? u$  ǃj/WuTWgƍF)ĉVWSkoDsfDuD
u_XVSMQWUB<Ee[^_]Ít& '    US]C@ttP1C<tE]]]]ÐUWV1S   tE@   @      j Qdǃ  EPWj'   E/|   |j WjjRj "x @tW   txuz|V'xj  |ƍ&    '    SVW@u
8tWH'  v )ÅuȃW/x=tD=t=tt|QR  t& xR  jL_p  MAxptH|P1xp9B    Bt)AÁ   	Ӊ   			xYs  k  p@t/xB   	щ   			xHpzJt6xHȉ%   	%   	x	xppJBt5xHȉ%   	%   	x	xPЋpzBt5xA   	щ   		    xHp1J,vGrt5xHȉ%   	%   	x	xHȋpfۉB0BB4  pP0  @$tHxB$l   l	l   	l	lt& x@$ll%  tCxBh   h	h   	h	hx@ht9xxJ ȉ%   	%   		t& x~ h1ۉ@   )9@d  &    p@$$t6@xLȉ%   	%   		@xDË$t4@։   	щ   		t& @ƅ
  | 
  S{@dBh@9p@$$t;xJ(ȉ%   	%   		ʋxʉ`xȋP(Љ`$t;xH,ȉ%   	%   	x	\xыA,\p11XlB,@9XT@  p@$   1ɉ8<p@$        $tV<u@`@\ʉȁ   x	Љʁ   		;<u@`x4@\xˋ$1st:Nȉ%   	%   		Bu   1ۉ8   ~   s8&    '    ;hD  dtP;ǋ$t,ȉ%   	%   		    ׋$t)F   	щ   		N]<E<8tA<8tXEUT@l9@XTX  TWuP  p11BPXLʋpЉHDA,l@D49@P  v '    p   1҉0<@ǉ$        t\<u@`t& @\ʉȁ   x	Љʁ   		=v <u@`x@\x΅^t/Kȉ%   	%   		Burt& {tg^$t)C   	щ   		Ktdu1ɉ00t<<0  1<p@$$tV<u@`@\ډ؁   	Љځ   		؋x8<u@`x@\xË$t4xȉ%   	%   		,x,,4{<uLt& H($t*Oȉ%   	%   		BtVuP$t.   	щ   		    (,P  P{(A>t& dPdS4PVQPpHt)Á   	Ӊ   		t*GƁ   	։   		wt&,PSRPP,*(PZ)؉<<&4@l9@fX94tv p1ɉ@r,9@s|&    pQ4t3A0@Љ%   	%   		v pB0@@D@p@q,9r1@X9@   pr,    @1L\; tCǉ   t11݉1ҍN1BD<up@q7&    )9r)t& ËDuውp@y@@X9@5XpJ LB$HJ(DB4    B0   pB     B$    B(       pA     A$    A(    qpBtPZtt|xSQ7t& xR!pPMA    7v }p]WVS)pHRpDRP  e[^_]ÐUWVS}u,       ? 5,thWu,+VWtWÃt,t	9ttV%؍e[^_]ÐUVuS]FSPR5uPQ uCV)Ѝe[^]Ív '    UWVSu}tB	t  tM    FtHt    v F  WVR1l  WFP}ËFu0E    uWvVXtE   E$  u.E    tW^S#tE   E   WNQ F
   $t& ډ       щ1   v щ1      )Ӊ   19x    19i&    19Y&    19I&    199&    19)&    WVR31҅t/1e[^_]Í    UWVS<Mu1  Uu,EEP>}P(Ũ)ĉD$RWPMEChh	S{EЃt9	9Bu-utZSJUQRUЋ@P  t& z  =	 EuO9uo9t$   5	"&    E    C&    		#EMPQtxE EuEU   UBE8/     Pxv \ D)ĉe    ESP9u>"tͅ  MuyWj Vf / @P]S  ZËEYSP1	  }EWR$EGUȃ uD)ĉe܃MRVSQf / @PZ .mo }W)ĉe؍v M:ut& EE:tuUCB I:Mt&    AEUt<:u =	uu؃j/VuMCuA  uؿ   8  ]M܋USEQRP  E1}EuP]WVSE  ǃuF   '    ^Uދt'Eċ}MPWQR|  ǃtӋEEEЅ   ŨMȍDPÃ   ũCMVQPUȃBRURPEC	CEU{CShh	SEЃt9t.Sx v MЋ	PUxPUPMԉEtu]MVWSQ  ǃe&    =	t5ht!8 tU}u]RWVSP   UԉMEt}EuEe[^_]Ív '    UWVS\ExuuVPE@E  EЋUЋ@EZ0  MQ]1ɃÈ; tCʁ   t11݋E1ҋ@,EĉuĉȉUȋUă1EBU@4EEЋ@0Et& Ut/UȋMÁ   	Ӊ   			EȋU  K;]   MЋqut2y߉ȉ%   	%   		;Us   EЋŰx9   EMЅ1t2Lȉ%   	%   		ʍ2&    tMPQ;&U؋M)ЋQ$M9v$|uWVu]   t& EċM)9Er)E]]E    ]9]  EЋpx EUUt2Lȉ%   	%   	E	&    M܋ETЋUPRWy]~E@E9]rF      U9U   MЋy1t8YE܋Lȉ%   	%   		ʍ2Ut& UЋM܋ZDƉu؅t.E܋Éȉ%   	%   		BU'U܋C]MЋ]܋uQ()DE؋ډEԋ]UЅۋB8t
M;Au't#MЃQUEЃ}RPW:]Ѓ{<  C@uSjC EuVC@u5C@'&    1L  11ɉ		,  t&   U܋   E    5	11dv +8   E~E  WS=	"E     W=	aÍs	uEԋM؉E衘	MvUЉEEPEPEPEPr<V @Wu	)эAEЋX@E܉	)ʉЃ	0	؋U܋HM؋ EԋE]ԉE؍e[^_]Ðt& UWVSEM}XQSDRqƃ;sH!ƉNt*EÐt& j RB9ډs	NuЍe[^_]Ð&    UUUw<$.%#/:BN]ÉUSh\Ãt1; H!ËUERPk  ۉtCuBuы]ȉ]ÐUWVS]}   hSZYhStktg	tT	Ct
DA u0	w;j Ej
PS%;]t%EPui  u
EUE    0e[^_]ÐUWVS   	7  1h  V$É@< t|3/t   <DPDtK@RVPtD@/<DBRhPDt1D1hR4ǃ18    1ۉ4  
     	  #uDG;GrW	@GЃt
u@V  }  ]WPhPShW HS  0ً00! t  u
0 ҍh0)0! t  u ҃)΋4u0PP4,04ЍPP84P88y4EP80)CK)P^XhPSG;GrWt& @GЃW4t84 DtDP(	e[^_]Ðt& UVSjƃu~À; t[&    SVt;*u{ uS[t&SG\$;Xx u> ue[^]ÐUWVSu}   t}WVtlV<$É		D$Ãt9	@PVS0			@PCWS	11		e[^_]ÐU]BUWVS	u   	   	QPV8uq	2ua</u[<2W	@$Ãt55		VQSN5	XZWPt& e[^_]ÐUE    ]鋿UVSu]Vj"t^<
u,Vh{ tXVh(t& <"t<\uVj\]VPMCuuE"   e[^]-e[^]Í    UWVSEu}EEEEEDtSV;   t7Ht1PHDQ1҃DVL@$胾D   VPy[XhVH   HhSȽZYWS_XhS貽UY^RSfEt#hS莽M^_QSBXZhh Sk]E
   e[^_]ҿe[^_]ÐUMUEQj j j RP]ÐUWVS4Uj }uRj j j j j j j Wj V@PVh	  Ã@txCu}WS4sy  1       '    G3t!HuURP3HtԉH!,  &    W'  EЃtP$ǃtxEPEPEPEPEPEPEPEPWR  U(]jMRUS]QMRUS]QMRSQPVE@PVh	  Ã@u1   SuEPSsu9   
&    3t!HuURP3HtՋUЅtWսEtEP؍e[^_]ÐUWVSE    	}u 	&    }	t$h jP	PEP t& 1t@E   	18 t~v 8:u'    ȍPщ	x:tÄt*:t%    '    P	HЄt:u9s)PS(   ƃu
	8 u-Ee[^_]ÉUWVS  U}B)ĉjh RWS诼P覼Y^hS$豼Tu1E  TjR1P          XًT	DC t&    ADF uB  <#:  LALPt!DF uv AtDF t1҄t AT	ADC u9   HAHVt%DC u&    AtDC t1Ҁ
u	 A
t 	9	r#    LW蜹H@^DS船	@D@@ȋ	9   @=   s   	QS<{ƃ  	9t:=	19s.    	v '    	)DA9rډ5	<		D	L5	P	WR(		5	D@	ȋHW	QPD@	P	Xj
SuuTRh  S詷uҋTu XVh  S肷'TPhPth 5		jVS豷Pe[^_]US	d   t     P	P買ut& 	1	]]Í        UEU EE]U1WVSHU:/UH!ЉEԋEP]ԃE t}Wж\Etu V跶\EtM$Q螶\E   tU(R肶\EtE,Pitދ}8WRǍD7EtJEt]0S1X   EtM4Q0D
v 3DP0Ã5  Uԉ؅t-}ԃuWVSYMԃj:QSzUԃ@/URP0E t _}@WPEt .u @VPEt .M$@QPE   t8@@E@t+&    E       t& U(RP衳Et +},@WP至Et4 ,@Etu0VPgEt _M4@QPM /U8@RP9uEЅtAv '    UЋ:t!S
Qt<uЃEЋ@EuɋUЅuE<uS袵<  }ԅtMԃUQR薵ẼE   UE⪪%UU  Ё33  %É  }   w   REЃu1  &    UЉ1҃}wEu   EЉP@    UЉB1}}E    )D  EUЉEčv }#  G   tǘ       }   1Z&    E8]4jM0U,PE(S]$QM RUPESQRPWVͲ]@PVSU@EȉUt']M9sj V @9    U1pE!ƅfPt& u8]4jM0U,VE(Su$Q] RMPUVESuQ]RWPVSU@EȉUOE1ɋUЉLEЍe[^_]Í    UWV1S1ۃE   ;us1T	UAAt   1CfH!EF;ur֋MtC
&    CPǰǃt^Utiso _1;us@v ET	DPPt
H	%   ft
UCF;ur e[^_]ÐUE@t_t@t
+t,u]Ív '    UWV1SE}     U    E     U    E      U$    E(     ]E    SqÃ9uj RۮÃ   _    CU&    Ct.t@t+t
,t_u߃ .u~E    CEt& Ct@uE9tN9 tIU؃)PPUY_PER\uUP@t}t?+u:1ɀ@AM CE}Cut<+t<,t<_u   }to,+<v_u_E   +u" CU Ct
,t_u,u CE$Ct_u_u U(C}u6Ut8 uߋUt8 uUt8 ue[^_]ÐUWVSu}Kx        t9Kyj蜭t#2EKBxJv Ky'v Kxt& '    P4  Ky1e[^_]Ít& UEMUEEPQUjO]Ít& '    U卅XW   8V1S1ہ   ǉ։f ҍD
9  )G'  ?  '  v'  ۍD )ĉ PWVqÉ ߋ    v*t 󥋅 t|QDQ9H  	    uMQP  11ɉ     w@˃5wz^9uly   g    t  ~      zm  `   )ȉC   $	  MA   FV((Pj,j0aQVRj PNQjRFPNQY    Pjj	j j j &v j jj tBVF)Ƌ)5w#f9^usv ]uh  u      t& ; t| tC5w͍f^uy t    tt/&    1!   t& h      e[^_]Ív US]tRtHt&3u-KQSRCP]]]]]É'    UVuS]A	  < t<	tA|   $ 0ATB,0<	v     9=      9=      A     t& 9   A   9=u

   A   9=u	   A	     b     U     Hv      8v      (v      v I11t&    [^]Ív U]ÐUSR    [  P  1҅tRj u]ÐUSR=t    '    ;uX[]ÉUQQÉ'    USR    [~  v G]               h           v           V                   version variables help  /usr/share/locale gettext-runtime hvV 0.14.1 %s (GNU %s) %s
 2003-2004 Bruno Haible Written by %s.
 too many arguments missing arguments Operation mode:
 Informative output:
 standard input error while reading "%s"          Copyright (C) %s Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
                         Try `%s --help' for more information.
                          Usage: %s [OPTION] [SHELL-FORMAT]
                              Substitutes the values of environment variables.
                 -v, --variables             output the variables occurring in SHELL-FORMAT
                     -h, --help                  display this help and exit
         -V, --version               output version information and exit
                              In normal operation mode, standard input is copied to standard output,
with references to environment variables of the form $VARIABLE or ${VARIABLE}
being replaced with the corresponding values.  If a SHELL-FORMAT is given,
only those environment variables that are referenced in SHELL-FORMAT are
substituted; otherwise all environment variables references occurring in
standard input are substituted.
              When --variables is used, standard input is ignored, and the output consists
of the environment variables that are referenced in SHELL-FORMAT, one per line.
   Report bugs to <bug-gnu-gettext@gnu.org>.
 write error %s /.libs/ lt- memory exhausted lld lli llo llu llx llX charset=  	
 OUTPUT_CHARSET //TRANSLIT           messages /usr/share/locale       0@HQ`p     .mo POSIX GETTEXT_LOG_UNTRANSLATED LC_COLLATE LC_CTYPE LC_MONETARY LC_NUMERIC LC_TIME LC_MESSAGES LC_ALL LC_XXX LANGUAGE                                          plural= nplurals= /usr/lib charset.alias %50s %50s ASCII \n" 
" a domain  
msgid  
msgid_plural  
msgstr[0] ""
 
msgstr ""
                     /locale.alias iso                
	                                 
    	                                       "     ' +    "  5                  	 
            	 
         	 
     
           
     	  	 
           	      	        	  	        	     	    	         1Fp   Qp @pparse error parser stack overflow           $             h|                         X      (   @   p
                     (              @      8         oo   o                                                        P        Ǝ֎&6FVfvƏ֏&6FVfvƐ֐&6FVfvƑ֑&6FVfv     GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113.0)  GCC: (GNU) 2.96 20000731 (Red Hat Linux 7.3 2.96-113)           01.01             01.01             01.01             01.01             01.01             01.01             01.01             01.01             01.01             01.01             01.01             01.01             01.01             01.01             01.01             01.01             01.01             01.01             01.01             01.01             01.01             01.01             01.01             01.01             01.01             01.01             01.01    .symtab .strtab .shstrtab .interp .note.ABI-tag .hash .dynsym .dynstr .gnu.version .gnu.version_r .rel.dyn .rel.plt .init .text .fini .rodata .data .eh_frame .dynamic .ctors .dtors .got .bss .comment .note                                                                        #                              1         ((  H               7         pp                ?         @@                   G   o                     T   o     P                c   	        8                l   	      @@                u         XX                    p         pp  @                {           V                          i                             i  V                           w  4                           LLw                             PPw                           x                               x                             ((x                            H	Hy                                  Hy                                                                  (                                  0  P              	                                                    Ԓ          Ԓ                            $          2   $      >          T   L      g   `      r   `	     {   p                  (                  `          `                           L         $         L                             @        g       P       	       R     ,  {    =  `     L  2     [  p     f          }       	        t       x	       |	       	                   L        p                    `         )        p         p9                                                    F           %  	     *  	     8  N     I   [     ^  `h     l  	     v  	                 h       |        @         @[      	        @         @       	       	       	       	                                  D     )  H                         8  	                K  	     _  	     d        r  	     v                	       T       	       	       	        @          @                          P%       @      F       `       z8              8            %  l     -  ^l     5  =    B        Q                               (          p          @                                        @     	     X     
     p                                                  L          P                               (          H	                                  ^  `-     i  *     q  A        L      c               0       g       H	                P      )        @  Ў   "   a  A      u  %         :                              -        0        P       @     
  	            9  pn     E  P:      U  `
     j  p@                      X      X     
         p       	       (       -      $  >      6        G       W  F     j  ЏU      {  %   "             `       L	              P	        %       	     4  @    G  Т     g  .     o  V                        /       0<       pL      @        P      	  `M     	  y     )	  	     D	   D     M	  ,     o	  pg     	  p      	        	  !     	  H	     	  =    	        	   [    	  )     
         
  ?      .
  2      @
  Аt      R
        X
  '      j
  @&     |
       
  (3    
        
  P      
   7      
  0t      
  @@      
  PP        `        pt      .       @       _  e    t  ;        H	               (                	       O        Б               T	     %  X	     6  "      K   v     \        m   j              0d               @        P        `2        ph               \	     '      <  @      L       _  t      r  `?                     0       gcc2_compiled. call_gmon_start p.0 __DTOR_LIST__ completed.1 __do_global_dtors_aux __EH_FRAME_BEGIN__ fini_dummy object.2 frame_dummy init_dummy force_to_data __CTOR_LIST__ __do_global_ctors_aux __CTOR_END__ __DTOR_END__ __FRAME_END__ long_options usage print_variables all_variables note_variables subst_from_stdin find_variables print_variable cmp_string sorted_string_list_member note_variable variables_set do_getc buffer.0 bufmax.1 buflen.2 close_stdout_status fixup_null_alloc set_binding_values get_sysdep_segment_value transcmp plural_eval root enable_secure category_to_name guess_category_value plural_lookup freemem.0 freemem_size.1 plvar plone get_charset_aliases charset_aliases set_this_relocation_prefix orig_prefix_len curr_prefix_len orig_prefix curr_prefix print_escaped last_logfilename.0 last_logfile.1 _nl_loaded_domains locale_alias_path.0 nmap alias_compare map read_alias_file aliasfile.1 maxmap extend_alias_table string_space_act string_space_max string_space new_exp new_exp_2 yytranslate yyr1 yyr2 yydefact yydefgoto yypact yypgoto yytable yycheck __gettextlex __gettexterror __dso_handle xalloc_die xmalloc nl_langinfo@@GLIBC_2.0 _nl_load_domain ferror@@GLIBC_2.0 libintl_bindtextdomain libintl_gettext_germanic_plural strchr@@GLIBC_2.0 __ctype_tolower@@GLIBC_2.0 ungetc@@GLIBC_2.0 _DYNAMIC __rawmemchr@@GLIBC_2.1 __register_frame_info@@GLIBC_2.0 __stpcpy@@GLIBC_2.0 strcmp@@GLIBC_2.0 close@@GLIBC_2.0 _nl_expand_alias _fp_hw iconv_open@@GLIBC_2.1 fprintf@@GLIBC_2.0 getenv@@GLIBC_2.0 close_stdout fflush@@GLIBC_2.0 _nl_msg_cat_cntr libintl_set_relocation_prefix fwriteerror mmap@@GLIBC_2.0 setlocale@@GLIBC_2.0 __cxa_atexit@@GLIBC_2.1.3 libintl_dcigettext __errno_location@@GLIBC_2.0 _nl_log_untranslated _init _nl_find_domain malloc@@GLIBC_2.0 program_name xmalloc_exit_failure fscanf@@GLIBC_2.0 munmap@@GLIBC_2.0 libintl_relocate libintl_gettext __uflow@@GLIBC_2.0 tfind@@GLIBC_2.0 __deregister_frame_info@@GLIBC_2.0 fgets_unlocked@@GLIBC_2.1 _nl_normalize_codeset stdout@@GLIBC_2.0 locale_charset stderr@@GLIBC_2.0 abort@@GLIBC_2.0 libintl_nl_default_default_domain _nl_make_l10nflist libintl_bind_textdomain_codeset xcalloc __argz_stringify@@GLIBC_2.0 libintl_nl_default_dirname _start __fxstat@@GLIBC_2.0 fputs@@GLIBC_2.0 _nl_explode_name strstr@@GLIBC_2.0 strlen@@GLIBC_2.0 qsort@@GLIBC_2.0 set_program_name libintl_nl_domain_bindings xrealloc libintl_nl_current_default_domain libintl_gettext_free_exp strncmp@@GLIBC_2.0 fputc@@GLIBC_2.0 libintl_dcgettext __bss_start main __libc_start_main@@GLIBC_2.0 _nl_find_msg realloc@@GLIBC_2.0 data_start iconv_close@@GLIBC_2.1 printf@@GLIBC_2.0 getuid@@GLIBC_2.0 _fini memcpy@@GLIBC_2.0 _nl_find_language fclose@@GLIBC_2.1 atexit strrchr@@GLIBC_2.0 __strdup@@GLIBC_2.0 getopt_long@@GLIBC_2.0 getgid@@GLIBC_2.0 open@@GLIBC_2.0 strcasecmp@@GLIBC_2.0 exit@@GLIBC_2.0 getegid@@GLIBC_2.0 calloc@@GLIBC_2.0 libintl_gettext_extract_plural _nl_init_domain_conv __fsetlocking@@GLIBC_2.2 _edata _IO_putc@@GLIBC_2.0 _GLOBAL_OFFSET_TABLE_ free@@GLIBC_2.0 _end __argz_count@@GLIBC_2.0 getcwd@@GLIBC_2.0 tsearch@@GLIBC_2.0 __ctype_b@@GLIBC_2.0 stdin@@GLIBC_2.0 __mempcpy@@GLIBC_2.0 iconv@@GLIBC_2.1 fopen@@GLIBC_2.1 __strtoul_internal@@GLIBC_2.0 _IO_stdin_used fwrite@@GLIBC_2.0 __data_start error@@GLIBC_2.0 _IO_getc@@GLIBC_2.0 basename@@GLIBC_2.0 bsearch@@GLIBC_2.0 _nl_locale_name optind@@GLIBC_2.0 libintl_gettextparse read@@GLIBC_2.0 libintl_textdomain geteuid@@GLIBC_2.0 _nl_free_domain_conv __gmon_start__ strcpy@@GLIBC_2.0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ./menu-entries.sh                                                                                   0000755 0001750 0001750 00000010350 10455707565 014112  0                                                                                                    ustar   jmaroto                         jmaroto                                                                                                                                                                                                                #! /bin/bash

cd $(dirname $0)
export TEXTDOMAINDIR=$(pwd)/locale
export TEXTDOMAIN=check

INSTALL_PATH="$2"
PIXMAPS_PATH="$INSTALL_PATH/share/pavdsk/pixmaps"

ENTRIES=(
		"`./gettext \"Acerca de Panda\"`"                 "about"         "acercade_panda.png"   "/etc/init.d/pavdsk browse `./gettext \"http://www.pandasoftware.com/redirector/?prod=3100\&app=Home\&lang=spa\"`"
		"`./gettext \"Acuerdo de Licencia de Panda\"`"    "eula"          "acuerdo_licencia.png" "/etc/init.d/pavdsk browse `./gettext \"file://license.txt\"`"
		"`./gettext \"Ayuda\"`"                           "help"          "ayuda.png"            "/etc/init.d/pavdsk browse `./gettext \"file://share/pavdsk/help/es_ES/index.htm\"`"
		"`./gettext \"Desinstalar Panda DesktopSecure\"`" "uninstall"     "desinstalar.png"      "/etc/init.d/pavdsk uninstall"
		"`./gettext \"Panda DesktopSecure\"`"             "desktopsecure" "desktop_secure.png"   "/etc/init.d/pavdsk start pavdskgui"
		"`./gettext \"Soporte técnico\"`"                 "support"       "soporte_tecnico.png"  "/etc/init.d/pavdsk browse `./gettext \"http://www.pandasoftware.com/redirector/?prod=3100\&app=Support\&lang=spa\"`"
		)

DIRECTORY=("`./gettext \"Panda DesktopSecure\"`" "desktop_secure.png")

PROGRAMNAME="DesktopSecure"

function delete_desktop_entry()
{
	local INDEX="$2"
	local FILENAME="$1/Panda-$PROGRAMNAME-${ENTRIES[INDEX + 1]}.desktop"
	rm -f "$FILENAME" &> /dev/null
}

function generate_desktop_entry()
{
	local INDEX="$2"
	local FILENAME="$1/Panda-$PROGRAMNAME-${ENTRIES[INDEX + 1]}.desktop"
	cat > "$FILENAME" <<-EOF
		[Desktop Entry]
		Name=${ENTRIES[INDEX]}
		Comment=${ENTRIES[INDEX]}
		Icon=$PIXMAPS_PATH/${ENTRIES[INDEX + 2]}
		Type=Application
		Terminal=false
		Exec=${ENTRIES[INDEX + 3]}
		Categories=$PROGRAMNAME;Panda;
		Encoding=UTF-8
	EOF
}

function delete_directory_entry()
{
	local FILENAME="$1/Panda-$PROGRAMNAME.directory"
	rm -f "$FILENAME" &> /dev/null
}

function generate_directory_entry()
{
	local FILENAME="$1/Panda-$PROGRAMNAME.directory"
	cat > "$FILENAME" <<-EOF
		[Desktop Entry]
		Name=${DIRECTORY[0]}
		Comment=${DIRECTORY[0]}
		Icon=$PIXMAPS_PATH/${DIRECTORY[1]}
		Type=Directory
		Encoding=UTF-8
	EOF
}

function generate_menu_entry()
{
	local FILENAME="$2"
	test "$1" == "new" && declare -a LABELS=("Menu" "Directory" "Include" "Category") || declare -a LABELS=("Folder" "Desktop" "Query" "Keyword")

	if grep "<Name>Panda $PROGRAMNAME</Name>" "$FILENAME" &> /dev/null; then
		return
	fi

	test "$1" == "new" || DONTSHOW="<DontShowIfEmpty/>"
	awk "{ print; if (/^[ \t]*<${LABELS[0]}>/ && ! done) { print \"\
		<${LABELS[0]}>\n\
		  <Name>Panda $PROGRAMNAME</Name>\n\
		  <${LABELS[1]}>Panda-$PROGRAMNAME.directory</${LABELS[1]}>\n\
		  <${LABELS[2]}>\n\
		    <And>\n\
		      <${LABELS[3]}>Panda</${LABELS[3]}>\n\
		      <${LABELS[3]}>$PROGRAMNAME</${LABELS[3]}>\n\
		    </And>\n\
		  </${LABELS[2]}>\n\
		${DONTSHOW}</${LABELS[0]}>\
	\"; done=1 } }" "$FILENAME" > "$FILENAME".tmp
	mv "$FILENAME".tmp "$FILENAME"
}

XDG_CONFIG_DIRS="$XDG_CONFIG_DIRS:/etc/xdg"
test -z "$XDG_DATA_DIRS" && XDG_DATA_DIRS=/usr/share
declare -a XDG_DATA_DIRS_array
oldifs="$IFS"
IFS=:
for dir in $XDG_CONFIG_DIRS; do
	test -z "$XDG_CONFIG_DIR" -a -d "$dir" && XDG_CONFIG_DIR="$dir"
done
for dir in $XDG_DATA_DIRS; do
	XDG_DATA_DIRS_array[${#XDG_DATA_DIRS_array[@]}]="$dir"
done
IFS="$oldifs"

if [ -n "$XDG_CONFIG_DIR" ]; then
	generate_menu_entry "new" "$XDG_CONFIG_DIR/menus/applications.menu"
fi
for dir in ${XDG_DATA_DIRS_array[@]}; do
	test "$1" == "create" && generate_directory_entry "$dir/desktop-directories" || delete_directory_entry "$dir/desktop-directories"
	for entry in $(seq 0 4 $((${#ENTRIES[@]} - 1))); do
		test "$1" == "create" && generate_desktop_entry "$dir/applications" $entry || delete_desktop_entry "$dir/applications" $entry
	done
done

# KDE Ubuntu 5.10
if [ -f "$XDG_CONFIG_DIR/menus/kde-applications.menu" ]; then
	generate_menu_entry "new" "$XDG_CONFIG_DIR/menus/kde-applications.menu"
fi

# GNOME Debian 3.1
if [ -f "/etc/gnome-vfs-2.0/vfolders/applications-all-users.vfolder-info" ]; then
	generate_menu_entry "old" "/etc/gnome-vfs-2.0/vfolders/applications-all-users.vfolder-info"
	test "$1" == "create" && generate_directory_entry "/usr/share/gnome/vfolders" || delete_directory_entry "/usr/share/gnome/vfolders"
fi

                                                                                                                                                                                                                                                                                        ./disable-fp.sh                                                                                     0000755 0001750 0001750 00000000257 10455707565 013512  0                                                                                                    ustar   jmaroto                         jmaroto                                                                                                                                                                                                                #! /bin/sh
PREFIX=$(cat /tmp/pavtmpdir)
CONFIGFILE="$PREFIX/etc/desktopsecure"

echo -e "/<permanent/\n/<installed/\n/<fp/\ns/true/false/\nwq" | ed "$CONFIGFILE" &> /dev/null
                                                                                                                                                                                                                                                                                                                                                 ./fix.sh                                                                                            0000755 0001750 0001750 00000004404 10455707565 012270  0                                                                                                    ustar   jmaroto                         jmaroto                                                                                                                                                                                                                #!/bin/sh
#
# Miscelannous work before installation

PATH=/sbin:/usr/sbin:$PATH

TMPDIR=`cat /tmp/pavtmpdir`
PREFIX=`cat /tmp/pavinstalldir`
LOCALE="${LANG:0:5}"

GTKRC_DIR="$PREFIX/share/pavdsk/gtkrc/gtkrc"

KERNEL=`uname -r`

[[ -n "$1" ]] && PREFIX="$1" 
[[ -n "$2" ]] && LOCALE="$2"

mkdir -p "$PREFIX/etc/tasks"

CONFIGFILE="$PREFIX/etc/desktopsecure"
echo -e "/<permanent/\n/<active/\n/<protection/\ns/false/true/\nwq" | ed "$CONFIGFILE" &> /dev/null

# Fix the gtkrc file with the installation dir
sed -e "/@prefix@/s%@prefix@%$PREFIX%" < "${GTKRC_DIR}.in" > "${GTKRC_DIR}.new"
rm -f "$GTKRC_DIR"
mv "${GTKRC_DIR}.new" "$GTKRC_DIR"

# Create start-stop script
rm -f /etc/init.d/pavdsk
ln -s "$PREFIX/bin/pavdsk" /etc/init.d/pavdsk
test -e /etc/debian_version && { update-rc.d -f pavdsk remove; update-rc.d pavdsk defaults 01 99; } || chkconfig --add pavdsk

# Install resident autostart entries
./rainstaller -i

# Disable distro firewall (if DesktopSecure firewall is installed)
./check-firewall.sh && chkconfig --del iptables

# Copy license files
test -r license-$LOCALE.txt && cp license-$LOCALE.txt "$PREFIX/license.txt" || cp license-en_US.txt "$PREFIX/license.txt"
cp license-3rd.txt "$PREFIX/license-3rd.txt"

# Copy uninstaller files
mkdir -p "$PREFIX/uninstall" &> /dev/null
cp uninstall.sh "$PREFIX/uninstall"

# Copy help files
mkdir -p "$PREFIX/share/pavdsk/help"
for l in es_ES en_US; do
	tar xzf ./help_$l.tar.gz -C "$PREFIX/share/pavdsk/help"
done

# Copy dazuko precompiled modules
mkdir -p "$PREFIX/share/pavdsk/dazuko/modules"
cp modules/* "$PREFIX/share/pavdsk/dazuko/modules"
cp install-dazuko.sh modtag test_selinux test_capability "$PREFIX/share/pavdsk/dazuko"

# Remove task files
rm -f "$PREFIX/etc/tasks/hd_task"
rm -f "$PREFIX/etc/tasks/memory_task"

# Create pavld script
mkdir -p "$PREFIX/bin" &> /dev/null
echo '#!/bin/sh' > "$PREFIX/bin/pavld"
echo "LD_LIBRARY_PATH=\"$PREFIX/lib\" \"$PREFIX/bin/pavldbin\" \"\$@\"" >> "$PREFIX/bin/pavld"
chmod 0755 "$PREFIX/bin/pavld"

# Enable autohinter for Luxi Sans
test -d /etc/fonts/conf.d && cat > /etc/fonts/conf.d/00-pavdsk.conf << EOF
<fontconfig>
  <match target="font">
    <test name="family"><string>Luxi Sans</string></test>
    <edit name="autohint" mode="assign"><bool>true</bool></edit>
  </match>
</fontconfig>
EOF

                                                                                                                                                                                                                                                            ./install-dazuko.sh                                                                                 0000755 0001750 0001750 00000016222 10455707565 014444  0                                                                                                    ustar   jmaroto                         jmaroto                                                                                                                                                                                                                #! /bin/bash

export PATH=/sbin:/usr/sbin:/bin:/usr/bin:$PATH

PROC_VERSION="/proc/version"
PROC_MODULES="/proc/modules"
DAZUKO_TAR="dazuko-2.1.1"

get_dazuko_path()
{
	local DAZUKO=$(modinfo dazuko 2> /dev/null | sed -n "s/^filename:[[:blank:]]*//p")
	if [ -z "$DAZUKO" ]; then
		test "`uname -r | grep -o "[0-9]\.[0-9]"`" = "2.6" && EXTMOD="ko" || EXTMOD="o"
		modinfo dazuko &> /dev/null && DAZUKO="/lib/modules/`uname -r`/extra/dazuko.$EXTMOD" || DAZUKO=""
	fi
	echo "$DAZUKO"
}

is_dazuko_installed()
{
	local dazukoversion=$(grep -a 'DazukoVersion=\([0-9][0-9]*\.\)*[0-9]*' $(get_dazuko_path) /dev/null | sed -e 's/DazukoVersion=\(\([0-9][0-9]*\.\)*[0-9]*\)/\1/' | sed -e 's/\([0-9]*\)/Z\1Z/g;s/Z\([0-9]\)Z/Z0\1Z/g;s/Z\([0-9][0-9]\)Z/Z0\1Z/g;s/Z\([0-9][0-9][0-9]\)Z/Z0\1Z/g;s/[^0-9]//g')
	local minversion=$(echo "$1" | sed -e 's/\([0-9]*\)/Z\1Z/g;s/Z\([0-9]\)Z/Z0\1Z/g;s/Z\([0-9][0-9]\)Z/Z0\1Z/g;s/Z\([0-9][0-9][0-9]\)Z/Z0\1Z/g;s/[^0-9]//g')
	local minimum=$(echo -e "$dazukoversion\n$minversion" | sort | head -1)
	if [ "$minimum" == "$minversion" ]; then
		return 0
	else
		return 1
	fi
}

is_module_loaded()
{
	grep -q -s "^$1 " $PROC_MODULES
}

is_module_in_use() {
	local refcount=$(grep "^$1 " $PROC_MODULES | cut -s -d" " -f 3)
	test "x$refcount" != "x" && test $refcount -ne 0 && return 0
	return 1
}

check_special_distro()
{
	test -d kernels || return 0

	kernel_id=$(cksum $PROC_VERSION | cut -d' ' -f1)
	case $kernel_id in
	3603444847)
		echo -n "Fedora Core 2 kernel 2.6.5-1.358 "
		special_distro="fedoracore2-2.6.5-1.358"
		;;
	2421898159)
		echo -n "Fedora Core 3 kernel 2.6.9-1.667 "
		special_distro="fedoracore3-2.6.9-1.667"
		;;
	3828325572)
		echo -n "Fedora Core 4 kernel 2.6.16-1.2108_FC4 "
		special_distro="fedoracore4-2.6.16-1.2108_FC4"
		;;
	1601742235)
		echo -n "Red Hat Enterprise Linux 4 Desktop kernel 2.6.9-34.EL "
		special_distro="rhel4d-2.6.9-34.EL"
		;;
	esac
	test "x$special_distro" == "x" && return 0
	return 255
}

action_special_distro() {
	case $special_distro in
	fedoracore2-2.6.5-1.358)
		need_reboot="y"
		rpm -U --replacepkgs --replacefiles --oldpackage kernels/kernel-2.6.5-1.358.i686.rpm || return 255
		return 0
		;;
	fedoracore3-2.6.9-1.667)
		need_reboot="y"
		rpm -U --replacepkgs --replacefiles --oldpackage kernels/kernel-2.6.9-1.667.i686.rpm || return 255
		return 0
		;;
	fedoracore4-2.6.16-1.2108_FC4)
		need_reboot="y"
		rpm -U --replacepkgs --replacefiles --oldpackage kernels/kernel-2.6.16-1.2108_FC4.i686.rpm || return 255
		return 0
		;;
	rhel4d-2.6.9-34.EL)
		need_reboot="y"
		rpm -U --replacepkgs --replacefiles --oldpackage kernels/kernel-2.6.9-34.EL.i686.rpm || return 255
		return 0
		;;
	esac
	return 255
}

find_precompiled_module()
{
	for i in $(ls modules/${1}*.tko modules/${1}*.to 2>/dev/null); do
		if ./modtag -c $i $PROC_VERSION; then
			found_module=$(basename $i)
			return 0
		fi
	done
	return 255
}

install_precompiled_module()
{
	mkdir -p "$1" || { echo "Error copying module."; exit 255; }
	./modtag -u modules/$2 "$1/$(echo $2 | sed -e 's/^\([^\-]*\).*\.t\(.*\)$/\1.\2/')" || { echo "Error copying module."; exit 255; }
	depmod -a
}

compile_custom_module()
{
	tar -xzf $DAZUKO_TAR.tar.gz -C /tmp || return 255
	pushd /tmp/$DAZUKO_TAR
	./configure --disable-rsbac || { return 255; popd; }
	if [ "$1" != "configure" ]; then
		make install || { return 255; popd; }
	fi
	rm -rf /tmp/$DAZUKO_TAR
	popd
	return 0
}

check_builtin_capability()
{
	return 255
	kernel_minor=$(uname -r | cut -d'.' -f2)
	if [ $kernel_minor -gt 4 ]; then
		if ! is_module_loaded capability; then
			if ./test_capability; then
				return 0
			fi
		fi
	fi
	return 255
}

guess_distro()
{
	if [ -e /etc/redhat-release ]; then
		grep -q "Fedora Core release 3 (Heidelberg)" /etc/redhat-release && { echo "fc3"; return 0; }
		grep -q "Fedora Core release 4 (Stentz)" /etc/redhat-release && { echo "fc4"; return 0; }
		grep -q "Red Hat Enterprise Linux Desktop release 4 (Nahant)" /etc/redhat-release && { echo "rhel4d"; return 0; }
	fi
}

try_disable_selinux()
{
	distro=$(guess_distro)
	case $distro in
	fc[34] | rhel4d)
		if [ -f /etc/selinux/config ]; then
			test -f /etc/selinux/config-prepanda || cp /etc/selinux/config /etc/selinux/config-prepanda || return 255
			cp /etc/selinux/config /etc/selinux/config.tmp || return 255
			sed "s/^[[:blank:]]*SELINUX[[:blank:]]*=.*$/SELINUX=disabled/" /etc/selinux/config.tmp > /etc/selinux/config || return 255
			rm -f /etc/selinux/config.tmp
		else
			return 255
		fi
		;;
	*)
		return 255
		;;
	esac
	return 0
}

cd "`dirname "$0"`"

if [ "$1" == "check" ]; then
	./test_selinux && exit 2
	is_dazuko_installed 2.1.0 && exit 0
	check_special_distro || exit 1
	if find_precompiled_module dazuko; then
		./test_selinux && exit 2
		exit 0
	else
		if compile_custom_module configure; then
			exit 3
		fi
		exit 255
	fi
	exit 255
fi

if find_precompiled_module iptable_nat; then
	IPTABLENATDIR=$(dirname $(modinfo iptable_nat 2> /dev/null | sed -n "s/^filename:[[:blank:]]*//p") 2> /dev/null)
	if [ -z "$IPTABLENATDIR" ]; then
		IPTABLENATDIR=/lib/modules/$(uname -r)/kernel/net/ipv4/netfilter
	fi
	test -e $IPTABLENATDIR/iptable_nat.ko -a ! -e $IPTABLENATDIR/iptable_nat.ko-prepav && mv $IPTABLENATDIR/iptable_nat.ko $IPTABLENATDIR/iptable_nat.ko-prepav
	test -e $IPTABLENATDIR/iptable_nat.o -a ! -e $IPTABLENATDIR/iptable_nat.o-prepav && mv $IPTABLENATDIR/iptable_nat.o $IPTABLENATDIR/iptable_nat.o-prepav
	install_precompiled_module "$IPTABLENATDIR" "$found_module"
	is_module_in_use iptable_nat || { modprobe -r iptable_nat ipfwadm; modprobe iptable_filter; modprobe iptable_nat; }
fi

if is_dazuko_installed 2.1.0; then
	echo "Dazuko already installed."
	exit 0
fi

if ./test_selinux; then
	echo -n "SELinux enabled, trying to disable... "
	if try_disable_selinux; then
		echo "ok."
		need_reboot="y"
	else
		echo "failed, you need to disable SELinux manually."
		exit 255
	fi
fi

echo -n "Checking for special distro... "
if check_special_distro; then
	echo -n "no special distro... checking capability... "
	if check_builtin_capability; then
		echo "capability module built in kernel, dazuko wouldn't work. Recompile your kernel without builtin capability."
		exit 255
	else
		echo "ok."
	fi
else
	echo -n "special distro, performing actions... "
	if action_special_distro; then
		echo "ok."
	else
		echo "failed."
		exit 255
	fi
fi

DAZUKODIR=$(dirname $(modinfo dazuko 2> /dev/null | sed -n "s/^filename:[[:blank:]]*//p") 2> /dev/null)
if [ -z "$DAZUKODIR" ]; then
	DAZUKODIR=/lib/modules/$(uname -r)/extra
fi

test -e $DAZUKODIR/dazuko.ko -a ! -e $DAZUKODIR/dazuko.ko-prepav && mv $DAZUKODIR/dazuko.ko $DAZUKODIR/dazuko.ko-prepav
test -e $DAZUKODIR/dazuko.o -a ! -e $DAZUKODIR/dazuko.o-prepav && mv $DAZUKODIR/dazuko.o $DAZUKODIR/dazuko.o-prepav

echo -n "Checking precompiled modules... "
if find_precompiled_module dazuko; then
	echo -n "$found_module found, installing... "
	install_precompiled_module "$DAZUKODIR" "$found_module"
	echo "ok."
	installed="y"
else
	echo "not found."
fi

if [ "x$installed" != "xy" ]; then
	echo -n "Trying to compile custom module... "
	if compile_custom_module; then
		echo "ok."
	else
		echo "failed."
		exit 255
	fi
fi

if [ "x$need_reboot" != "xy" ]; then
	exit 0
else
	echo "Module install successful, you need to reboot to finish installation."
	exit 1
fi
                                                                                                                                                                                                                                                                                                                                                                              ./reboot.sh                                                                                         0000755 0001750 0001750 00000000237 10455707565 012774  0                                                                                                    ustar   jmaroto                         jmaroto                                                                                                                                                                                                                #!/bin/sh
#
# Script for rebooting the machine

if [ -x /sbin/reboot ]; then
	/sbin/reboot
else
	if [ -x /sbin/shutdown ]; then
		/sbin/shutdown -r now
	fi
fi
                                                                                                                                                                                                                                                                                                                                                                 ./register.sh                                                                                       0000755 0001750 0001750 00000000110 10455707565 013314  0                                                                                                    ustar   jmaroto                         jmaroto                                                                                                                                                                                                                #!/bin/sh

`./default_browser` http://www.pandasoftware.es 2> /dev/null
                                                                                                                                                                                                                                                                                                                                                                                                                                                        ./save-default-browser.sh                                                                           0000755 0001750 0001750 00000000063 10455707565 015540  0                                                                                                    ustar   jmaroto                         jmaroto                                                                                                                                                                                                                #! /bin/sh
echo "$0" > /etc/pavdsk-default-browser
                                                                                                                                                                                                                                                                                                                                                                                                                                                                             ./scan-hd.sh                                                                                        0000755 0001750 0001750 00000004600 10455707565 013015  0                                                                                                    ustar   jmaroto                         jmaroto                                                                                                                                                                                                                #! /bin/sh

read TMPDIR < /tmp/pavtmpdir
export PAVDSK_HOME="$TMPDIR"
export LD_LIBRARY_PATH="$TMPDIR/lib":$LD_LIBRARY_PATH
export GTK_PATH=$(pwd)
export GTK2_RC_FILES="$(pwd)/gtkrc"

CONFIGFILE="$TMPDIR/etc/desktopsecure"
echo -e "/<permanent/\n/<active/\n/<protection/\ns/true/false/\nwq" | ed "$CONFIGFILE" &> /dev/null

mkdir -p "$TMPDIR/etc/tasks"
echo -ne "${TMPDIR}\nen_US" > /etc/pavdskinstalled

"$TMPDIR/bin/pavdsk" start uamw || { rm /etc/pavdskinstalled; exit 255; }
"$TMPDIR/bin/pavdsk" start pavdsksm || { rm /etc/pavdskinstalled; "$TMPDIR/bin/pavdsk" stop; exit 255; }
"$TMPDIR/bin/pavdsk" start managers || { rm /etc/pavdskinstalled; "$TMPDIR/bin/pavdsk" stop; exit 255; }

cat >"$TMPDIR/etc/tasks/hdscan" <<EOF
<Task class="taskfo">
<Extensions>
	<AllFiles>true</AllFiles>
	<Extensions>??_;ACE;ADE;ADP;ARC;ARJ;BAS;BAT;BZ2;CAB;CHM;CLASS;CMD;COM;CPL;CRT;DLL;DOC;DOT;EML;EXE;F;GZ;HLP;HQX;HTA;HTM;HTML;HTT;ICE;INF;INS;ISP;JPEG;JPG;JS;JSE;LHA;LNK;LZH;LZO;MDB;MDE;MHT;MME;MSC;MSG;MSI;MSP;MST;MTX;NTS;NWS;OCX;PAK;PCD;PIF;POT;PPA;PPS;PPT;RAR;REG;RTF;SCR;SCT;SHB;SHS;SYS;TAR;TGZ;URL;UU;UUE;VB;VBE;VBS;VSD;VSS;VST;VXD;WMF;WSC;WSF;WSH;XLS;XX;XXE;Z;ZIP;ZOO</Extensions>
	<Defaults>??_;ACE;ADE;ADP;ARC;ARJ;BAS;BAT;BZ2;CAB;CHM;CLASS;CMD;COM;CPL;CRT;DLL;DOC;DOT;EML;EXE;F;GZ;HLP;HQX;HTA;HTM;HTML;HTT;ICE;INF;INS;ISP;JPEG;JPG;JS;JSE;LHA;LNK;LZH;LZO;MDB;MDE;MHT;MME;MSC;MSG;MSI;MSP;MST;MTX;NTS;NWS;OCX;PAK;PCD;PIF;POT;PPA;PPS;PPT;RAR;REG;RTF;SCR;SCT;SHB;SHS;SYS;TAR;TGZ;URL;UU;UUE;VB;VBE;VBS;VSD;VSS;VST;VXD;WMF;WSC;WSF;WSH;XLS;XX;XXE;Z;ZIP;ZOO</Defaults>
	<Excluded></Excluded>
</Extensions>
<Directories>
	<FollowSymLinks>false</FollowSymLinks>
	<RecursiveIncludedDirs>/</RecursiveIncludedDirs>
	<RecursiveExcludedDirs></RecursiveExcludedDirs>
</Directories>
<File>
	<Included></Included>
	<Excluded></Excluded>
</File>
<Alerts>
	<Active>false</Active>
	<Address></Address>
	<AlertSender>false</AlertSender>
	<AlertRest>false</AlertRest>
	<Message></Message>
</Alerts>
<Scan>
	<ScanPacked>Compressed;Packed</ScanPacked>
	<MalwareClass>Virus;Spyware;Jokes;Dialers;Heuristic;</MalwareClass>
	<HeuristicThreshold>Medium</HeuristicThreshold>
	<Action>Disinfect</Action>
	<BackupAction>Rename</BackupAction>
</Scan>
<Scheduling>
</Scheduling>
</Task>
EOF

( sleep 2; "$TMPDIR/bin/pavdskfo" hdscan; ) &
./fo-get-events $LANG "$TMPDIR/share/locale"

"$TMPDIR/bin/pavdsk" stop
rm -f "$TMPDIR/etc/tasks/hdscan"
rm -f /etc/pavdskinstalled 
                                                                                                                                ./scan-memory.sh                                                                                    0000755 0001750 0001750 00000001670 10455707565 013736  0                                                                                                    ustar   jmaroto                         jmaroto                                                                                                                                                                                                                #! /bin/sh

read TMPDIR < /tmp/pavtmpdir
export PAVDSK_HOME="$TMPDIR"
export LD_LIBRARY_PATH="$TMPDIR/lib":$LD_LIBRARY_PATH
export GTK_PATH=$(pwd)
export GTK2_RC_FILES="$(pwd)/gtkrc"

CONFIGFILE="$TMPDIR/etc/desktopsecure"
echo -e "/<permanent/\n/<active/\n/<protection/\ns/true/false/\nwq" | ed "$CONFIGFILE" &> /dev/null

mkdir -p "$TMPDIR/etc/tasks"
echo -ne "${TMPDIR}\nen_US" > /etc/pavdskinstalled

"$TMPDIR/bin/pavdsk" start uamw || { rm /etc/pavdskinstalled; exit 255; }
"$TMPDIR/bin/pavdsk" start pavdsksm || { rm /etc/pavdskinstalled; "$TMPDIR/bin/pavdsk" stop; exit 255; }
"$TMPDIR/bin/pavdsk" start managers || { rm /etc/pavdskinstalled; "$TMPDIR/bin/pavdsk" stop; exit 255; }
"$TMPDIR/bin/pavdsk" start pavdskscheduler || { rm /etc/pavdskinstalled; "$TMPDIR/bin/pavdsk" stop; exit 255; }

( sleep 2; "$TMPDIR/bin/pavdskmm" memoryscan; ) &
./fo-get-events $LANG "$TMPDIR/share/locale"

"$TMPDIR/bin/pavdsk" stop
rm -f /etc/pavdskinstalled 
                                                                        ./start.sh                                                                                          0000755 0001750 0001750 00000000056 10455707565 012636  0                                                                                                    ustar   jmaroto                         jmaroto                                                                                                                                                                                                                #! /bin/sh

/etc/init.d/pavdsk start
sleep 10
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ./version.sh                                                                                        0000755 0001750 0001750 00000001011 10455707565 013156  0                                                                                                    ustar   jmaroto                         jmaroto                                                                                                                                                                                                                #!/bin/sh
PREFIX=`cat /tmp/pavtmpdir`

NOW=`date -d "now" +"%Y-%m-%dT%H:%M:%S%z" | sed -e 's/\(..\)$/:\1/'`
GRACE=`date -d "+15 days" +"%Y-%m-%dT%H:%M:%S%z" | sed -e 's/\(..\)$/:\1/'`
NOTIFY=`date -d "+30 days" +"%Y-%m-%dT%H:%M:%S%z" | sed -e 's/\(..\)$/:\1/'`
TYPE="$1"

sed -e "/start_date/s/>.*</>$NOW</;/grace_date/s/>.*</>$GRACE</;/notify_date/s/>.*</>$NOTIFY</;/<type>/s/>.*</>$TYPE</" "$PREFIX/etc/desktopsecure" > "$PREFIX/etc/desktopsecure.tmp" && mv "$PREFIX/etc/desktopsecure.tmp" "$PREFIX/etc/desktopsecure"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       ./su.sh                                                                                             0000755 0001750 0001750 00000000405 10455707565 012126  0                                                                                                    ustar   jmaroto                         jmaroto                                                                                                                                                                                                                #! /bin/bash

which gksu &> /dev/null && GKSU="gksu -k"
which kdesu &> /dev/null && KDESU="kdesu"

if [ -n "$KDE_FULL_SESSION" ]; then
	test -n "$KDESU" && GUISU="$KDESU" || GUISU="$GKSU"
else
	test -n "$GKSU" && GUISU="$GKSU" || GUISU="$KDESU"
fi

$GUISU "$@"
                                                                                                                                                                                                                                                           ./install2.xml                                                                                      0000644 0001750 0001750 00000061210 10457350664 013407  0                                                                                                    ustar   jmaroto                         jmaroto                                                                                                                                                                                                                <?xml version="1.0" ?>
<!DOCTYPE installer
  SYSTEM '../dtd/config.dtd'>
<installer>
	<languages>
		<language locale="es_ES" text="Español"/>
		<language locale="en_US" text="English"/>
	</languages>
	<package>panda.tar.gz</package>
	<title>
		<locale>
			<lang id="en_US">Panda DesktopSecure for Linux installation</lang>
			<lang id="es_ES">Instalación de Panda DesktopSecure for Linux</lang>
		</locale>
	</title>
	<pages>
		<page id="welcome" type="textPage">
			<title>
				<locale>
					<lang id="en_US">Welcome to the Panda DesktopSecure for Linux installation program</lang>
					<lang id="es_ES">Bienvenido al programa de instalación de Panda DesktopSecure for Linux</lang>
				</locale>
			</title>
			<help_file>505.htm</help_file>
			<watermark>wizard.png</watermark>
			<text>
				<locale>
					<lang id="en_US">Panda DesktopSecure for Linux incorporates the following components:

  &lt;b&gt;Antivirus&lt;/b&gt;
  Detects and deletes all types of viruses and other threats.

  &lt;b&gt;Personal firewall&lt;/b&gt;
  Intercepts communications at application level and system level.

  &lt;b&gt;Graphic interface&lt;/b&gt;
  Allows simple and intuitive management of the program.
</lang>
					<lang id="es_ES">Panda DesktopSecure for Linux incluye los siguientes componentes:

  &lt;b&gt;Antivirus&lt;/b&gt;
  Detecta y elimina todo tipo de virus y otras amenazas.

  &lt;b&gt;Firewall personal&lt;/b&gt;
  Intercepta comunicaciones a nivel de aplicación y de sistema.

  &lt;b&gt;Interfaz gráfico&lt;/b&gt;
  Permite administrar la aplicación de forma cómoda e intuitiva.
</lang>
				</locale>
			</text>
			<text bottom="1">
				<locale>
					<lang id="en_US">Click on Next to continue.</lang>
					<lang id="es_ES">Para continuar, pulsa el botón Siguiente.</lang>
				</locale>
			</text>
			<onNextButton>
				<launch output="failure_msg" program="check-requirements.sh" ret="req_var" type="sync">
					<arg>
						<valueOf name="locale"/>
					</arg>
				</launch>
				<switch var="req_var">
					<case val="255">
						<var name="installation_failure">hw</var>
						<nextPage id="end"/>
					</case>
					<case val="254">
						<var name="installation_failure">sw</var>
						<nextPage id="end"/>
					</case>
					<case val="253">
<!-- #ifdef no_dazuko_confirm
						<var name="installation_failure">dazuko</var>
						<nextPage id="end"/>
--><!-- #else -->
						<nextPage id="kernel_confirm2"/>
<!-- #endif -->
					</case>
					<case val="1">
						<var name="need_new_kernel">kernel</var>
						<nextPage id="kernel_confirm"/>
					</case>
					<case val="2">
						<var name="installation_failure">dazuko</var>
						<nextPage id="end"/>
					</case>
					<case val="3">
<!-- #ifdef no_compile_confirm -->
						<var name="confirm">change</var>
<!-- #else
						<var name="need_new_kernel">compile</var>
						<nextPage id="kernel_confirm"/>
#endif -->
					</case>
					<default>
						<var name="confirm">change</var>
						<nextPage id="license"/>
					</default>
				</switch>
			</onNextButton>
		</page>
		<page id="license" type="licenseAgreementPage">
			<title>
				<locale>
					<lang id="en_US">End User License Agreement</lang>
					<lang id="es_ES">Acuerdo de licencia</lang>
				</locale>
			</title>
			<help_file>510.htm</help_file>
			<logo>header.png</logo>
			<text>
				<locale>
					<lang id="en_US">We will now show you the terms and conditions of the End User License Agreement, which you must accept in order to use the program.</lang>
					<lang id="es_ES">A continuación te presentamos las condiciones del Acuerdo de licencia de uso que debes aceptar para poder utilizar el programa.</lang>
				</locale>
			</text>
			<switch var="locale">
				<case val="es_ES">
					<license file="./license-es_ES.txt"/>
				</case>
				<default>
					<license file="./license-en_US.txt"/>
				</default>
			</switch>
			<onNextButton>
				<switch var="license_accept">
					<case val="1">
						<nextPage id="installation_type"/>
					</case>
					<default>
						<var name="installation_failure">1</var>
						<nextPage id="end"/>
					</default>
				</switch>
			</onNextButton>
		</page>
		<page id="installation_type" type="optionPage">
			<title>
				<locale>
					<lang id="en_US">Installation type</lang>
					<lang id="es_ES">Tipo de instalación</lang>
				</locale>
			</title>
			<logo>header.png</logo>
			<help_file>515.htm</help_file>
			<options var="installation_type">
				<option active="yes" padding="0" value="typical">
					<locale>
						<lang id="en_US">&lt;span size='larger' weight='bold'&gt;Typical installation&lt;/span&gt;</lang>
						<lang id="es_ES">&lt;span size='larger' weight='bold'&gt;Instalación típica&lt;/span&gt;</lang>
					</locale>
				</option>
				<text padding="32">
					<locale>
						<lang id="en_US">The program will be installed with the most common settings. Recommended for most users.</lang>
						<lang id="es_ES">La aplicación se instalará con las opciones más comunes. Recomendada para la mayoría de los usuarios.</lang>
					</locale>
				</text>
				<text><locale><lang id="en_US"/><lang id="es_ES"/></locale></text>
				<option padding="0" value="custom">
					<locale>
						<lang id="en_US">&lt;span size='larger' weight='bold'&gt;Custom installation&lt;/span&gt;</lang>
						<lang id="es_ES">&lt;span size='larger' weight='bold'&gt;Instalación personalizada&lt;/span&gt;</lang>
					</locale>
				</option>
				<text padding="32">
					<locale>
						<lang id="en_US">Allows you to specify each installation option. This type of installation requires more advanced knowledge than the previous type.</lang>
						<lang id="es_ES">Te permite especificar cada una de las opciones de instalación del programa. Esta instalación requiere conocimientos más avanzados que la anterior.</lang>
					</locale>
				</text>
			</options>
		</page>
		<page id="dir_select" type="directorySelectionPage">
			<title>
				<locale>
					<lang id="en_US">Installation directory</lang>
					<lang id="es_ES">Directorio de instalación</lang>
				</locale>
			</title>
			<help_file>575.htm</help_file>
			<text>
				<locale>
					<lang id="en_US">Please choose the directory in which Panda DesktopSecure for Linux will be installed:</lang>
					<lang id="es_ES">Por favor, selecciona el directorio donde se instalará Panda DesktopSecure for Linux:</lang>
				</locale>
			</text>
			<logo>header.png</logo>
			<installDir var="installation_dir"/>
			<onNextButton>
				<switch var="installation_type">
					<case val="custom">
						<nextPage id="custom_fw"/>
					</case>
					<default>
						<var name="fw_active">yes</var>
						<var name="fw_auto"></var>
						<nextPage id="install"/>
					</default>
				</switch>
			</onNextButton>
		</page>
		<page id="scan" type="progressPage">
			<title>
				<locale>
					<lang id="en_US">Scanning system</lang>
					<lang id="es_ES">Analizando el sistema</lang>
				</locale>
			</title>
			<help_file>520.htm</help_file>
			<logo>header.png</logo>
			<if>
				<condition>
					<contains value="mem" var="analysis_options"/>
				</condition>
				<true>
					<text>
						<locale>
							<lang id="en_US">Scanning memory:</lang>
							<lang id="es_ES">Analizando memoria:</lang>
						</locale>
					</text>
					<progress from="scan-memory.sh"/>
					<arg>
						<valueOf name="locale"/>
					</arg>
				</true>
			</if>
			<if>
				<condition>
					<contains value="hd" var="analysis_options"/>
				</condition>
				<true>
					<text>
						<locale>
							<lang id="en_US">Scanning hard disk:</lang>
							<lang id="es_ES">Analizando disco duro:</lang>
						</locale>
					</text>
					<progress from="scan-hd.sh"/>
					<arg>
						<valueOf name="locale"/>
					</arg>
				</true>
			</if>
		</page>
		<page id="install" type="installationPage">
			<title>
				<locale>
					<lang id="en_US">Installing</lang>
					<lang id="es_ES">Instalando</lang>
				</locale>
			</title>
			<logo>header.png</logo>
			<text>
				<locale>
					<lang id="en_US">Panda DesktopSecure for Linux is carrying out the requested operations

Installing kernel modules...</lang>
					<lang id="es_ES">El programa de Panda DesktopSecure for Linux está realizando las operaciones solicitadas.
		
Instalando módulos de kernel...</lang>
				</locale>
			</text>
			<switch var="confirm">
				<case val="change">
					<launch output="compoutput" program="./install-dazuko.sh" ret="compret" type="sync"/>
				</case>
				<default>
					<var name="compret">0</var>
				</default>
			</switch>
			<switch var="compret">
				<case val="0">
					<var name="need_reboot">no</var>
				</case>
				<case val="1">
					<var name="need_reboot">yes</var>
				</case>
				<default>
					<var name="installation_failure">dazuko</var>
					<nextPage id="end"/>
				</default>
			</switch>
			<switch var="installation_failure">
				<case val="dazuko"/>
				<default>
					<launch output="versionoutput" program="./version.sh" ret="versionret" type="sync">
						<arg>
							<literal>COMMERCIAL</literal>
						</arg>
					</launch>
					<switch var="confirm">
						<case val="nofp">
							<launch program="./disable-fp.sh" type="sync"/>
						</case>
					</switch>
					<launch program="./check-firewall.sh" type="sync">
						<arg>
							<valueOf name="fw_active"/>
						</arg>
						<arg>
							<valueOf name="fw_auto"/>
						</arg>
					</launch>
					<text>
						<locale>
							<lang id="en_US">Panda DesktopSecure for Linux is carrying out the requested operations

Installing application...</lang>
							<lang id="es_ES">El programa de Panda DesktopSecure for Linux está realizando las operaciones solicitadas.
				
Instalando la aplicación...</lang>
						</locale>
					</text>
					<install ret="installation_return"/>
					<switch var="installation_return">
						<case val="1">
							<launch output="fixoutput" program="./fix.sh" ret="fixret" type="sync"/>
							<launch program="./menu-entries.sh" type="sync">
								<arg>
									<literal>create</literal>
								</arg>
								<arg>
									<valueOf name="installation_dir"/>
								</arg>
								<arg>
									<valueOf name="locale"/>
								</arg>
							</launch>
							<launch program="default_browser" ret="browserret" type="sync"/>
							<nextPage id="end"/>
						</case>
						<default>
							<var name="installation_failure">1</var>
							<nextPage id="end"/>
						</default>
					</switch>
				</default>
			</switch>
			<autoforward/>
		</page>
		<page id="kernel_confirm" type="optionPage">
			<title>
				<locale>
					<lang id="en_US">Options for supported distributions</lang>
					<lang id="es_ES">Opciones para distribuciones soportadas</lang>
				</locale>
			</title>
			<help_file>604.htm</help_file>
			<logo>header.png</logo>
			<text>
				<locale>
					<lang id="en_US">Your distribution is currently supported by Panda DesktopSecure for Linux.
However, for the automatic protection to work correctly, you must totally or partially modify the system kernel.

Please select the option you prefer to continue with the installation process.</lang>
					<lang id="es_ES">Tu distribución está actualmente soportada por Panda DesktopSecure for Linux. No obstante, para el correcto funcionamiento de la protección permanente, es necesario modificar total o parcialmente el kernel de tu sistema.

Por favor, selecciona la opción que prefieras para continuar con la instalación:</lang>					
				</locale>
			</text>
			<options type="radio" var="confirm">
				<option value="change">
					<switch var="need_new_kernel">
						<case val="kernel">
							<locale>
								<lang id="en_US">I allow Panda DesktopSecure to modify the kernel</lang>
								<lang id="es_ES">Acepto que Panda DesktopSecure for Linux modifique el kernel</lang>
							</locale>
						</case>
						<case val="selinux">
							<locale>
								<lang id="en_US">I allow Panda DesktopSecure for Linux to disable SELinux</lang>
								<lang id="es_ES">Acepto que Panda DesktopSecure for Linux desactive SELinux</lang>
							</locale>
						</case>
<!-- #ifdef no_compile_confirm -->
<!-- #else
						<case val="compile">
							<locale>
								<lang id="en_US"></lang>
								<lang id="es_ES">Quiero que se intente compilar automáticamente el módulo interceptador</lang>
							</locale>
						</case>
#endif -->
					</switch>
				</option>
				<option value="nofp">
					<locale>
						<lang id="en_US">Continue without installing the automatic protection (the kernel will not be modified)</lang>
						<lang id="es_ES">Continuar sin instalar la protección permanente (no modificará el kernel)</lang>
					</locale>
				</option>
				<option active="yes" value="abort">
					<locale>
						<lang id="en_US">I don't want to continue with the installation process</lang>
						<lang id="es_ES">No quiero continuar con la instalación</lang>
					</locale>
				</option>
			</options>
			<onNextButton>
				<nextPage id="license"/>
				<switch var="confirm">
					<case val="abort">
						<var name="installation_failure">1</var>
						<nextPage id="end"/>
					</case>
				</switch>
			</onNextButton>
		</page>
<!-- #ifdef no_dazuko_confirm
--><!-- #else -->
		<page id="kernel_confirm2" type="optionPage">
			<title>
				<locale>
					<lang id="en_US">Cannot install the automatic file protection</lang>
					<lang id="es_ES">No se puede instalar la protección permanente</lang>
				</locale>
			</title>
			<help_file>604.htm</help_file>
			<logo>header.png</logo>
			<text>
				<locale>
					<lang id="en_US">Cannot install the automatic file protection module. This may be caused by several reasons:
							
  You haven't installed the compiler for your kernel

  You haven't installed the correct kernel headers

  You haven't installed the necessary development tools

  SELinux is active on your system

If you want to continue without installing the automatic file protection, uncheck the following box</lang>
					<lang id="es_ES">No es posible instalar el módulo de protección permanente de ficheros. Esto se puede deber a una serie de motivos:

  No tienes instalado el compilador correspondiente a tu kernel

  No tienes instaladas las cabeceras de tu kernel

  No tienes instaladas las herramientas de desarrollo necesarias

  Tienes activado SELinux en tu sistema

Si deseas instalar el producto sin instalar la protección permanente, desmarca la siguiente casilla</lang>
				</locale>
			</text>
			<options type="check" var="confirm">
				<option value="abort">
					<locale>
						<lang id="en_US">I don't want to continue with the installation process</lang>
						<lang id="es_ES">No quiero continuar con la instalación</lang>
					</locale>
				</option>
			</options>
			<onNextButton>
				<nextPage id="license"/>
				<switch var="confirm">
					<case val="abort">
						<var name="installation_failure">1</var>
						<nextPage id="end"/>
					</case>
					<default>
						<var name="confirm">nofp</var>
					</default>
				</switch>
			</onNextButton>
		</page>
<!-- #endif -->
<!--
		<page id="ask_scan" type="optionPage">
			<title>
				<locale>
					<lang id="en_US">System scan</lang>
					<lang id="es_ES">Análisis del sistema</lang>
				</locale>
			</title>
			<help_file>520.htm</help_file>
			<logo>header.png</logo>
			<text>
				<locale>
					<lang id="en_US">From the installer you can ensure that you are going to work in a virus-free environment. Select the system devices to scan:</lang>
					<lang id="es_ES">Desde el instalador puedes asegurarte de que vas a trabajar en un entorno libre de virus. Selecciona las partes de tu sistema a analizar:</lang>
				</locale>
			</text>
			<options type="check" var="analysis_options">
				<option active="yes" value="mem">
					<locale>
						<lang id="en_US">Scan memory during installation</lang>
						<lang id="es_ES">Analizar la memoria durante la instalación</lang>
					</locale>
				</option>
				<option active="no" value="hd">
					<locale>
						<lang id="en_US">Scan hard disk during installation</lang>
						<lang id="es_ES">Analizar el disco duro durante la instalación</lang>
					</locale>
				</option>
			</options>
			<onNextButton>
				<switch var="analysis_options">
					<case val="">
						<nextPage id="install"/>
					</case>
					<default>
						<nextPage id="scan"/>
					</default>
				</switch>
			</onNextButton>
		</page>
-->
		<page id="custom_fw" type="optionPage">
			<title>
				<locale>
					<lang id="en_US">Firewall protection</lang>
					<lang id="es_ES">Protección firewall</lang>
				</locale>
			</title>
			<help_file>540.htm</help_file>
			<logo>header.png</logo>
			<text>
				<locale>
					<lang id="en_US">Panda DesktopSecure for Linux includes firewall protection to offer you maximum protection while you are connected to the Internet or to a local network.

We recommend you enable the firewall protection to protect your privacy. After enabling the firewall protection, you will be protected against hacker attacks and malicious programs that try to get into your computer while you are connected.

Specify whether you want to activate the firewall protection:</lang>
					<lang id="es_ES">Panda DesktopSecure for Linux incluye protección firewall para ofrecerte la máxima seguridad mientras estás conectado a Internet o a una red local.

Te recomendamos que actives la protección firewall para proteger tu privacidad. Una vez activada la protección firewall estarás protegido ante los ataques hackers (intrusos) y los programas maliciosos que intenten acceder a tu ordenador mientras estás conectado.

Indica si deseas activar la protección firewall:</lang>
				</locale>
			</text>
			<options type="check" var="fw_active">
				<option active="yes" value="yes">
					<locale>
						<lang id="en_US">Enable firewall protection (Recommended)</lang>
						<lang id="es_ES">Activar la protección firewall (Recomendado)</lang>
					</locale>
				</option>
			</options>
			<onNextButton>
				<switch var="fw_active">
					<case val="yes">
						<nextPage id="custom_access"/>
					</case>
					<default>
						<nextPage id="install"/>
					</default>
				</switch>
			</onNextButton>
		</page>
<!--
		<page id="custom_share" type="embedPage">
			<title>
				<locale>
					<lang id="en_US">Share files and printers</lang>
					<lang id="es_ES">Compartir archivos e impresoras</lang>
				</locale>
			</title>
			<help_file>545.htm</help_file>
			<logo>header.png</logo>
			<text>
				<locale>
					<lang id="en_US">Select the network adaptors that must be used to share files and printers.

You should only select the adaptors that connect to a local area network. It is not advisable to share files through adaptors that connect directly to the Internet(Modem, xDSL, etc.).</lang>
					<lang id="es_ES">Marca qué adaptadores de red deberían utilizarse para compartir archivos e impresoras.

Generalmente sólo deberías marcar aquellos adaptadores que se conectan a una red de área local. No es recomendable que permitas que se compartan archivos a través de aquellos adaptadores que te conectan directamente a Internet (Módem, xDSL, etc.)</lang>
				</locale>
			</text>
			<embed program="firewall-configuration-standalone">
				<arg>
					<literal>1</literal>
				</arg>
			</embed>
		</page>
-->
		<page id="custom_access" type="optionPage">
			<title>
				<locale>
					<lang id="en_US">Programs with access to the Internet/network</lang>
					<lang id="es_ES">Programas con acceso a la red</lang>
				</locale>
			</title>
			<help_file>550.htm</help_file>
			<logo>header.png</logo>
			<text>
				<locale>
					<lang id="en_US">When installation is complete, the firewall protection will be operative. From then on, when any program that tries to access the Internet (or the network) for the first time, the firewall protection will prompt you to confirm if you want to allow the connection.

Panda DesktopSecure for Linux lets you avoid these questions, allowing the most common programs to access the Internet/network.</lang>
					<lang id="es_ES">Finalizada la instalación, la protección firewall estará operativa. A partir de ese momento, cuando cualquier programa acceda a Internet (o a la red) por primera vez, la protección firewall te preguntará si quieres permitirle la conexión.

Panda DesktopSecure for Linux te ofrece la posibilidad de evitar estas preguntas, permitiendo acceder libremente a la red a los programas más comunes.</lang>
				</locale>
			</text>
			<options type="check" var="fw_auto">
				<option active="yes" value="yes">
					<locale>
						<lang id="en_US">Do not ask when common programs access the network</lang>
						<lang id="es_ES">No preguntar cuando los programas comunes accedan a la red</lang>
					</locale>
				</option>
			</options>
			<nextPage id="install"/>
		</page>
		<page id="end" type="optionPage">
			<title>
				<locale>
					<lang id="en_US">Installation complete</lang>
					<lang id="es_ES">Instalación terminada</lang>
				</locale>
			</title>
			<help_file>535.htm</help_file>
			<watermark>wizard.png</watermark>
			<text bottom="1">
				<locale>
					<lang id="en_US">To end the wizard, click on Finish.</lang>
					<lang id="es_ES">Para concluir el asistente, pulsa Finalizar.</lang>
				</locale>
			</text>
			<switch var="installation_failure">
				<case val="1">
					<text>
						<locale>
							<lang id="en_US">Installation could not complete correctly.</lang>
							<lang id="es_ES">La instalación no se ha podido finalizar correctamente.</lang>
						</locale>
					</text>
					<help_file>610.htm</help_file>
				</case>
				<case val="hw">
					<text>
						<locale>
							<lang id="en_US">The hardware requirements for the correct functioning of Panda DesktopSecure for Linux are not met.</lang>
							<lang id="es_ES">No se cumplen los requisitos de hardware para el correcto funcionamiento de Panda DesktopSecure for Linux.</lang>
						</locale>
					</text>
					<help_file>607.htm</help_file>
					<text type="append">
						<valueOf name="failure_msg"/>
					</text>
				</case>
				<case val="sw">
					<text>
						<locale>
							<lang id="en_US">Not all the libraries needed for the correct functioning of Panda DesktopSecure for Linux are installed.</lang>
							<lang id="es_ES">No están instaladas todas las librerías necesarias para el correcto funcionamiento de Panda DesktopSecure for Linux.</lang>
						</locale>
					</text>
					<help_file>607.htm</help_file>
					<text type="append">
						<valueOf name="failure_msg"/>
					</text>
				</case>
<!-- #ifdef no_dazuko_confirm -->
				<case val="dazuko">
					<text>
						<locale>
							<lang id="en_US">Cannot install the automatic file protection module. This may be caused by several reasons:
							
  You haven't installed the compiler for your kernel

  You haven't installed the correct kernel headers

  You haven't installed the necessary development tools

  SELinux is active on your system

To get more information click on Help.
							</lang>
							<lang id="es_ES">No es posible instalar el módulo de protección permanente de ficheros. Esto se puede deber a una serie de motivos:

  No tienes instalado el compilador correspondiente a tu kernel

  No tienes instaladas las cabeceras de tu kernel

  No tienes instaladas las herramientas de desarrollo necesarias

  Tienes activado SELinux en tu sistema

Para obtener más información haga click en el botón de ayuda.
							</lang>
						</locale>
					</text>
					<help_file>607.htm</help_file>
				</case>
<!-- #else
#endif -->
				<default>
					<switch var="need_reboot">
						<case val="no">
							<text>
								<locale>
									<lang id="en_US">The program has been correctly installed. To start the automatic protection, &lt;b&gt;you must restart the session or open the program from the program menu.&lt;/b&gt;</lang>
									<lang id="es_ES">La aplicación ha sido instalada correctamente. Para arrancar la protección permanente &lt;b&gt;es necesario reiniciar la sesión o abrir la aplicación desde el menú de aplicaciones.&lt;/b&gt;</lang>
								</locale>
							</text>
							<launch program="./start.sh" type="sync"/>
						</case>
						<default>
							<text>
								<locale>
									<lang id="en_US">To complete installation correctly, you must restart the computer:</lang>
									<lang id="es_ES">Para finalizar correctamente la instalación debes reiniciar el equipo:</lang>
								</locale>
							</text>
							<options type="radio" var="reboot">
								<option active="yes" value="yes">
									<locale>
										<lang id="en_US">Yes, I want to restart the computer now</lang>
										<lang id="es_ES">Sí, deseo reiniciar el equipo ahora</lang>
									</locale>
								</option>
								<option value="no">
									<locale>
										<lang id="en_US">No, I'll restart the computer later</lang>
										<lang id="es_ES">No, reiniciaré el equipo más tarde</lang>
									</locale>
								</option>
							</options>
						</default>
					</switch>
				</default>
			</switch>
			<onNextButton>
				<switch var="reboot">
					<case val="yes">
						<launch program="./reboot.sh" type="sync"/>
					</case>
				</switch>
			</onNextButton>
		</page>
	</pages>
</installer>
                                                                                                                                                                                                                                                                                                                                                                                        ./install.sh                                                                                        0000755 0001750 0001750 00000002227 10455707565 013151  0                                                                                                    ustar   jmaroto                         jmaroto                                                                                                                                                                                                                #!/bin/sh

which fc-cache > /dev/null 2>&1
if [ $? -eq 0 ]; then
	mkdir -p /usr/share/fonts 2> /dev/null
	cp -f fonts/luxisr.ttf /usr/share/fonts 2> /dev/null
	cp -f fonts/luxisb.ttf /usr/share/fonts 2> /dev/null
	cp -f fonts/luxisbi.ttf /usr/share/fonts 2> /dev/null
	fc-cache 
else
	cp -f fonts/luxisr.pfb /usr/X11R6/lib/X11/fonts/Type1 
	cp -f fonts/luxisr.afm /usr/X11R6/lib/X11/fonts/Type1
	cp -f fonts/luxisb.pfb /usr/X11R6/lib/X11/fonts/Type1
	cp -f fonts/luxisb.afm /usr/X11R6/lib/X11/fonts/Type1
	cp -f fonts/luxisbi.pfb /usr/X11R6/lib/X11/fonts/Type1
	cp -f fonts/luxisbi.afm /usr/X11R6/lib/X11/fonts/Type1
	echo "luxisr.pfb -urw-nimbus mono l-regular-r-normal--0-0-0-0-p-0-iso8859-1" >> /usr/X11R6/lib/X11/fonts/Type1/fonts.dir
	echo "luxisb.pfb -urw-nimbus mono l-bold-r-normal--0-0-0-0-p-0-iso8859-1" >> /usr/X11R6/lib/X11/fonts/Type1/fonts.dir
	echo "luxisbi.pfb -urw-nimbus mono l-bold-i-normal--0-0-0-0-p-0-iso8859-1" >> /usr/X11R6/lib/X11/fonts/Type1/fonts.dir 
fi

mkdir help &> /dev/null
for l in es_ES en_US; do
	tar xzf "`pwd`/help_$l.tar.gz" -C help 
done

unset LANGUAGE
export GTK_PATH=`pwd`
./panda-language ./install2.xml &> /dev/null

rm -rf help

                                                                                                                                                                                                                                                                                                                                                                         ./license-3rd.txt                                                                                   0000644 0001750 0001750 00000257434 10455707565 014031  0                                                                                                    ustar   jmaroto                         jmaroto                                                                                                                                                                                                                This software package includes some third party software components subject to the 
“GNU General Public License” version 2 whose text follows.

*********************************************************************************
		    GNU GENERAL PUBLIC LICENSE
		       Version 2, June 1991

 Copyright (C) 1989, 1991 Free Software Foundation, Inc.
                          675 Mass Ave, Cambridge, MA 02139, USA
 Everyone is permitted to copy and distribute verbatim copies
 of this license document, but changing it is not allowed.

			    Preamble

  The licenses for most software are designed to take away your
freedom to share and change it.  By contrast, the GNU General Public
License is intended to guarantee your freedom to share and change free
software--to make sure the software is free for all its users.  This
General Public License applies to most of the Free Software
Foundation's software and to any other program whose authors commit to
using it.  (Some other Free Software Foundation software is covered by
the GNU Library General Public License instead.)  You can apply it to
your programs, too.

  When we speak of free software, we are referring to freedom, not
price.  Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
this service if you wish), that you receive source code or can get it
if you want it, that you can change the software or use pieces of it
in new free programs; and that you know you can do these things.

  To protect your rights, we need to make restrictions that forbid
anyone to deny you these rights or to ask you to surrender the rights.
These restrictions translate to certain responsibilities for you if you
distribute copies of the software, or if you modify it.

  For example, if you distribute copies of such a program, whether
gratis or for a fee, you must give the recipients all the rights that
you have.  You must make sure that they, too, receive or can get the
source code.  And you must show them these terms so they know their
rights.

  We protect your rights with two steps: (1) copyright the software, and
(2) offer you this license which gives you legal permission to copy,
distribute and/or modify the software.

  Also, for each author's protection and ours, we want to make certain
that everyone understands that there is no warranty for this free
software.  If the software is modified by someone else and passed on, we
want its recipients to know that what they have is not the original, so
that any problems introduced by others will not reflect on the original
authors' reputations.

  Finally, any free program is threatened constantly by software
patents.  We wish to avoid the danger that redistributors of a free
program will individually obtain patent licenses, in effect making the
program proprietary.  To prevent this, we have made it clear that any
patent must be licensed for everyone's free use or not licensed at all.

  The precise terms and conditions for copying, distribution and
modification follow.

		    GNU GENERAL PUBLIC LICENSE
   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION

  0. This License applies to any program or other work which contains
a notice placed by the copyright holder saying it may be distributed
under the terms of this General Public License.  The "Program", below,
refers to any such program or work, and a "work based on the Program"
means either the Program or any derivative work under copyright law:
that is to say, a work containing the Program or a portion of it,
either verbatim or with modifications and/or translated into another
language.  (Hereinafter, translation is included without limitation in
the term "modification".)  Each licensee is addressed as "you".

Activities other than copying, distribution and modification are not
covered by this License; they are outside its scope.  The act of
running the Program is not restricted, and the output from the Program
is covered only if its contents constitute a work based on the
Program (independent of having been made by running the Program).
Whether that is true depends on what the Program does.

  1. You may copy and distribute verbatim copies of the Program's
source code as you receive it, in any medium, provided that you
conspicuously and appropriately publish on each copy an appropriate
copyright notice and disclaimer of warranty; keep intact all the
notices that refer to this License and to the absence of any warranty;
and give any other recipients of the Program a copy of this License
along with the Program.

You may charge a fee for the physical act of transferring a copy, and
you may at your option offer warranty protection in exchange for a fee.

  2. You may modify your copy or copies of the Program or any portion
of it, thus forming a work based on the Program, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:

    a) You must cause the modified files to carry prominent notices
    stating that you changed the files and the date of any change.

    b) You must cause any work that you distribute or publish, that in
    whole or in part contains or is derived from the Program or any
    part thereof, to be licensed as a whole at no charge to all third
    parties under the terms of this License.

    c) If the modified program normally reads commands interactively
    when run, you must cause it, when started running for such
    interactive use in the most ordinary way, to print or display an
    announcement including an appropriate copyright notice and a
    notice that there is no warranty (or else, saying that you provide
    a warranty) and that users may redistribute the program under
    these conditions, and telling the user how to view a copy of this
    License.  (Exception: if the Program itself is interactive but
    does not normally print such an announcement, your work based on
    the Program is not required to print an announcement.)

These requirements apply to the modified work as a whole.  If
identifiable sections of that work are not derived from the Program,
and can be reasonably considered independent and separate works in
themselves, then this License, and its terms, do not apply to those
sections when you distribute them as separate works.  But when you
distribute the same sections as part of a whole which is a work based
on the Program, the distribution of the whole must be on the terms of
this License, whose permissions for other licensees extend to the
entire whole, and thus to each and every part regardless of who wrote it.

Thus, it is not the intent of this section to claim rights or contest
your rights to work written entirely by you; rather, the intent is to
exercise the right to control the distribution of derivative or
collective works based on the Program.

In addition, mere aggregation of another work not based on the Program
with the Program (or with a work based on the Program) on a volume of
a storage or distribution medium does not bring the other work under
the scope of this License.

  3. You may copy and distribute the Program (or a work based on it,
under Section 2) in object code or executable form under the terms of
Sections 1 and 2 above provided that you also do one of the following:

    a) Accompany it with the complete corresponding machine-readable
    source code, which must be distributed under the terms of Sections
    1 and 2 above on a medium customarily used for software interchange; or,

    b) Accompany it with a written offer, valid for at least three
    years, to give any third party, for a charge no more than your
    cost of physically performing source distribution, a complete
    machine-readable copy of the corresponding source code, to be
    distributed under the terms of Sections 1 and 2 above on a medium
    customarily used for software interchange; or,

    c) Accompany it with the information you received as to the offer
    to distribute corresponding source code.  (This alternative is
    allowed only for noncommercial distribution and only if you
    received the program in object code or executable form with such
    an offer, in accord with Subsection b above.)

The source code for a work means the preferred form of the work for
making modifications to it.  For an executable work, complete source
code means all the source code for all modules it contains, plus any
associated interface definition files, plus the scripts used to
control compilation and installation of the executable.  However, as a
special exception, the source code distributed need not include
anything that is normally distributed (in either source or binary
form) with the major components (compiler, kernel, and so on) of the
operating system on which the executable runs, unless that component
itself accompanies the executable.

If distribution of executable or object code is made by offering
access to copy from a designated place, then offering equivalent
access to copy the source code from the same place counts as
distribution of the source code, even though third parties are not
compelled to copy the source along with the object code.

  4. You may not copy, modify, sublicense, or distribute the Program
except as expressly provided under this License.  Any attempt
otherwise to copy, modify, sublicense or distribute the Program is
void, and will automatically terminate your rights under this License.
However, parties who have received copies, or rights, from you under
this License will not have their licenses terminated so long as such
parties remain in full compliance.

  5. You are not required to accept this License, since you have not
signed it.  However, nothing else grants you permission to modify or
distribute the Program or its derivative works.  These actions are
prohibited by law if you do not accept this License.  Therefore, by
modifying or distributing the Program (or any work based on the
Program), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Program or works based on it.

  6. Each time you redistribute the Program (or any work based on the
Program), the recipient automatically receives a license from the
original licensor to copy, distribute or modify the Program subject to
these terms and conditions.  You may not impose any further
restrictions on the recipients' exercise of the rights granted herein.
You are not responsible for enforcing compliance by third parties to
this License.

  7. If, as a consequence of a court judgment or allegation of patent
infringement or for any other reason (not limited to patent issues),
conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License.  If you cannot
distribute so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you
may not distribute the Program at all.  For example, if a patent
license would not permit royalty-free redistribution of the Program by
all those who receive copies directly or indirectly through you, then
the only way you could satisfy both it and this License would be to
refrain entirely from distribution of the Program.

If any portion of this section is held invalid or unenforceable under
any particular circumstance, the balance of the section is intended to
apply and the section as a whole is intended to apply in other
circumstances.

It is not the purpose of this section to induce you to infringe any
patents or other property right claims or to contest validity of any
such claims; this section has the sole purpose of protecting the
integrity of the free software distribution system, which is
implemented by public license practices.  Many people have made
generous contributions to the wide range of software distributed
through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing
to distribute software through any other system and a licensee cannot
impose that choice.

This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.

  8. If the distribution and/or use of the Program is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Program under this License
may add an explicit geographical distribution limitation excluding
those countries, so that distribution is permitted only in or among
countries not thus excluded.  In such case, this License incorporates
the limitation as if written in the body of this License.

  9. The Free Software Foundation may publish revised and/or new versions
of the 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 Program
specifies a version number of this License which applies to it and "any
later version", you have the option of following the terms and conditions
either of that version or of any later version published by the Free
Software Foundation.  If the Program does not specify a version number of
this License, you may choose any version ever published by the Free Software
Foundation.

  10. If you wish to incorporate parts of the Program into other free
programs whose distribution conditions are different, write to the author
to ask for permission.  For software which is copyrighted by the Free
Software Foundation, write to the Free Software Foundation; we sometimes
make exceptions for this.  Our decision will be guided by the two goals
of preserving the free status of all derivatives of our free software and
of promoting the sharing and reuse of software generally.

			    NO WARRANTY

  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
REPAIR OR CORRECTION.

  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.

		     END OF TERMS AND CONDITIONS

	Appendix: How to Apply These Terms to Your New Programs

  If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.

  To do so, attach the following notices to the program.  It is safest
to attach them to the start of each source file to most effectively
convey the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.

    <one line to give the program's name and a brief idea of what it does.>
    Copyright (C) 19yy  <name of author>

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

Also add information on how to contact you by electronic and paper mail.

If the program is interactive, make it output a short notice like this
when it starts in an interactive mode:

    Gnomovision version 69, Copyright (C) 19yy name of author
    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
    This is free software, and you are welcome to redistribute it
    under certain conditions; type `show c' for details.

The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License.  Of course, the commands you use may
be called something other than `show w' and `show c'; they could even be
mouse-clicks or menu items--whatever suits your program.

You should also get your employer (if you work as a programmer) or your
school, if any, to sign a "copyright disclaimer" for the program, if
necessary.  Here is a sample; alter the names:

  Yoyodyne, Inc., hereby disclaims all copyright interest in the program
  `Gnomovision' (which makes passes at compilers) written by James Hacker.

  <signature of Ty Coon>, 1 April 1989
  Ty Coon, President of Vice

This General Public License does not permit incorporating your program into
proprietary programs.  If your program is a subroutine library, you may
consider it more useful to permit linking proprietary applications with the
library.  If this is what you want to do, use the GNU Library General
Public License instead of this License.


This product uses the following software components subject to the “GNU Lesser 
General Public License” version 2.1 whose text follows afterwards.

Copyright:

Copyright (c) 1999,2000,2001,2002,2003 Guido Draheim


License:

  THE ZZIP LICENSE

All rights on the project sources are reserved.

use freely under the restrictions of the Lesser GNU General Public License
or the exceptions described in the following sections that offer additional
rules foremost for static linking of the library into other software parts.
 
* LGPL clarifications

The project material has not been cross licensed with the 
Free Software Foundation (FSF) and it will not do at any point.

The FSF has written the original Lesser GNU General Public
License (LGPL) which is the main opensource license used by 
this project. The FSF has no copyright on the sources. 

All rights to the project sources are reserved and the 
copyright holders are entitled to negotiate other licenses
with interested parties. The LGPL is used as the General
Public License that can be used without any special
license agreement with the copyright holders.

The license holders feel that sometimes the LGPL is a bit
too restrictive but nonetheless good to protect the freedom
of this software. Feel free to contact us on any special
permission you need for your opensource project or some
form of commercial software.

In general, special license agreements will only be made if 
they benefit the creation of free software including donations
to projects and non-profit organization promoting free software 
(from which one can generally get a tax reduction offer).

Regarding example programs you will find a notice in the source
header that they are not under LGPL but the ZLIB license to allow 
you to derive your own programs freely from these source code parts.

* additional static linking 

1) Static Linking Exception 

  The LGPL describes ways to combine the project sources with
  other work not under the same license - the programmers do
  generally call it linking and separate it by their link
  time into dynamic linking and static linking. The LGPL
  ensures that the final recipient of a combined work can
  relink a combined work, including a rule in section 6
  to allow shipping of static linked program binaries.

  The rules in section 6 of the LGPL are often inconvenient and
  not useful to promote and protect the opensource character of
  this project. The recepient relinking freedom can be dropped as
  an extension to the LGPL rules, provided the following rules
  apply. Note that these rules only apply to static linking and 
  as an extension to section 6 and do not touch any other part 
  of the LGPL.

2) OSI-approved Opensource Projects

  You may static link with any opensource project material
  which is under an OSI-approved license. (general-opensource).

  You may static link with any project material under a
  license derived from an OSI-approved license by
  removing restrictions including the removal of 
  restrictions under certain explicit conditions
  that can be fulfilled by all possible licensees
  in a way that the license can be possibly OSI-approved
  later on. (opensource-like).

  A project that applies to these rules can even ship
  with modified sources of the project provided that
  the modifications are still under LGPL and these
  exceptions. (merge-back-acceptance).

  This rule is made under the assumption that relinking is
  not required if the combined work can be derived from
  their pristine sources made available to the final
  recipient. (i-am-no-lawyer).

3) Published And Supported Derivative Work

  Any software, including commercial applications, may
  static link with a modified derivate of this project
  when ALL of the following conditions are met which
  are extracted from the Mozilla Public License 1.0, and
  called section 3.2 and 3.3. over there - these will
  require you to redistribute the modified sources. You 
  may not offer or impose any terms on any Source Code 
  version that alters or restricts the applicable version 
  of this License or the recipients' rights hereunder.

  3.2. Availability of Source Code.

   Any Modification which You create or to which You contribute 
   must be made available in Source Code form under the terms of 
   this License either on the same media as an Executable version 
   or via an accepted Electronic Distribution Mechanism to anyone 
   to whom you made an Executable version available; and if made 
   available via Electronic Distribution Mechanism, must remain 
   available for at least twelve (12) months after the date it 
   initially became available, or at least six (6) months after 
   a subsequent version of that particular Modification has been 
   made available to such recipients. You are responsible for 
   ensuring that the Source Code version remains available even 
   if the Electronic Distribution Mechanism is maintained by a 
   third party.

  3.3. Description of Modifications.
   
   You must cause all Covered Code to which you contribute to 
   contain a file documenting the changes You made to create that 
   Covered Code and the date of any change. You must include a 
   prominent statement that the Modification is derived, directly 
   or indirectly, from Original Code provided by the Initial 
   Developer and including the name of the Initial Developer in 
   (a) the Source Code, and (b) in any notice in an Executable 
   version or related documentation in which You describe the 
   origin or ownership of the Covered Code.

On Debian GNU/Linux systems, the complete text of the GNU Library General
Public License can be found in `/usr/share/common-licenses/LGPL-2'

libesmtp

 *  Copyright (C) 2001,2002  Brian Stafford  <brian@stafford.uklinux.net>
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public
 *  License as published by the Free Software Foundation; either
 *  version 2.1 of the License, or (at your option) any later version.
 *
 *  This library is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *  Lesser General Public License for more details.


/* GNU Mailutils -- a suite of utilities for electronic mail
   Copyright (C) 1999, 2000, 2001, 2004 Free Software Foundation, Inc.

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   version 2 of the License, or (at your option) any later version.

   This library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Lesser General Public License for more details.

   You should have received a copy of the GNU Lesser General Public
   License along with this library; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA  
*/

/* Clearlooks Engine
 * Copyright (C) 2005 Richard Stellingwerff.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with this library; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 *
 * Written by Owen Taylor <otaylor@redhat.com>
 * and by Alexander Larsson <alexl@redhat.com>
 * Modified by Richard Stellingwerff <remenic@gmail.com>
 */


/* eggtrayicon.c
* Copyright (C) 2002 Anders Carlsson <andersca@gnu.org>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/

/* gtkcelllayout.c
* Copyright (C) 2003  Kristian Rietveld  <kris@gtk.org>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/

/* GtkCellRendererCombo
* Copyright (C) 2004 Lorenzo Gil Sanchez
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/

/* gtkellview.c
* Copyright (C) 2002, 2003  Kristian Rietveld <kris@gtk.org>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/

/* gtkcombobox.c
* Copyright (C) 2002, 2003  Kristian Rietveld <kris@gtk.org>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/

/* gtkcomboboxentry.c
* Copyright (C) 2002, 2003  Kristian Rietveld <kris@gtk.org>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/

/* gtkrbtree.c
* Copyright (C) 2000  Red Hat, Inc.,  Jonathan Blandford <jrb@redhat.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/

GNU Lesser General Public License
Version 2.1, February 1999
Copyright (C) 1991, 1999 Free Software Foundation, Inc. 59 Temple Place, Suite 330, 
Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies 
of this license document, but changing it is not allowed.
[This is the first released version of the Lesser GPL. It also counts as the successor 
of the GNU Library Public License, version 2, hence the version number 2.1.]
Preamble
The licenses for most software are designed to take away your freedom to share and 
change it. By contrast, the GNU General Public Licenses are intended to guarantee your 
freedom to share and change free software--to make sure the software is free for all its 
users. 
This license, the Lesser General Public License, applies to some specially designated 
software packages--typically libraries--of the Free Software Foundation and other 
authors who decide to use it. You can use it too, but we suggest you first think 
carefully about whether this license or the ordinary General Public License is the 
better strategy to use in any particular case, based on the explanations below. 
When we speak of free software, we are referring to freedom of use, not price. Our 
General Public Licenses are designed to make sure that you have the freedom to 
distribute copies of free software (and charge for this service if you wish); that you 
receive source code or can get it if you want it; that you can change the software and 
use pieces of it in new free programs; and that you are informed that you can do these 
things.
To protect your rights, we need to make restrictions that forbid distributors to deny 
you these rights or to ask you to surrender these rights. These restrictions translate 
to certain responsibilities for you if you distribute copies of the library or if you 
modify it. 
For example, if you distribute copies of the library, whether gratis or for a fee, you 
must give the recipients all the rights that we gave you. You must make sure that they, 
too, receive or can get the source code. If you link other code with the library, you 
must provide complete object files to the recipients, so that they can relink them with 
the library after making changes to the library and recompiling it. And you must show 
them these terms so they know their rights. 
We protect your rights with a two-step method: (1) we copyright the library, and (2) we 
offer you this license, which gives you legal permission to copy, distribute and/or 
modify the library. 
To protect each distributor, we want to make it very clear that there is no warranty for 
the free library. Also, if the library is modified by someone else and passed on, the 
recipients should know that what they have is not the original version, so that the 
original author's reputation will not be affected by problems that might be introduced 
by others. 
Finally, software patents pose a constant threat to the existence of any free program. 
We wish to make sure that a company cannot effectively restrict the users of a free 
program by obtaining a restrictive license from a patent holder. Therefore, we insist 
that any patent license obtained for a version of the library must be consistent with 
the full freedom of use specified in this license. 
Most GNU software, including some libraries, is covered by the ordinary GNU General 
Public License. This license, the GNU Lesser General Public License, applies to certain 
designated libraries, and is quite different from the ordinary General Public License. 
We use this license for certain libraries in order to permit linking those libraries 
into non-free programs. 
When a program is linked with a library, whether statically or using a shared library, 
the combination of the two is legally speaking a combined work, a derivative of the 
original library. The ordinary General Public License therefore permits such linking 
only if the entire combination fits its criteria of freedom. The Lesser General Public 
License permits more lax criteria for linking other code with the library. 
We call this license the "Lesser" General Public License because it does Less to protect 
the user's freedom than the ordinary General Public License. It also provides other free 
software developers Less of an advantage over competing non-free programs. These 
disadvantages are the reason we use the ordinary General Public License for many 
libraries. However, the Lesser license provides advantages in certain special 
circumstances. 
For example, on rare occasions, there may be a special need to encourage the widest 
possible use of a certain library, so that it becomes a de-facto standard. To achieve 
this, non-free programs must be allowed to use the library. A more frequent case is that 
a free library does the same job as widely used non-free libraries. In this case, there 
is little to gain by limiting the free library to free software only, so we use the 
Lesser General Public License. 
In other cases, permission to use a particular library in non-free programs enables a 
greater number of people to use a large body of free software. For example, permission 
to use the GNU C Library in non-free programs enables many more people to use the whole 
GNU operating system, as well as its variant, the GNU/Linux operating system. 
Although the Lesser General Public License is Less protective of the users' freedom, it 
does ensure that the user of a program that is linked with the Library has the freedom 
and the wherewithal to run that program using a modified version of the Library. 
The precise terms and conditions for copying, distribution and modification follow. Pay 
close attention to the difference between a "work based on the library" and a "work that 
uses the library". The former contains code derived from the library, whereas the latter 
must be combined with the library in order to run. 
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. This License Agreement applies to any software library or other program which 
contains a notice placed by the copyright holder or other authorized party saying it may 
be distributed under the terms of this Lesser General Public License (also called "this 
License"). Each licensee is addressed as "you".
A "library" means a collection of software functions and/or data prepared so as to be 
conveniently linked with application programs (which use some of those functions and 
data) to form executables. 
The "Library", below, refers to any such software library or work which has been 
distributed under these terms. A "work based on the Library" means either the Library or 
any derivative work under copyright law: that is to say, a work containing the Library 
or a portion of it, either verbatim or with modifications and/or translated 
straightforwardly into another language. (Hereinafter, translation is included without 
limitation in the term "modification".) 
"Source code" for a work means the preferred form of the work for making modifications 
to it. For a library, complete source code means all the source code for all modules it 
contains, plus any associated interface definition files, plus the scripts used to 
control compilation and installation of the library.
Activities other than copying, distribution and modification are not covered by this 
License; they are outside its scope. The act of running a program using the Library is 
not restricted, and output from such a program is covered only if its contents 
constitute a work based on the Library (independent of the use of the Library in a tool 
for writing it). Whether that is true depends on what the Library does and what the 
program that uses the Library does. 
1. You may copy and distribute verbatim copies of the Library's complete source code as 
you receive it, in any medium, provided that you conspicuously and appropriately publish 
on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all 
the notices that refer to this License and to the absence of any warranty; and 
distribute a copy of this License along with the Library. 
You may charge a fee for the physical act of transferring a copy, and you may at your 
option offer warranty protection in exchange for a fee. 
2. You may modify your copy or copies of the Library or any portion of it, thus forming 
a work based on the Library, and copy and distribute such modifications or work under 
the terms of Section 1 above, provided that you also meet all of these conditions: 
a) The modified work must itself be a software library. 
b) You must cause the files modified to carry prominent notices stating that you changed 
the files and the date of any change.
c) You must cause the whole of the work to be licensed at no charge to all third parties 
under the terms of this License. 
d) If a facility in the modified Library refers to a function or a table of data to be 
supplied by an application program that uses the facility, other than as an argument 
passed when the facility is invoked, then you must make a good faith effort to ensure 
that, in the event an application does not supply such function or table, the facility 
still operates, and performs whatever part of its purpose remains meaningful. 
(For example, a function in a library to compute square roots has a purpose that is 
entirely well-defined independent of the application. Therefore, Subsection 2d requires 
that any application-supplied function or table used by this function must be optional: 
if the application does not supply it, the square root function must still compute 
square roots.) 
These requirements apply to the modified work as a whole. If identifiable sections of 
that work are not derived from the Library, and can be reasonably considered independent 
and separate works in themselves, then this License, and its terms, do not apply to 
those sections when you distribute them as separate works. But when you distribute the 
same sections as part of a whole which is a work based on the Library, the distribution 
of the whole must be on the terms of this License, whose permissions for other licensees 
extend to the entire whole, and thus to each and every part regardless of who wrote it. 
Thus, it is not the intent of this section to claim rights or contest your rights to 
work written entirely by you; rather, the intent is to exercise the right to control the 
distribution of derivative or collective works based on the Library. 
In addition, mere aggregation of another work not based on the Library with the Library 
(or with a work based on the Library) on a volume of a storage or distribution medium 
does not bring the other work under the scope of this License. 
3. You may opt to apply the terms of the ordinary GNU General Public License instead of 
this License to a given copy of the Library. To do this, you must alter all the notices 
that refer to this License, so that they refer to the ordinary GNU General Public 
License, version 2, instead of to this License. (If a newer version than version 2 of 
the ordinary GNU General Public License has appeared, then you can specify that version 
instead if you wish.) Do not make any other change in these notices. 
Once this change is made in a given copy, it is irreversible for that copy, so the 
ordinary GNU General Public License applies to all subsequent copies and derivative 
works made from that copy. 
This option is useful when you wish to copy part of the code of the Library into a 
program that is not a library. 
4. You may copy and distribute the Library (or a portion or derivative of it, under 
Section 2) in object code or executable form under the terms of Sections 1 and 2 above 
provided that you accompany it with the complete corresponding machine-readable source 
code, which must be distributed under the terms of Sections 1 and 2 above on a medium 
customarily used for software interchange. 
If distribution of object code is made by offering access to copy from a designated 
place, then offering equivalent access to copy the source code from the same place 
satisfies the requirement to distribute the source code, even though third parties are 
not compelled to copy the source along with the object code.
5. A program that contains no derivative of any portion of the Library, but is designed 
to work with the Library by being compiled or linked with it, is called a "work that 
uses the Library". Such a work, in isolation, is not a derivative work of the Library, 
and therefore falls outside the scope of this License. 
However, linking a "work that uses the Library" with the Library creates an executable 
that is a derivative of the Library (because it contains portions of the Library), 
rather than a "work that uses the library". The executable is therefore covered by this 
License. Section 6 states terms for distribution of such executables. 
When a "work that uses the Library" uses material from a header file that is part of the 
Library, the object code for the work may be a derivative work of the Library even 
though the source code is not. Whether this is true is especially significant if the 
work can be linked without the Library, or if the work is itself a library. The 
threshold for this to be true is not precisely defined by law. 
If such an object file uses only numerical parameters, data structure layouts and 
accessors, and small macros and small inline functions (ten lines or less in length), 
then the use of the object file is unrestricted, regardless of whether it is legally a 
derivative work. (Executables containing this object code plus portions of the Library 
will still fall under Section 6.) 
Otherwise, if the work is a derivative of the Library, you may distribute the object 
code for the work under the terms of Section 6. Any executables containing that work 
also fall under Section 6, whether or not they are linked directly with the Library 
itself. 
6. As an exception to the Sections above, you may also combine or link a "work that uses 
the Library" with the Library to produce a work containing portions of the Library, and 
distribute that work under terms of your choice, provided that the terms permit 
modification of the work for the customer's own use and reverse engineering for 
debugging such modifications. 
You must give prominent notice with each copy of the work that the Library is used in it 
and that the Library and its use are covered by this License. You must supply a copy of 
this License. If the work during execution displays copyright notices, you must include 
the copyright notice for the Library among them, as well as a reference directing the 
user to the copy of this License. Also, you must do one of these things: 
a) Accompany the work with the complete corresponding machine-readable source code for 
the Library including whatever changes were used in the work (which must be distributed 
under Sections 1 and 2 above); and, if the work is an executable linked with the 
Library, with the complete machine-readable "work that uses the Library", as object code 
and/or source code, so that the user can modify the Library and then relink to produce a 
modified executable containing the modified Library. (It is understood that the user who 
changes the contents of definitions files in the Library will not necessarily be able to 
recompile the application to use the modified definitions.) 
b) Use a suitable shared library mechanism for linking with the Library. A suitable 
mechanism is one that (1) uses at run time a copy of the library already present on the 
user's computer system, rather than copying library functions into the executable, and 
(2) will operate properly with a modified version of the library, if the user installs 
one, as long as the modified version is interface-compatible with the version that the 
work was made with. 
c) Accompany the work with a written offer, valid for at least three years, to give the 
same user the materials specified in Subsection 6a, above, for a charge no more than the 
cost of performing this distribution. 
d) If distribution of the work is made by offering access to copy from a designated 
place, offer equivalent access to copy the above specified materials from the same 
place. 
e) Verify that the user has already received a copy of these materials or that you have 
already sent this user a copy.
For an executable, the required form of the "work that uses the Library" must include 
any data and utility programs needed for reproducing the executable from it. However, as 
a special exception, the materials to be distributed need not include anything that is 
normally distributed (in either source or binary form) with the major components 
(compiler, kernel, and so on) of the operating system on which the executable runs, 
unless that component itself accompanies the executable. 
It may happen that this requirement contradicts the license restrictions of other 
proprietary libraries that do not normally accompany the operating system. Such a 
contradiction means you cannot use both them and the Library together in an executable 
that you distribute. 
7. 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 not covered by this License, and 
distribute such a combined library, provided that the separate distribution of the work 
based on the Library and of the other library facilities is otherwise permitted, and 
provided that you do these two things: 
a) Accompany the combined library with a copy of the same work based on the Library, 
uncombined with any other library facilities. This must be distributed under the terms 
of the Sections above. 
b) Give prominent notice with the combined library of the fact that part of it is a work 
based on the Library, and explaining where to find the accompanying uncombined form of 
the same work.
8. You may not copy, modify, sublicense, link with, or distribute the Library except as 
expressly provided under this License. Any attempt otherwise to copy, modify, 
sublicense, link with, or distribute the Library is void, and will automatically 
terminate your rights under this License. However, parties who have received copies, or 
rights, from you under this License will not have their licenses terminated so long as 
such parties remain in full compliance. 
9. You are not required to accept this License, since you have not signed it. However, 
nothing else grants you permission to modify or distribute the Library or its derivative 
works. These actions are prohibited by law if you do not accept this License. Therefore, 
by modifying or distributing the Library (or any work based on the Library), you 
indicate your acceptance of this License to do so, and all its terms and conditions for 
copying, distributing or modifying the Library or works based on it. 
10. Each time you redistribute the Library (or any work based on the Library), the 
recipient automatically receives a license from the original licensor to copy, 
distribute, link with or modify the Library subject to these terms and conditions. You 
may not impose any further restrictions on the recipients' exercise of the rights 
granted herein. You are not responsible for enforcing compliance by third parties with 
this License. 
11. If, as a consequence of a court judgment or allegation of patent infringement or for 
any other reason (not limited to patent issues), conditions are imposed on you (whether 
by court order, agreement or otherwise) that contradict the conditions of this License, 
they do not excuse you from the conditions of this License. If you cannot distribute so 
as to satisfy simultaneously your obligations under this License and any other pertinent 
obligations, then as a consequence you may not distribute the Library at all. For 
example, if a patent license would not permit royalty-free redistribution of the Library 
by all those who receive copies directly or indirectly through you, then the only way 
you could satisfy both it and this License would be to refrain entirely from 
distribution of the Library. 
If any portion of this section is held invalid or unenforceable under any particular 
circumstance, the balance of the section is intended to apply, and the section as a 
whole is intended to apply in other circumstances. 
It is not the purpose of this section to induce you to infringe any patents or other 
property right claims or to contest validity of any such claims; this section has the 
sole purpose of protecting the integrity of the free software distribution system which 
is implemented by public license practices. Many people have made generous contributions 
to the wide range of software distributed through that system in reliance on consistent 
application of that system; it is up to the author/donor to decide if he or she is 
willing to distribute software through any other system and a licensee cannot impose 
that choice. 
This section is intended to make thoroughly clear what is believed to be a consequence 
of the rest of this License. 
12. If the distribution and/or use of the Library is restricted in certain countries 
either by patents or by copyrighted interfaces, the original copyright holder who places 
the Library under this License may add an explicit geographical distribution limitation 
excluding those countries, so that distribution is permitted only in or among countries 
not thus excluded. In such case, this License incorporates the limitation as if written 
in the body of this License. 
13. The Free Software Foundation may publish revised and/or new versions of the 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 specifies a 
version number of this License which applies to it and "any later version", you have the 
option of following the terms and conditions either of that version or of any later 
version published by the Free Software Foundation. If the Library does not specify a 
license version number, you may choose any version ever published by the Free Software 
Foundation. 
14. If you wish to incorporate parts of the Library into other free programs whose 
distribution conditions are incompatible with these, write to the author to ask for 
permission. For software which is copyrighted by the Free Software Foundation, write to 
the Free Software Foundation; we sometimes make exceptions for this. Our decision will 
be guided by the two goals of preserving the free status of all derivatives of our free 
software and of promoting the sharing and reuse of software generally. 
NO WARRANTY 
15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE 
LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN 
WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT 
WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE 
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE 
RISK AS TO THE QUALITY AND PERFORMANCE OF THE LIBRARY IS WITH YOU. SHOULD THE LIBRARY 
PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 
16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY 
COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LIBRARY AS 
PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, 
INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE 
LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR 
LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE LIBRARY TO OPERATE WITH ANY 
OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY 
OF SUCH DAMAGES. 
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Libraries
If you develop a new library, and you want it to be of the greatest possible use to the 
public, we recommend making it free software that everyone can redistribute and change. 
You can do so by permitting redistribution under these terms (or, alternatively, under 
the terms of the ordinary General Public License). 
To apply these terms, attach the following notices to the library. It is safest to 
attach them to the start of each source file to most effectively convey the exclusion of 
warranty; and each file should have at least the "copyright" line and a pointer to where 
the full notice is found. 
<one line to give the library's name and an idea of what it does.> Copyright (C) <year> 
<name of author> 
This library is free software; you can redistribute it and/or modify it under the terms 
of the GNU Lesser General Public License as published by the Free Software Foundation; 
either version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, but WITHOUT ANY 
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A 
PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along with this 
library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 
330, Boston, MA 02111-1307 USA 
Also add information on how to contact you by electronic and paper mail. 
You should also get your employer (if you work as a programmer) or your school, if any, 
to sign a "copyright disclaimer" for the library, if necessary. Here is a sample; alter 
the names: 
Yoyodyne, Inc., hereby disclaims all copyright interest in the library `Frob' (a library 
for tweaking knobs) written by James Random Hacker.
signature of Ty Coon, 1 April 1990 
Ty Coon, President of Vice
That's all there is to it!


This software package includes third party software components subject to several 
applicable license agreements as follows:

COPYRIGHT AND PERMISSION NOTICE
 
Copyright (c) 1996 - 2005, Daniel Stenberg, <daniel@haxx.se>.
 
All rights reserved.
 
Permission to use, copy, modify, and distribute this software for any purpose 
with or without fee is hereby granted, provided that the above copyright 
notice and this permission notice appear in all copies.
 
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN 
NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR 
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE 
OR OTHER DEALINGS IN THE SOFTWARE.
 
Except as contained in this notice, the name of a copyright holder shall not 
be used in advertising or otherwise to promote the sale, use or other dealings 
in this Software without prior written authorization of the copyright holder.


Copyright (c) 2000-2004 Niels Provos <provos@citi.umich.edu>
All rights reserved.

Redistribution and use in source and binary forms, with or without 
modification, are permitted provided that the following conditions are met:

1. Redistributions of source code must retain the above copyright notice, this 
list of conditions and the following disclaimer.

2. Redistributions in binary form must reproduce the above copyright notice, 
this list of conditions and the following disclaimer in the documentation 
and/or other materials provided with the distribution.

3. The name of the author may not be used to endorse or promote products 
derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED 
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO 
EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR 
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER 
IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 
POSSIBILITY OF SUCH DAMAGE.


Copyright 2003-2005 Colin Percival
All rights reserved

Redistribution and use in source and binary forms, with or without 
modification, are permitted providing that the following conditions are met:

1.	Redistributions of source code must retain the above copyright notice, 
this list of conditions and the following disclaimer.

2.	Redistributions in binary form must reproduce the above copyright notice, 
this list of conditions and the following disclaimer in the documentation 
and/or other materials provided with the distribution.

 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR  IMPLIED 
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED  WARRANTIES OF 
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE  ARE DISCLAIMED.  IN NO 
EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR 
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER 
IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 
POSSIBILITY OF SUCH DAMAGE.


Copyright (c) 2002, 2003, 2004 H+BEDV Datentechnik GmbH
All rights reserved.

Redistribution and use in source and binary forms, with or without 
modification, are permitted provided that the following conditions are met:

1. Redistributions of source code must retain the above copyright notice, this 
list of conditions and the following disclaimer.

2. Redistributions in binary form must reproduce the above copyright notice, 
this list of conditions and the following disclaimer in the documentation 
and/or other materials provided with the distribution.

3. Neither the name of Dazuko nor the names of its contributors may be used to 
endorse or promote products derived from this software without specific prior 
written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE 
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)ARISING IN ANY WAY OUT OF THE USE 
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Some parts of this software package are under the Academic Free License v 2.1 
whose text follows afterwards:

* Copyright (C) 2003  CodeFactory AB
* Copyright (C) 2003  Red Hat, Inc.
*
* Licensed under the Academic Free License version 2.1

 * Copyright (C) 2002, 2003, 2004, 2005  Red Hat Inc.
 * Copyright (C) 2002, 2003  CodeFactory AB
 *
 * Licensed under the Academic Free License version 2.1

* Copyright (C) 2004 Red Hat, Inc.
*
* Licensed under the Academic Free License version 2.1
*
Academic Free License v. 2.1
This Academic Free License (the "License") applies to any original work of authorship (the "Original 
Work") whose owner (the "Licensor") has placed the following notice immediately following the 
copyright notice for the Original Work: 
Licensed under the Academic Free License version 2.1 
1) Grant of Copyright License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, 
perpetual, sublicenseable license to do the following: 
A.	to reproduce the Original Work in copies; 
B.	to prepare derivative works ("Derivative Works") based upon the Original Work; 
C.	to distribute copies of the Original Work and Derivative Works to the public; 
D.	to perform the Original Work publicly; and 
E.	to display the Original Work publicly. 
2) Grant of Patent License. Licensor hereby grants You a world-wide, royalty-free, non-exclusive, 
perpetual, sublicenseable license, under patent claims owned or controlled by the Licensor that are 
embodied in the Original Work as furnished by the Licensor, to make, use, sell and offer for sale the 
Original Work and Derivative Works. 
3) Grant of Source Code License. The term "Source Code" means the preferred form of the Original 
Work for making modifications to it and all available documentation describing how to modify the 
Original Work. Licensor hereby agrees to provide a machine-readable copy of the Source Code of the 
Original Work along with each copy of the Original Work that Licensor distributes. Licensor reserves the 
right to satisfy this obligation by placing a machine-readable copy of the Source Code in an information 
repository reasonably calculated to permit inexpensive and convenient access by You for as long as 
Licensor continues to distribute the Original Work, and by publishing the address of that information 
repository in a notice immediately following the copyright notice that applies to the Original Work. 
4) Exclusions From License Grant. Neither the names of Licensor, nor the names of any contributors to 
the Original Work, nor any of their trademarks or service marks, may be used to endorse or promote 
products derived from this Original Work without express prior written permission of the Licensor. 
Nothing in this License shall be deemed to grant any rights to trademarks, copyrights, patents, trade 
secrets or any other intellectual property of Licensor except as expressly stated herein. No patent license 
is granted to make, use, sell or offer to sell embodiments of any patent claims other than the licensed 
claims defined in Section 2. No right is granted to the trademarks of Licensor even if such marks are 
included in the Original Work. Nothing in this License shall be interpreted to prohibit Licensor from 
licensing under different terms from this License any Original Work that Licensor otherwise would have 
a right to license. 
5) This section intentionally omitted. 
6) Attribution Rights. You must retain, in the Source Code of any Derivative Works that You create, all 
copyright, patent or trademark notices from the Source Code of the Original Work, as well as any notices 
of licensing and any descriptive text identified therein as an "Attribution Notice." You must cause the 
Source Code for any Derivative Works that You create to carry a prominent Attribution Notice 
reasonably calculated to inform recipients that You have modified the Original Work. 
7) Warranty of Provenance and Disclaimer of Warranty. Licensor warrants that the copyright in and to the 
Original Work and the patent rights granted herein by Licensor are owned by the Licensor or are 
sublicensed to You under the terms of this License with the permission of the contributor(s) of those 
copyrights and patent rights. Except as expressly stated in the immediately proceeding sentence, the 
Original Work is provided under this License on an "AS IS" BASIS and WITHOUT WARRANTY, 
either express or implied, including, without limitation, the warranties of NON-INFRINGEMENT, 
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO 
THE QUALITY OF THE ORIGINAL WORK IS WITH YOU. This DISCLAIMER OF WARRANTY 
constitutes an essential part of this License. No license to Original Work is granted hereunder except 
under this disclaimer. 
8) Limitation of Liability. Under no circumstances and under no legal theory, whether in tort (including 
negligence), contract, or otherwise, shall the Licensor be liable to any person for any direct, indirect, 
special, incidental, or consequential damages of any character arising as a result of this License or the use 
of the Original Work including, without limitation, damages for loss of goodwill, work stoppage, 
computer failure or malfunction, or any and all other commercial damages or losses. This limitation of 
liability shall not apply to liability for death or personal injury resulting from Licensor's negligence to the 
extent applicable law prohibits such limitation. Some jurisdictions do not allow the exclusion or 
limitation of incidental or consequential damages, so this exclusion and limitation may not apply to You. 
9) Acceptance and Termination. If You distribute copies of the Original Work or a Derivative Work, You 
must make a reasonable effort under the circumstances to obtain the express assent of recipients to the 
terms of this License. Nothing else but this License (or another written agreement between Licensor and 
You) grants You permission to create Derivative Works based upon the Original Work or to exercise any 
of the rights granted in Section 1 herein, and any attempt to do so except under the terms of this License 
(or another written agreement between Licensor and You) is expressly prohibited by U.S. copyright law, 
the equivalent laws of other countries, and by international treaty. Therefore, by exercising any of the 
rights granted to You in Section 1 herein, You indicate Your acceptance of this License and all of its 
terms and conditions. 
10) Termination for Patent Action. This License shall terminate automatically and You may no longer 
exercise any of the rights granted to You by this License as of the date You commence an action, 
including a cross-claim or counterclaim, against Licensor or any licensee alleging that the Original Work 
infringes a patent. This termination provision shall not apply for an action alleging patent infringement by 
combinations of the Original Work with other software or hardware. 
11) Jurisdiction, Venue and Governing Law. Any action or suit relating to this License may be brought 
only in the courts of a jurisdiction wherein the Licensor resides or in which Licensor conducts its primary 
business, and under the laws of that jurisdiction excluding its conflict-of-law provisions. The application 
of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. 
Any use of the Original Work outside the scope of this License or after its termination shall be subject to 
the requirements and penalties of the U.S. Copyright Act, 17 U.S.C. § 101 et seq., the equivalent laws 
of other countries, and international treaty. This section shall survive the termination of this License. 
12) Attorneys Fees. In any action to enforce the terms of this License or seeking damages relating thereto, 
the prevailing party shall be entitled to recover its costs and expenses, including, without limitation, 
reasonable attorneys' fees and costs incurred in connection with such action, including any appeal of such 
action. This section shall survive the termination of this License. 
13) Miscellaneous. This License represents the complete agreement concerning the subject matter hereof. 
If any provision of this License is held to be unenforceable, such provision shall be reformed only to the 
extent necessary to make it enforceable. 
14) Definition of "You" in This License. "You" throughout this License, whether in upper or lower case, 
means an individual or a legal entity exercising rights under, and complying with all of the terms of, this 
License. For legal entities, "You" includes any entity that controls, is controlled by, or is under common 
control with you. For purposes of this definition, "control" means (i) the power, direct or indirect, to cause 
the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty 
percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. 
15) Right to Use. You may use the Original Work in all ways not otherwise restricted or conditioned by 
this License or by law, and Licensor promises not to interfere with or be responsible for such uses by 
You. 
This license is Copyright (C) 2003-2004 Lawrence E. Rosen. All rights reserved. Permission is hereby 
granted to copy and distribute this license without modification. This license may not be modified without 
the express written permission of its copyright owner. 


This product incorporates VRT certified rules subject to the following license conditions:

VRT CERTIFIED RULES LICENSE AGREEMENT
VERSION 1.1
THE ACCOMPANYING EXECUTABLE CODE VERSION OF THE VRT CERTIFIED RULES AND 
RELATED DOCUMENTATION (THE “VRT CERTIFIED RULES”) ARE MADE AVAILABLE TO YOU 
UNDER THE TERMS OF THIS VRT CERTIFIED RULES LICENSE AGREEMENT (THE 
“AGREEMENT”).  BY CLICKING THE “ACCEPT” BUTTON, OR BY INSTALLING OR USING THE 
VRT CERTIFIED RULES, YOU ARE CONSENTING TO BE BOUND BY THIS AGREEMENT.  IF YOU 
DO NOT AGREE TO THE TERMS AND CONDITIONS OF THIS AGREEMENT, DO NOT CLICK THE 
“ACCEPT” BUTTON, AND DO NOT INSTALL OR USE ANY PART OF THE VRT CERTIFIED RULES.
1.	Definitions. 
    1.1.	“Commercial Purpose” means the use, reproduction or distribution of (i) 
the Original Code or any Modification thereof or (ii) a Compilation that includes, in whole or 
in part, the Original Code or any Modification that in either case is intended to result in a 
direct or indirect pecuniary gain or an otherwise economic benefit to the person or entity 
responsible for such use or distribution.  Examples of a Commercial Purpose, include 
without limitation, (v) integrating the VRT Certified Rules with other software for sale, (w) 
licensing the VRT Certified Rules for a fee, (x) using the VRT Certified Rules to provide a 
service to a third party, (y) selling the VRT Certified Rules, or (z) distributing the VRT 
Certified Rules for use with commercial products or commercial services.
    1.2.	“Compilation” means a work which combines the Original Code or any 
Modification or portions thereof with code not governed by the terms of this Agreement. 
    1.3.	“Modifications” means any addition to or deletion from the substance or 
structure of the Original Code or any previous Modifications of such, including, without 
limitation, 
        (a)	any addition to or deletion from the contents of a file containing Original 
Code or previous Modifications of either;
        (b)	any derivative of the Original Code or of any Modification; or
        (c)	any new file that contains any part of the Original Code or previous 
Modifications of either.
    1.4.	“Original Code” means the text version of the VRT Certified Rules. 
    1.5.	“Permitted Use” shall have the meaning given such term in Section 2.1. 
    1.6.	“Restricted Activities” shall have the meaning given such term in 
Section 2.1. 
    1.7.	“Source Code” means the preferred form of the Original Code for making 
modifications to it, including all modules it contains, plus any associated interface definition 
files, or scripts used to control compilation and installation of an Executable. 
    1.8.	“VRT Certified Rules” means those Snort® rules that have been created, 
developed, tested and officially approved by Sourcefire.  These rules are designated with 
SIDs of 3,465-1,000,000, except as otherwise noted in the license file.
    1.9.	“VRT Certified Rule User” means an individual who has registered or 
subscribed on www.snort.org.
    1.10.	 “You” (or “your”) means an individual exercising rights under, and 
complying with all of the terms of this Agreement or a future version of this Agreement 
issued under Section 7.  For legal entities, “you’’ includes any entity which controls, is 
controlled by, or is under common control with you.  For purposes of this definition, 
“control’’ means (a) the power, direct or indirect, to cause the direction or management of 
such entity, whether by contract or otherwise, or (b) ownership of more than forty percent 
(40%) of the outstanding shares or beneficial ownership of such entity. 
2.	Sourcefire License Grant.  
    2.1.	Grant of Original Code License; Permitted Use.  Subject to the terms 
and conditions of this Agreement, Sourcefire hereby grants you a world-wide, royalty-free, 
non-exclusive license to do any of the following with respect to the Original Code:  
        (a)	use and deploy the VRT Certified Rules on management consoles and 
sensors that you actually manage (over which you have administrative control);
        (b)	use and deploy the VRT Certified Rules on behalf of your employer on its 
internal management consoles and sensors (e.g., where a valid employer-employee 
relationship exists between you and a legal commercial business); 
        (c)	modify the VRT Certified Rules and use those Modifications consistent 
with paragraphs (a) and (b) above;  
        (d)	distribute the VRT Certified Rules, or distribute any Modifications, on a 
limited basis to other VRT Certified Rules Users;
        (e)	reproduce the VRT Certified Rules as strictly necessary in exercising your 
rights under this Section 2.1; and
        (f)	Make the VRT Certified Rules (or any Modification) available to your or 
your employer’s consultants, agents and subcontractors for the limited purpose of 
exercising your rights under this Section 1.52.1 (paragraphs (a) though (f) being 
collectively referred to as the “Permitted Uses”).
    2.2.	Limitations on License; Restricted Activities.  You recognize and agree 
that the VRT Certified Rules are the property of Sourcefire, contain valuable assets and 
proprietary information of Sourcefire, and are provided to you under the terms and 
conditions of this Agreement.  You agree that you shall not do any of the following without 
Sourcefire’s prior written consent:
        (a)	use, deploy, perform, modify, display, reproduce or distribute the VRT 
Certified Rules (even if merged with other materials as a Compilation) other than as 
allowed under a Permitted Use;
        (b)	sell, license, transfer, rent, loan, use, modify or disclose the VRT Certified 
Rules (in whole or in part and whether done independently or as part of a Compilation) for 
a Commercial Purpose;
        (c)	post or make generally available the VRT Certified Rules (in whole or in 
part or any Modifications) to individuals or a group of individuals who have not agreed to 
the terms and conditions of this Agreement; 
        (d)	share your user authentication information and/or password with any 
third party to allow such party access your snort.org account; 
        (e)	distribute any VRT Certified Rule that is not available to a registered user 
to any third party; or
        (f)	alter or remove any copyright notice or proprietary legend contained in 
or on the VRT Certified Rules.  You agree that any embodiment of the VRT Certified Rules 
permitted under this Agreement will contain the notices set forth in Exhibit A (paragraphs 
(a) though (f) being collectively referred to as the “Restricted Activities”).
    2.3.	Reproduction Obligations.  To the extent you make any copies of or 
distribute the Original Code under this Agreement, you agree to ensure that any and all 
copies of such Original Code contain:
        (a)	a copy of an appropriate copyright notice;
        (b)	a disclaimer of any warranty consistent with this Agreement; and
        (c)	any and all notices referencing this Agreement and absence of 
warranties.
3.	Modifications; Derivative Works.  Pursuant to Section 2, in the event you create a 
Modification and/or a derivative work of the Original Code, the use, reproduction and 
distribution of such Modifications shall be governed by the terms and conditions of this 
Agreement.  Additionally, you hereby grant Sourcefire and any other licensee of the VRT 
Certified Rules a world-wide, royalty-free, non-exclusive license to use, reproduce, modify, 
display, perform and distribute the Source Code of such Modifications, provided, however, 
that you and any recipient of such Modifications must include: 
        (a)	the original copyright notice;
        (b)	the original warranty disclaimer; 
        (c)	the original notices referencing this Agreement and absence of 
warranties; and
        (d)	a prominent notice stating that you changed the Original Code (or any 
Modification thereto) and the date of any change.
4.	Distribution Obligations.  
    4.1.	General.  The Source Code version of the Original Code (or any Modification 
thereof) may be distributed only under the terms of this Agreement or a future version of 
this License released under Section7, and you must include a copy of this Agreement with 
every copy of the Source Code you distribute. 
    4.2.	Required Notices.  You must duplicate the notice in Exhibit A in each file of 
the Source Code.  If it is not possible to put such notice in a particular Source Code file due 
to its structure, then you must include such notice in a location (such as a relevant 
directory) where a user would be likely to look for such a notice. If you created one or 
more Modification(s) you may add your name as a Contributor to the notice described in 
Exhibit A. You must also duplicate this Agreement in any documentation for the Source 
Code where you describe recipients’ rights or ownership rights relating to the Original 
Code.  To the extent you offer additional warranty, support, indemnity or liability 
obligations, you may do so only on your own behalf, and not on behalf of Sourcefire.  You 
must make it absolutely clear that any such warranty, support, indemnity or liability 
obligation is offered by you alone, and you hereby agree to indemnify Sourcefire for any 
liability incurred by Sourcefire as a result of warranty, support, indemnity or liability terms 
you offer. 
5.	Inability to Comply Due to Statute or Regulation.  If it is impossible for you to 
comply with any of the terms of this Agreement with respect to some or all of the Original 
Code due to statute, judicial order, or regulation then you must: (a) comply with the terms 
of this Agreement to the maximum extent possible; and (b) describe the limitations and 
the code they affect.  Such description must be included with all distributions of the Source 
Code.  Except to the extent prohibited by statute or regulation, such description must be 
sufficiently detailed for a recipient of ordinary skill to be able to understand it. 
6.	Application of this Agreement.  This Agreement applies to code to which Sourcefire 
has attached the notice in Exhibit A and to related Modifications as set out in Section 3. 
7.	Versions of the Agreement.  
    7.1.	New Versions.  Sourcefire may publish revised and/or new versions of the 
Agreement from time to time.  Each version will be given a distinguishing version number. 
    7.2.	Effect of New Versions. Once Original Code has been published under a 
particular version of the Agreement, you may always continue to use it under the terms of 
that version. You may also choose to use such Original Code under the terms of any 
subsequent version of the Agreement published by Sourcefire. No one other than 
Sourcefire has the right to modify the terms applicable to Original Code. 
8.	DISCLAIMER OF WARRANTY.  THE ORIGINAL CODE AND OBJECT CODE IS 
PROVIDED UNDER THIS AGREEMENT ON AN “AS IS” BASIS, WITHOUT WARRANTY OF ANY 
KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES 
THAT THE ORIGINAL CODE OR OBJECT CODE IS FREE OF DEFECTS, MERCHANTABLE, FIT 
FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS TO THE 
QUALITY AND PERFORMANCE OF THE ORIGINAL CODE IS WITH YOU. SHOULD ANY 
ORIGINAL CODE OR OBJECT CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT 
SOURCEFIRE) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR 
CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF 
THIS AGREEMENT. NO USE OF ANY ORIGINAL CODE OR OBJECT CODE IS AUTHORIZED 
HEREUNDER EXCEPT UNDER THIS DISCLAIMER. 
9.	Termination.  
    9.1.	This Agreement and the rights granted hereunder will terminate 
automatically if you fail to comply with any or all of the terms herein and fail to cure such 
breach within 30 days of becoming aware of the breach.  All sublicenses to the Original 
Code which are properly granted shall survive any termination of this Agreement.  
Provisions which, by their nature, must remain in effect beyond the termination of this 
Agreement shall survive. 
    9.2.	In the event of termination under Section 9.1, all end user license 
agreements (excluding distributors and resellers) which have been validly granted by you 
or any distributor hereunder prior to termination shall survive termination. 
10.	LIMITATION OF LIABILITY.  UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL 
THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL 
YOU, SOURCEFIRE, ANY OTHER LICENSEE, OR ANY DISTRIBUTOR OF ORIGINAL CODE, OR 
ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, 
SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, 
WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, 
COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES 
OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF 
SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO THE EXTENT 
APPLICABLE LAW PROHIBITS SUCH LIMITATIONS. SOME JURISDICTIONS DO NOT ALLOW 
THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO 
THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.
11.	Audit Rights. You will, from time to time and as requested by Sourcefire, provide 
assurances to Sourcefire that you are using the VRT Certified Rules consistent with a 
Permitted Use, and you grant Sourcefire access, at reasonable times and in a reasonable 
manner, to the VRT Certified Rules in your possession or control, and to your books, 
records and facilities to permit Sourcefire to verify appropriate use of the VRT Certified 
Rules. Sourcefire’s non-exercise of this right, or its failure to discover or object to any 
inappropriate use, shall not constitute its consent thereto or waiver of its rights.  In the 
event your use of the VRT Certified Rules is not in compliance with a Permitted Use, or if 
you otherwise violate the terms of this Agreement, Sourcefire may, since remedies at law 
may be inadequate, in addition to its other remedies: (a) demand return of the VRT 
Certified Rules; (b) forbid and enjoin your further use of the VRT Certified Rules; (c) assess 
you the cost of Sourcefire’s inspection and enforcement efforts (including attorney fees); 
and/or (d) assess you a use fee appropriate to your actual use of the VRT Certified Rules.
12.	United States Government Users.  If the Products are being acquired by or on 
behalf of the U.S. Government or by a U.S. Government prime contractor or subcontractor 
(at any tier), then the Government’s rights in the Products shall be only as set forth in this 
Agreement; this is in accordance with 48 C.F.R. 227.7201 through 227.7202-4 (for 
Department of Defense (DoD) acquisitions) and with 48 C.F.R. 2.101 and 12.212 (for non-
DoD acquisitions).
13.	Miscellaneous.  This Agreement represents the complete agreement concerning 
subject matter hereof. If any provision of this Agreement is held to be unenforceable, such 
provision shall be reformed only to the extent necessary to make it enforceable. This 
Agreement shall be governed by Maryland law provisions (except to the extent applicable 
law, if any, provides otherwise), excluding its conflict-of-law provisions. With respect to 
disputes in which at least one party is a citizen of, or an entity chartered or registered to 
do business in the United States of America, any litigation relating to this Agreement shall 
be subject to the jurisdiction of the Federal Courts of the District of Maryland with venue 
lying in Greenbelt, Maryland, with the losing party responsible for costs, including without 
limitation, court costs and reasonable attorneys’ fees and expenses. The application of the 
United Nations Convention on Contracts for the International Sale of Goods is expressly 
excluded. Any law or regulation which provides that the language of a contract shall be 
construed against the drafter shall not apply to this Agreement. 
  EXHIBIT A – VRT Certified Rules License Agreement
The contents of this file are subject to the VRT Certified Rules License Agreement 1.1 (the 
“Agreement”).  You may not use this file except in compliance with the Agreement.  You 
may obtain a copy of the Agreement at  
 
http://www.snort.org/about_snort/licenses/vrt_license.html 
Software distributed under the Agreement is distributed on an “AS IS” basis, WITHOUT 
WARRANTY OF ANY KIND, either express or implied. See the Agreement for the specific 
language governing rights and limitations under the Agreement.
The developer of the Original Code is Sourcefire, Inc.
Contributor:			
2005© Sourcefire, Inc. All Rights Reserved.  Snort®, Sourcefire™, the Snort® logo and 
the Sourcefire logo are trademarks of Sourcefire.
                                                                                                                                                                                                                                    ./header.png                                                                                        0000644 0001750 0001750 00000035124 10455707565 013104  0                                                                                                    ustar   jmaroto                         jmaroto                                                                                                                                                                                                                PNG

   IHDR      9   6ɠ   gAMA  7   tEXtSoftware Adobe ImageReadyqe<  9IDATx\Pq0_5:EbU䞋"?f6-Q|bײq9PgXkPmu]!txGs>/.=5g3|w(}{<7Ah_W5 ]{L+	β/^aTP~T+F=;
p A/:lGB0(imB61c
p8:S\.vCi cse(JjAKOͅ(ӇY-d
G"'/<c# ?sф.qp٧-v^ A
߸0ҾEͥqg8AZv(ԛ,j{e	M	 a`p->A!g2W	"'aMsgЁB߆TM8n2!qE;k_\D60[=\45n?@72HS"LS2MDд0sf#b".cUwgI (`⚧NH$`X)^Kzw6Y	MJNi6׏I,Báz/D; |Yk>f 02A
hZ{ex\-j=m(aLV7&-iΌ.F~>AM/#[2
M{VE+ЇF2ܙ<cDqH]$AdP$ӯq褎Hx]8@3T4<&-ߢA@HyA>Z@:+Ss8Vt1WiHGq^@Xs B#Y
)a%Xin%ďt@pBjEߪOg u{e7rxZیOv-FԈX
a{9  /v P/߃"H 4vm Mb}}?=}\j<<އ47$kɆMs.ۖڐ+R)S5yg1`}Y׀I]=>lG5lHl)DvK?V$a#Ca`}-+%;@)_?p]rELYl,Q >XaAI`BBEL,,رS@&ͻ]N},nBbq"xz5pKJX (] "CS}Zm]!RmLJs& ޾;GSb$u5n= hGu]FtBI6gN;^xY]=/3{ϩ7i0{$a 
/3vElPtl)tdcg	fy,~[ wN^H2YD$\uV=W,l%LU2֢MggRCPW6Q<wb~%.:-39<Spv2`%**ผ1t<xr?VAv3/~3x6瘥kmذzA Qj?N&:;4D7)wgѡP!kbpY@R gTAFm!D7Ak]"y*{\Ip9dEj@ 0Ei|gF)[awiN'<b;62Ca2PS>AkZ>O?_:ب<#P2|yT4v8^㻷j9]h}?谂a 1xxAMRCӄ6m3#eHR}WF|tỌٮ> σb-,1=B5#@5\ 'dc(N,\D9-͖b>glfa[Mb۱mAQ\tq!,`C<:.>yr?fJI(Y[euLf#.HGG ̨ADlzRcU 'ԃ/c]ou!*.CدX#ȕdm>\%qBBfE D-uX<⿷"y'Gc"gDV78Q&=Bw@m5!+jɟxOkE\`kAnjGxy+(Fp,lq*J'4 KnҌό{i6X=09Bj$;_,sC{D\# YVσ D_b""5ЃVW]x+Y}-+;:f3GkS7&ÐLf"l|KO|ߔHT	"4s
K46z^luꖓ=$	qly٘6	=&.VM[JN_S1Y^MzPP<R3NF]$Mg`Dm6+	z0_'S~="5Bv2,e,Ah,|t;6v>
A!1j\so|`{3f̍xtgT<Jf>ۺ@
p|}sMr@,pE	JFS(_?Ȁp>|"v$}i2׆$R8&`s%Ӏd(D5(QD|c8Ǳ\BSO&ETkVE6c8QM^W(1,%zʕfЕOC 2`a 
ݸTѓzAREmA"ڮ/uB13;/JFQ_e Far)=T$	;X?\b)U#K(/odv$ΟhfkIMQ-H}rN"wC/0:^Xŕeφ5D>L	ݖ@;Ux3
_e)f9 41N9-h/_P<q3'e'^;]cˡ=,_|)nGm}d]4
Juu?\7]DEp=8KM8tЈagTWҜģ/L{KU uJe#l:+*r, ٵ99tN_}$
f=~x
@Qk%{#Iye!@0Iypf&95Z~d8Nm"t4gYGgz~pm,k>~CC2Κ]g&#iiGGN[?ni6+
Av]1F/oAA	,hAW,"&c;&f*oҭ_pQ]@? %XeX՗-D(Ǥf&Dw
i Rl`QFJ4HW3l>Z^]!GGjXWE_m!Av_C.fƎwd`5tz5): |?WKA'PDo^˞ӿC>Ȣl(`Y\o&SEp[<!j5#-*GNsNyMd+QS[YZEJoEA(9(h*VyaaZunpsޥڨRMt[}aT:IKQ{&COV fi"@p6Ld3]A5C1%y}JQHGXɊ6B>L0x.y
B,aכ6#|yLgKxk?e`[f/dj:-R#8n>%Z{.<?'o@s?HT Z;kP=JcPVNNRGCE\l]IfWA:hDlQh	Rq(`OˈX"H=!cA `mA8'1'<K |kP6b|nHtyex]
J\tѫ㄄s?n D>wJTEYWG%V>@ID(*b
`?^j!g%%I%-DrEnwilW @ȳv?Hi<
	'CeͣA10ZM0&+")fFcTGh04?{WȽGJu\ /Ave 98n>~>{=k0÷U-GK0|vYu]o1{A#`E[G?1
V8,,2;K
>do_g`ehN	~2Xex1#݌XBL  Ҫ Fx憆AOZDeM "DB+oƩV|%걏u*E1x`iY%R!y(ue&7%"o:zWK;UiU|33sZ[A,#vvH&,_aDf Xa<aOCFꈻp\JQ?`ngM3r}=!n'ZSyq Dpb)EU|Aq:ƸksNG'rpʲ3U=?] >ͮ%a(genE ^ 覛D*:7/*1gs~<BUbeueH]ZLd{B&jǡm]z踃` [2uR(' @D'}"gZs5~؊	qpv2M*´QUvDf1C\`AwרW{l+syŶ5`!-ly`l~ QRiO#ϣr$QlyM3j"6Q{,c/{B4-!KLYsXȲ{´S2RKT6@kz]uT_@h,׊ցl*rs4NjtpB=?[h}q}ʨ^B*s7:"J1R_҈jxH&ƀc@N.vBC{1?lo=0|+,k>}N$0}aMGRu	%hMrjpB"jO#}1>:Ꮴt}:rpE |1o0M(E**PCہb`щؕ)lEHR[`Ŗ|ٹKg9ûN<Tvs:|h3~\_Pu 2G&x,!Kz?i0cVh*K~SuWQ *#&"y7-j=$3AmDH5Cu>"Zm"E8$A@)+sQB:mpzM`2~QP9wi̳6]jZ9
b bA(x
sܟ<xуQjhPjZt7{HXYfv}353xQ7lꙸVC~zle*,Lb-D9* 7.߸z,eR+[,ϧ8Nϟp	tJgƞi7{z5^s
2e~D+@LsAE`l< c%p(YHl(rqGZ?%NO6Na}" ֮0." ?@TR!]*׈L @HPYy1.MV
K+YZNٝ[C9J[=H\7<%rSgWry7^goDGA|vUu?
8;)@l!+S2Wyʝw(nSdwp
_kLfoX,4#A͌"E}7#rQ%sI؇6Oj;+q|xy~bn
.MRP5^^(Γ b"0f+ +!otР	4Qk'iD]hFFŇ%p?b?rbbb;:g0	etDE6ƆҮ.@,DtEW2hgp7Ê?`p7AV[wn3xX81򹋠yW׀UG>{p00q*|Q ;`)c6Z9~~R,?g=ko?ir@ܠ/h b2Íۙ  aYrB@D KHP3#XV򠕈q:8FPJRxu@.;0Xvk=HmHU"?1
{~
4á^9 .%sPk\A]_ۧ~Vl֜p? :߀&~0瀉ݵ.0Yp6PSA07:O8}pX=? K?~30󠂓.`x`t:zȲ l[Mk1}k-ThEBBţ^ѢH(x-Vк[ȸk 余L$`NL<kq$&PSlyFa]N(iI2VVq& /,L%jvxȐBaakWsv(((4Uz>:/p)bjHYgG6Lwޘ'V׶)	|`^"Hx}ǧ6wen2xU0!7r,DDWB4ϯrx"M͏Һr]dƃض(zFMEТ"TA	ѢA Mm&Zw,5])E3%FK01<(Q4(|?W*aE5kxF4;o9QK1| |vfTQYEDw#G̹htk$IANy]Ga2Nx/0h.]w-OEƝV9#3@$,}teos	8?a]Zp<PhgQfP"dafsY^1NMG=;սccIRلF|fu`mדЏa- Vϛ0%Ddڍ ~4 .Zu)2$A&8abrݽhTV3g}Y˱./rkANY^W
	Ckݪ\8m2yJP;~%,{wcFPK./"<dƛS3G|n2DX␘+=_B1k=&olDO&SizXEPoG .x#C(wH\yyNc6\ct<̆},
oF$;,MD'ic t\Mk@}`)7T?/_BA#FXǘ12y33t7aR+q$uO$W.o{䀉I$JzBJWekRjSM,6%Ҕp&l'R(̵RnC9;ǛuS))`C>&KׅEAm@>&=f*o΀ae1+'e2?3NW:TX k/Gwe\QFm |\j1}ƅ-Z=ZEz=֓AȮ[EEЃMgSƵ2ax3yyoyj)ӃmJ)Sx-ETFfE#g,N~mNJ3Oc.ǯ8(&BT/6<Z1PQ쨔Mf1A6]Tr)Iqw{#tAB^}pCh:ɛmlPnz<S˚#Rmmfz$cM=aJR3=|?H'd*;r6	Q>#qSfQEW]K	
;׾2"	`I4tF'fѼArϗs	ˋ[s#S?HhUfBKqNUO`M6Iā4CxlEyQ|U*8|m@MZ~*k_j39li4pwxyk1}8:bIð' >0$y{}G~wIw{1x%|!Ep.?	\YCw~ tPLI#Bjm0#)+ V|APePj
 G`Oے}[Hq.;LJ1@Ols@k/KhIژ!2gOV"u?,, ߽cvA.FP1@%%= v`&w_1X33H&̬^_gϟs)/7Ñs.;8o}gipZ1h&4r(A[xy}S>ApPBF߼y9>y  &6"%?hIY @,hZjaKLA=e}Rڨo?a3B#KmҲh[1G5}pS0H!F?U?MWJ*]`6P2_P'®޽GOK`uA\X1th▟(c  Ȱe7"Rd_> /% `5Lk~fVY 0a>K1n`+б޿eگ&6.mP)kYA>V<EOx*H=) 󠭛KI6ݙ~3FKLdFކres*^M_eH`z+EI|xӋP1Ʃ/z	CIzsBXrhfㆹC).t~j=x&%2jX]G*NjOBVCEq\/Bw|?B/OBמ;N+{>!*.E>F*&ǵ C#بR.EQz1Bڛs}3:LM|)zu"$FDm=&%Hr.fA4g+/{)36=r8 Mэ"BOX.fsaG#݀9j,q"!.mNHy]	,gqKvpFY5r轊S5?4G-I7Y<rv1`.J,ѫ2DdJ^ t\Mk1}٬wY+teE
B^=ĳ?-m/zhEQD\$ƨC1f<WaaƮm`םϡYلAܱZ9ṢvO6*xoS(}Nfe7ulw|V7^?Ɛ¨WF'|[<.	[DZ	e0qcFF?V5@{$</nxA?bXadqs[g=R2؀mVTzvj+9և<xUs,9iL;"/W-]1^&l*:.bR5,F.&y9ǹ&}wIdH4P{юNLН.1	߿srv0)\_gx*fAavVe	)FO`ZK &Ј3| |p F{`ķ@L x/<LX=yAؘ8	(K ( w\LSScwBacn>@ B$"._WB
8&VqF@nzꊇ|w7Z,
#~Bmqwf[( uf>IgQGR{n5Mg-MQ:bQƹIY^z_@`.[4fg~k2* ə fTH0{|΄KjqO+NhPwbTtL }D/!ڛ5b7M`؜H	K :`A JeZF+AA;VP!սa1fux7~)Vmαfb%z>ʄ0: i,9T	㮾.j`+1uh@K>cK!DsgCħ#l^@s8!>w\2IIKYW8i
C#3oWBDHz"c{Ȓ]n V[H&S$6F>oB._ba(1h,:9qcT&PkQ`ŕ&Mwr됦Od3S?tج`OڔTOs{iK:(),6qzΦ]
's93yOEF !S	̈́$[)j_A4Zb+VVQ}sN"Mm_-TJĻ0,&LU.A~S >`A 
5At<B5Aa,)Bey.87;jBtI(4툧f&,ҫ\S5ݹcU
'Vy/LJxC!fe߯%4cb~Ѷ󯫡/(s:0hJyXqw$	i)ra>P+ c=:E6=fnA|1"ħqqHfd3u6. vo[)"]8DBU)cum`DKl:#Vk	76d	m}6r7VG=&ZEr'x|Rej7smK_1g >bcp
0"@vЉ*JKې
$Knt(!@{PH	Z&\rI{`;O^cѠM\PwI0>{r V ݄@ħ_|(-2DIJXe=Μ9YxJOZ=_t@;=Y$X 9/~<|PsVL,4yB@)͆ jǝRUQe;t8)<]hyƽju`EƂG|gt<ޡ..~lҦ# #ii\4aw֦iqGcxP:[A| QxPJcBeFǷ4bqlXԊ,2yf#A;pϥq!QTnoo:_={`#ؘF$RPzK|Q^%L^˄}l G+5GDKq8$ւf"oK:KTw[],WEt8Bߒgf 4 G,)u#@$ O't%]ҜyBVo;gQх:y2쯸_Vց9gpUǆ ѫeT&F?`LL &
4
xW9<6w}2J^-sBL&y^՚8HcVO#܄u!J>ߪ_7($r(U<I~(5[J.S\\$0?.%b0@dpcFO։C uPD!4pݾyf2	Rz	,9lw{GцcNv":9p^tc੿# W0_jmuZtAAc?pA?BTСZ,ž
%ܝɠh-_KLQT\QN? 2}YgJLm;0ϕ% dIU%D=?Tʚ`KwU$CN3$yJ
jx*N'jqa00ănf6KWRP|}62p?~QD3jhNW+:~:8
׵ DDPLc#6>	A-9w.^^MR -ٝ-d4uP$R"7'	hT+eN(Ɨ%li"YTJ ;"{"eXRy}W&Yd[e`exҁmi Ըjr{jwY*ԹbA>g ɆB04! gF>e~00pG\䰑7K^<OfjdU+ 	H j|8PiQ=ûjx|HZEr JQ@׵ 9QPX), 1DPy(Qp\n2{7g|(tW B#ǀPugJܢn ES~OV{ܖUo=zyn7w;f{
32_q ^A)/s%JτY刌o ܶálWpՁdi%bOh|nBI(\Ǔ)n4>3?)a:"IkiMc|F5A
('{ ^i8Cn9,kclݯZ[Ds٠&#=b+'JrV{jT75QkU%
Ja*hR%PmkdVv.g|._1;G"opT6SNSBX.j &Gafn_$G1(u%:UUz__KVk?Nm1pF𐤾$$;"C4e=[k%i~@׵ A-|
"h)Y1boeeBcL3=E@e3;X
Y&ʜG
j	me~N$P[3d==*GqhinJ^6yyW/D 3"/2deJӕ78qN\4-K:!CUi8
;ng3߰xNr$UC2؊->"3@.	ʫ,hR̀d})UcK}(}
 oR1n>8oi-#ُo'F&΃fhHM0-<cD/oE/.sG^p}!ûo~#Ȍޚa#c`cd`e8YfVy
4 _- &à$%bӿ?v`.c67?py)IYA!QP<=itJ)ظLah60	ꥁJ6PA `
r&o~=}I5PK{0^Ј 3'Fl
jM$&9V2F7aޓE1Z~P@^U}
ZGL)Zbԏ+N:JKYb;1׍u@A=M1n)&r949ӌgƕ'l.%8CqRޔHֆr_}zE	5@d]W 0(UKÖ[la1,`cMf+Vpҁ(#/uEKTKe~7 n-=nN^HiY& fw[fXGŀf'2&lh?rZrBO407!c 1r
 PC6gW\.+f$/u{թE-eQLnX:8Jry;"r+N`޽0Dh-.ЦP^4Wum!eEv`J"1oѱdXxH#yD(n-[)!~}5t
0 `JA    IENDB`                                                                                                                                                                                                                                                                                                                                                                                                                                            ./wizard.png                                                                                        0000644 0001750 0001750 00000270235 10455707565 013160  0                                                                                                    ustar   jmaroto                         jmaroto                                                                                                                                                                                                                PNG

   IHDR     c  hV   gAMA  7   tEXtSoftware Adobe ImageReadyqe< p/IDATxtVTsgvf>`PbbjbՆczij%VsN9b5P##,.ರw읙{T͍i)
!
QC3(wJN0
Sp+I ( 	Xx)ja0<D x0R((CEE$?#i
 EB`cS4x Ac4FcbbĜDS0̓Ax@K>b2
F
-(%_L3!(4%[BL"hL46ĈX$J4,-ӌR @ $b#A"LA$yD<NQi`H2K0A	Gƒ$D?D&V)bLa""A!(H=`Hh+H/|E4y5mrҀIx2h+Bv
!!.R71"/t#_$gb R$'` ZC4D,с~ Jt$Aþ}yY1?	BU2d$i<V0qG0`!ȲOTIVr`CǽyTץyfѪgn_3̩
$C`Y8cړ^44-
]`diUd2r1vyvܔ׿vWbJgҲ^HQ#j?O2;+\:3	}M]fG@(⹉(K7DcKš}^VV'''b{¢ls	7mv{sέr!nZ}!}sßwttsYW;~kOu^:=a5u7K3g *aJ℀!5+yXf,SRŅ377LNMo-U4'͔QzZWl?t{͋7S+:z{jM	#_u%$$Souz6OJysݺOfP!RtT,y=L5I,c2ۻo~wo×WiH$>{TGt	3L׵߇e^<b*a)1UG{OȥaӋ4;ICٔ`rO[`1A5<br?
PyMIگ+ÆӠ*w4EFdLN_Qq>tyG.jMq]]]kVni9R]]_ew8尟
C_"O6xjO'Nua$,--=yiƷ>DȚ.vj6<E󉉉K?`m[?x{y)`pwJJ-K$ݻmӿOF'vہ_/+{~޼ySLyydHHi4@ p3~]T\TBqqq^e%W]άϕ5i.).iەj@09_ߊ(L,2뾿~l[NVz8wmև"lɒl{QXT)ATyOtb{RqnMJKX0#<tzլ~A0F1B0MX-Y^wip8_IMmH{}qٍ*6s,iZit6!}N2LgtT

7t[jER|>'9%	0w@qs8.]Fm(F>>u.Xhzx`3_8ƀ8lp
`)5ݭ;8⫮?n| Ts̄+a6 	A pd``j<Gƚ<222N`-.
"'Dpd2566	6[roI,0W²9 FQ(rц/**dL59xUjMU==׮]~ʼgLҪTʐ~(^ZZԅTK1{55ý
u[sԶe[|F}㇎IL
_:xaLӨcB9w܅uhԂf 1Հ69n5~A`MNtttryyϾNgUnq2ZΖ n,I㇙xp!1 _
@G5uqܼ bDXTؔVm::_V&ZZp[q#h-QXZDԕ!(6I$!/7/~ry{{Zo>@# !M CpTJ9cJeĠHҤhFr= 02R T$IPX"f0Ŝ@ DmV"bekzKxhR|GaOD"CH[I)@H,!?&)&od-)  1p+yb,=(&i9`:I.l	D(32IM~2iK@C3 ?	83>Zj()P3N>OP\H4  d"AB,Ԑ@:@!1StKGeNDD^" ?]PI%P&1$;3C<y,]9
K14/,QYRȨ?vR҄zE>\^$@.HVDzorP>I<[1&f)@UH{YMJ	N$fgJo^;zgRYըR0%N*9a{//a9c gyPJe'M"J=`uC@P|N\q`^΄\ܳ.w[++FW[]3;f~xo|~m	i̖TTQ}^`diJ)7K^	[Z$^> [5heTUbE]n
RH3̰^w:nUk-ϳ&|#TM~/2~7V#vNN7T9?Y۹ί?[J^lui3(蘘R5Y&K?8dUS.W;[Sakhdg_[edaV7;vحQ:Fy	~Z:p5{mۜs/9yWTFF]<eU.}ibbNcEBə"ޘbF4&J:Vi.|skR)KY9%eãذ=`#y`߿l[K GDtuumܸ1)T]]m6Wc<vnr=t3@O׮SgӿqO(co)J)UDOvwTV}4{ץ>ˉM4+Z*:7(b4S9zⴀcR6_`LOݻ}~fI^iznBbSʏ?/V{M\qWYr+*TvljdH0}X"^.0[;)i<WBmυI0̍7w(J9pd~`ףG
\i2e^7Raˆh	GD,NKaPJJ/PaJW>";Y"]P4-dY82Rc0лq8.۴+;;LIIzePҥK^.MKPwḩ)#0(p@HPoO'?tV\yyywG>))+G,6Ǎ7cձQjŲYTVVf͛[C:!S5eixayp:'+A\t`č.Ϯ~ի9l-cK
_@?^tnFFn湫0D("eR*(*%)pP+ONX&kVkzcGF{<AxlC5X~Z"X&ncv>N?pMM>O72=^-QLt~xUsVDvX}&CL\lɤXru-xGWi_jjE>7`?-aXN|!]	"۶WY_i|GPO@(G=$2	,AJ{o7faAU\Qh$&(I'I<vI&i<mF㒘VkVQqADMef}`jxo߿~_Ɠ1@ V1B0&dpߛ {F bED,
5Q3T: SR0):-X:4Ruc2,䂿(PShGbh ;8Ky߅dR %&	8#|	b
I@Fwj > %8|dCMCv7"BRF ZA&CDAy	!2dcdI"#;͢Gܥ<Bb 劖F4.Ń;Jh6ӐQ%ObQ$
E")r$d&@10CLMKjKY(?p./MxrEEM "&E%KD!`#NB@QK`Ps'#17yJGmiLVT%0"
ڇ"ɋBdd'3([SB	D8$T'	Q+wf MflG{T	!R̹Rce(3	c/<J"
9%fH0$4DDȌŌ؛	xwBDԄ &P
Q܊?#AFr
@L?`R##Z-X2+0Q,oN\k[0o6d֍2 hd8犄%V{)J.%tj%­84ғtr3Ili:i_$@NKЌ튡2wYr1  WY1!dS|9	^y{ ZLdMuZ[nv'dWAT~uEmyE;b#~B}yZL& n<x=2Do4}}bL8
}混}s,vy
c.^*dy4j4:"&&PmMM20XW{"X>tӋ%E*e됱w D@V|gwl|%ruy\EYEgk_s8ٽsW]Aq.X	N%-+M--gU*pO@&H~S`wzVd\NfD>THtQLlh̃laϙM))+N}hBlCuͺS	pZQ'O0[:wKHH\?48V'߼B٥
Jnx/<TwS[j𦛧F/_п!,AϲJ߾@rrJl I(Tűʏ~g]{޸~J;O4u#,,*rae!Uz@@4'%0^$1Ra*JA[6itH**.rn8L9ޚ[>sVռ7.[v[Ok)? 
k<@^y$C+Nޘ)Y59Ap@RtzohՋ5{wH>^Z@k/6*w?w %.uVaHxp'~6tۏ)Zr9Ya]ޱ@%%>:VG:0"½[nͮ}ulP*RPEBTJQs2J/4/Ld'H	>h_
	9T}Ň3]~ewdAyEi5YӦM㸰E&twr9d<ߌ_E,]eb89k`	^1q{>gS38ڃJc5+L6W]Y~|E9N(sf\Xt䬣G>`{nu뚂5*DW礏?Xށ$FeNRn~7>҇hJ<)!t*ݲ
F2>~󹢢XeίNn?\XuqtKJ6uko9[pZ,бo5#	Ĭ0ДǞ$̙]\Rj'6t^CO.;^^	
͚\TYyLȈ3g̿v*""rQqq}qO`~հ.$4);k{ZEHHCcdPkRRRH [D_/6#P4;Ά?˃Y;MΝ(2p~@ը3ǳckWYqn0`0D!| 4֮)i1j9SJ}`=4D[BB㮘LNgZmau[[dVV?w]=Vz{ЛG 1U&6z]. S&<NfP2=15V	Ex (Fc|X-MfN8ߟ7v
I.mLV,H& 6qr`^˖>2.
N]8{v<ox<ZZv<oޚ1O8Dk;*x -C3kZ`OI
YpzKKKssԩS!\jx,fn|qQQrK~BX6GPj|ȶFch|rG'7X,fe8	SOl5<i0 {/tZAy6Fs#5VkbiI/|71=Lns(]V݈gA0s@D:-{zÊ9hȎ= 0mI|RR5<<`9t6J|c.̨گnj'|^8ؗ~ 
	N8^D'}G|jvosrr*++	Țh<HEʚݵ0-o
~6h)*zqnʨiZ-A>PqPPËxBZ-	"ٙ<\VVwqx tcj'}ZV㸂Eahn_nQ8N@@RxKrO$4$#
 #p"ĝn23VUeOy$@tQxl2ֺ4bR䷗;::p_ӜX՛?qT*>8xAxق`l2n\wO5 ۪
7lS`8P:$.H5Z;-4!yF5.C"jvԴlxciQ@ {u, ؟t^_ʊJȈrQЊゼ^Hz.0hσZN]^TI:NjTw⻦	%~cdS
4_eŇ)Ac%rZWT4k8eRR23BA^Ã\1(pe;s:7o%K&b4¹qa/C{ dn3w _d#=~a|_Bd%A\\TӁ|lz?PrQUY-d&u	HAPPUQQSqYXXQ5$$g&e2{LBSR{sOXX@{=fΊvZ1ps<ҒAP?쑆bix$m~}c6$G" r[
jbB;	#!n#&q(Di
4[ha LC0@, #<Êhy{|5	sy)/j2V'F6ႀcBYK7?M'<H3~Z_2 Ky'@a(6RMI}=zFm7ӹh"MjfÈC_0s?n
d1B!E.@6}=݉x
3?Лm/sOvn 
@`?QQ`,mJ'xOu	t>h3v\PG"*#`BO'P NfGSSt'1@E~DȖx-VbuU`:"hpBbG@>IGP}0`/V$4"4x?!PDeY4,>}%(08<8Mȅ#A&!@	TQ`x>p7|mBгY0ץ@0LX56Auc/ B&A*4{  h(8(N^'h<Sdh@$^_AVbPAO$)ǴRd^ !#oj0Lo><=o1<޶,Ek?O
4p%pdqT `W(h2E߾q#b{#DQ7fItdA""ZH~/A%зE, !#wщGa#gE_٩ %oCS| (X4!H\cc&	1a}`?80O@v8QdX0!i)pN;jtdѿP}$%$UxB2i7~FF`
D	*ѴX.| cMNf$H@A)YIaqMBPqh	{3hF98HioI^xWlfL8`e!EvvV#z篛#P^l(2ܛZ|VO3HT$6&{RJy⁙8R# }8EoOYBZJdS^X<GPOy#=u.+K<-'5T(dvn>0~ +D)3owau/	u6A^xBчEhbcdH̓\ko,;CT\/8_O3D.4!\^0jJT꣌^Zҝwawi&13kREɟZW]>pHL&S*Ld]ReKXiG #]`܁ 7*+Z,ngKbb*E{l>QJ-)B2ty{v42a#Ͻ9JmCUUekkZ,qqqb/x𧻓/{c3yx1TUR:gȲ/< !h/F]|a`DS'~8˖-7DHn[;rL}mRmsl6kc͉(O>`dk鬮d2@]]]R41_Y-slؔ'oȋ,'HPj2PGɓNWYY2?ت|H"f=斮
Ș-K˝釟W$[̉8榘E"ݰ@ؐ
ʕ9٧Oӻ]TSVmnnڼyV~{¨?v哗K{S:ڥ2pTTԀ;LkksE1M&冈nr54Ry];od
Eā/SݨSqyyy[lX.nϙ3G6E=<uyFw}=wܤg(45tBl7 77=}`(]=-Vk&h%%iI5E?[_|Jd9Ɔ#]aK >Ӌ0WVV*r?dNnf}j_V[o2ǝN4{QrJh6Sz\[]atJ%ʊcFx_n!ilQ)74Ylʍ_$bg<Y՟7uK5Y/TK>X6nl>Is6tdf#rw)1./v(RF#ɞTK]bsR~щVs${UBrgc3M?sʼeͦ!F_0N`fNZcsW`ΐgW{Om]sxtJJ-^'$7cum+źO.l䂦
]~ة6дD*%Jcbr=	z#éYK9UlS,KzT%ߖV\Y0vҋJ]<f6Wga\.4̯GXRDr@,J{.X;*Xn}.=R:lֳK1q_?nc5\ޝqSYvie(QۺjovdE\J#E툎	Sw9Pry(9HGW?~*ghS*6V}l4fRԮIGkZښȱP.PTMc)Mg>?W(QCX_=~>Q{cIB>?Tv:ϻ\i#εGG>H'F&iX<e&w}t|=#A7o|!|4.Y_dagg?DjШZ%+j4N8ؒ08o~ݞ9Ru8pqIñgk:wmF.saxΒmzh|F̠bG.W3KeoI6
5SJ?dfx퉉+ɤP7@}uOU6?0~-hdS4,{ئMGq?rQVZfd^F--%mʔ_ܹslJU|tщ9òAP@5;4|F2ov]fz=0CbSc[\}\^cw7{9]DdKÇ4.4i3Y3$ZJP"JnxfbFQk?nܖ#GU.IIjfgIYTQ:y~ڴif+1ߪLRf!aDmiou2c?7iS~*ݻw4OT,6jJ[7fSNCj<r=?`իWA%cA٥Jb@26[z((z钜aZ\	ﱃuz[e%x朜3N.		vʕ+`A믿?t$ʷ]uå0u.P8MGD(+!J6:]ޱpV6V{yqu55^zrY]xUcs·m*.tw隚_~gO4Ă(%u]fiUVz&zq.ɇ*m*bӡR]StԌǏ>?+ǓoӊGi
bԪ^*uS|'3'kV}3gHv:J"Mʻ<8?D)A*m3Pt΅ݾřB=fAckyy9*KКJ9 `O4xaIIiךG")"+yXKxJ҅E?N,A a$?sPѪU;?ijY	ٰsvn]#5R*ۡ=:7w9^]ÊK5m?dVMNPyEq-bNY{Tr@LoH%aΜeGHWqQھ};qw1k^$2M-;?3+#8òC.]_lv@OS>u_uu{)*mKOOɠ
1+}Dl:"B#.
fq_ZW[[;z8kz}͙#^?;t<XhѢy2h3ܲoɉZ[w􀬬M5n"LJQXYXV95mWEU"Q)311 ~p8Я߀)Rfnݎyv{i[;1wDֿ^x(I,a`iIXZpQZA?rQR+%쫯m @z?w?L:UD=|&70wRpo6D9JVzdYw̐D0C,HP
U12>Q0rܲaD*4&[&YSjRJ$7n7g&g+seZ17}:l;kOO̚CaX6Q$>@SDK`jkӆC+l߷ozAh"qgm_sSAFiȬ~s"9,5wƈHpiB"}϶Eر;::Z$BC՜H9H$gi46[ZGo)m]$6Bbjqěx`GǠn새v~=z~jywGD+F	?ȺST].5t.Sca('hB4Ha#zRUaCÞ\(*2rִ)jgϞ]tYu;0L|)))vJ>XE;ofczСkrtK|p&$Xude/.0ab|}.doll0c)m`3%`(׻f)ޯ=.°#)VvY̟}e}m]rrʆ턺3w~Xvy<~;LrYs	,Faq-@0X,Ϥ Ҩ,è iMbZG1Mz%KOV\A29J	箓#{✦v#(fmSg*2BNH		G@{!O<4A6CHcgYYivq͝fȱW!)RדR¯	ŦHΜ*ZCg=NGNكaZSgŋGɃ@+!!,--E8++/GD54$BԅGr=?m{dBQH=\#a%22d2eXʒx%(b(JX)S"j[a줤$ٳgǌ%<F%1lc)wݛw}gqÕ)3X-a5oX`BZ2GE}/<H6668o7k*=[osIEwc6 "e$P-Oz0]yj0СC]4ePlVV3G 2^p@A&#XaY:a{n1x]kk댬,VQWt8t"DD=yAȼ`O3d&D^Robz]ssCxh(!3jZ,k4V#oi:S/YgǑB- H^
	$҃D4P|WdN[f-pBBu8GEAaκ&ㄜ~1@';c8HF`Mt
Tj˃2)Tl`@Ҡ}8|y	]XhVͭ)$\k=VwPM}``xg:ĜADȨ(]x8ił]	}{!|fcVq`iժA[i>%H/^8~M14$h8eI6<ap|H䏈)E55--aQhvuR,666}@J/P[;lpǎXAVK%G-NhX, Gјe«4Q4TzXEEs#:EddOjy%KCޟԓ\SwSkqZ[<rǧ1s-W~t<[*) 8M,: D{`W;L$]/_/5֜g_[ۗﺲw_<|(jp̧!}@5~MMIu	Mͭ-m&t^N9(-754LFu-wd0āiG dae.l2IRRb*:)H0Ps=Gr'LJ8Z)~n8^^T\䴚!b^T0ڒ FB>d`xƖXP^&WA.>^-MQ߾4:
7Ya  +Ɔ2nXjuhYYqhhNYRrL:fwuv*qck
z[[I$ =ԃ53TuA;	$ҟl@C"q)\D*c2?0#4)C8xo0D >E
($iJTD>b0{
U3Kn)F;(gf{ovtB DT{9<O=ӟ<΂zD, HMB:!lf3N"XlBvwgd0n	|7#XhХ8'тFE^I&A&dHÉ?0e|=F	}qp`[ztdqlx%"!&1	!@w4e>m1$@u"a'hx4(c2	`&ci#A0&qV0jH0:
3LOCPCĴLԆfh^*XM2pga:8&Z6ƌ{ucX΄oriLZpŀ$BM<tJ$<BP Xj-HX̢@BM*bلhBb(1u|W.#x4'Dq,bubv`rE	Htxk!8e	Yޫd' MRE3Ba	F2Pr,ØsOq>iO < %ׄaLq:MI\Y賐k
p6x.',E1mBTD|lHER,K&_̴H,!νШW.z3b~*V1(LHщcB/,"(0t.0ࢯ@QoCGt<+,yjgNdc{2*tMb,QBj%D-AgF
'q%1,^gՄ$MD҈8v^{ g0>.vՌݒ`@L#d2].;׆>\
K8]x$%X23̺3fN8A.#87,TGzr"K)^\W)H(S\|]USBx	!KpXq./ĹFn'	}IF.{BN%âpHei"q	gƎ9|#	w{Y^'6(
㵆-e	pq?&IY?lUW Yg,c09x\eC3$RR-h2Rl)Lx:Z:: l{. 5xK,Z9`zH&-fXX4soab(4ܲ~	|zTY;,),W}߳'rasWHc{ٺ# ŵy0+DݮC9'p&&o$Gvz$q`bR7_Ӄg~{zU&dQI_I G/h'cBMMVHA(,*%@BN)!˜ũ	ZŁ24K篋Nd|ïb< 
q
?|Add2&`y	)HY'	u`pSl W(|n"(^o)|Bc0

A<5!cj``*⤌Mb@qp₊f#6Q/pV:HnTp(n`K]WD=d0''۝0@;3;4;vpIH{F;>i R9@&.vq819ZQΜRL2YPHlG$;
QҍPIQIABOpBE	ZIM?j<+e:6-D3'!	.bbZ*"J
IFUDj71+U8bp|	%3%.mK#>)-@L0-3IR*`J\`J)50r[g	ID'" Dua;Z0c OT6KS\.Sң\+&DznU"%}
g
dqaӌ+e(w`nwyL̎~^+tCfիzA`Ibۻ$vBBKqag9S|M9Yӻ#Z絔ww<'aE4SN"g4K+KZJH!̮KO?c$AշZ+:]"PX@	5B.%9ӧ+U)XB Mw!" +]PCDy㮱cGF#Rђ;l~^N!Df߃0NH"gmT.TҲ|Fd&3'(61|+31
4=VgvRML6נSGh4l1" 0RLFĚ*ϳ
9s
GNz.[ac$.}3Bʗv8Bp!l]áH$?hܽ!ۇO:+huY.Γ1nL*E)	&qV1+&agZ3.\d]פW]nw:"FSgK~?DWY3CH/c=%nYur2,ZR\}[bz"
d y?KT;x"pb
JկZK``|pd|l|rq@ 4\FYJ2-)jU(ؽ-[ۡHȣMV+V..IʣQԤi'{
ώGHdFD PӀW9C]'b
ԙKK˫W,[VkJEOqsll}r#C#Adx\96<rtkסФW]yi3
YPhi?BI" Cb'@ew1Xm{{2^$v|vCPM?wvf瘵2"b
QXT	DCZƚRFc#]_?մW.ڕ̭WE߿de-#XKdo	"XwϦ{4U&RՈܤlF/FGGWax`8ҒsꪦdjdE 2 _1PN =mǏ=c}ɫ?5+λdaU,~6/kDJ	y>wȐ_))J>1A3hnHf?y>r8:DTjisfL/M"X(bTU]
v@9̸998nS^̅W\tʳEdET
#|I$	Z"mdʲLWܖR\LF1F;.djiiD	념+|##}v{IN\ZV6z^]EIh<D$<Q%G/	A8ڱe}E]{?n{IdS(S.=wq@*~7o8EUB~GX2O~Ԁٲea+y\3]VP9+͛UW?4X$i:RLDPh\#ǘyyUf$#ѸL*$>ѣYAiav_\tccs~nnӐԾֿ4&O1Eʄ"[Jׄ՝HbViEo|DEzRۆzRQN^EZZ~EE҅)-qH*fh~9HL! q"^RTz_	<k^|G9BBlT$)*(ə6Je1@nx=mޢzv{/+>gph +pwǺc"yӟ^AdIcg/?Q"ΞA[?kj6,E%\"n^;47~Ư?zϿo6'-=Cöh$,,JFDairݹl}x'F>8J
)HL麠`j-+v7FwUw-%־Σekv\ې	c*OF@ۺܦ\VZ![Δpʇ޲`7.yȡZKe͝^WaIġí]CCF%Rh@,.||S <eἬR5tvd(Ox?yeuzpN^7۔jO)n깍//92V^Z-ndty_;"DIHTaB,>!exӡ#}ͦ#LDuLBRX(h,M|?ȣ]@:Qo#$5ux$')PP?C>kUMqn\"۲(;O\yî];jkg?ЯU.⋷oj/X~yykȡ5ߑǫL@8>!f
FNoDǥRL\^mZ	15Mtr>,S_h>E/~Cgy绎\yCƿywe08U%K*__cktX0sJyj#ç;>cƜg0A&=ޜl;'p{P视ѢKn <AIVO*H$HZڡ).op'Ϊ T1>,wӵ3JOk]]68AZÃGk:B$dƜkc`*eјP'N=b)Ĥl^9%jPp<?.GrًϔHU][z[R3	Cɘ8! 潼3ϞsݵW_jvG-a][o;*JhwBPe5קMϻhzknr4;BC<bz2LH~B?IAΔ*VJ$Z",RDH(e4ov]|W6نF֞_M\-R0AcKpwoS!;+}|dgΜq%cs٨+KDTı^⹿=Wx]|~4F>8jLU]Wݮwc\7(o>|yj<GȢw;Nz~=IK,֞HR"\{:bMD'F8AX3eߵ?mсqgp!]j95يtIPJ`s9$'}/T0w<>8p3 E>H?1pjG_XE!F?6kwy&SŴEs*@DGT*u!aɸmOӲ\x"ci*bQ۲ל_z{Fy/n]QEXQK~ўS3ΩJ)&+vF2X4oܷnT4Z'\4Eok_\;QҠS1IЀU)~DԪxJadq[[-zú˅s+):6Y4}dJC͹b2S <['g]3?;3Rߜj<v454oS}P҃Ã;n]rXw9}ſ0QJI+2X4DT2{OOkL ɡo_'=_rQ"&iEY\~}Lpp;ꜩzfn&8^`zX`xq&[34=Vt&B!d8<>,;8{%&'ޅ49HNǨUXbExJopppj9F^/=lnle_6TիI;Pmۯs0#jDLˆ4?ujHۥ2je2cZZ%5Y,^@08H(RR~!B FIq$0`8juZ9L+>8SN/.^xKKKfsKK㯠	N_{X-T9xD,MEcX]NRcNg+Tl04rVihϊN=4<}[*9UWȞ IMĤ
ݝm`ychA-(cAjjjRSSFcWWWnnn߻瞻{nyy-x@]?<<˯|g[w5"_===n⹇c%tSJa?fTлj0g25k㐣7Eh[17\wLK44HoHUtad-Pz"G~ա}s;??t(}/)-??::q{(Դh3jljuĉM68p \.Ghn[
Fumڴyi%VFy~/RH'TNV)P"I0ٗ_5m?]2'ՇO78;r*4xs\>*x.KKkw\E=oḥ(iu/fddTʫ%ێחeFM4oJJJz];w5mn>thӜظ˗f_PHĎ9./haEjc䑓]<k&ښtﴘ-7<X"ܡh^V}+*Jd^O$`IU7E$6G[ i)K:w?1svoU6l߻w8 n[рg=}zulCՖ;gz	>c:R{wt-/	*Uԩ3v~8.]`U^a+1iJYې><QJ1=}Ѩcn{a99J	9ԭ! ~,~E	a죻60SO//'[҂=|©xS;dh<#r{tMO
įh4nB"JOL5_b'7~xK9=7edLYbX/1tx8(}ޔ`zFٽO=tZSꎡK23JĚۭJ9J?@"<.yF T##GcX|Fqek^}y{d@xc@OfLoiU){O^uZ9thJfK\ҾuĢ` @l.;IVV[!<k:R6%oZ5,'ps֔)[ZS,FbUe0Px2yS"n;קϑDs}8$Rի鱜nd1Uz";m%{KeRzٺ=x<n>wP0ddD۲\$ԙ*?{͗k3".EHѪtiT\bV_|2Y2
P@*5;#vrє)PX؆a~L°D"q,٣`߾"	" Y<_ͬYdee!&#Mdg;bqWӦwM{m4nI;X*
%/h*RD6}KWސI:/jl:l/<Yf̘uۯx˱ݳӯ?|UK|	X-;|*~%uMII	!Xd(h-_pAӱ:Hbޓ?:b@{ӤPG.+΁ӃǇ~R@:eJa8⋥b鞝/L13U~qk.;7pcSc%pjn=t;P\9Tг&5|oK%sz^ęY4(&_	͝H-ǚ+rcͫH&#aH4RTЏ./`5ۚCYY#YhFrD8Qt9%ӻFWfE'ݷqжnxuOCHx،|YK//<eheƌkϻ4HDg,aNRR.	 </=>A)Hiiݯ76f}&g$!?)d?/7PssVffjw8c%bk|(H.L :.Y42y6|q<H-Lynm<+׽+'RDCgW/vѐ+*1if3'rTQQF%`У&b<׏_W;m|):T`\q8_>??#ALtEYL"H$#8)7=GWPV߼-*?vFGT$yߘ7Ǥ,^+صY3Յ+"^ZE_"ɵg1:;NԒ)_ةi̐@\*D")?^}1OBb5iHithiV*K )`Av|YERcsB.и.ųka*5x3|3~h嵿./5I8]hp\S^^sOWoFz:DaiiiҜƍy﹧x͚ p|"' jKggkᖀXp857j/V[^4ChT>,$TdĢLHoSg@̐h`Pu@E-_ẼϫK^˫j06llɼH$0Bv+KĎÑHk4I,U,6L$nPc|i`\
x+';wty
AF~o>R\^ծiz-(o8{-ב/2AGlYJ"K?Z8]g}"NɾFS7lDzCw~[poZ5Ýu=W=
[ưo<`P|ߦy(ꢌ]u:#MWwF(-kv:|9A9]P2X^"]P_0LPk"=D삠;J@X0AAjp[ګ/\{l~٧ЃV^˺M)N'͌'RíS毃iϮ_jCCbx33Mi4!?#U/mtb5!&C!$R
s4NZfff?~	߀ꂧDD{1ӧ DŎo6o|;-ѤyZȉA4Og8u۶çB>10ǝn¹sD-]4|:˽E>#Fn?W,TfJ=2|x~wJ{phzN2Xi_1WZsQ)¶10"Pat2Ib(@\:|ŋa ;d׺:=	^TVV!J"2@UY,Kf}^l޻w<J]~O*`{}9A	GE8V^HsL4pݠpKKJ-/Rの݃#cF$ZJQj*Քk6Qh4<m4JkkkД#gA; 릦&ݱcGMML Fl}z);;˘A('Pe죥g\."XbRZlJ"=G}w3~7OŘNHoc:6fنBL_b25ZJB|RzLvH1Q?ypA_ZZZл9|6w`JvtUUUwwxA`fmV>K/iq\)d2~knG+]\ma۟L],j\> ǳybG58VJ~	;;}zyEHL҅?%o;xLvuժ}7]3
!Oat<4ʕÊ3[$ūP~i;xៅQKBcIG8c9`/4aɒ%((,XрApnwp@d6oK 7L֜#ǎ}ݽt/v5-[kCNw9Av)x@;%BsxE|&^2Qe3YjJ^`!XwJ?BP,)^۟0?Џ.(tFFFܣltt<~y#-##v?ʶaSZL	q"㉞rq08|AFv4{ЅNJy'+A+I+?=^Bwfۿc BP
'ѶSccU]ɝ:ȑ}.=zy޼6/ao,hNZax󽭿dYK.#D,4,(; E
;I
%<¿4impZxl655^u!̎(&R[dϿER^owunmޓ	<Ctj_X]$|kz \"`)s(4PbqHZbzk21"3T"C>
FZQ92#hhh5t:Hd ֠ɂh<nwW}dx`<:%$_{^FFSjJ6T)a>;j"12x 3ӠR0,  3<b1I2b6XTCR4U$1A`%v;HNQro 	t-{Y IOOߣ9i BٞyՕx
Z? IHԢm7=e{\tIaX\V\KЕ^2;-b0`biqRDIcXx7LHLQmt44>.r^/8xh2өۖgFE#$\Q"F;srd<wOΝSuI)ga<ph~`(}ff-!HwdNGνρ`4M2bgFN ~:޿՚I-1Po"I٩T^1ۨА'^fR<%j+ǎz^F^IPPD&a!3,%tCʠ7;l':5~'G_NJĉum`C ёC0j	:GF3ahLHO"-Vdp֬,<hPo/!E	P'UXfhRj4mƆM
XAGs2PN+I	mKDEEE{zOӈڸ\	k='- X߬);o'O+tv9mva\^^33X vj#4c_ eZ=xkN`s掁m=pYy"bC%rYH6(B*s:[ZW2Dw>|`b1EKImNף7/pܓf|aMG	3^P/YRlKTT9PVeȍ`@y4%N0F	\CdO(ZI	0yGm̚3К骒kZ$z7Ro C}IIE__;wȫR}ʺUU46j5}Nʺpzen1QTV޴g7;|]7,_,S.7lyJ\a
Ct"|s`a	Xa?JrpX` ;zZ4
95HX
TƆ
5t|ۘkhi'<?q~dҴtuC6	mII&o',4.
k=_7_$	7n f"?;.gП)10IB+Ij:ݽ&mzj#@B(}ĉII0&#*M?)^	h)>)`4Þ }`\d˶m\p`SB	%p%$K.@BHB	Bi6$Y}%J+mmgYO^f{=16EHV6V	V,V? JbS(y1WՆ³0,lVD _sRqq>!׋SДϢ]d$"\!9=Cd8p	j
)DD;HjhYLz>E@3'<kݒ#Ñ^؇ExS)1	Z5Ig038r">"
	)dchP@Ϩ.ZZ!+bJqmE?w:.|~EV"Az"ĒGMB@(8rS=D"i~0\KI Y\-$b]PG)+8٬eD}"x
L}~±Ve(JgkAU`h"VRU,6|H:~+XbB)<X`X!" @&BԮ,hcRXy)>e$k#9uOq	}-Σ#	` RA`cjt\k"a'	'BvFMD&K5!TB0(4"m'1!I)ħ<-62ʓѤEH_	!ېabtGLI	2A41Ȟ#eǃ@Á?s$3
\Ğ${VΕ{lCp</ƳR!xJ,Y8H)@Px.OO3%$,w[¿,!Pd >:5AdlXm"xO2iOW!Xl ,˂IL#A(!7s,##Mu%?deK#=!r9yM#<B|fx{(A"pUNQe9+q|
$!F,$uMgI$G7	'I[8Lp~y/mM!+"t(KADOBaSPbAfDfلHMd5-<B`L!+f>Hc@Y|.p<KK`9XS2ԏUklr*C ~P҅IX|XE)}I@,|Xs>ܪA,^nxtF3\1$nV]rXL9J *>˺O6oYkqMm 75愬$2sy"Y
W,#Zp>o"u
v/+~Y 2|
JoS<'esv	 "	>DQU}WB	 ڞ$b|&гXVՑH|0	y+b)zߑL`͖WFia,=8!6A3(*P@*	yK%e%+d%!·V38#P	~X!Y$w)#F1!C)G)X8HQvf
?)11\9&(d'$ 0)d7LőoAn8(#8_Hi&6 йKy>D
Kz!,kT@a'H0Uׂ2Jp.C΍h&m&`P۔M^جDKSU7SK<khĊGVFٴXKZ\S'3L,)=gessPm0nHsqCF bϏJ,P	a3bw4#mK)fpBPXWx^YX6KXx)sA6ŋq@b˃MV(Y$v1)uQ>)|i[Uȴwp<,"(\悩{ ~K<IPaZR4Ӫ˚(.:U~ܽQ4>(HqvJj,lduBғxMϩrO ՠtNdKH7FzVWx6w|cFQQr}0b</&.2liXR	h",B#pL`YH1ԒE6@*#&CdXdtTILA¢SќYI.Csޟ,Ft4 h?CA.bQ'z9I\!GCrD/TKjva6Z_+!rBx}r*jS"8`frs$YIoOﰒBg$K|%-%^	gV>Ag%EڬVn%-~Q\i8`EU}QELAf3i1㙭u!,7 t52lF&iIY`\79&#OhG}:9.H3(DQ&fel@,?1RHlWPll(Gҧ[7§.32DS&>dMeɥ;l$-pl3<%yCL,#"^;X,=("K77 M,d%gbTxֱ`ϫmSr?st|]`<cbi,!nte#x.yF4MgSM	vr 9fV~&K;fMh`1\
+t<mH)28hx1<LȶX1<֑l
Ŧ;!y	m;<*Psb$=_ud`*5k֫T|%ېnF_#KHvpIP`38i^ٱLy¹lHؗgO	L<d>C(tjI%XQlIs}qeIDT4IT;.?%f"[@泑AxuNoE
-"KY#mKlΞǤz()FJYy:GoqQ(P3L׋GrXq|
U).JfI
a͡o|-뮧ALb<3Xio0bu!Na*ű7X1K
6{u>?Ivѭ#='Xa7.*[I)#Yv=+lby8c.&Kb2/~^?BH!D̔OP]dI	A+S`,jM@HS0,ݢa\;A ialR+Ӂl๣Y&q	341|
Pdݓ(";{]B
̴.q _1j>SFG1!7B4Czc씆X7+{wf"7?^5)M
lAr^~	lvbS*sgA7V2ޞ4̡~:!0#l٩L/zbTdrw *$2aߚŲg*؜λC.t$S.VCfXX,g.LNYIrHnq[;g"}d+7EF
9"@0+%V>jɸHamCK HFM\C,\i7|/k5WZT\\!9c&N̜4+!ag~s*/x-?ᏤrOdaW/bI{aABHߖ5!c-n
&!(_2'q),;T_DV@4/)u%WZTVZ,Ѣ=)!F:-J3 qIDl*dlgHa*"))e/8~wc`&ϬZ4gzqqaE*%}) xEHTQIq,wCL)HDRB0%4Fyvtv:Jٴryy4MI1b&<erhnpq#r8~I/P8[\VR'ap^"M z!	,$}f5VWTSܾgf&zDB]Im&(qqvsh{_O8YlIcQ}5%H$
A5I(RjyUvQkC^SBCxG0L]^HU0.~d_<8Ӗշud:Ό	,7OLA.6][cIeY1&#MN-I:K$?E=0%HӺJ`x\Ŏs$V̯id8B d9]өVMC(JSuP@"gy-;K>UNshGFaO<jmYaeKKڊ*`x>D4_z^`PVXUV?9t	)zg7.\
x<
2@18A}q:8jƒVVW4T @E
ZQF<f%j$%9%iASƦA \J/ B h4J%A?(juz9@ІigΜki2E|IIN9ǊYtf`i9~AuFnBn.$((<EE:q0"̕-3歙1}QYy^A<֤V)iLMc" jgY.!1,gJ*
2{/Hgrb)8h$&T*̖<;@&S1uk[m@qC

SɸWNqA 񠜦P![soX{U}mYQ`qo&&&@zX$_VXl*>p	Yay]e_{٢u0β8ǩA8wSLH鲯x܃X<j]4oђϷ9hF\%pExmр@.5hTF:rt
siunͮ1?.'dc#qR>_(\/r$R'i<G=1Wy˛/h_>ʢ7c	H0ʑL\M~]ݧnٲ+6_ve{]Y"xh"e:wr!C"$<5NQH`񈶲e֪E-;ȬHǃk%t:r=(aXEed>t7NNE˯5kk/~2wx8!_|]iZTy&i/&#>;%S7\<mkZ!sH<FX Œ<6$Db`ɕ@pmϞ޵-W/\uW^Ȧh'ix%a'8ta-E,gxxAepĽ%3[.YЪ	<ł1|kb2p рMA"g2
,50߽ov~7oڴdfu$?bñHEa4}·mLd HxJr8N11w~q]5.ko.R/
qq;FG9c*g5j>~p?=>sy+o|%Of|N./Dkkp3q}V[J*_fNL688n9H8qk\*8"hfͻin[k묖:DCK'<HL񠢁#PuZ=,c٭,-knO94J%ȕ=
di,9n/|?	*wDB9THpOTBNAӁ,+|%k|x
RT|+f-d3SMX(EN"A  )GqөRx2J7"G<v=Jiunj| `iI{i%(Y9oKw'~oP$JF	}p0(|>DO,0-XQT'Opp"hJv
59i?;gAcƅk|jrųGbXZY}93>VOa)lAXp7fR۾>0uhi#I[,RAHbs`¡0 )SG8g|࿞cMÔpHd7㡥ᑑ]UnwKҡB"eVkO<		pa(''###;z~ƺY3g70sT
q,l #T&(WǓ skn^\.q%qR~I$BVfq)D{wJ.hOjȚt
Qpb<n/|rE FsiiuCC{AX<{|_ThF΢%~V6V<:\QIydiob&)%r%d̥";zxn5kƕ
F!w<Pr2Dx20Hj16&R^^tRP~P	ep@uuusJct׮9%JL:Z%#TfqLQ(:js'bDAfS[4VC6A1/rViɹqW}M;C֯^[v(DZ(TjC|sww78ŋ͞'x~qQ<7gΘ<?	Vt􁭯g<٢!2<*rGѺAՔ,];Tii))g撅{fQ_Q&(SQjR(,>7|bEYC+<L@\i7ۿOs`1w6ͅuu6:aGr,k5q<IJF&<zpЈ9TJF]x;xzJ!݀+*Uێ嘸hٞ{By
#*-HɃ}xa\!)if]Cϼ`3NG.)Ł	<-=XoiZ}OOLt[riڒJfxїKmqln~a6՗¹}GȞ8+Fs:hSƞ<K
-d  䥣lԌ`Rk	L(Y)'<DHS@Prccg+Sȕމ%+}E///bP( $'U6ր;0F51}L7@I cq	2J`N&>k6lŝ';4[AJq5p>oFÑm}?\uU%}}K<p8>}`/'FkwJs39}iPqЙ^`*IVҪU:$rd|^{u8/7ۮjc]u)N7JpG-`aL>Bk4N%޸ %3mb<XO!%k}w/5vD:|2U37m?gko5֔j9p +,_U^T$s
`>z*7]E$g;ϩX>76L]G{zz! T Wsʟ$Es0K;7.64[9OYњ]/M]LqPSUtW}vz}NqFUX3W8˓~uGO0sL[\F5Vv5Lye4
kʺ]8<~߸uz.kLcGOur;}rnC+ekiM'̶W;<yo+si6qץ5խ=pd?VTԱC(v̕3gqtzVkF.]Zpi+~ߟ1&N&P^*N	t/׶/\ ^MYd ZU-<_6']T*!SӸҾ]bb+sk֦}[K{oX'n5g=GpMƘtżK+JK#X4Z!=N(C봚3PY4dx¾ ׬wǆ7_7pͷGj-d؜Ji,6G|=?xCD=\w޷zeժHhAs`Oކ:wzeU,ˑ,Whllc41Ӏ5
P4a\DuP8aO0Mϥ5jE,{fp}kIpIl4gWx;7jko!<%RKw.6oT,EW8ԞfY]T#ʕ7@+˚M&+N$GGGe2BGd^@`U(8]i0rb:Y$*I^FW[,2(zf:fi~`D
ư=5;s͞0L`6c5?fozsf[tn8ߟwF}}D.?zu5$/
xkXu(GiԶPh,9Q2S[GpLw@.
\I><HdP[a2;}mBH$Hd)'0eӰĬ4ңG^p'-*Eܢo[kvumv?4&roO\5`ޯ޺LF~hLPYCY(4Dj-zFH&Fk84Jє'9Jјd׽tMm-M:Em$F'pHj/>.qtmZrѯ7uTT^՛o9=׎?[˖,߇U,>4}5F[ݱo?':yjEPhapHQ\k_24gq>JHXF:Gayy0uGOQXp
Ӓt@p~vtOcӦo3alݻ5:N~*jac'NTWT-U/NN]-CLuY{61/-^P[h4Tt,GG/OH32%?@5A,T،ɲsX4)LTi!H_?deZ?6wsM3#b?Ǟ#GƼnW d"1L?Ϧ̍__6tjiZFd)'&]	zd*y%.Kp1:.#糬â;~_"?87N;:K12Ewsw}9;wtC;v\`(l<}뷯,]0wh{QEܹ[q=MgRoWEJe:ԃъҞ?l`^9KJ$?s%]48TU(h(Ab${b &ar8NI]mm#جU1Gf6#]+o;oW!@Y,8y_?L1>;0a^Esʤ$"GeVH w<ihNjyh˖o{孷ɕ6nV?f<P?ʲ,"	( ycXR3O/N<pn1(ٿss\_pi~O;z;rˋ_l4^|?RT2UVףc?Hdd{	˰dG?|oW'hCQT*B\CŴZ9sr|)r;>TbGу|o<Vka	QuXʙfۃUUG#P1A>v|5?1t㞾-?o\߻kjVRK`b0?{!HEx_o2CetXj3>xd~K%Hڤ N&)6wvئ%ݲqm?wo<KlПFg.83 Yllg/젦v1gηZ*(KN,]2"Vm ~!IgT%>k&;~c6[]v٦
ms2`4PQkp$Br(ϓ9)9urk+vy=D۪6~yOHaoX<{M޾3G=յ`!'rvdۑWQ`Y\cKPXgn6=t׃Zns7/q%RX,C,pO<:	=>O <OؽlW޼G=?5٨"j%$׎2.4?OzI.Z4X6ҟ>n*\P&;12i5
J(fUsҼĢqJ=]wk@zWGэQod20͈$׿sA]_L@Jo4[Z͏!_sUOQILq#wZ~xNgNB2N'aDBk0ڐEaN`@GJݏuZxGos&sa{eΜ|-xj662:yl8=vonD+બd*=)Aoi3Ʃq%9G/mf٥Q8`57//n6t{XSD'x6H4\p¤TY6vO=f-w۷%ms<KSA}:J3ٰIF96"Pӊ=Df	tSR:BAVW/PF]WD'&QI޹r7HNg	wsSL1ll||<03OFAHbrSg_~(/+ꪫ"ce؅5tx/fQa'ǰR=6[J&$yr'3~ZyALY8b)kTCM5 )"U+>+^s.rM@]jmwwnW*Sǹyyyyp*++V ڑ9M#*:`WoXH/M7MĴxZ/&
̻:](j#Nr%!ofDLȹ	̠/FO=m{f=<n
fljjMF586!w+.FҜ@L,H.|[b4drҕLsRhE1j1HxcHzz*&O"EC)ӌ
4AvGɊkD)xfP<822RUUU]]ݴi#-'oUմ͛H	42L#4S`MBMh"%;D=,4ZfI?,8zT(!\''?Ma~/~P|dcٳg^hѢs!`$Ya~zƆupg}iMcC~I$;Xo|INq|.d`4`URfMG'J)epO7VO0&RIEIX$Y05_F`H2I
g6AqޟA͵

T*d4=sXeeX<8y5BE-8Яz\7|x6	'lw?Ψ2U&RJ
qwKq3GEfl7F	B~4w:V>WU`}Y+wC-ֶܤ
1V@b-+}@Q^ARWlEEڵv۷v;Nx4u8;v|:PѴγ>rTTTÛ}}}yNN+c;0VPcɾA;R=>E*	/[88
\=,&%OgsɐUCrjfs]`EEpO<4 w+M.z.T	Rm۶p>oo߁7ՙH7\	d[,
>꥗^xƬ6mX٦ 7?6(14(h"W{3

ZF	UT^u?y)U8/ Dϔ};Z.]{82'bTڛJ6Ս;;fwxZ,9s>8#G_㶹[gp-\frnS@~}]-xomjZ]ju4F<z{H|LLsZXt+5띎Ayʦ+rdpsHM;'qH\5rUV荆|چNonYfCOOⶖYJ\@GIꚺ/DOnQTTÝg!{I݉teV[o\^?l2ţz.BL+jz<=Fc9Ċ_Ne*ژkρ2MةNZ;qӉRm V_ǄS=N@\RZZjժz
111o<Jj'c}6}au
<z.&/XrjR[o?G~kT[\ιA5Xu@:/$	tWw+%b%;C]P1$$ҾB	$]H12rhllK0^>=ӜsD_;#A~ ?
~Ҋ1(IfZku*T:EIf挦UKyǼDqic4w8Nv45뮹꫕*ַoBФCӑX.O;͆LQaA2T*MZ-sӤ >L<o8JAҥV4fCCNÓϖ|qMA%(#	nԉ$h47mz?Bo?uu54EBFAl0*/+n"`<`h
sd4Zu?T*e'?oB8Rʼ80d߱֓JCgQBN(}}#
͛r\>$M՞8qMm8{]t&X={;ښJ{.baÛ\^{]K}{Jh4Ϥ7[l{N:;O^uNUVN7w[o)'3$Pl;HI_WXhaKi::EB҂H2HI,^rpXEcЦWw*~ĹdJ5/~O?9Vɢ͇K۷0-?K4`+,**[mF{ˍW	{YzwНL|5x0ޝJɀ7:c<' g4p̠U^D0	S=ݻciX~*\hNN*^WgOۿ`ǎb
;\Ydw8Xl6$%d2ERT:?B|$
K*Jz	+r\\Ynżp4`NV.F"xY,LzJYJ0_DD*ByAjC<cƌ~R5XҶF0NK(~.4:]MT7޶=/۱?up(J[RRZQQ.TrUTڌ-M	n31(=GH&!q(TJZVF˴z^ج>Hj{f@dz0y;OR$3?d,E׾H(p'N@~l^UU9k֬{.665B&kJc8Al/.~k?@;rBT&)V 5,Zt۵-E-Պ*jqWHUT\	wTX&%E՚LKaw(#,IʠDTȒ4%\\o?A|ͬdDcΜ9;vس{ȅi h;ND{_/wmV'o]F!N!yP1!X8H|]GG,DZsY^Ece4H8ZbJܵw7\?\'wD@ɅE0qapvkYpHw޵VmTwɒ%h"ΐf?ԩZy^?IH2/
CfqARg*e-_ՔJ9v9H6lmʲW^yήcc˦ٳ_>thK$@%"BShRج4=@,-mdA`NtG+)++CdU{CmsChQ&]"ۜ{X	f+Rzbޜv|)*G>Onze
CSIo|#L9	-\!2EH${**jjjw|6zꫯOh% SPgH#G;N3kSl>(g6LQdnBI+e^ollb`nϯbjz=h↣GӟMsdZ}'sЪ!"K;j<uDaaAmmm_kOm5k%`\=[L C:':ѱ̄ڬW-3}='	4"R&CeP4ht}^mY$ECsw\wϱA{YfdAQݾ^W}lǃEWs,dZ$s>5sq<IV-\LBG P(h3phc_	,rll<C5#-hyQ tMP5B)(UPq!AGQy
EBEZdZ51dWYIsẖEcF~ͶΠV.s8W+ѹBչ73GE d]8}mumڨO2^%F!P.e+%*QXXxj֛P5N$1c *q?xb4Iût<4$M",Wof(dhp;&Oh8"{#k;Y\5͞P\	oރSN|
w/_Vil0.uF*^_aI$pg ˂ApiZ牖RyDh<>6T$Y8.tLYL.uKvn Is'8R ed4/WSt:_`twB^A1<s{n\6`J칓C96/_P_w9>+pӃ#6dPcFC5"1&xo{ƍW:x`+haPTM:]ϲA3zE',. |7Q<H7t:wqߦkiR>[wU5ϙf,)PX; Ի9|B_=rm}xeC1	Z*ʏ;v0"ǡ/`zNz&JXJFCމ	Vg	-lR\F"cV7:2ÒR(SFªRi
RMG¶yO?uo>{^ݾ}F}ɤ]N!~̆	i/y_F\N{𗮽)HB8
%)C.w4tg)/۱cd'NnnjB|:H1$=_i%
VxL&?a(JeRN$ZSAcjC8OFH@ħ;i9j:I{-F)~Iz*Cãeg;Kp.Acy?{'ۯ:\$5xGQZRp9HD:]gZx4Ño2|\2Ll6Q9%sJ"WoR)a
y:ː-UJ E<ˋ
%v:ѣGƫ2\(FFFF-xh%%D2I[)pRx~H8`4DYNT#O5P@cQ~);O|
iʐFHiB9 /AyyoҵWlݺCӧ5it`Pzk{Z8>0Ѕ+0l&#F{c1;u7-pHpX&RU62RlCS}wƮ~Iӳ,/~*P~~>THEdm,[Ũ3wjb֭rA8}4$`8O=5\á1D*=ik:=?P@DB5AѩRTM$,Z{H:Sic#&eO}?c4cТDb}7|ԤjχW\k.u51gϮ^oۺuz T]9at-($ir*x/&QA٬-=/hpz!a)J[gie<#ɠ<wq89U'dB[B#B+DƠ/P4n?t_b
`wmWj*(o!f0{a֤R8]dlnIe
YϰCвu7U;\n
971.o% +e(9IܕDU"@0eeTe-k_OW%ih:t³[m߾x<^M#W㾝ad:<Ha_YgjZ
znkfHLzyc$*St	t2"
Ch~,fكġ"ixj<dU{}w{zzgIvt[n=A`P(kS/c8z~\VǊp-6}|RŇgc^ى8cϪb'{؄;u655!eGEJBR-k"Or`<ћי/jaQw+#mmms^z%JD!DPAf	jTTAáD2C VBאd(hnlQTyB\:	M JOk~ M&BQFɿPARA@@.VW_wy/:_?U+"_9qD}}=Tυуl}>Z(+;b8#'(6ȝ@f
EFAPyV [N`4WTeXa.v;H5u:}8>s4<Ixn|Bph4A>=;]m-w9Qɑ 6|ȑ#E &Р0P[E>bAX/|~gt0,Zln7ٷzя8-eHx,۸vޠe	σ.|h aEc1pϠQӦM;w.\dtt<11`CbqWn۶d`` S^^BϲKt\%%e SGC8kŔT,;>F4`ZJ.T"
E2\byƏ(J+,53L0wFG%5MW]ါw\P,6hي%-BhI۷oxxh4SUV܅omm}箻!̙CƟt%98ɌFxcc04Fh,ӴTp\ABqejUǲ&{i;V.)o._v{hܐO`ѿ^)H*DPcH(!w I6 WZ\\Z`3Vx֓pt|eJ5PwsڴVpàYx͛w)~>pM!p<_R[[7cz;t?!-v8*t'sOkkؠ׏vCrkxAoInix@ H.ZwYÑd3p=7Lc0&LR3᧾{+,X@.y8q!hiiJgʕ`MhPpB,***uƃG4_2].ƱWb!+QR+r,K48clC]-ϟ1}EsVՙ)s;xpbrΠ(1H8W,Ffadģk^%uА}dtxe+@sg'GG=_7~WF'6fVWjHlǙ<8zEx<NJŦ7\pEFw	Ѩ 7)P[[ڀo5? Z|<7HBv_o'H>Ahݤ{beNwm`0o9eBN,x4lu:ÌV3i Q Z>`P"6!|G}!?p'J@+amYC<xX*6m:3܉I;
ݓ7.[6v.[xժd ߆n 0zOHiˇGQ<]|_Zh#22@JgEn)ڢȊ}|q1Pˆ|~&:y6\4I**2|Z:#qF!C!fR#/>n?b+e{EH.
.E;<ų⎟uDj$E4d)& He m&[qYY)yh$H,f1{V'&VVWON,a'/,@;nGg;=3Gg.?Y$T>QADXHGCU1($xP-{/0,vM;'6_Ar5\)Hhtܰw{GKDDotC;Ȑg }EWC[IH|3g666\Rx<QV⮇d[v$+p=n"Z+??\qܼU%ww9ז\8Jg&8 r>.ݐH#!G53"4舍𚐧!m\~<zϗ.z
`4BxqhWU\|#8.Qgq#:;=ꭉ4BO8 ˒R-7eX$va*c4R'&y>wXJd;g
'T_œMXvUIsD(^ѹ{Svpi1ĈJR_WԈ	5<x$D xx#=zw
o*+;|k얱7[[jtH<\n]1pFjDTآ"X*- +㐀>pf̜CQN8!*7oWWW?2
k׮T4ų8GX|-p,E#H5=.m 	z=*iX]-QYD$x!x!trH: <:x)+ =ph!<CAvi͟34kIbpu^&RSd2hҏyH,24g/nʣ^	҄-1es/DMd)PڊT+r܆P@innϥ]]]A3}v;Tcn
@
~gtA,~{	4wH'Mxe|;86D7>DY"BQ(,x8%z(
:<y( @z=_<2zapMw``SL<9$ԩ+zZrppJ<`u%mWx8Ý.CJZ-Gn؎JSׇn1HQ
mEEK\-E[AN.$oedI-\D!G#::c-[ip:9yڊךbsρڷQ9A yVZUIbAG zӮ =!,(O'eGD3%e^+*4;s6/{8p" zɓ'd񝹻\,M[jx>h:]*=28`Zك=]Bc;Sww<ӏ-flliP½)h,ͲG~\	6U5ţj,,AdQ, g_KJ<&P`(8h1jD59X4L]xVJX~344,9N@'BX8?	dΌmTj؇MR 'EKKb[&ԉy\y2Tڅr*&4Fc:AvJv;Y 4-&1Z,p,X(:B&0$RuyP(J	6ùpd2	H'Ѡ@.T3;G9`+dH6ULN[^:qd"G>OH"/.10*C`QUl1 Iuto4ˆS)"&S$IҘ^նYMf3lz}i%IV" lvMB\;D857k3Yۜ8Fv.wF8BPԪޣ0^oM9 eKP? k`9b:G2Y,CGQA傶W4Bra)
,d}0<H" r$GQI!\"5'CkȲE)+Y`|T=M,[2'wϹ?x_wtcvy_woPrU;_kZQKwhvv2@&A9#Gő~qatm#yP*(څXo4H~0(3	̣UؒUw`^j^"\]+6:I0kT^c֒o߯p't_t}ko{tǺG&_y$WKhN`Ю.	\x0.Fqy42J=%ܭPKj}n#u	o`{??	&raoP)?1!<1)7Er! 2hIdMRV233]robgg*eol:]I9Ͳ,+)r>w{;%'/-Nx|>%+y`jPEL!ZfVt}8ѲU\ }[@F8͊Wã8ޤte.
,%t2FVͤ8c|ryϼH 8NR7}/4=6"Zpb\RIť>ɸϲ`yP/L\(O!!IW]Nyä5eTb|FP"peB+qf14 77wcuO[7C=v[ի>MD?y#%O"Su5,m>T7Ob& l6	 Oэ}Hkvro8=ꫨTD.-+H.1h޾>oQRJA.PS0QT0"gWfAOO@,kCѵ7sgߋg7g\V"W,sUfK[Ô`=Qpʐ7%Kܟ>
w8,v(6x(P&jI$fClf*z4i65t-|D.ԑmuDk	C٘d<k
<SB0q/8,Tb$dD.Zwl1&OOQTWfT*\[wO; 	GH
@+s.A/GĨ|o0"zïW#q KmKgZ(W:a"q^/rss}dFc&Nf-f{49/;ףF1Sh2Z׫5lxMaP.@& &%wC=y<%e}!_ÙƎrYrDBWNW>ͭ/Oy]N{xkYos::ds?96/jEz)xB(uۨ(T[Y%v'IGupNUxVu0P@L&+z gj:ddQz_٬ڜσhRI~U
:U_u:|&:G쟼P,)rF>,q@z] Wh6&m1L1hƔ{V[C"`mO,:\]o\4p[Qzԅj5t,TԠȋ4CTP+&		SJ"kdZzbq\CYV@82^Lt+~\N|[\Z9W9iM;C<Q9H^?@<WEڍ\Em;@u*U-#jIܷm eDI%}F]mm v^FJmI":Hd> ܽxdu&ZuCιF<$f(JTeKNk[~^?~vg-ɒ%YD*I10ӭwv78#"G5FުP1BjannK#MbCdKL[Nr{Gbmno*	Ԇ|f
ֺ#J3WmXZ撧;`Z&2n:y0w`ޣli(/,oѤ)mJ(:F$n'GiŲWvxt6EfgϸH8i-X8cx_"m{90n mmb,h12FGˣSe 0&Y[ibd%㝘!рGT}k+[2[:HxmL85Ě|w#|~x)Dƅ3ϲkX&e.04:ؘx6ʝeӝtDCkӬNν*6א֛Xa-''h֚uΥ)+EA
)eLs%S1"һ&!tU>sޏ2FI0Md]O)Omܐ1Mp*=a`/wc%aغG忊@G8(?E
g.#cg"z,U+\(+KB[d!oL> 3Bt>JL?fIl
3S#BZFǺoJ6#w=jQ	ƬX\.VMs&(tPaF30%kBXt%u[ړL@š.B'SLe쪤Ǧ.N/%~m4#k@thfNM(68 ~9ߜhz"!bɦ~7m&1H3*aQi^{mU߂!VŎk`750]ݞjGU55l Y8XYOɰL:.tuSD'"mΐ)ôʉCt>`,47E]Y#7ɦ/0
[SF(*8JQzx6L;jӧՆ}&%ϱM^`C$ƌ5+R_)tFR-gJ~/ca 	`,X4QK1S8:J	ohO#%:2TR&nET8.kU_Ptsѣ	Y_Ap'wn͒9lzVicV.!͞hsM9	yF7)ͧX	3|鄣C(9MkcB]_CTۗ6Xޡ*(ooo.Y7|qajkç:P1PN"Z?`!de4޻ZP1-lb0vMa6X"EƄ3ewE]֘ 6A3:b
fp5>NSj%1}w턛u(py85ַ-U!-LmDŚ.0:belguVt- /-OSIMO:1UXXXW=qboxL=mVUx͔(W,<3U>cKU]lqAͧe©ۧek[bR5L5qs&f疠Glf$fp5L(NϾR̥D	@>B[?jS&Xհ!C3BҺӭ4z=# ȚpnxҲ%dnMH]u:8S96&=I^n4,6?i;[ӈ2CfGhi%=nb/W`X%FwnLH_9fjT ۉD)OP5xFldXIvp.FL}TdrceD>2As3&6"ϫKm,X3~aX!YmFq#FL&*gZ\io`u"1G0!3a'uoNu+\C+srZ2>^|F^o@X&.4>ђl
|i%`>	iOӷ4F>#CA^u@ZIKW	#p!Ve qqu̲mġg&lźEl8 Y}BߪqKQ23nuz1e/
Z$	dZb tmAM<F	8tfʓV4-=zRBc@3(y]W	X;eRsk&k=gnX+6MO_9!Ele$S!&Jd0	;$''Ş0+BDi i2+%4$Z8^T>{9&	
[a|PJ,A [t.-h"&`aYgo@,rRp`:BZFWeeZZ]2Czkԝ{/XXnEcN(UVBY#lլg	b+li#.tHMK)ٴ^Y !beafEzLb}U)mM^F*9Rh1l連MUcHڣnL 7 kJ#ؒ2	2mDlN5|7ohW>J#zLϵ$TlTpDĴVh5jzĈ E3DU@MkIlf"FTYݨ8wa-3-Dml`d!tEȌ_-˸cN454"4eY4K	+h͋ԽIU-FǆuegǦ
MkZnITUT 8MDg%m&fts@Iu`da0rkTY(*֎/kĿH)IZHhRjPL,VL+R6L󬗆kFhs4D$$mTqfT[&ia1q"o&zfi*c"@UulԍX
&p+̪
u*2ZeNgUnڛd#fLAYǔDN$45}+ZӍJ`CRj RN7O>١80[gD5n. ,5[":PMCFz!7nK T)141+oeGA(h!6T~;telʅ;Wl.oj2C͵ QeٓiQmֶKUUhh0$i3Co|PCӔ}3.dp;CjL:X<:R{SA30\Ii΅,2XàlyAL✛xMO:smɬX就H7Fi865 `9vZ[EH'-A=gmaYv#i*wkzJCHǕ&!eiMv:`YiWKw[3B4lݎ=Jg9#122}TIUcxc9N!A!fXuB;426|fܟX+hz=AL2@pӮqm3Z"=cdd
̂yFRCiӏ"}}7jIj2:	Z0DF*f@SARCSjgT^,GbsH5W16LC0ߚ(06hcbv*@e!'VhFWu7E`#+2v뤪ö1n`3YYe)z1Ĳcm
JЄ0 n\sǴ^LfcCf̝bQ'>zǤ-ĒcvFZk9&d)-dSشg-@#a5XUÀ>S\M(U:`v2v2n0iY	u	L+n˳0%A]RRwZFpƪl46e\%|@<Sg>jsyLгer:5LyP[|Z܆u-,\>PKy1-(5Ҡ"IK#&:slWUj}VfKaUK~ZiM5]*YKY6\ذ:SB7XíFL29V}J!F,\ޯYmx.1m(}Y%4AG-g&q̎&beJ[GZza2wdmBPKb"meu[]S6{[Q;قQӻ0mY5Gk)i4sU$ҫ`,7DٍΝ-K;~K[IQJk?[,6*I[|YX^):xe;FB76CZvn-a!ᶘ^ڦo@o&>TCC3z%.j6`	L.oewYPzimvcí02ͱaچҬplY	2hdwlZ|hFU!l5nޤu&k}t^pLi.m+gٍ*Gbjb1gn[K.vܴjw;stX1ޕX3>q[",[:Km0U
"#m2L豥nEYtIaZ_&>F^aHE2jUmP-15pu2^Mb8-f٥KxB_K#!:fzsE6xJT*of\c
gc#
t8ڵ׍]ebd"")Kׇ[ӶtˬS4'Z.1vPHn-bdiRZ[*h&gx!5rf9TGNP{Y:hFzsOq)+f{.qEfhhsQd?`P "pllԖA3+dE:XZO39̲f2ZxiDdqtk̬,{<3r@2SڠZ+6`LXLt}?c"ײ9v*+'-&Lk6e_%-r`#Y3e
",51Ǆ@hl|&]U֗L̶V?Y3Q/q v3H;l3B7#u҈CNvZ~0Դb1ydSEGL[:ln]oYZfh=-kޱޖ2#!,ڟKc'wT/6=0=t6GM"Lo־>Y̹Pl"69L{JVq1;5Y0E˩-uDZfYؾPN;'l)U#vi3.fyb	y@̪=z-K8_UkAc!HOOKz	b[t;ShdLV~B	Gm$nx'_Vco`hM674sƦKbZ­:Q["ojuY=͊Pe9m]P,|> ֬ZZtcHktȴ'ri=qA-Mek@I)@2ct~1y~~K=ˉ<JR,uAeK֚>Q!3eiy(,lMA+MX
Laʖs̭LVL!Xwwhmsh[0yCøw 8;: ZxIb;
Lz][ZY Vo\BI=;u5jX̾j64fHkn#>%nyQks>AײW6JliB_3Ƃh$z<}[,dzo]p?D6$=Sձ#&lܢ`ZŤNja G8'^Uj]y4Zc3B/*tsB^G#==1/׎(4	ac	6	ۊ~"1=שp-`j[^[wڳ]ʭ}[]qpLvnpذ{#N/X*=;=%+l<ICSfr'wy1WPOIYu2:-SKE*A;[cm;Nօ?kBFrlv[`E~GPYT3N)&A0EAWG(.bx&p>I{a=su|H'Ach5O]K2cgm-mG =[}rVgFܬS[׋d-P8^tx8:C]^OA vN1WehWsirv:V,r)y+w<`BX=ZƖ7u6;70ѵhkmD5${Q9z_djsy,W2kzZA.+	Fz(.(ףtO?!~eRMHE
Sl)՟v.b(\e>rk(i锁Aom,diG#|	~jFᡈU&28(j3Y%dWz@d!J!]ɥQ$^Pl$H]bY(` F>!$rpn8mMRǘtN։::oolUo=D>QTCՍ3̫bE
b࿊Z3$ٝnh^u-\jT|RT)6)}TWWO pJMky4,<CEA}C$fsڰS@"F)qQ)kPHW(EnvrkGke-ZykB/Z|\)RI{UꤩbDl0zUjdpq8<]. Z%[-r˅TSpѡP8uGCHr hpX6`2Qp#$ʦ3[6r횈-CywI۾z{dZs	rVkk[,3B6/JV*@CML	T@說|Fm#0;r(򛛫sr%*R|5cމ޾Xo_0Fbr:]NQ%H8 U|oN=%u\BSx[Æ5bumbzgޭ~Glh|b` 	] ;m̊TtJT
PT𨪠Q"Cn.fx~S\*L.e6xBQC;}=}}py'.䕐ѣ^[awP@kʭJl-blcN,ϭg"u$qG{{f{GFFvޠ>dC͆b+j59S
 cHәrT橔eJ35R@M>vK6;8sB>gRƵZ`Xrpxo`|lx`@_/%d{.Vl7مI)~lv]4<ŷ2|'ZTʗ@ffPa9NvNLENVJQ(%0Yh|Ski̍cMLBUݞP0Eў/J^Y~J[)#[=8?{tbjjtl<vޘaU.GZQ*ЎR< )Lz~KՂ2!z{zGFwƂnMPޡZGJd뀛l.W*Ac'{0l 4UIQ"P(LNҙV!t}ulak)`kpzxrّho8Qo4)>|1T?ahzPcu˨ޯ0uI=`%ySF1Q~ۢ]xhO/,ɑ'sN$RobYt@ Z@%5`uM	 
@YZi=p&t5JWKEO;?{lbH,I~ ~jjLhZ
s?0t{|'Kd	5{tbjP(HSU2(z\TD1UJ'$*AosI4l TF5d&_ zx DuUZ.wTÔ?+L6teʙեj:,5Sv۵gj|ftxh(9N:ϽALP88Ay[KDfE+Ha5YQu_,T*N7l6Lnll75lq20JE>OK=944>6:{=vN	^m*|_up: U\.xv5
z _"f\
oeml, b֮Js+2MN==gbhp ;"na'4v",-%JskC^&{%Hc3'ZGN$c'6^;<dSྂ?Rcw4X,2ub1N'*%Ԭ ̞`(?1::&cSBq#+^ԛZS&ZC.ʅb:P
U*)uűRd<˪nnx*I]_Y6wrc|:&
ᩑ3;{bE,S++	x,(ފy/QSM) 3c<hdw3Lo5f	P/TycyNQ/jv{<c*V>6T
p	S!JrJ1U	' ^/;80YSqW|SH Y7Ucup=!^W%	^H͝Y[u_l<ûfb jyo9?j,ͼڧ]Q8x!vCx:UզШciW3'hjAW@0D-1
8, 1X"WbpfJDB8\`;cc㻆{ۄm5F5.Q0j@%ՠ!cx .K.QBvAE)j-_ll,./]YY<~ ryO03>=:w;&{ta+Uim2hИq,X0ոQNyA{ 8&u) KF	Z ^յ?(R%lcw=H<==Cc}Q% gwz]8hGv5(銩We5MUh+u+Qb9.HX( Օk6Ԭrut8s,\HzƩXDn51@+o.,L/ R\2y)n>xR"|ETC犵tdkTxxD̔3ҏ0@b1@MścY_p㴢5L'+I3kBYEЖq:nӣqvٜB3hߨGd:
(~՛B+2=yCQh6
QUpASrRj}!q)zQ!Ç|=ёͦ!]%}KAݿ{JG<sS^dCE#~><a.gߞz5W93Ļ5pNjvAڅ.S  	0FKKK`JZe"+Wɦ^R)	RR\ލ'{cc=1p>ЂmOTꩱ ԚX-߇G	.UҔwͨSCԟ#:|V=yzbyltqGswBrHr"Gͭx|skO=e⣏/'2''ϻ$)j+]ʻ?6=Nԋ8:N?D@hQ 0ڕ+WPxf+)gsV*әr*X%@q6|uF'wOuhTi (1=*K=*f\Vu@s'k*:p$>Q$N;Fb (/n!<^^lPH{:hxvǼ{om!\OـU;{?|곍Zr+A9p'v4ܵWבŦЄeרs(!-PŁ@'`FFFǁcNVVV]O%0<ĚbEǡjy?pSf2N,ʥD`Ww,38?N-PP*5UϔU2rpЅ.o,.\K 	.WU?p`1ԦDMn)ъ???Uhب[Hɜti
~~lWo%X#ýǟ|qXơ5JTzEw-l\a7ZN!Z]epJx5PŖR
v51嗏[[Yl6p?XSunj) +î)6ө\rm!((HvFFcxOpwWp0 䉳K| F.S,,W`pLtwO\wp6.m'Z풍ejӄBaAՊZBC>M7ӯO?tx;/_P3j2⛘NŢ8 _V(}/AZI	G";&vطk'P/WO\\xyp3ZHߗʆ9J6|1/Y]$U$+s`[|oOJ.	¹\>rV덱9D!s9n, iX[/l^W7<:2qy8k6XMF*(%5"BŁ&7èQqTQ:^	s vu=WJtܹt2	.3 ͲMq7tU ݀+r&y ,JĿ|ܙ<m{;rS?1n~[XsccCRk\t5?<|xX,E"GS,ZJCrju L#|Vt4̛?c\ʕjcTCo}S_~Ӡ۱ZhΫLV38H9ZPtpqɾKY%Y	rjR`+}+?=:\n6jMbe~Qm+f[[rsɁǞ=z{Fwe>-_zyz=ϟt=vq?'\1+eT{x|G:rC!ل["? kyA:Yg|ZlVKz4($8!'rqb}=}τC={͝tGOtr~q!3[Ol$2gJG!M]pF[oWB>pU%x4r.r麜XMUûw޷w|u}ΞͤDU*,z!9KTbnX)D'&#Ҽt|)gN?qz/]I;I`p疮k,$˳3gJjnxw u>8von	v=PNaD]~?燕d;F+aѨ/hJ!WUsp;gVvOOk׮eŏ=| -okWfvNv=z=+R_K__^s"u5BE&APwP1O=<إ8ǁYyvR+"
WOY^ZÆ 8[::X??|B:watq'#9|/l7Cx0]KgҩE#FZOnp;Ў.OM56:4&˵B!=+#Z](D?-61K)Սbh._t:Jn˭\n;o}Tϗ=He}}m?~~}a~}s}~uhvyw'XͣT!W,g
Z"LӅ\R0^IZO aL{9~y8a0+;w3 :~eՓ痗rنz%{LKBuk݅3g>眮$O\=ۜb~k_gׯ5W;C rnsٹ<4q2}WcmV_?@r!ĹHNnd6U]xަnr1q_s_zk/z\ KW.O=M]a|*~٧ٓco?sKx)-HW\my3Ho$
x\j= SvzGđ&UJF
{jv|fHVN^%IQ֋gyv>wN
<yE7ں|J918w\.-mn{pH<~ԹwݡHcks'{w u0vH>!PO%D"<?D-m
B,5UUєb_0o}d拧FGA4e2;>N\U໽(T@pb~g׿Xף?xTi\mI\+[z2L'SJ	V,.of
gv;_elr&%M_|&9_\kv\__v`DnaVsWc5;{ww W>]W?WgLƗ`phz]`h+r8N2s|Tkb{ftwlm(oqy &1!u+M<0@'*Mor:g8.q5|k`uyʵk|t+t;teX7ǋsgO<ʕݓ~Џ7JDϕزK'yC1ND=ul3qL8ЍE_XPŎ.-x58rmkh4:113O}׷k`0K>߫jwgl|N݂Lݎ펃~YR)>rqa	0[VB#@%7U6TX&2y(A!<?nKRnwD9׷oЕJJ|c׀'`@e[]@`Wu*ZmX<#՟d	'>ү}RP$M<r6PGZ/O|?秿w]׽hLz	f\J|nqF`{H҃GWW>z)>2=oythw|;ocij6f6
]&/Xl`h0TpKܾ޾1&xjI*ΗZsoeʆ?fu>ĚKTFag9_jq8n8 ;3@2Wi4ja8AXRMm<ϫ@βq.)xFPuy>o%6'NZّ_>3_C}sblזWjm_xT<|sۙKmw65}9O./DhwWWؑ>>{Iv75%8jy,Vky@h8Y_\~q82v{dbf+TܜMG.Z)`t:(Z}1dALOK{3Pbϧ8nb9\_ǥf#BrR_]]|>#<=vb"IKVJD9`K0vER+⁩}ϣ>O+GlrlP/}w@ >{}r~l1,?751~u~3WG?]O'] ,l5W<>8-l-/P(.b1P1.<YHn..'ѣ=zՓ |^cfșp{z-XIr qVMQ{ADc3s>،xTdTLNțepնsXBX8T@Gj.e>֛8sG}=O˿~o?4Qbj>dI<?gcYt:X^[K&@nz;0r8cW^"]_:E'i/r}Y@6c6lwH<_8vQhv;u]W"oTsvwDR.%3<2`KnAl]܆)h[X* &՞b6Z,ҬP"
n;:8Z3{hcsC{w9_lJ5~z!TOT/x[>Lf+2:qE_G6+@%];v/w;={L{ṟKJ~=|~ˏt,TV*0N)QAQXcI't/,?s/12rBhx13r}mm]CC}/
bQmB
-"is4*v$*
0ǋ!B+FCn|ĎyN8+rc?zq}rz/L'cC"A!yв%Hu )t>ũBy{~xƽP_H7͕U|FC6#RW.=q.	ݾ{G󯞾X,Wzc= K{g'-dQbl#&$$ЕJewjw!U.Ʈs٭l5]cnb/H/(jf'Z݉)zn{kPjBqido3Кa8ytk#8U˲Mjw-?s玿=~ⷯ_:1y_\tnp@D8%ĉ dRF]zxm_~aO9ё3+ԋ33yC+)kBZ9Hn'^8sʵёv+g}X	W[bϿz3O%Ɠ_畅+]wҊ|{`̼N]+._fE|Wh>5/̇m`^NLk> zbx.jAv$BA[1X 56G9.qX&pR#S@(EȆ T@=RJyђQ^54@G>s>c@D_o.=xNLlౢND|ÙF!A/>_"މb33sIO|Tr+,--?~taEF\I~ch#zoTZc(0G;]G I/BRKn,>#>Z4cH1Zc]݉K\%}R43Z[|_7yȣ(WV[u*Q.wgCP+|ƚR[,؊g,KRa:ݲ  DjI( J̈́Wո{>r!$`cSY«C9OFe}kMPym𑩝Xl䐓da.X]^ſ9w셳rv`ϾȻ̯?w_+?Ljookag!?/􍏍]9w>}ZPGv6r2yax$ⓧOzNI\ZYJ{{6'UncyK#;RB	7"`Hъ\/WWrJ5RV#+r{Һx
#o4TԺS?dT?u6=z~vfܔ:q/&WG.Q_TJ+4uZᓟ/]	ǻ{mx_{7@RkwzyםC^6O_??C{W6}`}c W'^ȼr(pp=s:t:@̱c|/RݻEtnOXgi!/4'&޶g=7W^'7~59O%w};bK]M=wvqnpB;&)U*~7;BCkp7;;sH* b7RL&#+Mdb0Б~FW -׻A[L櫕r\qHTlj)*A3uxh|vwߑ1\v&WûO8#zL{B}k/xבAώnvSk̉s)Л]]X,xOoZAؠKEiQ brM޳*fSvL>4;/tpȈ;.f;d k0ޔrucGV{4ao }34sg
eIhC3р=`GRmy8+i.l9QvQ,6%`֚ޥwu~q~I	KU÷M\NP	z'?CڏC{Zk8KW9d]N?pt7^Y]M770H8˦["<p.]t̙3TGaxJ&#pxhp #kkfΜ<\-Z-ԮKgqP@@|3qX6J\>,.=[rl/ۑS`ࠝc%P9Xu~sӷ˥r*\{뗾jQ1zvq`caT,R`a*U?ƎKldj-X0S,ceEA|{fgv@o"]=urr3Q#gFד5{O~ѧ:.G#5/r~[d2
-,/]}{[MtwwKKr#di]*"h___V+JWaT{t&n[)e3.=RQ]<hfE KZDDxspb΁J HyH р?(INYndՅjZCz읠:QՑ}m+*+J;0%W>X 
ݵ/d3n;43;AwZ7m
raܵkkk}ߐ |5s4	J*}(nZ?S><RH]Ï|]EΧT*7ɯ}/<pȮ< U,nñ|x@Phv#c#D/_u;}*{T#1<b<7ED(E3")KE͔J@{vP0ҋ/~_P{J驩ݱ޾p$r.WuR^;y&Xٻ2MЈƥvVQwi3.wqHTT-!BnNp!4G.N%Wh<%rh$e#GH 0kM9vn܃VW_8+dz,8>Wm	S.zR`?q:[_,5Kt.5dPhǳbPto&~Lq+bE\*UB^H(4ӗ/*EZp~ne`M0}}0.sss?W~ɣ/r5oAemm=σ9ߵk7 ]Ks7v0}@VܐyhOUpH-7]JYs{.ћ0.#J.2h8Ή~o0Xm4ҙ,6/Q[];lm6C8<z#.WZKT\!?
ޣ58^+@ 8MdWKul|X$
#4D7ڧөZ*zqomn&kpXׯ
%Bnd;A9n&e2dϿx9\___0Pc;bi@*H^F<;ɦ1bp}99Mϻj?Ȧj1]1lb+vCZuc#F 2[cz٨U*t:w&$'iBUx l*{>WrV/9,jedTW}:'K5ϛX(ueM'``PP`l+X,]p!H|Z{Ŧb_jq

hVM{pjjfrrڵk### ܮ_RP|}rF P\Y/([
ԕNXQ9DewU;Rl(ٓkDOB=dO3Cg>0-1X(bkk|QEgal6F&b&ŀþU52aԸWaUs,\4қD$j@QWS)@$ v᫚O`D@ӭ*$ M"288wp^oϜ9okrr r-AAsHVi z(7l9M%`o"YI4X`l~ _%xRѵaJ#y @U9XUx9AȲD=%+znxA.atֺW3j-ΩȻzu+/L+6KguD\f3T!NGfα_m8t3T:֫ Bӑ/W$Hk1 [`lLU8  f_"+Ν;!(<@^2߼rDw+5+ƮYT:\[ٕ&`9dNpO#x'lM9:F]n4jR7t]5`arbVQMD9U$+pܖݾ\'s{|o2v]ڝ/=>ֻyujҲl/dX|RPk+ͳ>:+%ƫŗ:K	pR2xoNq<%d0UE(L628 ?+KGֹ@0c^+~Oܹ5X(mww 6 DѣGɯYx38GwЙ'ί,ƻF1&.Er*5>	wD9m(RVj]e-!bLg.'Yr)X9vKVOF6.յh0"旄즔U+.?l9
.˥BznOK͉*He*|̍fEw|7/rW0I000tÓ"|7vIS/+8R;Z~ͳ/#r^ h[^^𖣣㳳3 VtM*} |._YY$+it
wݙ̕_z5;#c!	m^ ՚bܼfܬ6
aC~{5T	&l(?w.q}~A-(Axbqrf1Kʫy@p?92s3=ՅONzjΩwOEMlZ5$zT͊!ǳCTŋpJ3l&ݬ7uT <WÁ 8-Գ=[(T.^<˝s`mIڽ{Dt^* jZ&E$VWWiKxgrGΫO=|rs쭭}w ^z%CãvNtyJYhl*un7
MW˅|Qf&g{c[Er؉g\6vyK/T__?N]\7]z^-*s]'~]B",i:[DŊ5}wt
FJ̌2
K@ REjVu<3G3OW%[nmJDNlPUYkDƒU@(k!S`)*+22߻k6_/I4RCzG$,--512pA[ٹS'O>W^M&S.^pIٵ{h4|<*5@(7i`ͭ.OhO>3g$$ㄇT*΂Ƴ/p&{.++t0K?KX3ީ]wjm!Si+ي:sⴛ6#gl7avamK,+uq<4o5a8nWu|,TʴgpxhHn7Vd"i*)Bj'unPb#p~ZXXU Rn#[Qbɬ7q{LѰBc{l_x| bT|&_6صk+H^Vp~cG6X҅|jO2zz*:#dhd(E++˫Jڬ0/Y.ld3x|%1wLV/5~hjԾ=~mBOf^i4¢tŢפ@Pxg3Yv{j:rL?}72Cz/[,Vyah~|-gȱ3#fhM&F!;eP$ri2d>db4owF&ZEĔeQV_.άq!  )Eћ-V7={w_<wSYJ%+Nlvsd2ݻ'ɼlDR!@r9)366?pm9̖o8uoFZ0,TqKTiwuKˋj%;|@8(6JDvPEEv:|6Y[[^Y3qI8G 71zxj|p$E~ Q&ilds8@X$uϷZkɗE	xWַbbI}\n5sˁ8w"q92hruj{EV'JwmH&y>ZU._ LjJuKJhc6r`l~/WNeF1lcсh_?x8~^{	0.$DB!.`\V+_o҃mzkЬ+8$D;[DzlUFԨmPK+k|=kp7r-%SjA9|>ݩ3f-\^^H.ϯ%3b}]GN={p`+ŜjM"5Y̵n;7j~##^xRE?FO?qDpij]u&z ږ@1~Zh!J%#g8+AOUgYPwT05}/||)'4s{ltT$.0	㒾DR<șCó)!E<.k@ ]l\|:S"&GJ(kq=):$6#;f,9hNU-nll  HhMfx
Q paLOe=^O0xVtVZL2X2g:qsaDCk\VGt!]XH$[n̜s;0pPZԮO<y3M\Qaߗ`k$ŭک)9斍P^S-5텅F[$է<va*D:|O^Lmscdd s7nܨժvVaAsO
_]dj(}>hs7oQdf5,xveti+uѯj4Jr&ˣ]F6s8.Zh)`/MâDC>Sի@~zd<tҼP>cB6fxxl_C.wǳ3B^!)o$Q-X,pVd՚pjNkZh쵁_LhJ#=Uh	('_A7VWdy gbeQ	Ebo7yo.nMXf攋jз^`S{պx7RśkТ'=rm~eb88g]ξ:]ӧO}KU̶r"1w-_٠6~jlYD(>@=nyGG\_%S=h*(4|{s+,nzvvY{db6Gp!Ϝ/R*,EMo6G=|Qo42Y,>TwmM cE3l.X)E/j&$D}JXC:.V
mnfajLFchy>P	xn˯dFF	|*A&Ŝ`*F=2[ZzjtG͉4}7n2vpVkdCC
&HK#q|W@ĚPBU[ ȘWlnrDO=M5JYnt6҅+gnݺYfUe7;4eB[fa6UY}M|a-0lh4V;*jҒZ6e#Vj]I;WyOGrLFmy4JNrkAχ&";'8F_,n4V+e"711Pl׿`086>:XDI)Q2bZ$Ϯ-4KJLRt76rO~hb>I'
}qh0"FFԄqk~%lFnmf3mLx`tz
J$u
X,.7`*V%σʷX&!>㏟QNgiL閁GM65s4|:Kjtx?
XBzvVwIyXuMN\'TRCg7xaZtnBxKh"၁capk4J +FnwTrrS(ZZB?
*m)Y^k{655~kL*NsC-e!L&F,CF,K`A~nLjuWNp(
)/G99o^r!eupQ3.͐`AiĶH>qɾ}	rDj798I؟Vn0:ۊ3̨6<M7tdmí+k`\ϖZK8vkW=77Z,>vhX,/pY {A2i0[ avA b pS0W4mj4t1u|$z_8bJR6_CAf(Z6l-Tp6wNUhY=r̀GRnӦw=r*
|R_[.&gLJx+!huY!ًʜu6[Ǚ ׮^{QD` A GNMD1%Y7f3L&>\-(JAW	u=";i
%"ڤ@yj{uh4:W_}/z:|As:t@OP'0ud0z"ZQ^n)3@{nr|FX6O%7xȁvqKMim<wjɀf2qI'\.l6N-%KKKpwn07%O9_'ktR̷jbz%={Al@,'p,v8e'7e]͂.tɣ,>}dz=6N)YȱNd5(`]r(qb3;:XmC"s7	B`bà`a/]֏[ɥ'O	GbkUG\.P)az0``|=w8.4RNvZb"K[vg"y&C,Q%YIcS7IJZ%5+P&lTAQ#nznk0z]p?<5}x;ozjُ=pjXiCbBF,g|S1עn-LF@vjx_d;H V&vMz$E`0)]>_\fժp%υD"F/,]v9ßR.=}kðA8 
~EL(]^Ah׊zV_k\|slZh+O|ӊq<Sl`XH҂nkjCM$/h?k4n-Ue`yePK
Z.kțv@pHmp}/_dV=wrrFf>ak<''pqde% ɶ.Um|Oڥ 3
_|Fay5.	S1}ײXsnEAsK_=#8ħ-[HرcIAEq!*{<mB"f^0٣qۍvRX<~oԁ/@-m_h-|>AApv:"
v)ղ{8<;1d;qqO֎JԨWL֊mЂ09ڬՊNM&-V_>STR*/0[(涘
\NQQ2mI=>4`	~Du{]ɢ, .o˫hoL|N1Qo@1{1 pZuIk%iJ٩]+3wYVG'7
ōD(WW|lb[s0-(y.U[mmb),"{|*Mxp+-ҋS[bsCT<hhg4荸Y &W(˒(z\j$ Il\h?/xٽRlrS\Kߺy3'6Ѣʿ+O9ҒU5|wٚRc."}|#LL8ܧ3koRYhlQ>280[vu,?h#"ICt,ґ=T}6Gwn:&'֒ɐ(NVbkWf<`qB@\WՀ嚥M{N9<ctNg9/Zήb{>neczkޥjv"Zm])/->Qr)J3|4?u26:B?<<ĭW~WJB(t-.c;0(J++h\ro	m	~?owg9 f<6}ҵtN6z4c=3oblM8v`Xgep:]<F vu ~&J2CcYX Cǲ@ʮ}5o#C>q~18s:t{NvzS*Jf3soAⰸxPY ;xj8Uٖ`))JAhaȱlI-bT9nd?htBVPjX\~բqEclPFdH[W1oDzdSybwjB>léHv-Sr@3bLU,n_nJ9];ν\כc#{AnK CF^m mdD~=DS^2+JA80f<9IZL0I$QhKy^_=ֹx9ivv!w-/9~T*uM3.%87UQlX-	4]6Y6h6r}/oG&&()+l=q"7mGT;dX>P`	:W.m6'E n=^Y`4W윏߰?uE*ֿc;WοtwSUd DBJWm2l0Zܾzl7rB'nRr8(t}}W	\:^NZ岬NZ%ԍC4
9-n;J#ؒnvs.i+u;=w$;l+yo	ۇ<3'Ǉ+WxFa)/32D9t:E.TGPB4:/Irե}`/T*"(.Ny'&=.n^bř*(%'Yo0 &i4|X`azlzϭnaA.7<.`dw|^/!_}7^xቇ>KqxQ4y5]N[+telߝ"	*Hs?+{/_|ųɧ?ݻR{<zI@BG@I8n2Y}el54z2&\QjP⑥09&lGW84l66=G:)zn}||\.6+kB<'+ZG6@QԺN7#I0v{	RvEO/g-8M]&襾azz4z:HVU876o_~w~ܕfѴoߞz驩|h19돸ldAdgl2tK!IF:v5bplW?0 fr&91ygo~ǟ|np0j?mS-lM1Kfj6c-~'"7W]s9H$Nr9+\Z(SEBQAϢV|3dea_Z^Ewc匾7J5Z,\AWON5 p5d4F`DЕ[63N@%өTEG])dlFb%}!*2 Np&Ѷ(.;)
Uޢ(!#3M3xۍ*=Dܾfق	N/(@TMSW:_s=晴#sڢbmq?ENlF_}h4x֪А?l5MӑZ^?<[^~Uc0gsǷϞ;H71t:兏pP19!z=iL79f1&~ʑK.nfnzX\qb{b4Al6[r3o	m}cR&X狌8><,*b";d0K|PctWҽۣȱa$2P!a>X\.aXHH6ڈgjĵ"E,(\b;>ڦV.ݽ{7L?H	|xd-Q*X5g4y{f_xaauuu{QS%LQfHsqE:8nt/RŢ,moLO߬V&Q8յŕb46|Xec:ƢqSɕoVZ7:02D.{[lMO3Ub0{?%maŠt`gn}|]amf֍d6[͙#^J/](X*컆Y &33I)Rꫯ.//>|駟)GΜD#ImetNOQVihQ'_ $&IMIRX6/\t1\ۻ$܆ Dy0FsG 9:ְ6S8BO8h,.ûõKR$;	U%3(=ڎ#Q9+!C-2AJw]͏IrϦ;S&j	j? Mgr3˫&{{/lv %0r0c퍍;pӧOܸq+_
\s"$'1CnܴUpmePQd_@2L30$Dbc~~ժщ!"9Ncq:FW)ST$[<gLaϟj FL}(DuG:8̿a>6Nm'uGJQIVSR?QBOwk
SYH'P0a'iyd4A?ލKp;>hlvFb`, W\_=
_~W>
U*io[?ݔeNWjxNN5KK+Ģx<Q9d[,#/6cJ<#BjKZw*Md2{F#F[nxD>f"N\G9s2'XmR5Q,ZDZ Qm1eb!т (=j-147#Sxd2ArjC}6ŶZ她9T >6+H?_xgS Zsڮ	4bʊtuM(OoSnwaL&\%n:> HAGPYO&}Wb`rGFXF툕Nj1<hz|c3U?5jbKxAU"#ڣ#	ZMOu_4@:(#(ܩ̠n砫|aR)J>Y!?NON캝9a3XJ&9<\}|6n6hw8vKbk_9x`&!kIa:jQ@<EpA@U6H|7#?ݵ@~YM&q7ffӣf=h 	7[UB.M/-ן7H}UU~F/x|_;,'3אrx4rx*b+:$'&r/$j2G!/3[*HHaD>>:ݢ+RR^ZZx/Z(>R׎|Dw|zP$CwU"&CB06־Պ#6exDY5,X6)~3a=D":E%c9A]lv#Z(dQ_H4G1#K,&,2=j*j!ViER+ul60,@;<bez V4xE`a"=>kfDR|@fx?:04Ju9wкo߾P(ΝC 7SH"NU}BT IgqINlLiA\a$|4ZC1PE8e3ښl7z30%'ADN+h><N2Fʼf4 &vòy%Udxc
8Fq.d"TҮHmFUo σ
]'>6B׾?oso_ү۷33ѡ~xҰ<`QaVv
P	QldPEC4NhUa1D=jHH@XxIk޼.;ZGJRal3 +6}f_f38]*V slJh2D\H!)A9(m^m>Kü~"+E1N|Ny $.S_gpMA1L0o%۵G<<|צ}S;{,\ 0D/,8>~$+yh̨,s	ólPtGb{s1QVM-rvO'5ҙ3}!C1XRA=}ShvLRHmr]rL@+ܷ= h}3"(QUG>7EpsD#5K,|$:85m&AlrѪUzi,[mP |V/ @y
ӥct,̀T`~`v*~Xѳ)Z$bd#-xb@	>uP<Ad yǎwW5H"ʃcX n	Ѩl.fEQ=>2lVY'%0tT@^_ySgCz tn4wˍko86I;#1k6/Lؗbz++2q,ghOz~nW_=!5F_dPJ_H]qjpRYβQQ[|nj0Vr_QS8e(j-!zLKR6_ʵZ%卶]`EL
6j뛛Y6>B4ƈ"[`z!8<aN"p谥{w} O Dii>4?::6ͷCgdknH x"ozzzq5ӧ)ˮZ Ⱥf3z.>{W3ȑ՚ڭ"O>tCZͭ~iEp hE8MKX,B,L^^Ie;B9S(gf6l&APa'M1@ hA/-8W p`y
\"وpx$XOjs96K/E"#GƆ4xu/>|L;PQjHKLF0,X><)sXC7D,/aoQth}GOD/p\KRw^ǜ\ZnbbhKǇ']Woz[i.}nϗgTW/Nxf<aA"7oބg6#F|6zʄy;R)BGH
yA&)+zb12v3Ϙ/#lI'6.MO͠/pG&KSGܭpo}[9|"0׮]%br'Uv!{`2:J7`Hy\_OB@d>F-W\)[i5Y)":]FQ,,`KyzS3T?c|boscD8}ǭpZ([ՄT<U6g$#W/
	3ͺ KqFi}@@,
hs) mJl@)$L&#vU'3O6jSr Zpff!c;pB4Wn. l	`e046/|㡧>cOYK4ݻF݂\1(| +ݲRVO>F~kgϽxoDܮZa|;sw^<fxivWO.{@1`B3D	a8?Lu~ah!jÝ	IR}'$5-р
w{
 fN&Ra8w Щ0x'I?˗~<Sp_Ha6_AK_>g9:\kw{WˤRwdx
|=PʋW.on>裿tfB^.Tl,ƫ
v%#a&QрrCM\m2rB`T{h^j	2@=d	1vՠ`6Il% 8:::55/ؽB:feeG	B%V[^?ا1Z]-!j2:P^[-@V&d%ϯmbpBA$0o'kVmUd61etvAIٷNz`gHO1N DTq9]_>V\@7 $ ȡC q'%8~?cwcl2bg/HEb~g6iqDDf3D"HSRuω<NxlxB&3p]6)
35_ͶD0mEYCg#`:5	wR;\!D?eyUF}
"j'[Es/h=RhۄD BQhv8@w n UA2N')u`*[fgӅB(TzS!`.;!0^r
9#k
&
]*V*#ா76-VMǎ7Ȭ@^/n>OUMJڌr?[3qq,d[N?	
iYW_dCVY=	i=)Zo)n{o5!" ~DZ	<<p!iG<}xnZy/h*T ! $>	ׇXhHz<SlGKD8gc}S@e67jGJH38Sjpjq@3-i̾OQ۹D¡fF4BTV(=JhIꘞ6ZyR'Ǫ82(Jt:7p>n[RG?/= 3
ιR/brր <ppz6]|>J|*͂Qzٖb1805<I	p
9NFZm=^01a5"ʎ~&[L=1FW[}(U&g3$zmBVhg^NQmq6ZH|`Y&ɮ0+oﯕfݿգ7zLH@ڟJibl,WuԄn&* zH-b	{|y"ճL΃&)Z9`7"RHI Z SɊvM:=^;vTe"(DUK5$o.\SKnsgBgٓ҃O019`E	ғo]>O=01W  ^jglH }Foj@"&ߞ~=xaz2%&Yp6+xt-l4\Zh/
Hlp?GKGGk9FgIډ:U+Yd=i]e-PzjNƿIB(VUJBDTHvW[O-9G V0.$A<8C&}φ}RN>0H~˨@z>8Z 72:4þX5ٿjTLɻ33vpdpcKCU4U.T: Ѧn"b[ڤsM&]O6>Y7Q&FJUiꢧJݑNQݭ9_U]%=lj@#{0G! ;m8s@1l$]~P(|_Th*AfȖxA(SD_-K~7>uf~J1z@3~ZG>ыP;/n
' ܘ8Ōh#Ų,+y/V[ R~<#O9?Mfxj]b5E8є}sUESm CiQ{'k06B+"Ju@>pV#@Pԩǿy{\ 򴼼WTx<U7#|s&ݞͤryzZ_nKtjkR!:}	XdʵZ(UֳzS]nWUGoVBIA+NjDC^R>wTpt
v[JLCsiy趁ST@ e֔zVO_λp6Sŝ㌻2!"W9tSMo'_DqmB(
s ,$EZ!ӣ4!W๸ɡD%jLB	';d.áDؚk$[)pzzL$@։t|גf蟢k8?-
<*<f,szi(:DĹ1 y%\f('K6-YKxwpB*/Tjh3n$hDxsܻGGƛ˙~+zbR?8&_vmaaajj*޼yX+	2p+`ԼWbʕ
fv}Fw{ z7W&sV+Ѵۂ,S(7;a@uJu4l|.Tչҥ-azqcXm{ٰ%<3Y&IvY.]M4pn"(Tt1e0t -+hN2<!~¸ (wi":D8ݺVNꥶG%()}V]lvg&g;X0$$A+uQON*Kl&វ@@Aq=V'` y@#Ғ6Hq0͠i z^x'XZώ,L6Ñ	Z\6,MhX*Ҋlsέ|~ormndkguӚ/'멼jb5Eٵf3pzcщ`js78'nGyx|7eS5) nO8kXg6|UP2dh)(.Gf@VxS*`OAW8aq+60*IRR)7 vZX)4%{W
y+TR16*m{ bX~m``nPwS EXZ]]=B*) )	áP83Q?9X9VADb0?N'7M,cσQqXoL$$=HpT,Lÿ&"a\4pp
5A+R:ߐĦhv8P_79XFq^Wk6k4[!VŒGոxuˑf/bpD2vr4 Y8C n1 pZāEVSMH-˶)l٢J|EH=nrpuH^`|uYn'L`2f%__ZPZMA N'ʥR1w{<1) #~˱16X,I^˗:]/t :gKUIYCR36ۉؾHߟ警ڼtc)yX׳H: ܍ :dnNnj\.cqVVa&@sy5*\?bނԚ77tH|ӔTN,so48,(tfbt6%!z5xw@FXhp",6\"R"JqnWc4k!YaCҫٷpX0X eel^z!79Qd[eYLk9YntAueolꦮ䲘:.`PS(WF;`6z(o$76׫Zxo0OnZJiϥO;
Zr_k+ssv)?jm#]IĄEݣ{2!Sn.BRS7lU$;Z(b&%Rº&ԁqR}Afs?JdkFPmfNoAQmyR{|Amf`f*:&};U`R0Tr.[Jv>Zva#Xl06ZbYmǷd 	?͗7WQo0+	o`23qmC{}рgrɔaxL\TAEeY=iV[ Nwp<o=8誄7`{@jU	<
iM#ҦzbfL.2S@z;0u|N' J,JBGE2jw'7 Hhe0M9GEx̦	ܺnæ2Y"3ho".Vޤa뒮c E2R[:bk*ia9K:4sEVuf5\Oxwɪ_Od/=#/;ǹ.GGb|1?{%1cٸoldW}f(Etya}3_EZDQTBU
n:M&fm`S@l߀yuľVvr<D5m6c3xlFnS(	\u;HgAjfzoj*̝co%O[W><eTl&UeFFGvԝd2)]ƀ:F4enڼh13FN/.T:??Țp摱G';xi;\yVKmCZ:p?ajLuRJ
-sZRDb/0F^o:tӧaBRE7&%b|lfĳ`48:}94sTi4vZmcYr&ڤ4ۦ9>/e*ktCnt8 `v>@O2ʌaP8"SK
<[nnpyJ{pT*q;lĉ[c}a85Tԯ_+ڿ7x2: O/8t#z;]P{~KGT.\
WDȐER~xQ]`AEeRiArV%ɨCJ\Gڢ"JsVxAj
"ޗz3zeLz~vn^*QfTtTDIX>[:AFߓn-i߹gnT/q;j*X07f3B\.?ƵȚx|lriVوFn.ίumիfȍx"BO=<pW~tُ?̅W~h2P:k*7odB]ni0y|<WeÂdHuv;#>uf@@ǭzrua(ۍ8=tӡ8[RҶLxԐZ*WQ)FK![8Y3Ym(L{Ք0OQc;7bϝGZ6/DK^GLk`ՕYQGZ@?wPppdt7au.jO>K^[[	Bvÿ_=wT-5|4dlhkQm X1F#fάGwEMsu	73.C%nݺrX]`D4^Qŵz`2C@nWvP9zcݧȢ 8Zz]C1:iP^=e{hjrh3?4459~m?}ppW. qr!p$\uuLN,֧}{9~sݻ|EOV[.ְU77=}Le1mbޚ}"XϤ2Űkﷷ7&tKR3
1EF֠kr=YRȖN.ڌE%3z!Q\AfdbUR>iZ7*Zǫ9%KNRԔW3aaBoŪlT
r#Y^ZF?C0h7@rZ~ddssC!xp;!n6't!v} 4s9A[G7R>ZUĺʗ+{fڬ\bm;{l|-̫WeK} 
C:=,EЦ)#;P`5j%h#@q	˒]@pHFrH+P.lW!"$}jiѕJ	.W>lV߳ټP͛Wo|shh߱c'5f~||cQh$JA dݾZ7ES3 "r24Yep"%mβ<m>9Vӫz*V~9;sҴgV&TI"=;SzJ{-^5-[T)QPթ,k$E3Uρf3Y\p&.-BwԹ QZ};8QR[ND6ONj3zfCٓ$#F=ǳ~=C{=eo֞ʮ[=;;]{;Lہ{Rn% q!AO-0[\Tc/^E{#!PRS @FډCn}N>;9wnܓ'Э_O'|{ΐD3!i.{jߓDbnU;lN>pCHj9 !'.B߅lqybՑeDg'¸g_3@ϧgUm9er߫!WPzZ*6Ct&T4=Ӥ`}}W6Ñf?(i8    IENDB`                                                                                                                                                                                                                                                                                                                                                                   ./gtkrc                                                                                             0000644 0001750 0001750 00000010233 10455707565 012175  0                                                                                                    ustar   jmaroto                         jmaroto                                                                                                                                                                                                                # Based on Bluecurve
# Created by Richard Stellingwerff, Emil Jacobs and Daniel Borgmann.

style "pav-clearlooks-default"
{
  GtkButton      ::default_border    = { 0, 0, 0, 0 }
  GtkRange       ::trough_border     = 0
  GtkPaned       ::handle_size       = 6
  GtkRange       ::slider_width      = 15
  GtkRange       ::stepper_size      = 15
  GtkScrollbar   ::min_slider_length = 30
  GtkCheckButton ::indicator_size    = 12
  GtkMenuBar     ::internal-padding  = 0
  GtkTreeView    ::expander_size     = 14
  GtkExpander    ::expander_size     = 16
  GtkDialog      ::content-area-border = 0

  xthickness = 1
  ythickness = 1

  fg[NORMAL]        = "#101010" # very dark gray #101010
  fg[PRELIGHT]      = "#101010" # dark grey
  fg[ACTIVE]        = "#000000" # black
  fg[SELECTED]      = "#ffffff" # white
  fg[INSENSITIVE]   = "#b5b3ac" # dark beige / grey

  bg[NORMAL]        = "#efebe7" # light beige / grey
  bg[PRELIGHT]      = "#f5f3f0" # very light beige
  bg[ACTIVE]        = "#d4cfca" # mid beige / grey
  bg[SELECTED]      = "#7c99ad" # blueish
  bg[INSENSITIVE]   = "#efebe7" # light beige / grey
	
  base[NORMAL]      = "#ffffff" # white
  base[PRELIGHT]    = "#7c99ad" # blueish
  base[ACTIVE]      = "#a29e8e" # dark beige / grey
  base[SELECTED]    = "#7c99ad" # blueish
  base[INSENSITIVE] = "#efebe7" #light beige / grey
	
  text[NORMAL]      = "#000000" # black
  text[PRELIGHT]    = "#000000" # black
  text[ACTIVE]      = "#ffffff" # white
  text[SELECTED]    = "#ffffff" # white
  text[INSENSITIVE] = "#b5b3ac" # dark beige / grey

  engine "libpavengine.so"  {
  }
}

style "pav-clearlooks-wide" = "pav-clearlooks-default"
{
  xthickness = 2
  ythickness = 2
}

style "pav-clearlooks-notebook" = "pav-clearlooks-wide"
{
  bg[NORMAL] = "#eae4df"
}

style "pav-clearlooks-tasklist" = "pav-clearlooks-default"
{
  xthickness = 5
  ythickness = 3
}

style "pav-clearlooks-menu" = "pav-clearlooks-default"
{
  xthickness = 2
  ythickness = 1
  bg[NORMAL] = "#f8f5f2"
}

style "pav-clearlooks-menu-item" = "pav-clearlooks-default"
{
  xthickness = 2
  ythickness = 3
  fg[PRELIGHT] = "#ffffff"
  text[PRELIGHT] = "#ffffff"
}

style "pav-clearlooks-menu-itembar" = "pav-clearlooks-default"
{
  xthickness = 3
  ythickness = 3
}

style "pav-clearlooks-tree" = "pav-clearlooks-default"
{
  xthickness = 2
  ythickness = 2
}

style "pav-clearlooks-frame-title" = "pav-clearlooks-default"
{
  fg[NORMAL] = "#404040"
}

style "pav-clearlooks-panel" = "pav-clearlooks-default"
{
  xthickness = 3
  ythickness = 3
}

style "pav-clearlooks-tooltips" = "pav-clearlooks-default"
{
  xthickness = 4
  ythickness = 4
  bg[NORMAL] = { 1.0,1.0,0.75 }
}

style "pav-clearlooks-progressbar" = "pav-clearlooks-default"
{
  xthickness = 1
  ythickness = 1

  fg[PRELIGHT]  = "#ffffff"
}

style "pav-clearlooks-combo" = "pav-clearlooks-default"
{
  xthickness = 1
  ythickness = 2
}

style "pav-clearlooks-white" = "pav-clearlooks-default"
{
  bg[NORMAL] = "#ffffff"
}

class "GtkWidget" style "pav-clearlooks-default"
class "GtkButton" style "pav-clearlooks-wide"
class "GtkRange" style "pav-clearlooks-wide"
class "GtkFrame" style "pav-clearlooks-wide"
class "GtkStatusbar" style "pav-clearlooks-wide"
class "GtkMenu" style "pav-clearlooks-menu"
class "GtkMenuItem" style "pav-clearlooks-menu-item"
widget_class "*MenuItem.*" style "pav-clearlooks-menu-item"
class "GtkEntry" style "pav-clearlooks-wide"
widget_class "*.tooltips.*.GtkToggleButton" style "pav-clearlooks-tasklist"
widget_class "*.GtkTreeView.GtkButton" style "pav-clearlooks-tree"
widget_class "*.GtkCTree.GtkButton" style "pav-clearlooks-tree"
widget_class "*.GtkList.GtkButton" style "pav-clearlooks-tree"
widget_class "*.GtkCList.GtkButton" style "pav-clearlooks-tree"
widget_class "*.GtkFrame.GtkLabel" style "pav-clearlooks-frame-title"
widget_class "BasePWidget.GtkEventBox.GtkTable.GtkFrame" style "pav-clearlooks-panel"
widget "gtk-tooltips" style "pav-clearlooks-tooltips"
class "GtkNotebook" style "pav-clearlooks-notebook"
class "GtkProgressBar" style "pav-clearlooks-progressbar"
widget_class "*.GtkComboBox.GtkButton" style "pav-clearlooks-combo"
widget_class "*.GtkCombo.GtkButton" style "pav-clearlooks-combo"

widget_class "*.ClLink" style "pav-clearlooks-white"
                                                                                                                                                                                                                                                                                                                                                                     ./fonts/                                                                                            0000755 0001750 0001750 00000000000 10455707565 012272  5                                                                                                    ustar   jmaroto                         jmaroto                                                                                                                                                                                                                ./fonts/luxisb.afm                                                                                  0000644 0001750 0001750 00000070006 10455707565 014270  0                                                                                                    ustar   jmaroto                         jmaroto                                                                                                                                                                                                                StartFontMetrics 4.1
FontName LuxiSans-Bold
FullName Luxi Sans Bold
Notice Copyright [c] 2001 by Bigelow & Holmes Inc. Instructions copyright [c] 2001 by URW++.
EncodingScheme FontSpecific
FamilyName Luxi Sans
Weight Bold
Version 1.2 : October 12, 2001
Characters 219
ItalicAngle 0.0
Ascender 1012
Descender -211
UnderlineThickness 0
UnderlinePosition 0
IsFixedPitch false
FontBBox -76 -211 989 952
StartCharMetrics 256
C 0 ; WX 278 ; N .notdef ; B 28 0 250 723 ;
C 1 ; WX 278 ; N .notdef ; B 28 0 250 723 ;
C 2 ; WX 278 ; N .notdef ; B 28 0 250 723 ;
C 3 ; WX 278 ; N .notdef ; B 28 0 250 723 ;
C 4 ; WX 278 ; N .notdef ; B 28 0 250 723 ;
C 5 ; WX 278 ; N .notdef ; B 28 0 250 723 ;
C 6 ; WX 278 ; N .notdef ; B 28 0 250 723 ;
C 7 ; WX 278 ; N .notdef ; B 28 0 250 723 ;
C 8 ; WX 278 ; N .notdef ; B 28 0 250 723 ;
C 9 ; WX 278 ; N .notdef ; B 28 0 250 723 ;
C 10 ; WX 278 ; N .notdef ; B 28 0 250 723 ;
C 11 ; WX 278 ; N .notdef ; B 28 0 250 723 ;
C 12 ; WX 278 ; N .notdef ; B 28 0 250 723 ;
C 13 ; WX 278 ; N .notdef ; B 28 0 250 723 ;
C 14 ; WX 278 ; N .notdef ; B 28 0 250 723 ;
C 15 ; WX 278 ; N .notdef ; B 28 0 250 723 ;
C 16 ; WX 278 ; N .notdef ; B 28 0 250 723 ;
C 17 ; WX 278 ; N .notdef ; B 28 0 250 723 ;
C 18 ; WX 278 ; N .notdef ; B 28 0 250 723 ;
C 19 ; WX 278 ; N .notdef ; B 28 0 250 723 ;
C 20 ; WX 278 ; N .notdef ; B 28 0 250 723 ;
C 21 ; WX 278 ; N .notdef ; B 28 0 250 723 ;
C 22 ; WX 278 ; N .notdef ; B 28 0 250 723 ;
C 23 ; WX 278 ; N .notdef ; B 28 0 250 723 ;
C 24 ; WX 278 ; N .notdef ; B 28 0 250 723 ;
C 25 ; WX 278 ; N .notdef ; B 28 0 250 723 ;
C 26 ; WX 278 ; N .notdef ; B 28 0 250 723 ;
C 27 ; WX 278 ; N .notdef ; B 28 0 250 723 ;
C 28 ; WX 278 ; N .notdef ; B 28 0 250 723 ;
C 29 ; WX 278 ; N .notdef ; B 28 0 250 723 ;
C 30 ; WX 278 ; N .notdef ; B 28 0 250 723 ;
C 31 ; WX 278 ; N .notdef ; B 28 0 250 723 ;
C 32 ; WX 278 ; N space ; B 94 0 239 723 ;
C 33 ; WX 333 ; N exclam ; B 94 0 239 723 ;
C 34 ; WX 474 ; N quotedbl ; B 56 482 417 771 ;
C 35 ; WX 556 ; N numbersign ; B 12 0 544 723 ;
C 36 ; WX 556 ; N dollar ; B 48 -78 480 801 ;
C 37 ; WX 889 ; N percent ; B 41 -18 848 741 ;
C 38 ; WX 722 ; N ampersand ; B 22 -18 695 741 ;
C 39 ; WX 238 ; N quotesingle ; B 41 470 197 771 ;
C 40 ; WX 333 ; N parenleft ; B 41 -150 303 777 ;
C 41 ; WX 333 ; N parenright ; B 30 -150 292 777 ;
C 42 ; WX 389 ; N asterisk ; B 16 359 374 723 ;
C 43 ; WX 584 ; N plus ; B 51 48 533 530 ;
C 44 ; WX 278 ; N comma ; B 61 -157 217 157 ;
C 45 ; WX 333 ; N hyphen ; B 36 265 297 355 ;
C 46 ; WX 278 ; N period ; B 61 0 217 157 ;
C 47 ; WX 278 ; N slash ; B -35 -145 313 723 ;
C 48 ; WX 556 ; N zero ; B 39 -18 517 741 ;
C 49 ; WX 556 ; N one ; B 89 0 522 741 ;
C 50 ; WX 556 ; N two ; B 38 0 493 741 ;
C 51 ; WX 556 ; N three ; B 67 -18 499 741 ;
C 52 ; WX 556 ; N four ; B 15 0 521 723 ;
C 53 ; WX 556 ; N five ; B 90 -18 496 723 ;
C 54 ; WX 556 ; N six ; B 25 -18 518 741 ;
C 55 ; WX 556 ; N seven ; B 55 0 513 723 ;
C 56 ; WX 556 ; N eight ; B 42 -18 526 741 ;
C 57 ; WX 556 ; N nine ; B 39 -18 531 741 ;
C 58 ; WX 333 ; N colon ; B 94 0 239 536 ;
C 59 ; WX 333 ; N semicolon ; B 94 -157 239 536 ;
C 60 ; WX 584 ; N less ; B 51 48 533 530 ;
C 61 ; WX 584 ; N equal ; B 51 151 533 428 ;
C 62 ; WX 584 ; N greater ; B 51 48 533 530 ;
C 63 ; WX 611 ; N question ; B 46 0 559 741 ;
C 64 ; WX 975 ; N at ; B 93 -18 870 741 ;
C 65 ; WX 722 ; N A ; B 6 0 716 723 ;
C 66 ; WX 722 ; N B ; B 84 0 687 723 ;
C 67 ; WX 722 ; N C ; B 39 -18 687 741 ;
C 68 ; WX 722 ; N D ; B 84 0 683 723 ;
C 69 ; WX 667 ; N E ; B 84 0 638 723 ;
C 70 ; WX 611 ; N F ; B 84 0 588 723 ;
C 71 ; WX 778 ; N G ; B 39 -18 706 741 ;
C 72 ; WX 722 ; N H ; B 84 0 638 723 ;
C 73 ; WX 278 ; N I ; B 63 0 214 723 ;
C 74 ; WX 556 ; N J ; B -12 -145 454 723 ;
C 75 ; WX 722 ; N K ; B 84 0 715 723 ;
C 76 ; WX 611 ; N L ; B 84 0 602 723 ;
C 77 ; WX 833 ; N M ; B 84 0 749 723 ;
C 78 ; WX 722 ; N N ; B 84 0 638 723 ;
C 79 ; WX 778 ; N O ; B 39 -18 739 741 ;
C 80 ; WX 667 ; N P ; B 84 0 647 723 ;
C 81 ; WX 778 ; N Q ; B 39 -145 851 741 ;
C 82 ; WX 722 ; N R ; B 84 0 716 723 ;
C 83 ; WX 667 ; N S ; B 48 -19 629 741 ;
C 84 ; WX 611 ; N T ; B 20 0 592 723 ;
C 85 ; WX 722 ; N U ; B 78 -18 644 723 ;
C 86 ; WX 667 ; N V ; B 12 0 655 723 ;
C 87 ; WX 944 ; N W ; B 12 0 932 723 ;
C 88 ; WX 667 ; N X ; B 24 0 645 723 ;
C 89 ; WX 667 ; N Y ; B 14 0 654 723 ;
C 90 ; WX 611 ; N Z ; B 46 0 565 723 ;
C 91 ; WX 333 ; N bracketleft ; B 78 -145 304 771 ;
C 92 ; WX 278 ; N backslash ; B -35 -145 313 723 ;
C 93 ; WX 333 ; N bracketright ; B 29 -145 255 771 ;
C 94 ; WX 584 ; N asciicircum ; B 75 289 509 723 ;
C 95 ; WX 556 ; N underscore ; B 0 -78 556 0 ;
C 96 ; WX 333 ; N grave ; B 42 626 292 783 ;
C 97 ; WX 556 ; N a ; B 34 -12 529 548 ;
C 98 ; WX 611 ; N b ; B 72 -12 572 771 ;
C 99 ; WX 556 ; N c ; B 36 -12 516 548 ;
C 100 ; WX 611 ; N d ; B 39 -12 539 771 ;
C 101 ; WX 556 ; N e ; B 36 -12 503 548 ;
C 102 ; WX 333 ; N f ; B 25 0 359 783 ;
C 103 ; WX 611 ; N g ; B 39 -205 539 548 ;
C 104 ; WX 611 ; N h ; B 72 0 545 771 ;
C 105 ; WX 278 ; N i ; B 67 0 211 747 ;
C 106 ; WX 278 ; N j ; B -76 -205 211 747 ;
C 107 ; WX 556 ; N k ; B 72 0 552 771 ;
C 108 ; WX 278 ; N l ; B 67 0 211 771 ;
C 109 ; WX 889 ; N m ; B 72 0 823 548 ;
C 110 ; WX 611 ; N n ; B 72 0 545 548 ;
C 111 ; WX 611 ; N o ; B 36 -12 575 548 ;
C 112 ; WX 611 ; N p ; B 72 -193 572 548 ;
C 113 ; WX 611 ; N q ; B 39 -193 539 548 ;
C 114 ; WX 389 ; N r ; B 84 0 374 548 ;
C 115 ; WX 556 ; N s ; B 60 -12 506 548 ;
C 116 ; WX 333 ; N t ; B 31 -12 325 643 ;
C 117 ; WX 611 ; N u ; B 66 -12 539 536 ;
C 118 ; WX 556 ; N v ; B 12 0 543 536 ;
C 119 ; WX 778 ; N w ; B 30 0 748 536 ;
C 120 ; WX 556 ; N x ; B 23 0 532 536 ;
C 121 ; WX 556 ; N y ; B 12 -193 543 536 ;
C 122 ; WX 500 ; N z ; B 54 0 452 536 ;
C 123 ; WX 389 ; N braceleft ; B 48 -145 329 771 ;
C 124 ; WX 280 ; N bar ; B 98 -145 182 771 ;
C 125 ; WX 389 ; N braceright ; B 60 -145 340 771 ;
C 126 ; WX 584 ; N asciitilde ; B 39 192 545 386 ;
C 127 ; WX 278 ; N .notdef ; B 28 0 250 723 ;
C 128 ; WX 556 ; N Euro ; B 0 -18 519 741 ;
C 129 ; WX 278 ; N .notdef ; B 28 0 250 723 ;
C 130 ; WX 278 ; N quotesinglbase ; B 61 -157 217 157 ;
C 131 ; WX 556 ; N florin ; B 24 -145 531 741 ;
C 132 ; WX 500 ; N quotedblbase ; B 63 -157 437 145 ;
C 133 ; WX 1000 ; N ellipsis ; B 88 0 912 157 ;
C 134 ; WX 556 ; N dagger ; B 46 -145 510 723 ;
C 135 ; WX 556 ; N daggerdbl ; B 46 -145 510 723 ;
C 136 ; WX 333 ; N circumflex ; B -18 626 351 783 ;
C 137 ; WX 1000 ; N perthousand ; B 11 -18 989 741 ;
C 138 ; WX 667 ; N Scaron ; B 48 -19 629 940 ;
C 139 ; WX 333 ; N guilsinglleft ; B 30 51 301 485 ;
C 140 ; WX 1000 ; N OE ; B 39 -18 970 741 ;
C 141 ; WX 278 ; N .notdef ; B 28 0 250 723 ;
C 142 ; WX 611 ; N Zcaron ; B 46 0 565 940 ;
C 143 ; WX 278 ; N .notdef ; B 28 0 250 723 ;
C 144 ; WX 500 ; N quotedblbase ; B 63 -157 437 145 ;
C 145 ; WX 278 ; N quoteleft ; B 61 458 217 771 ;
C 146 ; WX 278 ; N quoteright ; B 61 458 217 771 ;
C 147 ; WX 500 ; N quotedblleft ; B 63 470 437 771 ;
C 148 ; WX 500 ; N quotedblright ; B 63 470 437 771 ;
C 149 ; WX 350 ; N bullet ; B 40 277 311 548 ;
C 150 ; WX 556 ; N endash ; B 43 262 513 340 ;
C 151 ; WX 1000 ; N emdash ; B 39 262 961 322 ;
C 152 ; WX 333 ; N tilde ; B -5 626 338 783 ;
C 153 ; WX 1000 ; N trademark ; B 96 361 903 723 ;
C 154 ; WX 556 ; N scaron ; B 60 -12 506 783 ;
C 155 ; WX 333 ; N guilsinglright ; B 32 51 303 485 ;
C 156 ; WX 944 ; N oe ; B 36 -12 891 548 ;
C 157 ; WX 278 ; N .notdef ; B 28 0 250 723 ;
C 158 ; WX 500 ; N zcaron ; B 54 0 452 783 ;
C 159 ; WX 667 ; N Ydieresis ; B 14 0 654 892 ;
C 160 ; WX 278 ; N nbspace ; B 150 -145 235 771 ;
C 161 ; WX 333 ; N exclamdown ; B 94 0 239 723 ;
C 162 ; WX 556 ; N cent ; B 72 0 500 723 ;
C 163 ; WX 556 ; N sterling ; B 50 0 496 741 ;
C 164 ; WX 556 ; N currency ; B 1 84 555 638 ;
C 165 ; WX 556 ; N yen ; B 0 0 556 723 ;
C 166 ; WX 386 ; N brokenbar ; B 150 -145 235 771 ;
C 167 ; WX 556 ; N section ; B 69 -163 487 741 ;
C 168 ; WX 333 ; N dieresis ; B 10 626 323 735 ;
C 169 ; WX 737 ; N copyright ; B 6 0 729 723 ;
C 170 ; WX 370 ; N ordfeminine ; B 24 402 349 741 ;
C 171 ; WX 556 ; N guillemotleft ; B 32 51 526 485 ;
C 172 ; WX 584 ; N logicalnot ; B 51 145 533 434 ;
C 173 ; WX 333 ; N sfthyphen ; B 36 265 297 355 ;
C 174 ; WX 737 ; N registered ; B 7 0 729 723 ;
C 175 ; WX 556 ; N _d_230 ; B 38 705 518 783 ;
C 176 ; WX 400 ; N degree ; B 56 494 345 783 ;
C 177 ; WX 584 ; N plusminus ; B 51 0 533 578 ;
C 178 ; WX 333 ; N twosuperior ; B 19 296 326 741 ;
C 179 ; WX 333 ; N threesuperior ; B 18 286 324 741 ;
C 180 ; WX 333 ; N acute ; B 42 626 292 783 ;
C 181 ; WX 611 ; N mu ; B 72 -193 572 536 ;
C 182 ; WX 556 ; N paragraph ; B 38 -145 460 723 ;
C 183 ; WX 277 ; N _d_233 ; B 60 229 217 385 ;
C 184 ; WX 333 ; N cedilla ; B 60 -211 273 0 ;
C 185 ; WX 333 ; N onesuperior ; B 24 300 325 741 ;
C 186 ; WX 365 ; N ordmasculine ; B 20 402 353 741 ;
C 187 ; WX 556 ; N guillemotright ; B 30 51 524 485 ;
C 188 ; WX 834 ; N onequarter ; B 18 -18 768 741 ;
C 189 ; WX 834 ; N onehalf ; B 18 -18 801 741 ;
C 190 ; WX 834 ; N threequarters ; B 48 -18 786 741 ;
C 191 ; WX 611 ; N questiondown ; B 52 -205 564 536 ;
C 192 ; WX 722 ; N Agrave ; B 6 0 716 940 ;
C 193 ; WX 722 ; N Aacute ; B 6 0 716 940 ;
C 194 ; WX 722 ; N Acircumflex ; B 6 0 716 940 ;
C 195 ; WX 722 ; N Atilde ; B 6 0 716 940 ;
C 196 ; WX 722 ; N Adieresis ; B 6 0 716 892 ;
C 197 ; WX 722 ; N Aring ; B 6 0 716 952 ;
C 198 ; WX 1000 ; N AE ; B 6 0 970 723 ;
C 199 ; WX 722 ; N Ccedilla ; B 39 -211 687 741 ;
C 200 ; WX 667 ; N Egrave ; B 84 0 638 940 ;
C 201 ; WX 667 ; N Eacute ; B 84 0 638 940 ;
C 202 ; WX 667 ; N Ecircumflex ; B 84 0 638 940 ;
C 203 ; WX 667 ; N Edieresis ; B 84 0 638 892 ;
C 204 ; WX 278 ; N Igrave ; B 0 0 250 940 ;
C 205 ; WX 278 ; N Iacute ; B 28 0 278 940 ;
C 206 ; WX 278 ; N Icircumflex ; B -45 0 323 940 ;
C 207 ; WX 278 ; N Idieresis ; B -18 0 296 892 ;
C 208 ; WX 722 ; N Eth ; B 0 0 683 723 ;
C 209 ; WX 722 ; N Ntilde ; B 84 0 638 940 ;
C 210 ; WX 778 ; N Ograve ; B 39 -18 739 940 ;
C 211 ; WX 778 ; N Oacute ; B 39 -18 739 940 ;
C 212 ; WX 778 ; N Ocircumflex ; B 39 -18 739 940 ;
C 213 ; WX 778 ; N Otilde ; B 39 -18 739 940 ;
C 214 ; WX 778 ; N Odieresis ; B 39 -18 739 892 ;
C 215 ; WX 584 ; N multiply ; B 53 59 530 536 ;
C 216 ; WX 778 ; N Oslash ; B 39 -18 739 741 ;
C 217 ; WX 722 ; N Ugrave ; B 78 -18 644 940 ;
C 218 ; WX 722 ; N Uacute ; B 78 -18 644 940 ;
C 219 ; WX 722 ; N Ucircumflex ; B 78 -18 644 940 ;
C 220 ; WX 722 ; N Udieresis ; B 78 -18 644 892 ;
C 221 ; WX 667 ; N Yacute ; B 14 0 654 940 ;
C 222 ; WX 667 ; N Thorn ; B 84 0 643 723 ;
C 223 ; WX 611 ; N germandbls ; B 72 -12 575 783 ;
C 224 ; WX 556 ; N agrave ; B 34 -12 529 783 ;
C 225 ; WX 556 ; N aacute ; B 34 -12 529 783 ;
C 226 ; WX 556 ; N acircumflex ; B 34 -12 529 783 ;
C 227 ; WX 556 ; N atilde ; B 34 -12 529 783 ;
C 228 ; WX 556 ; N adieresis ; B 34 -12 529 735 ;
C 229 ; WX 556 ; N aring ; B 34 -12 529 855 ;
C 230 ; WX 889 ; N ae ; B 34 -12 836 548 ;
C 231 ; WX 556 ; N ccedilla ; B 36 -211 516 548 ;
C 232 ; WX 556 ; N egrave ; B 36 -12 503 783 ;
C 233 ; WX 556 ; N eacute ; B 36 -12 503 783 ;
C 234 ; WX 556 ; N ecircumflex ; B 36 -12 503 783 ;
C 235 ; WX 556 ; N edieresis ; B 36 -12 503 735 ;
C 236 ; WX 278 ; N igrave ; B 0 0 250 783 ;
C 237 ; WX 278 ; N iacute ; B 28 0 278 783 ;
C 238 ; WX 278 ; N icircumflex ; B -45 0 323 783 ;
C 239 ; WX 278 ; N idieresis ; B -18 0 296 735 ;
C 240 ; WX 611 ; N eth ; B 36 -12 575 826 ;
C 241 ; WX 611 ; N ntilde ; B 72 0 545 783 ;
C 242 ; WX 611 ; N ograve ; B 36 -12 575 783 ;
C 243 ; WX 611 ; N oacute ; B 36 -12 575 783 ;
C 244 ; WX 611 ; N ocircumflex ; B 36 -12 575 783 ;
C 245 ; WX 611 ; N otilde ; B 36 -12 575 783 ;
C 246 ; WX 611 ; N odieresis ; B 36 -12 575 735 ;
C 247 ; WX 584 ; N divide ; B 51 18 533 560 ;
C 248 ; WX 611 ; N oslash ; B 36 -12 575 548 ;
C 249 ; WX 611 ; N ugrave ; B 66 -12 539 783 ;
C 250 ; WX 611 ; N uacute ; B 66 -12 539 783 ;
C 251 ; WX 611 ; N ucircumflex ; B 66 -12 539 783 ;
C 252 ; WX 611 ; N udieresis ; B 66 -12 539 735 ;
C 253 ; WX 556 ; N yacute ; B 12 -193 543 783 ;
C 254 ; WX 611 ; N thorn ; B 72 -193 572 771 ;
C 255 ; WX 556 ; N ydieresis ; B 12 -193 543 735 ;
EndCharMetrics
StartKernData
StartKernPairs 994
KPX comma one -32
KPX comma quotedblright -22
KPX comma quoteright -20
KPX hyphen A -7
KPX hyphen T -60
KPX hyphen V -21
KPX hyphen W -3
KPX hyphen Y -63
KPX hyphen Adieresis -7
KPX hyphen Aring -7
KPX hyphen AE -40
KPX hyphen Aacute -7
KPX period one -31
KPX period quotedblright -23
KPX period quoteright -21
KPX zero one -42
KPX zero four 10
KPX zero seven -32
KPX one comma -6
KPX one period -6
KPX one zero -32
KPX one one -23
KPX one two 2
KPX one three -12
KPX one four -35
KPX one five -23
KPX one six -24
KPX one seven -22
KPX one eight -11
KPX one nine -16
KPX two one -39
KPX two four -38
KPX two seven -25
KPX three one -46
KPX three four 1
KPX three seven -31
KPX four one -52
KPX four four 13
KPX four seven -40
KPX five one -43
KPX five four 0
KPX five seven -27
KPX six one -43
KPX six four 11
KPX six seven -26
KPX seven comma -101
KPX seven period -101
KPX seven one -27
KPX seven two -11
KPX seven three -21
KPX seven four -78
KPX seven five -35
KPX seven six -25
KPX seven seven -11
KPX seven eight -25
KPX seven colon -58
KPX eight one -37
KPX eight four 15
KPX eight seven -21
KPX nine one -34
KPX nine four 16
KPX nine seven -23
KPX A comma 19
KPX A hyphen -8
KPX A period 19
KPX A C -34
KPX A G -35
KPX A O -34
KPX A Q -34
KPX A T -82
KPX A U -39
KPX A V -67
KPX A W -50
KPX A Y -90
KPX A a -3
KPX A b -4
KPX A c -21
KPX A d -18
KPX A e -21
KPX A g -20
KPX A o -21
KPX A q -18
KPX A t -22
KPX A u -17
KPX A v -38
KPX A w -31
KPX A y -38
KPX A Ccedilla -36
KPX A Odieresis -34
KPX A Udieresis -39
KPX A ccedilla -22
KPX A guillemotleft -32
KPX A quotedblright -71
KPX A quoteright -69
KPX A guilsinglleft -31
KPX A Uacute -39
KPX A Ucircumflex -39
KPX A Ugrave -39
KPX B A -8
KPX B O -7
KPX B V -21
KPX B W -17
KPX B Y -31
KPX B Adieresis -8
KPX B Aring -8
KPX B Odieresis -7
KPX B AE -18
KPX B Oslash -4
KPX B Atilde -8
KPX B OE -7
KPX B Acircumflex -8
KPX B Aacute -8
KPX B Oacute -7
KPX B Ocircumflex -7
KPX B Ograve -7
KPX C A 12
KPX C H -17
KPX C K -17
KPX C O -25
KPX C Adieresis 12
KPX C Aring 12
KPX C Odieresis -25
KPX C AE 9
KPX C Aacute 12
KPX C Oacute -25
KPX D A -37
KPX D J -122
KPX D T -27
KPX D V -31
KPX D W -20
KPX D X -42
KPX D Y -49
KPX D Adieresis -37
KPX D Aring -37
KPX D Agrave -37
KPX D Atilde -37
KPX D Acircumflex -37
KPX D Aacute -37
KPX F comma -79
KPX F hyphen 7
KPX F period -80
KPX F A -62
KPX F J -125
KPX F O -20
KPX F a -46
KPX F e -20
KPX F i -8
KPX F j -1
KPX F o -20
KPX F r -43
KPX F u -35
KPX F Adieresis -62
KPX F Aring -62
KPX F Odieresis -20
KPX F aacute -46
KPX F adieresis -34
KPX F aring -46
KPX F eacute -20
KPX F oacute -20
KPX F odieresis -20
KPX F ae -46
KPX F oslash -20
KPX F Agrave -62
KPX F Atilde -62
KPX F oe -20
KPX F Acircumflex -62
KPX F Aacute -62
KPX G A -4
KPX G T -8
KPX G V -7
KPX G W -6
KPX G Y -10
KPX G Adieresis -4
KPX G Aring -4
KPX G AE -6
KPX G Agrave -4
KPX G Atilde -4
KPX G Acircumflex -4
KPX G Aacute -4
KPX J A -23
KPX J Adieresis -23
KPX J Aring -23
KPX J AE -24
KPX K hyphen -78
KPX K C -63
KPX K G -64
KPX K O -63
KPX K S 6
KPX K T -5
KPX K a -15
KPX K e -47
KPX K o -45
KPX K u -28
KPX K y -69
KPX K Odieresis -63
KPX K adieresis -15
KPX K aring -15
KPX K oacute -45
KPX K odieresis -45
KPX K udieresis -28
KPX K ae -16
KPX K OE -63
KPX K Oacute -63
KPX L hyphen -105
KPX L A 29
KPX L C -26
KPX L G -26
KPX L O -24
KPX L S 8
KPX L T -82
KPX L U -22
KPX L V -80
KPX L W -52
KPX L Y -93
KPX L u -3
KPX L y -51
KPX L Adieresis 29
KPX L Aring 29
KPX L Ccedilla -31
KPX L Odieresis -24
KPX L Udieresis -22
KPX L udieresis -3
KPX L AE 29
KPX L Otilde -24
KPX L quotedblright -146
KPX L quoteright -145
KPX L Aacute 29
KPX L Oacute -24
KPX L Ocircumflex -24
KPX L Ograve -24
KPX N comma 1
KPX N period 1
KPX N A -8
KPX N C -6
KPX N G -6
KPX N O -5
KPX N a -8
KPX N e -5
KPX N o -5
KPX N u -6
KPX N Adieresis -8
KPX N Aring -8
KPX N Ccedilla -6
KPX N Odieresis -5
KPX N aacute -8
KPX N adieresis -8
KPX N aring -8
KPX N eacute -5
KPX N oacute -5
KPX N odieresis -5
KPX N udieresis -6
KPX N AE -9
KPX N ae -9
KPX N oslash -2
KPX N Aacute -8
KPX N Oacute -5
KPX O A -34
KPX O T -26
KPX O V -32
KPX O W -19
KPX O X -41
KPX O Y -50
KPX O Adieresis -34
KPX O Aring -34
KPX O AE -50
KPX O Aacute -34
KPX P comma -103
KPX P hyphen -7
KPX P period -104
KPX P A -65
KPX P J -124
KPX P a -14
KPX P e -15
KPX P o -17
KPX P Adieresis -65
KPX P Aring -65
KPX P aacute -14
KPX P adieresis -14
KPX P aring -14
KPX P eacute -15
KPX P oacute -17
KPX P odieresis -17
KPX P AE -108
KPX P ae -14
KPX P oslash -17
KPX P oe -17
KPX P Aacute -65
KPX R hyphen -42
KPX R C -34
KPX R G -34
KPX R O -33
KPX R T -28
KPX R U -35
KPX R V -42
KPX R W -38
KPX R Y -52
KPX R a -12
KPX R e -33
KPX R o -33
KPX R u -25
KPX R y -23
KPX R Ccedilla -34
KPX R Odieresis -33
KPX R Udieresis -35
KPX R aacute -12
KPX R adieresis -12
KPX R aring -12
KPX R eacute -33
KPX R oacute -33
KPX R odieresis -33
KPX R uacute -25
KPX R udieresis -25
KPX R ae -12
KPX R OE -33
KPX R oe -33
KPX R Oacute -33
KPX S A -13
KPX S T -16
KPX S V -13
KPX S W -13
KPX S Y -15
KPX S t -17
KPX S Adieresis -13
KPX S Aring -13
KPX S AE -23
KPX S Aacute -13
KPX T comma -72
KPX T hyphen -60
KPX T period -72
KPX T colon -98
KPX T semicolon -97
KPX T A -81
KPX T C -27
KPX T G -28
KPX T J -124
KPX T O -26
KPX T S -1
KPX T V 21
KPX T W 21
KPX T Y 19
KPX T a -84
KPX T c -83
KPX T e -83
KPX T g -83
KPX T i -6
KPX T o -83
KPX T r -86
KPX T s -94
KPX T u -80
KPX T v -86
KPX T w -91
KPX T y -86
KPX T Adieresis -81
KPX T Aring -81
KPX T Odieresis -26
KPX T AE -82
KPX T Oslash -26
KPX T ae -86
KPX T oslash -79
KPX T guillemotleft -94
KPX T Agrave -81
KPX T Atilde -81
KPX T Otilde -26
KPX T OE -26
KPX T guilsinglleft -93
KPX T Acircumflex -81
KPX T Aacute -81
KPX T Oacute -26
KPX T Ocircumflex -26
KPX T Ograve -26
KPX U comma -14
KPX U period -12
KPX U A -36
KPX U m -9
KPX U n -9
KPX U p -9
KPX U r -15
KPX U Adieresis -36
KPX U Aring -36
KPX U AE -48
KPX U Atilde -36
KPX U Acircumflex -36
KPX U Aacute -36
KPX V comma -63
KPX V hyphen -20
KPX V period -63
KPX V colon -48
KPX V semicolon -46
KPX V A -64
KPX V C -30
KPX V G -31
KPX V O -30
KPX V S -15
KPX V T 22
KPX V a -44
KPX V e -48
KPX V g -47
KPX V i -3
KPX V o -48
KPX V r -43
KPX V u -36
KPX V y -10
KPX V Adieresis -64
KPX V Aring -64
KPX V Odieresis -30
KPX V AE -92
KPX V Oslash -28
KPX V ae -44
KPX V oslash -44
KPX V guillemotleft -60
KPX V Agrave -64
KPX V Atilde -64
KPX V Otilde -30
KPX V guilsinglleft -59
KPX V Acircumflex -64
KPX V Aacute -64
KPX V Oacute -30
KPX V Ocircumflex -30
KPX V Ograve -30
KPX W comma -47
KPX W hyphen -9
KPX W period -47
KPX W colon -43
KPX W semicolon -42
KPX W A -55
KPX W C -23
KPX W G -23
KPX W O -22
KPX W S -12
KPX W T 21
KPX W a -39
KPX W e -36
KPX W g -35
KPX W i -3
KPX W o -36
KPX W r -38
KPX W u -31
KPX W y -5
KPX W Adieresis -55
KPX W Aring -55
KPX W Odieresis -22
KPX W AE -72
KPX W Oslash -19
KPX W ae -40
KPX W oslash -32
KPX W guillemotleft -47
KPX W Agrave -55
KPX W Atilde -55
KPX W Otilde -22
KPX W guilsinglleft -46
KPX W Acircumflex -55
KPX W Aacute -55
KPX W Oacute -22
KPX W Ocircumflex -22
KPX W Ograve -22
KPX X hyphen -48
KPX X C -40
KPX X O -39
KPX X Q -39
KPX X a -17
KPX X e -44
KPX X o -42
KPX X u -32
KPX X y -51
KPX X Odieresis -39
KPX Y comma -88
KPX Y hyphen -68
KPX Y period -89
KPX Y colon -74
KPX Y semicolon -71
KPX Y A -93
KPX Y C -52
KPX Y G -53
KPX Y O -52
KPX Y S -26
KPX Y T 21
KPX Y a -72
KPX Y e -84
KPX Y g -83
KPX Y i -3
KPX Y o -84
KPX Y p -62
KPX Y u -62
KPX Y v -37
KPX Y Adieresis -93
KPX Y Aring -93
KPX Y Odieresis -52
KPX Y AE -98
KPX Y Oslash -52
KPX Y ae -72
KPX Y oslash -80
KPX Y guillemotleft -109
KPX Y Agrave -93
KPX Y Atilde -93
KPX Y Otilde -52
KPX Y guilsinglleft -108
KPX Y Acircumflex -93
KPX Y Aacute -93
KPX Y Oacute -52
KPX Y Ocircumflex -52
KPX Y Ograve -52
KPX Z v -26
KPX Z y -26
KPX a j -9
KPX a v -29
KPX a w -22
KPX a y -29
KPX a quoteright -20
KPX b v -19
KPX b w -13
KPX b y -19
KPX c h -21
KPX c k -21
KPX e t -15
KPX e v -28
KPX e w -21
KPX e x -8
KPX e y -28
KPX e quoteright -13
KPX f a -13
KPX f e -13
KPX f f 14
KPX f i 15
KPX f j 21
KPX f l 15
KPX f o -15
KPX f s -9
KPX f t 11
KPX f aacute -13
KPX f adieresis -10
KPX f aring -13
KPX f eacute -13
KPX f oacute -15
KPX f odieresis -15
KPX f ae -14
KPX f oslash -13
KPX f oe -15
KPX f quoteright 20
KPX g a -5
KPX g e -3
KPX g l -2
KPX g r -11
KPX g adieresis -5
KPX g aring -5
KPX g eacute -3
KPX g oacute -3
KPX g odieresis -3
KPX g ae -7
KPX h y -19
KPX h quoteright -5
KPX i T -6
KPX i j 0
KPX k comma 4
KPX k hyphen -34
KPX k period 6
KPX k a -10
KPX k e -27
KPX k g -25
KPX k o -27
KPX k s -1
KPX k u -19
KPX k aacute -10
KPX k adieresis -10
KPX k aring -10
KPX k eacute -27
KPX k oacute -27
KPX k odieresis -27
KPX k udieresis -19
KPX k ae -11
KPX l v -5
KPX l y -5
KPX m p -4
KPX m v -20
KPX m w -14
KPX m y -20
KPX n T -80
KPX n p -2
KPX n v -19
KPX n w -13
KPX n y -19
KPX n quoteright -5
KPX o T -84
KPX o t -9
KPX o v -22
KPX o w -16
KPX o x -28
KPX o y -22
KPX o quoteright -12
KPX p t -6
KPX p y -19
KPX q c -3
KPX q u -3
KPX r comma -42
KPX r hyphen -28
KPX r period -42
KPX r colon -18
KPX r semicolon -18
KPX r a -12
KPX r c -3
KPX r d -6
KPX r e -3
KPX r f 15
KPX r g -3
KPX r h -8
KPX r i -5
KPX r j -6
KPX r k -8
KPX r l -5
KPX r m -8
KPX r n -8
KPX r o -5
KPX r p -8
KPX r q -6
KPX r r -14
KPX r s -4
KPX r t 12
KPX r u -5
KPX r v 20
KPX r w 11
KPX r x 9
KPX r y 20
KPX r z -6
KPX r aacute -12
KPX r agrave -12
KPX r acircumflex -12
KPX r adieresis -12
KPX r aring -12
KPX r ccedilla -1
KPX r eacute -3
KPX r egrave -3
KPX r ecircumflex -3
KPX r oacute -5
KPX r ograve -5
KPX r ocircumflex -5
KPX r odieresis -5
KPX r ae -13
KPX r oslash -5
KPX r oe -5
KPX r quoteright 18
KPX s t -21
KPX s quoteright -29
KPX t colon -14
KPX t semicolon -14
KPX t S 7
KPX t a 11
KPX t e -9
KPX t h 1
KPX t o -9
KPX t aacute 11
KPX t adieresis 11
KPX t aring 11
KPX t eacute -9
KPX t oacute -9
KPX t odieresis -9
KPX t ae 11
KPX t quoteright 11
KPX v comma -45
KPX v hyphen 2
KPX v period -46
KPX v colon -17
KPX v semicolon -17
KPX v a -15
KPX v c -22
KPX v e -21
KPX v g -21
KPX v l -4
KPX v o -23
KPX v s -21
KPX v aacute -15
KPX v agrave -15
KPX v acircumflex -15
KPX v adieresis -15
KPX v atilde -15
KPX v aring -15
KPX v eacute -21
KPX v egrave -21
KPX v ecircumflex -21
KPX v oacute -23
KPX v ograve -23
KPX v odieresis -23
KPX v ae -16
KPX v oslash -19
KPX w comma -32
KPX w hyphen 5
KPX w period -33
KPX w colon -25
KPX w semicolon -25
KPX w a -21
KPX w c -18
KPX w e -18
KPX w g -18
KPX w l -13
KPX w o -19
KPX w s -26
KPX w aacute -21
KPX w agrave -21
KPX w acircumflex -21
KPX w adieresis -21
KPX w atilde -21
KPX w aring -21
KPX w eacute -18
KPX w egrave -18
KPX w ecircumflex -18
KPX w oacute -19
KPX w ograve -19
KPX w odieresis -19
KPX w ae -23
KPX w oslash -15
KPX x a -20
KPX x c -28
KPX x e -28
KPX x o -28
KPX x q -25
KPX x eacute -28
KPX y comma -59
KPX y hyphen -4
KPX y period -60
KPX y colon -17
KPX y semicolon -17
KPX y a -16
KPX y c -26
KPX y e -26
KPX y g -26
KPX y l -4
KPX y o -28
KPX y s -23
KPX y aacute -16
KPX y agrave -16
KPX y acircumflex -16
KPX y adieresis -16
KPX y atilde -16
KPX y aring -16
KPX y eacute -26
KPX y egrave -26
KPX y ecircumflex -26
KPX y oacute -28
KPX y ograve -28
KPX y odieresis -28
KPX y ae -16
KPX y oslash -28
KPX Adieresis comma 19
KPX Adieresis hyphen -8
KPX Adieresis period 19
KPX Adieresis C -34
KPX Adieresis G -35
KPX Adieresis O -34
KPX Adieresis Q -34
KPX Adieresis T -82
KPX Adieresis U -39
KPX Adieresis V -67
KPX Adieresis W -50
KPX Adieresis Y -90
KPX Adieresis a -3
KPX Adieresis b -4
KPX Adieresis c -21
KPX Adieresis d -18
KPX Adieresis g -20
KPX Adieresis o -21
KPX Adieresis q -18
KPX Adieresis t -22
KPX Adieresis u -17
KPX Adieresis v -38
KPX Adieresis w -31
KPX Adieresis y -38
KPX Adieresis guillemotleft -32
KPX Adieresis quotedblright -71
KPX Adieresis quoteright -69
KPX Adieresis guilsinglleft -31
KPX Aring comma 19
KPX Aring hyphen -8
KPX Aring period 19
KPX Aring C -34
KPX Aring G -35
KPX Aring O -34
KPX Aring Q -34
KPX Aring T -82
KPX Aring U -39
KPX Aring V -67
KPX Aring W -50
KPX Aring Y -90
KPX Aring a -3
KPX Aring b -4
KPX Aring c -21
KPX Aring d -18
KPX Aring e -21
KPX Aring g -20
KPX Aring o -21
KPX Aring q -18
KPX Aring t -22
KPX Aring u -17
KPX Aring v -38
KPX Aring w -31
KPX Aring y -38
KPX Aring guillemotleft -32
KPX Aring quotedblright -71
KPX Aring quoteright -69
KPX Aring guilsinglleft -31
KPX Ccedilla A 10
KPX Odieresis A -34
KPX Odieresis T -26
KPX Odieresis V -32
KPX Odieresis W -19
KPX Odieresis X -41
KPX Odieresis Y -50
KPX Udieresis comma -14
KPX Udieresis period -12
KPX Udieresis A -36
KPX Udieresis b -9
KPX Udieresis m -9
KPX Udieresis n -9
KPX Udieresis p -9
KPX Udieresis r -15
KPX aacute v -29
KPX aacute w -22
KPX aacute y -29
KPX agrave v -29
KPX agrave w -22
KPX agrave y -29
KPX adieresis v -29
KPX adieresis w -22
KPX adieresis y -29
KPX aring v -29
KPX aring w -22
KPX aring y -29
KPX eacute v -28
KPX eacute w -21
KPX eacute y -28
KPX ecircumflex v -28
KPX ecircumflex w -21
KPX ecircumflex y -28
KPX oacute v -22
KPX oacute w -16
KPX oacute y -22
KPX ograve v -22
KPX ograve w -16
KPX ograve y -22
KPX ocircumflex t -9
KPX odieresis t -9
KPX odieresis v -22
KPX odieresis w -16
KPX odieresis x -28
KPX odieresis y -22
KPX Oslash A -34
KPX ae v -29
KPX ae w -23
KPX ae y -29
KPX guillemotright A -31
KPX guillemotright T -94
KPX guillemotright V -62
KPX guillemotright W -42
KPX guillemotright Y -104
KPX guillemotright Adieresis -31
KPX guillemotright Aring -31
KPX guillemotright AE -59
KPX guillemotright Aacute -31
KPX Agrave comma 19
KPX Agrave period 19
KPX Agrave C -34
KPX Agrave G -35
KPX Agrave O -34
KPX Agrave Q -34
KPX Agrave T -82
KPX Agrave U -39
KPX Agrave V -67
KPX Agrave W -50
KPX Agrave Y -90
KPX Atilde comma 19
KPX Atilde period 19
KPX Atilde C -34
KPX Atilde G -35
KPX Atilde O -34
KPX Atilde Q -34
KPX Atilde T -82
KPX Atilde U -39
KPX Atilde V -67
KPX Atilde W -50
KPX Atilde Y -90
KPX Otilde T -26
KPX Otilde V -32
KPX Otilde Y -50
KPX quotedblleft A -72
KPX quotedblleft T -4
KPX quotedblleft V 10
KPX quotedblleft W 16
KPX quotedblleft Y -6
KPX quotedblleft Adieresis -72
KPX quotedblleft Aring -72
KPX quotedblleft AE -129
KPX quotedblleft Aacute -72
KPX quotedblright A -77
KPX quotedblright T -3
KPX quotedblright V 7
KPX quotedblright W 13
KPX quotedblright Y -2
KPX quotedblright Adieresis -77
KPX quotedblright Aring -77
KPX quotedblright AE -139
KPX quotedblright Aacute -77
KPX quoteleft A -69
KPX quoteleft T -2
KPX quoteleft V 10
KPX quoteleft W 17
KPX quoteleft Y -6
KPX quoteleft Adieresis -69
KPX quoteleft Aring -69
KPX quoteleft AE -125
KPX quoteleft Aacute -69
KPX quoteright comma -35
KPX quoteright period -36
KPX quoteright A -74
KPX quoteright d -25
KPX quoteright o -25
KPX quoteright r -21
KPX quoteright s -21
KPX quoteright t -5
KPX quoteright w -3
KPX quoteright Adieresis -74
KPX quoteright Aring -74
KPX quoteright AE -135
KPX quoteright Aacute -74
KPX guilsinglright A -30
KPX guilsinglright T -93
KPX guilsinglright V -61
KPX guilsinglright W -41
KPX guilsinglright Y -103
KPX guilsinglright Adieresis -30
KPX guilsinglright Aring -30
KPX guilsinglright AE -57
KPX guilsinglright Aacute -30
KPX quotedblbase A 18
KPX quotedblbase T -74
KPX quotedblbase V -69
KPX quotedblbase W -42
KPX quotedblbase Y -85
KPX quotedblbase AE 6
KPX Acircumflex comma 19
KPX Acircumflex period 19
KPX Acircumflex C -34
KPX Acircumflex G -35
KPX Acircumflex O -34
KPX Acircumflex Q -34
KPX Acircumflex T -82
KPX Acircumflex U -39
KPX Acircumflex V -67
KPX Acircumflex W -50
KPX Acircumflex Y -90
KPX Aacute comma 19
KPX Aacute hyphen -8
KPX Aacute period 19
KPX Aacute C -34
KPX Aacute G -35
KPX Aacute O -34
KPX Aacute Q -34
KPX Aacute T -82
KPX Aacute U -39
KPX Aacute V -67
KPX Aacute W -50
KPX Aacute Y -90
KPX Aacute a -3
KPX Aacute b -4
KPX Aacute c -21
KPX Aacute d -18
KPX Aacute e -21
KPX Aacute g -20
KPX Aacute o -21
KPX Aacute q -18
KPX Aacute t -22
KPX Aacute u -17
KPX Aacute v -38
KPX Aacute w -31
KPX Aacute y -38
KPX Aacute guillemotleft -32
KPX Aacute quoteright -69
KPX Aacute guilsinglleft -31
KPX Oacute A -34
KPX Oacute T -26
KPX Oacute V -32
KPX Oacute W -19
KPX Oacute Y -50
KPX Ocircumflex T -26
KPX Ocircumflex V -32
KPX Ocircumflex Y -50
KPX Ograve T -26
KPX Ograve V -32
KPX Ograve Y -50
KPX Uacute comma -14
KPX Uacute period -12
KPX Uacute A -36
KPX Uacute m -9
KPX Uacute n -9
KPX Uacute p -9
KPX Uacute r -15
KPX Ucircumflex A -36
KPX Ugrave A -36
EndKernPairs
EndKernData
EndFontMetrics
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ./fonts/luxisb.pfb                                                                                  0000644 0001750 0001750 00000164626 10455707565 014310  0                                                                                                    ustar   jmaroto                         jmaroto                                                                                                                                                                                                                &  %!PS-AdobeFont-1.0: LuxiSans-Bold Copyright [c] 2001 by Bigelow & Holmes Inc. Instructions copyright [c] 2001 by URW++.
%%CreationDate: Wed May 11 10:14:46 2005
% Converted by ttf2pt1 3.4.4/ttf
% Args: -b luxisb.ttf luxisb 
%%EndComments
12 dict begin
/FontInfo 9 dict dup begin
/version (1.2 : October 12, 2001) readonly def
/Notice (Copyright [c] 2001 by Bigelow & Holmes Inc. Instructions copyright [c] 2001 by URW++.) readonly def
/FullName (Luxi Sans Bold) readonly def
/FamilyName (Luxi Sans) readonly def
/Weight (Bold) readonly def
/ItalicAngle 0.000000 def
/isFixedPitch false def
/UnderlinePosition 0 def
/UnderlineThickness 0 def
end readonly def
/FontName /LuxiSans-Bold def
/PaintType 0 def
/StrokeWidth 0 def
/FontType 1 def
/FontMatrix [0.001 0 0 0.001 0 0] def
/FontBBox {-76 -211 989 952} readonly def
/Encoding 256 array
dup 0 /.notdef put
dup 1 /.notdef put
dup 2 /.notdef put
dup 3 /.notdef put
dup 4 /.notdef put
dup 5 /.notdef put
dup 6 /.notdef put
dup 7 /.notdef put
dup 8 /.notdef put
dup 9 /.notdef put
dup 10 /.notdef put
dup 11 /.notdef put
dup 12 /.notdef put
dup 13 /.notdef put
dup 14 /.notdef put
dup 15 /.notdef put
dup 16 /.notdef put
dup 17 /.notdef put
dup 18 /.notdef put
dup 19 /.notdef put
dup 20 /.notdef put
dup 21 /.notdef put
dup 22 /.notdef put
dup 23 /.notdef put
dup 24 /.notdef put
dup 25 /.notdef put
dup 26 /.notdef put
dup 27 /.notdef put
dup 28 /.notdef put
dup 29 /.notdef put
dup 30 /.notdef put
dup 31 /.notdef put
dup 32 /space put
dup 33 /exclam put
dup 34 /quotedbl put
dup 35 /numbersign put
dup 36 /dollar put
dup 37 /percent put
dup 38 /ampersand put
dup 39 /quotesingle put
dup 40 /parenleft put
dup 41 /parenright put
dup 42 /asterisk put
dup 43 /plus put
dup 44 /comma put
dup 45 /hyphen put
dup 46 /period put
dup 47 /slash put
dup 48 /zero put
dup 49 /one put
dup 50 /two put
dup 51 /three put
dup 52 /four put
dup 53 /five put
dup 54 /six put
dup 55 /seven put
dup 56 /eight put
dup 57 /nine put
dup 58 /colon put
dup 59 /semicolon put
dup 60 /less put
dup 61 /equal put
dup 62 /greater put
dup 63 /question put
dup 64 /at put
dup 65 /A put
dup 66 /B put
dup 67 /C put
dup 68 /D put
dup 69 /E put
dup 70 /F put
dup 71 /G put
dup 72 /H put
dup 73 /I put
dup 74 /J put
dup 75 /K put
dup 76 /L put
dup 77 /M put
dup 78 /N put
dup 79 /O put
dup 80 /P put
dup 81 /Q put
dup 82 /R put
dup 83 /S put
dup 84 /T put
dup 85 /U put
dup 86 /V put
dup 87 /W put
dup 88 /X put
dup 89 /Y put
dup 90 /Z put
dup 91 /bracketleft put
dup 92 /backslash put
dup 93 /bracketright put
dup 94 /asciicircum put
dup 95 /underscore put
dup 96 /grave put
dup 97 /a put
dup 98 /b put
dup 99 /c put
dup 100 /d put
dup 101 /e put
dup 102 /f put
dup 103 /g put
dup 104 /h put
dup 105 /i put
dup 106 /j put
dup 107 /k put
dup 108 /l put
dup 109 /m put
dup 110 /n put
dup 111 /o put
dup 112 /p put
dup 113 /q put
dup 114 /r put
dup 115 /s put
dup 116 /t put
dup 117 /u put
dup 118 /v put
dup 119 /w put
dup 120 /x put
dup 121 /y put
dup 122 /z put
dup 123 /braceleft put
dup 124 /bar put
dup 125 /braceright put
dup 126 /asciitilde put
dup 127 /.notdef put
dup 128 /Euro put
dup 129 /.notdef put
dup 130 /quotesinglbase put
dup 131 /florin put
dup 132 /quotedblbase put
dup 133 /ellipsis put
dup 134 /dagger put
dup 135 /daggerdbl put
dup 136 /circumflex put
dup 137 /perthousand put
dup 138 /Scaron put
dup 139 /guilsinglleft put
dup 140 /OE put
dup 141 /.notdef put
dup 142 /Zcaron put
dup 143 /.notdef put
dup 144 /quotedblbase put
dup 145 /quoteleft put
dup 146 /quoteright put
dup 147 /quotedblleft put
dup 148 /quotedblright put
dup 149 /bullet put
dup 150 /endash put
dup 151 /emdash put
dup 152 /tilde put
dup 153 /trademark put
dup 154 /scaron put
dup 155 /guilsinglright put
dup 156 /oe put
dup 157 /.notdef put
dup 158 /zcaron put
dup 159 /Ydieresis put
dup 160 /nbspace put
dup 161 /exclamdown put
dup 162 /cent put
dup 163 /sterling put
dup 164 /currency put
dup 165 /yen put
dup 166 /brokenbar put
dup 167 /section put
dup 168 /dieresis put
dup 169 /copyright put
dup 170 /ordfeminine put
dup 171 /guillemotleft put
dup 172 /logicalnot put
dup 173 /sfthyphen put
dup 174 /registered put
dup 175 /_d_230 put
dup 176 /degree put
dup 177 /plusminus put
dup 178 /twosuperior put
dup 179 /threesuperior put
dup 180 /acute put
dup 181 /mu put
dup 182 /paragraph put
dup 183 /_d_233 put
dup 184 /cedilla put
dup 185 /onesuperior put
dup 186 /ordmasculine put
dup 187 /guillemotright put
dup 188 /onequarter put
dup 189 /onehalf put
dup 190 /threequarters put
dup 191 /questiondown put
dup 192 /Agrave put
dup 193 /Aacute put
dup 194 /Acircumflex put
dup 195 /Atilde put
dup 196 /Adieresis put
dup 197 /Aring put
dup 198 /AE put
dup 199 /Ccedilla put
dup 200 /Egrave put
dup 201 /Eacute put
dup 202 /Ecircumflex put
dup 203 /Edieresis put
dup 204 /Igrave put
dup 205 /Iacute put
dup 206 /Icircumflex put
dup 207 /Idieresis put
dup 208 /Eth put
dup 209 /Ntilde put
dup 210 /Ograve put
dup 211 /Oacute put
dup 212 /Ocircumflex put
dup 213 /Otilde put
dup 214 /Odieresis put
dup 215 /multiply put
dup 216 /Oslash put
dup 217 /Ugrave put
dup 218 /Uacute put
dup 219 /Ucircumflex put
dup 220 /Udieresis put
dup 221 /Yacute put
dup 222 /Thorn put
dup 223 /germandbls put
dup 224 /agrave put
dup 225 /aacute put
dup 226 /acircumflex put
dup 227 /atilde put
dup 228 /adieresis put
dup 229 /aring put
dup 230 /ae put
dup 231 /ccedilla put
dup 232 /egrave put
dup 233 /eacute put
dup 234 /ecircumflex put
dup 235 /edieresis put
dup 236 /igrave put
dup 237 /iacute put
dup 238 /icircumflex put
dup 239 /idieresis put
dup 240 /eth put
dup 241 /ntilde put
dup 242 /ograve put
dup 243 /oacute put
dup 244 /ocircumflex put
dup 245 /otilde put
dup 246 /odieresis put
dup 247 /divide put
dup 248 /oslash put
dup 249 /ugrave put
dup 250 /uacute put
dup 251 /ucircumflex put
dup 252 /udieresis put
dup 253 /yacute put
dup 254 /thorn put
dup 255 /ydieresis put
readonly def
currentdict end
currentfile eexec
H  oc;jtD[2^t$cdreYjRZb@e F>"F+$l
`v.H֢T)&wa{ vIt%Նswg,lonrMWWIZ7p6\5JHrtPbE~1Cewnb|!j4|xda%Hx.dX7 5mBtsb|Ҵר>'xfJiW?-ԛষW;OyZgn/22rKCZԜ{j=IA=;PObN(0J˶鶓>z&`WNt}hqsti'z3 e9!0$/^{)M)ٽj7zv#N!c/eks=@ Uͫ97@p15{
"7(QeßBaGh#@zNxUݟI5C-ҭF7yH+'P~#kݾ)t&$8LzUj?`GZ\jd	gDO2 R4R)d1iYӣfQ@8	'7`u4BspNi`Mr[DbQtXӕKsv؆"
H1Ih%'g#uBWP$R)3x_E_&
ÎxLO1Hά3TB'JOY3ఎɮj*e+r&zއ<'I+XRHpFXt&=?Ie.fZn*?CD4C16,#nkmc%^aӘw57F؅N0;,DQY
%}/r9=-iR$ XsqY`M1J]?_..{LKIϫfM0=6@ (Ocbo$T]ݟb)ڦj~rJ.VVɬĠ7'8coW_BO<ď/Wmp 2uK^jiVGNsGF/d17z{7iJ2%d[X3Q>F@uQpR6 @C%k@q߀/krn" HYj "C2 oȳ`}ҠbbYe;5һ$0L!xHrt`"F]#vY~0\/ $cUJ=>0Pa'`qDW+Tz9(l-]Zb؏DAMR	lG
< 9>H[&k<ӽqq(\Zqc<"6?C3R;9^&>֧"8KUy'ĸomԂ9mk@g"1R*<V)d_g`#A>1!kfE s@s9!?
8ᳫCD\^0Xv auݬB'<ڞ\E"oz[ő~#KR.fCηB-aC@"33P<e=9ё6W-?')C[=L'4ӬUV7lH*	HbB+$1ܓ-\bWr9=i%3e"PR쬂3s';#AMACOm+!9MN~j7ÖTb45*[i6⫶$v* `{0Xb'1rj8XyN9,B>DJ'"R4kw?[q7Ng5\n8{z[$NDcxNZ_4vnUQLWwM]j)fQ9E	Wþh?Ӈ)ugԩxQxWf^@51Oۊ9%wZ]FK|7$Ȭ#˯[
aך{kZQAsi,'Lq,F).aF O;zm/A:Qq E2:cI,VXxǸO\_:^fZdĀ)PfSE1ehm6r0gQ[DU	@ff`bfצ4h<o|ƶkj1e/ E"bTxJtL}Ew@X{.M0jDzu_u=v7@˼#jvEaoBvĄkv	GE8%1/1=GS `Ur0ǟ+W=`_U;)`y|\h^8Mozʘ+!3$EF& F9Kʒ9˳/'|J(=YA0@2'ؑd+عIU@,g
G|F*Ro˼"OJ{">~^=Oyոr"2w&Aք$s:ɐ4Q~Ox˞tHQKEscr(b7H_Q3K\KrӖG.^@f	$|Z#WД-
1ۦ eZ~!q3TʌHE|&)N?N9>Vvʚc2f8"UvAZrW!4+?f5z^z 9 _"J.4)0ih,Ts:i)pn-+HEgRCi5NiI$8yƛRN1ĉ̰jSQ/';
&īfx <a*-gJlS.Cׂ̀$utOj:'
{J3Y},l >@KdA:U,K(Xj0LP2˿Ḿ [0}"Uh<pm"k%;ُpSi}N65-kxaRX3hlftuYcK[(xtGa)̱~.*` 
WX2)z	^K6Q]^<آˁ?&e=z)WsY	<2?n֮>KJ_);" 5"թ>Đw%D"6_l:u7< w90`΋[zFt,nSUtB~Ѳ<^\b[@w|_7^uhӽA?d}Uv{Ү'OAH#{d3,|9	e"1:E%k FPp[AJ~|;;(d!/ _møf"'2wL%Fkr))"I*.0ox'p)NtjrB쮃*4DEzvΧA$x3q>CpWGvCi	oD_c^_݃P=6acrP}rb1衞K ĥ2 UXsϫZJDdV3=l1oewO=̬b8k<
=mo_y&&QO{/q4BL5)ķ\dh8!FP{4F\
l>6&P2bf{sH:]Jy':؍\\MOT)7ɵd֡H(`j;wd\z1D-PB#oPmK:)嬄QzhV1O6=09*8{ƧppfjDvH:4΁c +tUx7Pj;T+@_E%$l댼ŉ?Ep"pPVLhS	ICO2xW4ӑ i"QPe#u. JWVc`XYeolQ׊ޕrsDeKwK&IEܾٟTiVRB.ܔ~rWTR1cOf4ktb^4,:
7iorr6n8-R.hʛEfݨēAu+h$o6~0H*F}섷m1TF=1NAKdzPN͜X.E 9Y~?τm*9udb\L񃲔+\O~4z	HjTt kAAEF|R(Z	a|kU~؎!HѸ/HaIe8wI&,+tߞD黔fuTN^jm/T1KɤB9M*ҍgߔU
dB4Qһ(ZI7U9(5`quO% !po
>Cl2VcJ_p>TD>xĻ)zL_ӐҞY|ij6l^xXڣyY@u~Bq$^<<ݠ+*4 "i@8G>(_z8ruҺc	JYDm/Z 1aFtFq1	'`H1P7Cx:ϒ'@ <[S8	XA?h08}\ οwfw&h
ihg0M5-Mbc+nwr`AQZLw
1DFTόh)0RYO\BK"en c&X) 1>I4?+4sj[a4@vJ<VccI">NhBs~c{.5s(¸w
ʽ
͊(]bҔ*.AMt ybʖ957Nzpyye-Hx.n -q-l1H??Hi! r6tק];=~%= Xv`]]/B֊҈V>ߡQ3l]%o&˺ʱoLttnj*#q
/?.qS@8!OO!M)^vpϛդ.xVCZ#0:A	'<(\Pb͍v
S3!A3v%_yO|Mmk+B	:1M*dXzG1aoJ;^\m1$<7@p:psFTNJ%]>n\悶Y⋆]I`}t࡙ҞuSnEq2[#n$۲&p	bYǌ5/`?[751%-wxks [Wf!C8
s<`!| Ǭ7䟺.`yf6OA)T:eߋt̐6Cƌ@zO[6dַHo؈PQ#CY}47KJg㐂/_攫Hyfmtή{% Zzl3j$8MgDBr.8	tF`ӢGl[fsq+Sfo9i"lхgHIiaZut4ox.zz(@i8HC(dþ:Bo3o_laZS<,iExվ έųJDL;o0 s`]k'?9E'Q[.d#n/\4{Xw3+CrǄ̀CBw&4XPG2'$Nd[cc[:X!>ߥB3%uirF;M(4-(!#[+ABc.7
/
.XlOR6)&H 0pquqxA8q] Ǝ$lL4!_NAqSn!ZNÌ&bN]]"zf˚Y:a+
	.pÔ=|8m#(IӎEzVzx٥DCHnqF@28UO?D&=8=BISq̾jtڿ*eyV_m%B]j $Z֕;~:L$zHVYDa@@
孆FJd 27p'p[ WaUxũ
cii7r-Pf#r$56~$SOEz8 )4Z}#2Wu@쒓۷ "e[I2OUZ&&3kmrnu~BijKd{D7 {V	pbe/[{7`GQA&nnJ`9/40f)PtlnR	&rzgFEי+WЪM13_lʚ+ P<A
JDdwZ }a?#IjVΉڂƽK}zlYΨ^ɹp*Cf.B(PK*#x
c8ug8\aWs_$m3sJЯ`Ƨ gە'o[_SW%T=.+߶tkUNo8
F9Až~hO:5(1 wEgp <bu[FR"|VyP$ߢace\cX1%nBt~ȗ)9tpļtn@jԍa`Vy=ϨaX1.7kÓ,Nfy5021NU3f8v®uԵl,s.G+y+j t0ޖ4m^Ue@((wM
2S~mE{@>sXk˲*+,S?$=}7IS?Ȼdf%M9"52	V~E^.͑^]F]9r6ɑ1yLOw":t뱊[[I4jtO7dN%%[>MwʮwGww>X,tATe% 'I,|߿k=e~YxlKuCE޳ѠrDyPlgRnK.?g7jX_T3<id%RP2Vt:IbfɲwDQԈJܸs!40LX24P[<5FU}s <rg5h_b/ݡ4mpy+kGqJf7>Ep!Y_YLYHݎ:};HRR!8ɏ0ŵrj`X*UqiZ=qβ\Q_ЧdE .7R%1ЂK[ԧIf@RPKltѱ!]sނ>狔;yˤR=70MZCfuDYǄ7~gjÃ;aPҝ4!
r~Yd'zSq[PDV13h$4n"&ţ$[<2+qPTEoN|d)4s$T\jc=UV"~d0,O-3<_+U(=W1xI}KU׌bG$uuH~HRS_=|Ca34&>LHo|?O2	OAde/#Dh+F,b=i9`4.V2!<03BEz@	ǅ9 y$`o_.Qj̗~p;!⚠iZjݩM|Viqԡ3 \dkun35܏d#)\piLTL#r))03!]]bN=~Zݿ˔!
<i?NX2P%&נJ6%6GD!^kv(	{7c:3@Ī=KhVã&\}ȸ{}"ai]@:2)?*J]C~}!b"#p~4m=>%k܄ruR5K٘>]Dod;BPBr꠻`ŝ@
oɈ$>% wLd~/n+~hrx'-
0.b_lSq7re~.NnXKE}xl+a|M͕RxWEN&Nf$C4+2\* M~pZ0ϻN2=Obnx]`(0|!'Dw+uf5&0e=wo/hnN]rhSvkLa\}g̱zg2G=i8#Ih\j<|TEɏ!ŃI^R?~XzdD^!'E0-4%n!p |1u`{mPWh>> [i-^mJw&12n..vEG
Bδ&qW\AyA`"IuGR_Cd bTۮ-,4H!dj@MmIL&}ynz|јĬ8|ĀNF@4gRrf]%CH-q*Dkk4Ju~YKQ³clZI5T%ԉSS¶^0S ֦`btV-.x϶ ;\?aYݜ[S\I8Sj> A0ϲYH,ѴU$pBOU34(	&ͫCWԳAJY׬cR.|2<; uWFN7H%[Q00kzUPs^=RP8hO-M^Ph:1x,xYg* z_H8!=|\_m}N&v"by4َz'ZHx5s菬B$ZtnƵ@ޒIŪMMX*ZQʶ%hbT7ۿly@<`9[ϓ[D&`gzVɞlJ^&]-
$e1fTQQ9RM]":FTV*u6c7i^(Eqg ؞>8ln,Ll<#:d51oY1|.ZX%dɓ5$cUJ=s4m]|ءt*jr2<)J$Sxc|@ϕ Ik
.ϾE/$POE M޳mTW)Fļfn~?!:@}gԸC-ܽli(.Pgȓ@XWE8+t3//ȩ_xJ"㭉7n Tn$iPCo,c̪[@[^ZԈP"~*>ܛw[dEg&J]b`*w`9\.)8JZH:C䋸X `9i׷?:mь*ݐGU~ر_a+'@.2q) -ED]k^m8G@,TQ?pS"5AX&giarF6FZӽl	tJ/ک l_nk_
u3/1+w	~Âhz2s4ekTO+#GnfE+ILqbHU' KL~2\'p5	<}AG>#*Pϗ<4C@	hp `4pU:;OIO%Cx-77iLP2p髶~~kÃ
}bcr hh4nUG/'LP N\[smֺf%ɜ`I~!DZZKn)GKMY\_NHZ0 BZSFLTDl(܊2]tBjCРxe{|d}?D%b өQIG?$mz$cz[A|HjnoaGǮ7G\,xKz?5yGc5oĈ"|lJmv]lKX۾i"ugl>wȴ0gI73lz<R,2T)ԄLpr:;ǰbfNTy/8IOk,Ǳvc+yK^uDVo2YVjţ IYGOHn^фolJ;m~=S ؟WٯcJ%SSDwo34?
v׵bهǚA[vqp|/!1ii'Xb#&įB`n^XlD2!78|-jr 囿t0E)4QU=stVU^w#\C)Y^O՗4Ycy=~ZpYAN%g>pq-]BGP.o+pCYz}iUЊaZ~~cM
i@ohD85LƶP|TC (Mt2tn[/dYgնdo'oM(PmG5|ś[+89'oY5=73]3iOG.GMǕ#t	(& t':=
#RJ2ނ1;<OWcy9T'4(G'$LbdToY0o<e)X+cSwuPn.C20CƢ{≻|_	zJ׍uzVChY+F9#Φz4!>jQԞ#hVsL|}E/`RlܮK:vy?^[{ꀊXmˑ}n=2<gx˺N@Ow7+.VPS
u>X_vj6PV512%abHyw`.`]d*~Blp!pZ0FV;7Lz}4 uI42?/ΣBuoN*8p\'ϱ%컿Nkf	tvGV_p8c+Xw7G1H4@LmV[ڰ4(I	ӄIeeȳ bk
!gip81|UL6YB[	Y~9ZlnT\B1&&Ip8NbKDQqQ\;mv/2SQ/?ĸ|`q[izPKAl×8s]+Z=S'V(_&nveaeSܠַ1[cU<e=ѹ?MAY;CⵒRL*0knނkP]JbٲC9؅h`nEۂLTJES4hdf')p@5Qќyacr\hi;$̫ aX*U*?ofms}RXSEBr`UX9"iW8g\hL G!q[\1dHhe@g<E5'pP5#1)E@8`<џ
iOuВPcbZQ>]й>$QH@B<s.-{|i(.Yyw|*4yt$Ob04W)DM!mu8WU&S%%dl-WӖV5GLꫀ1'ET׮LO5ɪ7d+y-졒rb[POa8T|AF,D)T.RӅ`)β>Q:ULk|ͱԮm-^Y7p2"K?h\@(&)I|+g#&XUϙ[%
^q&Wgii~iaϙ@[%z2ʰA4xZݙ;P_Kv1ϬVZ?d{},s`R)_gCͺc},=$?"{\g4XW-u`1틔x	@=jx)S4Y6sZ=G۱e*5rrb]mC-2;`Oev\خ^V'\ij)]}[<gEOm )@e0Nkc*FN&y9ļ l| }d/طz7݁ԓ]nH2~G/v,9j-Y3$rPwxM:dW6WJNPL^0; a3GZ(~{fWⓚ7X:)˿ʓ %a04;1e6Vy|aŭX1D-PeS/wUM&tkÓkGjuEMKq0rAiCp(]Q	J!Vئ
I@fLo*`Nm>;P%ٽ}oP3g7e?~Haf+WP<{[.: 9_!Q5v7F!Aʻ2+_(Odj}q3>,>ѱ_I7\+v	Aɚa}7Nz~S}n~l%
\?,&ݕ)!`tQ@,G7m'D<LjPTfzYF:6]"(Gʁ̴SNR錐I3$ٰFRIkqE3~MRVUzSİ"^<&Vͦx}#=n]M_@R~Ⱥ',v$4CE&}ZSͷʝvZ?ΟXG[X^nЗsJJI~k=ll%s7F)V`Tw@&h!V~eiU |R)CTr靘KE&~3Th`-WP|zA(j,NI#qv!# FGWyVuhd&yg
*= N6\27M;35dnb1IbxM.ˍ4`a˦L+$/E]vjvPT8+٪!ago͑Q#`ey#pzs/^wpIvr=AeMIuqSXT`f@<0S,)XyBCF3F8Z3X>oֵ%K#Wr§VOZTyR!ңw*׃7x,nF4ľF,m6Wނ.6ZZ:t"=㧂5aS:,p;kwQ0NYa8L)!YziOh5@b0Z1Pp"A\E:+){Bܑ/%oL Xp|7Gp_&a.rqKS^pT*8*޷z@sZq	D~$|pvȵ[q`Lm(~A^v1s&8ÊK7Cf'_fU:z+AG<3x'K/E,L_4=9W*S?C!\Ϩ)Mjlr؇aGń5;y/;YgI'vTe者KàO!̏i&(=g*7Qه8A^,%8` Rfj~wD	(mnÆ)9"bK[7L9߈#:F3tfؓ_z%;Dfjڠ+gm*3fd/BOȐëtzx	3)j}TN0tZoj6ɽwW+j"Ɋ\Z.'J+TYO?B׳q>aH*j.5/ZGK0vqPݷ;5.i'R<ٲN0:=Bȅx-9ULkOi`v|^PQϴ固}+z01dڀKx8ݟO`YMЃ%{Ϣuv2ͅCEs B7x&P,&TzXw͏@<g`;(׊ї՘bL͠]A=I@Ha)XC*C9@HBxAѲ#n@Dl(DAn=J|䉀<bi2hd3K`9dzHGٸ+~8z5Rr@bzeB͝5%<A9@76[;Cg32JƘK.MS]GYOjm(hKވ^[ߞ)|sh86SC377܊2\//0NǛcw9~0?N?ARNa܏ /nU_Imi[ըC`ܛnRqb*=5ɊWnrfϏ#7شÎ?> -fM>sސsA@wf5x cxop$Uu9A[_&Qq{pEi|xmy'oW
3df\AB6CbTckP!'%o$0e-D47"*Q|㪛ۙ@z?d@sKjV4ES#Qz]۷iN#B+o^(#}$i}EYƬ_L'lR#꘠KW~圻wŋf'` yaT,L1%7?9%+'K8]&0'̔}L}w{ΣoZUʛZ?AbU
S1v m>q7x(${/x 糒C=m5u%OI_4d"?}{FhL%* jn,*zet uQA	kh˫PqL6vh͕|IIj3C	Zcus觭j=EE+]'~zoxwkCk{߭0<9$pQיB nyqD&k"<S8C9hCm5D}=غĖ7<?-xgQVm
9 -\џ8N2n[>`F+%nub8T#ЌڊYI^X'*l 䘠c9I@ANBşf#iYowYH?- jgBv*ިJ++~naz_4MMRm,(zn5L)Flek`
wķW(>ֹtSFt4q^WpD+pGk0iM}varud]3@$GuI\]6$Bsm nf¥4zQF*Q?ld?\^~ABoZGK`՝,`" #-4=0z<A36ʦt66UA6%X\\PL((+56$ttKm{:LMqkOiT*7"tF&0/%\ZbŶىP=1`y9axv)ã=F(mVzLg
2#L&FAnn(-gfVEZ_.ηo7W|m>p"UBiXC߮ȴNo$;/$@#pt׺~wڈrl2Ydc87M[p?)aOy'	An4V5oYk˓u'iZ1;S-ػtvZװn7Vf5AU'2נ3P#?SSoT묾BwT֔r'Bۏil;Dp{OZRqژ8*Zc+X,+IJV~Ux#1P]-bЈ-lZKb9lU<K9A61Y(8Ot$:u{4%p1DP(7٫|*C~;hc8G>'~~itKuGK9$gͳ3}:l+ЙV\؎!	XHm$:+"f;TJoz܁v'TuHgt|A\ҧC%FgG9愂Ws*40ͩј6,-DnŔԓ	D:'8%AO*ZsA`86sHLq2Fh퍛UE@'UK)4FwUYaAM\j+c{?ѹm HP3b%AX(3Y>1}YTb0 .(j
^TvT%%<x>b~(eE^LJkSbOtѹJKO-;/o"]D;\Gm`܎gd䶕Fa31>p[4o	mM~GdG06'$|x =Mۜwn*6XȺ	}",F<Pg"S*Ӂ4uen]E8DH!̽3[8?\dC"r4)C"wFeN> HDrx6ZChE	gѾKhes&mZI7\rpo.\#yWftu痬n-Jre*,	A2rhq文.è0ݧ%W6S!kyz1NӅhښR$i;l:0DB1k;!X,`>Qd{jzjc3D*UګaxmWcyΗU߄Kb}d5p%)2/AX(N:axD#Jɢ`Uz9<к4Zo<Vv* NJL'{`yu)K-kCZ9GE?؞QODgx)[c?zqpE75d^%')\E1KE
ǵ~LR çb߀F\+\%'wԤX$5n_b/#(/hBy*~<7qX3qR"Շ\WY|[<HLY,KH~;´˶z[| c.sZE_uGfYi	}EEA
~o@W<]`H^#=1k:4rAE8P1)yI_Q᳨`WJT-UQӢYz7WH _J5#
7t$)U_'|+S8V\XݙombA;t\C=H|_{.0yHCޛS7yI/GRjpCF6*v_mf:^Q΄Kkѓr'D|AB
qZT
TOyId8"qv"L70攌k9E*O@5[}=ZDm/Z U3R呚0Qg]R(@j;(u#,JHm&C`mzURՒ)Y1zr1=7|`!xm4[
qܻ58]: _yz{?8V٥b<q^aWyO?LеtYa mgoE%/NaV?_F7֐Se@`
xSHC%a벸H=I|b*grtwه`/6PfsϷѻJmzkz,	$f%)gxY~{VKܗ,(DDѴ1\'j$Yܮp'.#x >UX|"wHݷ,\ާ܉x΂O oM\98/(2&f	(j.p>^{j@<XNZV]@n]kQ>ϖÏ<SoSOro`РiuAiFX%cԙ܈K+?b5nQ/Y8M@\Vٓx*(\{jYyTts$ L\/Z9{X,A	酞NZˊͩS/:6)vAyVeFt$$	p!_eVJ~1¦喳+c	f0]jVo{!`ݾ$ÿWӉ"хG~eg0"$cХlľ\(ߪ=2܅NH\<Ԛ@=_su.'L./f*I>V콇"ƅlZGɖQ[nNvM8`?e$uf_z.rO2!1nu:SQ)T-19N;FVKwPO	PK <|yp^Y$ZS ]@v,T'FVXa ,e25ՕV{}7\TC%k;<Af ,h}$3|c&>ݏ3f s=drjZ3ϞMm<0L>|.N!]V3m$(oEk@qҙN¡7q&M|tZkcQ+W*'})4>'%c7cLON@|eZZm!ZҖk#SUp[)'A$H`LOy3e.1 eV,cCM+z't}]l̆x&)1XĲ+ՐOp:$
ş_y"md8D2QSԪB47yDD H,5ݘ)w}C(+9=ܥs {ĖF}vhx}h<9i!W>P6P=6j
kNa%?X~<d"x*LsG-=yPK[숞ɉ^fr埊M֕BG=/9	!NFzȂ{UMҬ̱Ox> (E>7#ȏ6 Al(]Cp%^)}{-ORZݧ9[cK?[ogoqb6ʁD
nI |G/Bicŏ5&tőx4pĕBXg[sTV7Hs+,yw4l CcLl|eSڜuDZD}=ac@to=W~/Drv^*E^˱ʞ=,`9rW~4Tt4. v7JJH5
P?5>&YԎ	]
xԘOc"juUfC?Ҝ*U:<xғeC{_~~*vW20(塈[y+\Oy!b"ЫS)ԥey+(=CpqIB7	#s8PWzY}oО{e, }a7}9*Nȳx^e3rNe]C=*=0:ۑ|>comg'HKgYKN%=EM182+D oJ~~u}WHeڻDR=Vy:QP.L*eէ/!&*pR1Q,ȁY3(㝹UnxJz!C;iKTCo۔jt"	@ĺLՅ|?Vez]vW9OՉ,L0~=4I-~gݽ).Qi
J+KVPzx "}vZwC~Sqr-ekFp8HeECWK^k㧚ySr|+Exo::퐡8y-D5d7|&Y%ZW=Xke6*={	_9(%ƌгKABI4muuqw}LF~ a֠vus,˰=;`ByG2<eS;cI˒ǟpȀ}o#|^9Uq`4+pc6Be:%Zǚ2o_!Xޞ#^%3	2Fͣl2y<u*:BukOO7E*LN7fRt!+9oialSb̗l+Y4O~["a=5i/C#:y&D
1L<MRϾw49AY+vc;:`^WSeYcà"N:tZ1JSDXdHG.OЅ|:n{ʋ3^ 6.`s*zeBlG; ṕPYBZ\+$t8lͅ/vIW0U#!zPGb !b\
'⹏r<"fXTөnZqpHR s%'zNI̿ہN*T*\imBy~ ߑS4
l&rNVےU~2E$hVG{O?]OCM!Ԃ-EdhZxQdAŶ*`3hIīǲ:ЀdQyFNO!߂iTDbdE'0ϖOIinUg*Ҽ\V!U	^"[Q\
=U; ox*2_dYňQðp̋:up.ǗD|πz܉1<YcC-3OuZS=VҪLyLD2@og`f0<EL)V!tc5ы-sтێhfoz"o/Hg{sǦئFQQYk&}P-sxFl#+EAֻ1/;EfRC^}Ab˽ +HRsޘXsU`PlB^
ĳP,aAVD#Z"BL{w1X_s6o"t0_7"?6HbQGxu3;_tŘq;{45T%JS|{q܈$egR+8R09#Q2w$=$tr3$ퟅ@Iq,oi'n;X[+55nǓ&@^?.-=5" T9^clS3mޜSFlqE]-~&K-+KWq.ZXeH93g[V&6R|--%%;-) Da7ޞUWKPH><Ir5vu+øpgn/IFuWDj<=7LYjӒ[-!p#2%tv`u%y˺8(vo`E\6/\
Bshhˊ< sɚC0'}Ƚt?DoA]QH>UY5xl^%	d7ۚZeZ]C_哈@'q"{j8T;\v̤L"a	6 1쵗;$d[݊#<BP[ 專e@HѓXTUR=dUXD^hXi'G5$ICqΝS\gR_997:|B< s,aT#>leЊO(l.wIDBV-[TXD#!hy Ν0Ǖ`}iy\ 3~M	0q)A\PidDkhbq1dWEEe<
<$c[m+5Vź!W|ocܳly/9@=A g势R>&&F"X߿6^d&>f&L'`%y8_;ׂ(JX4A|=C4J,UV2 ny1LwWS=cvefcqkM-4L43u-b$`'Nꫀ1dS>ιrCVk[\-艓㟾yK("Q+2G!m-4KwA}޿:xFt= -<X/LJiEdrX?T<tBq|JQlI#./b)}Jve< wȣjIŲKc)ˌs"	)!Z֌rDw5+- bdz0yEs/ib,-*f3euo_MGμ LH`45ugDxCn Ԝ
qO$U""SMvE&o1"^@p=jkg0kZZmKib 
YB%CeQ۹mg2xj	a& #g5qq?[>0gEkDUAA(Ԝe$!k]քj3G{W:vFEj\;$^\$

3ESǠ?E`Bx[S&yjc;!B,H2xۢ
l|u:^I"R.bi_&798W|,zp`Lұ{!]1s@B*Nb)vN=?5Z~hӍ^:'.=a:'	ݲo"+/nu%mLނ|Sh՛gؾLOcXxbF
,6L>6SD?^8"JB%@U*szAʻcVOx\(]MvRL2#qIxS7YH!O#/k3ca]*siPNWu8Cv7Ć+E)
}d<	qɋTz˱pepot1TdA~2`65<z	j~މdK4"`jTHePg@6i#A86j{:`k!}Gǵ\G_<XMȎ%*'[AGv7|+; ^@{\, P.c&(Y|Yd%cJH& {)`!OnZ)̾Wy/QEAvsvOExV\&q0WJGMx8O<>rTU1S$L'31m#{F*+Tmt+gH:VPݔ4nkFOZN$
lpyy+/bzr1LLҩS]}+)1ud+Vl5Q>g{:7R;~},ȊQح!%Fi.T?_1P9&<6a+>L3y[l.aRFy[vGܽk4~2j#jTTw.V1rzڀB/.!^%		+ki+^JJ#{z{Tt!#̽kPJ袍[;|}_en$CA+FO҅_n(&\b?qZO1o\=$qzahg2\e7_g{)W,b!ծ_R078,#:5(1/D-og-@CZܷq	(qa"MFɖ))sq\XPvGUTrv,ndq4FFKw	{qXYhH%?Bk"fk%fHzGJALo=Q9z$I!~gအApw(.ttvT*631R``8]:G/h&7sQ\;mv/2dikwa7]ow	sb30:#W6Kx^eG1a/E!ĢO+9t},w΀Pvo㚥O0zi^J̯xSl}Ч&m0fͱE8-n$hne	wMkYL :Wv Cg?\jʹR?59k~nw |']9"#~?^MwynǋHhS4߀`R>}nbZxmiC/߸`tFQa	b]i=v|.J4"pY#>>. Y2)ſb(x8TW :V l>_Ma[W2KcqG.ɋbIJK(W5&AQrl~|R̜<A>50Yp$[h(3#>ɑ-s/EgkyUKYM,ɾe,;2Ce{;<~ŘqzSDx&R&֬ 5*X ~/v|1]<Ej
Kx??7IWTҜb
:|Z'])Ct7د/wqGZtKmxL]J_iw}y
[طveDo	KHF
@~+֋g]mN)DK`d	GޕAM&>Ut-17^"81$jEiLyOݤ8?{d?0C\Kuz_?X_Rc jpQѬ%{p	A-vgٛ^?zK,X$WQ^H޷}A$8CPko
uin߮FF҈#N#pAŧGLW)&r.[S2^%nPVJܬ{8NȤK{ZJÓu/]ؔ'FEtBYY`;h%ØIqA,eO4!d`2FGa4,/_ke /a=ѿk߹g͝pB|3" wdb`įvʚ9_ws1^Vņ85χ(ѭ?~ )!{nڍMڷĖބ$# /u38z^޻DCV^v;i~C$w ݴGޗ^BSeV~u7-PM_^rÿ_ڈ@Py&\<|ѐ"? cBl +Ns`lR{`[/uWnWQmp%zԚ$"k ŋ-A.QvחJ,?]?xqTM8Q*~=
.e7TޯFpMNqvWI@0\jVY fr  >x=-*FXl><szwhq[CKgP鿬%DZ7;s2[	bU3f~L;Kb#D֡-DeNO Ksy+i,]@\lٶOׅ*={c<}	a:?(e,k*Hd8)64<%eZrxBK"&Mܞ&>	*MwY{8R/)cxR'`om1<5>k?N)H64`&'~T4w;8Le[:ݴ҃(	^c'j
bw_R|~3ݫe0
hf䎚tP\.$y~W7@Nr!%>	m.5QwU41`nObw	t4%{p/2ʃ@1Gw)rݹS89<
'w<a&^G1kg(_iNu7*ldFﾈO޷-W!$1;q`Gf1?'|7.=~qS@Ζ8jWih:۔ZtzB0S7җL+Rzj-GƠ@!/x^ude\Cސӗ;V"1}BNg33@_L~\RߥVC/:77SW1eA`J1.j
ȿ`%QQV	P4ŶH7pT"BPA+	\!X[#m&;"ena䀜̓fH#߈bJ1*ʕ`WɘK$P=vMx9v2K5<`
Q1O(q)*Ax3Dӧ#ԠÒ
*aP
cݓd7K6
{9@|l3Tvv.ACeJ2v~kN!q?q [mg)JPZ)ySU56$ѱ[oSMovSr΄., BdE.$;W.qsYe"^^CY@rfjY:!egQs+NE 1~Swy^x?r}5κ9G3Q34M*ιS'ø}Sj'߉J{Fl,GEr?]|ew uF5DoN^&E}\X#MoGi{`ݹڅ}NVD{=7vaAknty7C0I-KLٔ̈̉-Kspv'2[IVu0(DǶy?ld@:h*ts^5f2;GMř'줄W*.dP憽8px
zy$Z$B η^ƫiTUWl6A$.8zJf-X|,lČxeuTB\gB4c(R`15;[9s¤3p6:LF5 qw7xl\O߶UI*W?-I`Kk^@pD{>ziK'LhvG. C5?'Gϸ:_F2%Fw~]º
 _jZL)	L8V &qb1c-6:j&orHըEуC;Gj1dׇܛGjs":pxٜfh!lop{`qH(Wvicv၈-62$'s6 >3P	L8nY/˕iʾ
-1NgE⅂@:f+@%TwFj,jjQO
JTH6?v0&D4f欕󎍸*C^1@dN!JvuzEr%xv%F[ ĎOJdAUz@<$IAʦqnux;DfU.A\A<|.As~UdG?FvNm!<"_$\3A3nzASQW31S$tW'OOہE1HŨT.cR\x3*\[˲4H$$;d̂v"(wHi0s#RަMb	( \!KE)C~hdUu?ͧ18<7T(6
DC_l?Su/&NԸڰY?6pBگs)Ìގ@/cm$+9_M.؈=ezc%'Æ ) ȳA@1@䥥]/3ѳqzíOE&~^xFQQEE50mR<DpoHe}a.EWިꓨق! U|B)̉ G5DlCPdĿx^I#.r%_-PCaaҍcrEWBVc+r2ǬPS	ޤj681/{9n\;WȪah؞P"w uBOc#)].d
qd$#o\3v#u'7^wC엔|9c,lMEAg@k:4Ҭk̋aɚX$dwQ03.H9j)f^DtL%Vu0f _fk>aI
V{2>O#`$lT,[_V{'脞xl
 5{Qt<=׿zq&\Mt0ũ۫=\:by-B,"ƚ7$`Z6׎\jTj<~j cJJ}m1<2C'|qĺEhֈg߃<C<=g,4`"K40/Sb(Q^5Y1Fm	Xx\͵AChR9	m=5_ݷw\#p҇ᕉh>=Zg
ǟ˝F=~x&*+1!SN$cU/#Y]Fiⶒ& E|H27)bEUIeY2uRl,L>MGԷnzfKzs4"/]8.+zeX)!o/[z)n҇o(d$)F53S'CE0T&`qF{NT[&Θ413}n%VstfUpZ̄zUXBM9^[\fغ7߶}0dQݝY@rM	aoln/𴫿ƭ'cE]bV}RX?J[BG8bf >y"o_;]8[) WoXSJ\[,;rAo򛑰#4r >TnK5/680vۘxo׷1$&Vovp>N?-&JQD4L#~#z2n$IpoFjv> 3VɶV#o#Q`1vQЌ0u"e{-%8M{He(2(2!&MYKug>1%#s lĂbUwg^x@>;OY'L@qg-/ =3q{(=0͖>ifkk1HRWH}'ބ{×@!3.Q/-gV≢IO(~hki|}Rvg$=h6"q郻Aոiy22tݝYD5#@pΆ/qz5P<wQ^j.NTJվ7yZ|7Dv4y&@	KQh3QQ(B\-*hvȖ4*f`#V<ӤMG+u|w:,'?4s	tTή/	#xxl
3VX_Kɭ}
ۢ!н1_#]k׉vd =ĭI_pbDۛ!sNcɢ)@ܑЏn]"0Bo,?.W0j} {S[2ՒuՓny'0|$(|C.}kjଃ Du4:O*)6]rLqpF;fVǐ!C2R;c |fcd&/A24bEݎXû g//nIH9!_,403Dܹ.g*'XKB+m`CRpmD&tӇwa@!҃~ᗵ~2ٕ)H3
skj RhƇA];^^ MMNFy/ts$f@X\RxP`7
˥a2i(] /%^'euMn_WI>X[zkžbPy-U$ 䀡ܒ:4SXiXa)&0(h%as4nTaC0E1_hJk#~x̕]\zV*cμ	[6KO$*~mŹ;1LApZK0SKGރ'"ω 1Nct>*H	*2apjnC-hC{ՏH+rKrkXQy7B'īҌ;-s,cSc}dtCV.l[6{TѦ>=	)0s)pTTD¡> _	dMMyJ^tS(3*/:3(FC0ZA%1Zݿ!ϣ/A>
'YjHYx6\>㏁kӝ'oL;gn  ڿX)yЃϢk,2@\8%wVvJ%^wjFd ʘo+{WbMXHJq)7B_@u+J"K4F|5^%6vڣԝ+a\L1`Luj΃Q8yhR&SBBTO3`o@)و눵⺴/B6{BhGAD=

XrVTTD6=cLе?<\Z<fC$˔9B{(4e} 355J6ˬ~^z]n9n-Կ(]i0*J
_-}结Tc2_N0VfQJ@5BHO#֝ÌQ׽<$ﻌ$E1wT:XwEB43,ÂBG/k/٥J(d.[ݍZlKu7R:6O@?b ޓ44늘ZO3hLq5ؚ%~]p:`\ڕ$D'#g> ͠=lKˑ1mu=ţ(̯v2UXqT*ZnE|(׏j<6=r{'ʏ-]#4VOQlx-8Bs>+gDStH$ƫT_+W,U+h7+JoXb c:5">d=auS|>̽k~{W	z #f<SoʉIO0:/_p9B)+a%זQ[
.C*cj?W򪒹q09R S&rv ^Ȫvn lJH813l4㔐͸6ƝM4|BBA͢95+:4T&%\ ׎n!TXmPQƣ8}f
;~@46(pF:1"SCm+<"}IvnkI|DH)YV_iZ|(+.KOCfKw)"$!cx&3E~$ CƋ4OyH]pg({E+?UEq$p4d?%T55,.5Cd[EYea7) dT* E#1ʕ8EcKeS"h/<&qGr@8Bf\ˡm7amƅ/q	2ӗ&i1Ń̈sW`8;o(="RLR7k/oQq=S(yVIQkX.1#	ϛJG%M'o	wf9=mlLkɕk6wV_st*ނdʉqЊM;p<>{"˛<~TF/8w2_`k[ҩ*}ƢҧbAxBy/
.3ߗdn87rUct=>CKg^b\>(`4j\-2kүz&7}Ѣ4.:q\@XUsOD}`FX<j`=*v^Sa䀭(QТ)T8jsQaHPxxαهܿ5D)8Dmbކ:hͽ;6 7N3!U+ۇ7s2@.(1jyGagi<beO䝒g֦\X,[|liK=umo:ioJE핡7KO䄦^n^a.~vWpr.532oJ5fm.)"gy>_|/_N3;[9EHjRnph;"DK(u!. #ItX)pоVl&9GJNk6 KJ'ݦsH=%bE< }v.htZR6ם+p:f` Āӣs?E8sHX#Fަ\ϧZ ͐T- 
4|<ܟj4d*}:"缑'J%Mg]sWGx7J띊"vQ05g}-G7%3E
t2v
L9t%=͑m)5[UHc6QTT	YuBmibqb'Nq#8v,Sπ2iQWψB"Fwɼe2IT>	jg*\pv7kfa-˾I~)rxSm %L)P%TaθÅ*!B*UFG},u FLs]A4樕'jгmc\(.d+MQz='{&vD_vQ!$As@-fjIǅME\i!O6uUBF=C%Qڐs
2Ȓt6{{(N?ĀsG4,gQ)"!}A@vZY@'[O)#rxڒE)9MO}qہoWUL
0?񽸐=҂!PY?ps%~8)C rWGftU֏;`Ekwp68%QB$[n^
;mU,G$ddb@B# !x8%EUC"~3o{g%^#>]fWu<$WJkh4x.e;<ַI1/Ʋ?=;ertSmNWph^vq4|
q
r 	BטF~yDj/ǘ؞`nxl7l\:XvY\wS2߬Z".'r䗲B>n?3|Y(K];HD|\~r|92Lply ;Dm_#T(ϧǶ!94wW?Mp3\y˵|{8|0?-;p&6"LZUQ-7YZP=
{*ԟFк̛ W<n6#*˔`i%RڡO;)\,!L0Xz5eǜ#1{g.R,-egϘzu&_Auɞj	\:]NxÍ)`0Ѯ?dee<_wY.UΣ;AXȿ BA &Jz0Aq̥h7X:TcLmI9Rjz֤l+zXP¿5n6khvC{Ϝ5ݲe=F\#ۇ7
/t0J2)zǛU) 9Aa	+0Ʃ|v)"oǃQ~)>{'ׄL,{/5tr*cBFU22\\MI`J=ՅA?brp 0[3)ȘRor>)!B LnPy<7@+C}dZ ߞq(9InZf)&,.l<qFWPLu^u;&[RPPUL +Ø8jEі O'SmEZt*5#FM>v3iE @qpQ(8AQ@س~~?fAvL`VʭͬZ# 
<k&$Krt˥ %>XM)JB+Xi^@Ps.h\@f	pӰⲻmȑW?sބW ^	V1)UT7Q)\|]1C@eחUGx` ;T]12Re*lWZ¯gBF"	`}  m~6hTmmx
%zچ]VRm7ć2?тG\*'xgyJ6ƮiYۋzcqy?BOסp']zX\wSF{`tLYĠ(╜8M!ſEit5GbJ߮I,+hyMZ	)v_D*S'LMss֐v_\;E2QTuH9_pC?Ξ yR:rxgWl_?s[稸fĖwщ{ŮJQ]bY)hU$~'(akgV=7|~φ`ʭ\B~:	PtM_umIo4g"f/paIPyS!*4 >Ё}/6ؖ+ӌjpb~\Բ&ե-vF?(_lw\/3IYCfÐ`SV]6+L#ٰ?cP緀N(4dn%l45CE3L%Oó83=YP$@3`oΚ(<YC9,]/*:Y>)
=;[C5)I[*HT*4",|̓1sza6VU3lZD=m[-2ǦӺ3ua5PRSBefDpWZ>;:^Sv8 .sDS+	{Bȷ{2a.㫉b=|*IaVէ麹 7R M< -¦MP:C_00}.H`cQ3t͑=V,vN"|	"C=k?Tv;w+,;=xfǜ|?m\JyEr8YE)#f
ZmiZ3y		$뢃{I]xBFܥLE.(qoGX8Fwc<Q`1<w$Rz:Z(fvJ{Xݯ#z P]v;g&OpPڜ٘߁Jֻce:Ʒ%G/uBVeíR=^"Ԯ߿=%2?NW!DqמcU?/rɿk#i%4?sR }ªSGaðd+b*璄L	'ƌwE&U|#LsuHW	erZ;ThR^/X1M2Y:mM8>KeV3J4[ n	Kn(.`\<-qkwߤYlv@P'@44ZKy`)
获nVز6W*[zTS^+舼w#bR@y_.]57"7v}*~iW	Sjq3.l߀D_J\/!EGC:$B`-JJ_B]o!vqe'wJyOT@y`FCoҟk|0 z]%`VajtՁl=KW4Z,TH,.5WCNЛ*Hkt
97[%de
D'mlK2G|<P!aMw؀X8Y{9λ'B|k@_XȀ8?7&{GwPSX/BA^}
JXh@͉!	S?Z~stzlN¥Bh*z+"41uX(!g=i6|_,KWC0]+7IHoEH?ǐLk##º^ ?&,Q!U'+lџuwkjFВ?.7Bm]bͼs'$}uTn&t8':؍JUFb1jEQp#PO~5h0#N_S̪Πk`A|TfǾY4CFn4ɳ
Kwucag8{߬w)9TC>
2 ~D\gdK2܁CSn_-%x~.狂JQz_C%f5inA˒8ƵA8m^"_FJjH|]6\>abL/4X2Q="}t]H~%g-[P~(^jP4U~5@<=!y܎[\?H~tWXQq?KY_	rc.ѭdw.{DFKj@
෤YηPyr9ތ^} P}&b,ɇD1Gup)M'f'VydM aGIV*\m6Kf(JyW5pwBL#`ACӎ6v*9Nn|nQ.t<y/U_.<ɕ}Y߇0oD^Rk5-S{񻁂R+$Plj L7/U4飯,w(!<V,tȭ6&Β:$=Aziz-*>'qo&_!LQ$ᬋU
eA~).Z1NsT*T
GjN,Z)蜠}WEe=1sB`	({O=64Y?I=dF}6|͓g^.{ObufI1jM(`v}`uQ>Xda\/8wpGQ~6}jyZ,qEzXm15Ng.J-]ȗ^<	MxR1'v ԕ.hNNBDz[:$mbYArfytϜ-y52I1Y,:1a}6#(HH8R-;!ăxH62*\<K2%cfdoҦL^Yo0ǕȔTۂ'_K()D:h:"Oɠ۶И@	l>X=LH-mր_503<MOt:
 jIa<_eRING΀VXՖ -^fF4occӝ<453JݑTln7cf1x֝?涘%8!De}r!{/|!甐X+՛&+)+C|z(?kF1+r?Gur{i	/EPpZU2ќ&] 2|0W>X8]?k')줷>a`n9EQ-6hj@4q/Ho|JM+̭̚êHaS^YFNſӅ#i+-p#8C4"Uw`.DJy]JTęry9|}:F"RaDа81)KGuQxf}pg0bdB4guI(2uTƫmdh{1eB3RjM:
HNI<S χ&;z`oUр@O-^){<K/uU%pY!!nOa?0Jb?bcVN0~haʣ##`Q䆋K64۾ak*<mdl]Wt[a¬@=:[jEc r4P#0	WULd]y$N$,tD;{i˓9mi<9ԉ9^ov	rB<I+7[;3b[- NܾG,;|M*BQf3s7s­48s^ƓDaYVV rΜ/ImE+RWG8]9lך]spe@]/2(p8j~Pl	ptE逤*F
6r Uy#}ǹWE0$f;@WTE|/Q=f9$ړ oBiGYj ~>4͉߀V&cv@!wޟ9AOn Ǩ<dT8)}َ>xúgx<+7eNSv 5?< CfD.ݳR$Wnj%o


o/!{*vkd¿o+}5	:liщ͑oX71יcQ@@NN
[;F=D˨Ezgڭw㨿ȢDkdR\CڒuzkqMذD >@
,+Ā"x~H&Wk	o9Q+hr"|G헥1
A:PD2+[U\6:$QPT]vUPZK:oۀkIeb"Q(g0_54NmY'2EW,FC
Sw*g_v$T.tyy:MxȒK&WnP`8[\A ^"CbStb"rJ6S_@M3.ߥ$;ta0+{GPL0kl?1!n*L}fOKPB6쁐{bG-V]Owy(خT 2'#}3%"&z́;ҿ-/hc hƸQBPRn&B. xfbD&T囀MA~&gc=?uYмMAƠ5\#ݢu|21kc]BkRT
UυUs-7IcBW9_6<H/Nӣ022U<ehY9}J#7%vsg_R%+O3Pѳ,:PG<Us76yHq ZFݺa
Enm&4IE8Q%EN2+jK>	FRUO"`_zDdrSv,{uxPǝ?욪u̦Чv3ZiJM'%Aehȳw?!G`a%|GGmql-R1Rd)QꅚM[|ˋ"_MG-^ґ|-H4y&Л]ai-RU4NdiJ0cL\q )jηXjfr71s]u]$dV@wt#Nsv|,!	#Zcx2*

z"t}_GK|$/͑gTC&Yvݰm9]q=ufHI:d:S.05@>P1F}s[ww=Yt(OpӋ_b#EPT4$mg={HNfLOQ>] bdDGB1<8	El6ngGHCl<@"\1GL#g5/wd6CEeRC:LyӤW{):z9Kې8*fX4~fZV#~q[' D15LFAz~jSV^p:yb=kDGNڻ}̰ojh^7=Ix Ҷ0:Bij{&g#)ah=?b@WR {sl|WIOc-RNüQLʂQ2k;Tj(z,jU@&łNDHWSnRR0=B2H>xAbEETu38\gFzDfWU[_-<Vb7/$`f!/z]t%axQ~m[ϒ!kpe)Ѕ1K os[ϰ? CG9,d#'\hĕk[Ξ2$i|/G
IdT ^ك-9a6>	
PSi9eC{{~,|lU{
mzt2{Ce6$2+!#R^4Z;ء2[κԌ~t,_:/Ȳ`Y%NUX)]A1<
@zѓr#N&g@Ja4pg6f 4{^-ZhSVH\eŮy&/'bk]w>U9gU!*xNO944mԇ)ɸЩ#z{}A;[eкcݨp[7Ij3A`A]KNhzYŒظdy^]{oq,!ƭISK~	4AsRD
5, m1>w<p5	_)#,"$II	6S[ƁF¾LY2 .a+Nf?;8V$U1؜7-ү<~o,Z-͠jEy,3-A(g`n?s;fŁE1T=n*Btm3!;	zwLhJf8IRhS\}hY Fv7_hnµj陯b o0mZu &n/רF,\!Cׅr.wkfE\fl>wbufc^?.Yɲyn-R*npA)7sR9r)HP i]l>!)qfzhB}HŗX@~c 8 H 1fQͰq@[qD]Ը&pw7,zڳz?H_p@<OK_<Tvs/ SQuS	-i9v9K)@C_uhc:8gND Yd7Dgt*W;sebbb`2j#IEv;@un-qȚƁKi2rJyK^XϠбcڲi9*G<C, q*\BZg9RHq3W[ pss4h8\;h방1{&$hy1mkg2;\+$t.~)`g0)2Y Y>H$#+d*Vgǀ"-!T˭cv
a\.H2$RD#,$Q̮v vmP>oHXl]{y!/Yp P\	X0t|!yc YzrK5A+ʅ
Aߙ#oӍX<J glʽ3T)=5Nk%t:Qϳ<#IvzG͌WxGർAbQ&VR1^RIĦ:76,٢}$\fcrH+sn^mGM/Ge om6pFӿh\%rsjS`޶w1$	!T2SQu$םa3ʩTة]ϫ+VyzxϺqT!Ro"l/9y2Ki*V-0{ىK D"zg\<[ Ix$VpHorݫu}zí)fç'E?^8uT&+l
rH!OS\6=':1ަ~.Pw+	TS?װy@$kR6 ̫WHq
-0.o|X%IՑlC8=kCxC^=Jp(@4F=_J*ePwOR{nkscǖ!˓BxD|abONF{h[k}zt&B&[&Z& 
 ᾨuDYQ[kTyU~ hH{F2j-f%Xa(Qڻ+:f")<#R6OWTԧm 2tgB^_f(lz?mؓa5QX'UbdYDDb,Sn"rXuO3-Kg	)1<@ǌU[
Ϗ&I3N,[d^3H?uHŶݯg`v2
k
3(kAWuS1/	~TW^(f$˷> j랃K	a~"9[;r`H)bJ#u_u}T2]Vt7-)CҀc:Oi~y2(KVAq#'6tf ۾p_?>:
X@oVddʧ]P& -hU:a\u]CgR2ĤQaDi!F7KY[ADѓ/=YD˴+u?odkљ\c*Efm|UQaxKt>{lbEJm G"8ZC1	K6O`,>]ȡg'SFSMT L/V]+# CtRW6ϸDH͖Մ9]3xϗIe$z8/4z/dy{\QB#^Z{|R諆PLpBry61Ya z&􋬘¼f%u$F:\t:ΙgW"FI9-'fjU9  ɢvohDKZa.sY_07fMߋHzG=lܜŋv)+Xtůf5IՌIJH`yۓ2e@E(g8^xì^.-WWʷi̵KgR!w]'ƹ;=LAz-_I:+JTx[[K %#1-zjϵijϺ:!r*tZHMP@6KtvRw~P&׻ڢκ|h2l_1dAl*EkE74w$?_bY7U6XFoqla3vњvk&wJM+N?ow@Bf	Gw࢚X)kåaJ
)cY&/_¾f'KDZx%Qd%y&MnBaʮ)׎nev9`5#85e`o":a+`w+ghyFYo+H.;) ZIVgD8,O!$TAc|D99K3ISEQgH5aUJEz-*a]_4߷!c4jIUOޕIfCT+IjtLqvҟ]
Q>nG-^,F*fvHᙶZQN:;v$`jT[жɻ,ܗK\[Vj1ZHswH +ؠ(bެ*j-d`VH|512@Gq)Y,2ʳwqI&:;	Duż_zƾE^Ets5%gQ(Ӳe;jF;; 檜ҋRU-Ȱm!x.עz_!Ry?$`\y3F6Њwy#?>k;;]>r.AAj{tef ܱTg
TsLf $FЛ}aQޔ'_Tn4	CݜX f,H{x29P$[۳;Ήjxev~K۫S(d? _7]q F0ǵi0>$˧Q^?^$٤/3d**b> oX  (!
Wq'elo;	%2f\,8SϚ8Y/Y?^KI QhgO	vżar|z9;,1MGa2Y)mk
 Eǘ!q >Ignɏ׮颤C+{ֆC"`ypTZ8e2ʠc<3O>fs D>BHY&IPP+Q@[O2fE1qeD[QOf6!% .` 0(qb #jq,ʮoH*tw*uD܅^BˑuXCyeZ2XuVImZV	ӄ=cmGbg=D鉈tn̙?	wK#ӷ.wt'Cw͇/M]'v!}8൓1"UXB%rls~	QP1+$VCLdf5#
RZyJ&vH=xC美|0⩒OSX󕔌H0<}߈H*\|`U<j4-CVΰP<g]li(1+ N^J*V:Nʦv?y[+%!|0_u-IZӲ	[ur۹y%;BYîW5"W*cPޢ3#>"
"_~<"-AY2HrO5\n%OIJ*#x]5"Ҏd%709TB2?	&H'ZW%3fއE{ْψѱ|HqIgBy۠Ԕ30Kbc.^*D	S~Q.y$/U$&d` ӈ8=
Km	hBɏ)֦;%ؗQo
V2@D5ֽ3
=%~Ya9VI7^LQdk@x:ZV)pG>iZL~:o$oRYV6 e޽*R/!0~3ww5{~q#Q,*ќ0q,#0mW#/nB0KvR,#ASjADku,a0NM1Bs4Rc>]Su>!ϚG+B3zQڟưbqY@IVl-5LH2& !Ͼ1Y`f#YN~G^Ž7#*.ޅq}5f5鳺9ErஂsN`)NH8wrj(e<fF&!^ƉFtAgjUbJCMQrOs\RSI_R-@ab.(\*aj3kщtQEo/4X|k0I
F{^Fο)E=(&!<Y])\ȷn8:HFAPQ=/(.8c bcG(]zvX}AH7Lbݖ;͂gg[Ęu=?B	67\3Hꘟ=<M`>@aƚA86 ٳI)@@*D&X!,|"s\+ŶPyEBVݧ|612Ǩf	W=tR
+Zx*$]ͼU6өX(F[[,@|Mnm/+뉺zH+Bb(Zfռ 6ӷI<*7ex܍{-n[GɬBPV՛sH]n-!'8aFԠ`"z	m薏d.?}yOrJ5r6rK~K ==n\+)̛H$v KZFL\Ӳ
橮%0׹`D&%D%,<[EEo^4SCĪp@57Ҥ ̳RvdQ|M\Cά^9m.3nf>tŻ6:HzdaH{K.R8d>ِ3 bVMˏK>JO*mmffVvm$ޝ,DVݼih"6.ݮEi0ke:!Q"%E	Lʑ]|~R)碿,~O^m.+ÜWPW};?ge31zx<KgN7ň,-R!ߡB6ߏM}=hl-F_82!}QwvTcyJF㜟9k ĴC8'(XLm}辖>a>ۭ]h7uo]*qwƝ"o. aS굼rqnί)/_(_/0$۽R>:E==Olг, ;OK'?۾d.YR6$C^_pN+^d,$g9e쵆NX̔v˺G"9YR̂%beycqr2˫%O}*G)A2.*dEo-%vsJ*e<E+q*~ܘ|v<P爁#\=V]҉pE!'R\+
.`mW<Rx
kx*K@-lFx	[\n}v^a-uBi(KNp]wo[FWD0|ijʹ*@Tp|WWR9fdW i3OFm_s)
;[^Dt`>/W2H5dQL
̑rwD ,Fw+7xrwQw>ߦk 5R`.~?+Xs:M6rDk͟K0]jkc]?]xN}vxHMГh2|CMƅq+7wmѮqFZ>@7:_^&0WoZm鉈?>9D";~i7	8_;$RrЖTkGc@%N|,WЍE⚐ؖ܁_2wШ-
g	
Єա֥,΁/.׈A-NBSd+D ܿM9@u`h}O6[$;oIhh{g[\Aur3p>&OzH/G:V_Ţ!ڐ%M}$u[њj4ղQ}lǼR&c[ wO?/qPL7U9NKy@: im4+ Zh52{|$:| e/Dmrl1݀o4ˏ_c=OƊ{~y?8萞`a~cVqeccrfzHg:-y =8:D>.`H41VvڼNQ!56DF(WqdgڿiĢ4iΎsdɈSF\؈!AtP iZHqO-Bqo宓^[2#6Ooz HP{!Ms@ m`'#\1v9^2|[Pq Wt6p>DY SwOh/{#v,Y"*쏩C@ʤ]d
DQKf2bD)Z @»;DHq|v8OS) Cmikf@Ӯhj$BkyTcJZقO|~_%{U*9v7M..X,*qSA"R=E$o׾ <N,&2~*^	{h<We!&KC7ǸӾ%7x){HE,_~t]l"HCJBbqtv%H*qܐԢItN5GScݓok@=aJ>w{,Uzpnhh5 %{JWa)zN1@6<<#oM=P*(-MS˾O֠](hT!=@K^;d(u>ԽlےفԎnV!o
@0F)/
r܆8EZ^(="K@ Ѡoq{h#X|^m[mђ:WI$(S*d̘BlL+?9 GY|1Z o&Aso,M'ޒ	(c^VwwSvw(P<uv&5? -/4ԣ#IٴC/R{V}o=@/<]
 <pi4bEwӫO	&kH GP-c2tXvz<2Y/{57.axK;ӏn/}	`Q78bSjf9*AZTrDkSc;#Xͱ;_ADٿ?'Eɖm.VBQdEh;N"s"VNї/f=WuhYBBo.Z6]Y0hkb7aL;4)T08@칻H	QcC1-f(:O̮=PMŏ@.(Ň{Җ@}=^jU4fd;$d9ĳP<_4}@-fœ:r7σZ'V:_x0|(Ne9ScF1%mo'(Vx=א6l$wӔ5gHSFBZҢGU^m)Wd.5JPl_ S\\G-Pf7`&<a7~`9VN'	XWBZ|~$"-3LGn,2"RUtYSK+N|Z7tQrؚsXO\ErPH.{`7ȟ_hp
?ܻq/ԗ$Cܭc2la(ATn@vMZyV!궎^$3h[2ج_ߗ*1mDȼ1idRT[^*|<q8/8^uBqv҅mE۽Y	伓U,l01]O߽Mȃ(L)501i:~EBٱF6 [7}?#	<+%AiK%G6Q^=G;J*m4x~}e:(2V>xi1(i/o}@4cQJjZjwmo3N[bpVG]
I~)8ߚ8%of#@\|M/~_H؆sd[DAهݖT@x
H/6 N-2rI5Yv-)FL`eM(-uj;`!"ofo㷀j?3ZKa|Cj&0OSwxRyMQrOA@0\ݤ*4\PsDxMmyQ8?4k8K=GSwT"7ļMj6ʖt-嵿W
-KTWKU<Ѯ]KtThׁ&ޥ6y}ZᔞxX
7 .l.hTrZrFpUKUZTokUG3;|NiݼW1faH(m1ޝE
sto:$}e^[HZEJXXm'/&eZm#5"Iml!e8S+̭VH[&ܬ&|=Sb7o_󛊈F+C|.\!}{1*OcAj5=ܚpcCٛp/BM1_}Eꡦpڗ;<	LHa|2gzkUa-*σP^r"elBQ!W]^yMYYc淘贤6!*ĘU;!- #j{%IB^Dpնe%E'yZxnyn  0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
cleartomark
                                                                                                          ./fonts/luxisb.ttf                                                                                  0000644 0001750 0001750 00000210524 10455707565 014323  0                                                                                                    ustar   jmaroto                         jmaroto                                                                                                                                                                                                                       OS/2jaR     `cmapJ&f  |  cvt      tfpgm*Z     hgasp  	  t   glyf    ֐head     6hhea<  L   $hmtx3yb  p  kern`    vloca:C     maxp	e      name;  4  postJ~   prep?=    
vhea     $vmtxiI 8      3  3                          B&H     D\                                                              	
 !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a bcdefghijklmnopqrstuvwxyz{|}~                   @ @    ~ &~   " & 0 : > D !"!.""""      &~     & 0 9 > D !"!."""" b  Y    O      ?x&jPmkު޼
      <                                                                                     b c  d  e        f     g      h    j i k m l n  o q p r s u t v w  x z y { } |    ~                 	
 !"#$% &'()*+,-./0123456789:;<=>?@ABCDE  FGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghi jklmnop        xyz  {   |        J   B+     D    }     ~ }       m 8 2)       o a 5 <I l    @
	 ,/<-,/<-,9-,9-,<-,<-,<-,<-,-,-,-,-,-,-, @
   ????-          9      #@  /<</<< /<</<<3!'!9989V      	 R@  	 0+@	   	    0+  +*++?<**+1035!!(1(1(  sW+   #@   ........+*10!!!1(>1(=PP    Z   @  0+@<  
	 
	 ................................+?<**103#73#733333#3###3#}jTjkkjSkjjSMWWVV>M  c`i $ ) . u@&+*)%# $    -'''0+@   $#(*)%( 0+@+*  **+/+*+105"''5'&'&5476753&'654'/499vRe-FKV~wwcq<d#tSSdF7Z@fbiw~Se)vUod!z   T    + 3 w@  0$,0+@($        2 .(0+(  ....////+*+//??1032#"'&5476"32542#"'&5476"3254u_^^^[p^^5^^^_Zp__%ccbcQdbccbbbQebb   - # 0 8 {  5,0+@, 1  .$"      73	(0+@1.$"  ..././/.........+*++??10!!'#"'&54767&547632653327&'654#"rBQkvwlmwFedR)<\[ngOtͺNDs\\YYj@CВr'/DebbF(a~T  S+  @   ....+*10!>AJi  Tm7  )@
	   0+ 
	  ++....10&'6mv:Ze9l7zuKX   =V7  )@
	   0+ 
	  ++....105676'&'5=u<Xf8k̿0ys          i@A  
 
	    
	 ..../...................+?<++/1076546'7'%73&#"C֯|8K}"B!7$(P
3E$͎$+   h cC>  N@  
	
0+@    
 0+@	  **+**10%!5!3!!iicii  |A 	 7@	  	   0+ +*+++*103#!567{AzAxo   J`  (@
   0+@   *++*105!J   |  A  7@
   0+@     0+  +*++*103!|AA   @    ....+?<+103H  P#   ;@	  !! 0+@      0+//+??102#"'&76"324'&'&:܆ݯ'. ԬaԹ^S/     . 	 L@  
 0+@	    0+@	  **++**1035!5%!(P(DJ  M    c  0+@      0+@    	 0+@  *+++*+?10356?67654#"5632!MQvfv{&&ڊ၂>BcQyix}GFinTpoflS   ' d@	  !!&0+@& 
	      #""0+@	"

  **++??10753254'&##567654#"5632#"kWV3UgەwxwGx?UCC-6TB]]e=1$oww     , 
  `@   0+@#
 	  	   
	%$0+@  **++?<**+105!3#!%!vl_uD    i  !0+@		    0+@
    0+@  *++?<*+/?107532765!"!!#"qqEE99Õ_HKK}D
gՅ   4%  ) \@  &!!!0+@ 
      (0+@
 
"   +++/??10&#"632#"'&76!2"32_[(nn#{b<<;;bNNmS;||YyTTUU:5  q    6@  	&0+@    	 *++?<+*103676!5! PQH^{	  V6  * 7 a@	  /!"!0+@ +      3-$' '0++ .//.//..++??10&'&547632#"'&5476%654#"327654'&'ij).tt˻no?J܁O={	s`<</(jX@Gwee[\ΣfN\{|llhRcpz
͋99ZY4-Q  O@  ' c@   !
!!0+@ 

      $0+@    +*++/??1075327655#"'&547632!""327654'&^YZnn{b=<;;	N||ZUTUV     J   E@   0+@     0+  +*+?<+*103!!((("(  J 	  `@ 	    
0+@ 	   0+
 +*++?<+**+10!#!567!0o(no((o A(  h cC>  #@    +*+.......10%C%Wc   h5Cl   5@  

 0+@    *+**105!5!h%5  h cC>  #@    +*+.......1055h%W>+,   _  x   y  0+@     	 0+@    0+@   0+@
  **+**+?10!5!!547677654!"563 (++rd2>5SQ{PQTJeY<pD;N21:;   = J @  GA!;3
+0+@'
 !?>=&%!      E7/0+@?>=)&% .///../../...++///??10%# '& ! #"547##"54763233327654'&# 3277&#"3276緸pޥ8J^|o,:Io
Mvaaᗠ&S;]]F4]l-Rnk-Wr2.EՒۉH%aq       
 E@
  	,0+@   
	 ...........+?<**+103!!!!>4<ŗ8uPN     ~   & w@%  ,&%,/ 0+@     ! 0+@%  &) 0+  +**+?<**+103! #!27654'&#!!27654'&#!ȁMYzy(LMNAIJcbh>3,>o_^`A@no")*ktKK   P~  Q@	  *0+@       0+@
  *++??10! '&76!2$# !2~{ `w}9_     w 
  _@   ,0+@
     0+@
  0 0+  +**+?<+*+103! !'3 4'&##Xmxxӌȷ      W@  ,,
	/ 0+@     	0 0+@
  **+?<**103!!!!!>e9c8      	 O@  ,,0+@	     	0 0+@  **+?<**103!!!!,e>  P ! @	  *0+@        , 0+@!    	0+@	   0 0+@ !  **++*++??10# '&'&76763 $#"!27#5}Pql G|THoOXy239_씓K      S@
  
	,0+@$     	0
0 0+  **+?<**103!!!!!44Y8]      (@     0 0+  +*+?<+103!48    N  0+@
   	   0	0+
	  **+?<+10532765!!"أ9:4ݫ@;:zz      
 B@(	 
     
	 0+  +**+?<++103!3!(h2h(       @@
  / 0+@     0 0+  **+?<+*103!!4
      M@0	
	   
	  ) 0+  **++?<*+103!!!#$/f8]	     	 E@( 	     	 0+  **++?<++103!3!g8   P   ;@	  ** 0+@    0+//+??10 ! '&76"3276'&Nط俿Ofgffd}ggͩl˗x1     -   c@  ,
,0+@      0+@
   0+  +**+?<**103!2!#3 4'&##Z]]A[֒IIFcv11   P  & \@	  **0+@        #0+ ....//+*+??10%$'# '&76! "3276'&",sX"ļPNM	ggTe͹ffgg"d idkq       l@  ,,0+@
	     0+@
	  ) 0+  +**+?<**+103! !#327654'&##j?v`R>VJvE9M](YClq1+  c	 * Z@	  **(0+@(       "$0+@$   *++??10753 54'&/$'&5!2&#"!"'f&Q #>XXc۰FF" cr__c=.24>cZ[3R&'`?#!&,?[cblm   (    F@  ,0+@     0 0+@  **+?<+*10!!5!!PP  &  P  *0+@"  
	    	1
0 0+
  **+?<+?10!3 !# '&'&54FG''g5u``sllNmBXd    >  '@     .......+?<++10!!3ItQ8     u  :@# 
	   
	 .............+?<++10!!!3!#-e;>8	  1  )  7@!
 	   
	 ............+?<++103!3!1;g-F:F     ;  F@(        0 0+  +**++?<++10!!3Ubt l\q  ^   	 @@  ,/ 0+@	   	  *++?<+*1035!5!!^i>+   n+  G@  

 0+@     0+@
  **+**10!#3S   @    ....+?<+103   <+  G@  

 0+@     0+@
 **+**10!53#5!1ح   P  #@    .......++*10##Px    `s    (@
   0+@   *++*105!s   UUD  @   ....+*10#!UA  E;c  ' @	  &*!0+@%      "0+@    )0+ ***++++/???10%#"'##"'&5!354#"563 32%5#"324aF:qZZ
OQF*)@bYXwdbLp߲?)*   +   g@	  +!0+@       
0+@
    0+ +*+*+??10!!!632#"'32#"(ijPs5uv+iϖ堠\   J c  Q@	  	0+@	      0+@
  *++??10%# '&!2&# 32 ݛtqa`v1;+;ee  PO+   i@	  +!
0+@
      0+@    0+ +*+*+??10%#"'&57632!!&#"327'ijP(t3uuϖ~   Jc   V@	  !*0+@    
0+@    +*++*+??10%# '&4763 !32!&'&#"힞
iO{N؈,e(Yd4>Ó`1?Wg<   4  D  l  !0+@
	  0+@     0+@
	  **+?<+**103#535!2&#"3#rrTcT=O!Zo  P\Oc  & [  "0+@2&	      &	  *+/+?<+//??10&#"327#"'&57632!!"'532765't3uujkP(YޛIIϔooNOWFF    \+  T  +0+@(	  
    	 0+
	  **+*+?103!6763 !4'&#"(OHjw(Bu+i].Dk((4        D@
  	0+@     0+  +*+?<**103!5!((J  e]   p  !0+@
     	0+@ 	  
	0+@  **+?<+**+10532765!!"5!j6R(Y(5?5vJJ     j+  F@-
 	  
	   0+  +**+?<*+103!33!#(Y+ #%     +  '@     0+  +*+*103!(+    c $ i@	  !++0+@2# $    $# 0+@  **+?<++??103!676326763 !4'&#"!4'&#"(@?^vM-:?]|<{d;zfJ].DN-W^/En&'4n&'4     \c  Q  +0+@%	 
    	 0+
	  **+?<++?103!6763 !4'&#"(OHjw(BuJ].Dk((4   Jc   ;@	  !! 0+@     0+//+??102#"'&76"327654'&qސm@@@@lc>NAAciijjTjɱii   uc   r@	  +!0+@!        
0+@
    0+ +*+?<+++??10!!632#"'532#"(ijPs5uvuնϖ堠\   PuOc   h@	  +!
0+@
      0+@    0+ +*+?<++??10%#"'&57632!!&#"327'ijP(t3uuϖ+%~     c  M  
	0+@      0+  **+?<++?103!632&#"(X8(pXJ.   {c % ]@	  !!$0+@$     #" 0+@    *+/++??1075327654''&'&5!2&#"#"{k94d>>͙ka51VGK$\ 6NF(R>=xN'93G>!VDGz\]   @%  f@  
  0+@	  0+@ 
	 **+?<**+/?10%# #535%3#32tKbb(B%hB"۹|&'   PJ  S  +0+@&
   	   
	0+ **+?<++?10!5# !327!(NIiy(Cu(\/D[Ak((    YJ  '@    .......+?<++10!!3v8rJ   >  J  :@# 
	  
	 .............+?<++10!!!3!H 夻J  0  BJ  7@!
 	  
	 ............+?<++103!3!0fQ^'#\k   uYJ  6@     ........+?<+++10!!3!v8.J:+  o  J 	 A@  , 0+@	  	  *++?<+*1035!5!!oE)̹4  c+ 0 W@0/$#   -!	(	0+@(/( $#0  *+////+.........103254''&54767&'&5477654##c>\
I+QX,A
`>?L\XRH%z"9V?I[627<YzJ>U8#z,IQX\LA   u+  '@     0+  +*+*103ȭS   {+ 0 W@0/$#   -!	(	0+@(/( 0 $# *+////+.........10#"5654''&54767&'&5477654'533>\
I+QX,A
`>?L\XRH%{>VJ>[726=W|>IU>{,IQX\LA  P\  4  
0+@  ../...+../../.10#67632327654''3#"''&#"q>ykQ\[I%!q>zjQ\Zo9N;C($;	n:M;C    "  
   @
  	,0+@>   	
   0+ ****++++?<**+103!!!!53353>4<ŗ8uPN      
  * z@	  #0+@ 
  	,0+@     '0+@
	 ...........//+?<**+?103!!!!2#"'&5476"327654'&>4<ŗ-aDEEDdV?RDDb3$$$#20!,$%8uPN EDacDD8HjbDEo$$33$%&93$$   PP~  ( y@  #*0+@'     ('!    %0+@('!   **+*+??10! '&76!2$# !23#"'53254##~{ kLHHiQkG1w`w}9_ưqE//[=S        f@  ,,
	/ 0+@&     	0 0+@
  **++?<**103!!!!!!>e9c8DA      	 # p@	  "!!0+@; 
	   
   	 0+  **++++?<*+103!3!#676323273#"/&#"g 1u@?&?? 2s?@'WA8DGn+-Hl+>   P"   # ' ~@	  ** 0+@    '$# !0+@&%"!   0+@&   %$&#" 0+'&!  **++*??10 ! '&76"3276'&53353Nط俿Ofgffd}ggͩl˗x1"   &"    ~  *0+@    0+@& 
	    	1
0 0+@
  **+?<+*+?10!3 !# '&'&5533534FG''g5u``sllNmBXd  E;D & D       E;D & D    C    E;D & D        E; & D        E;D & D        E; & D        JP c & F    /   JD & H    6   JD & H    C    JD & H        J & H        9  9D &         D &     C   D &        ^    V@  0+@"
	    	
 0+@
  **+?<**103!53353(+J   \D & Q    '   JD & R    ]   JD & R    C    JD & R       J & R       JD & R       PD & X    X   PD & X    C    PD & X       P & X        ^  7@*
	    
 	 *++?<++105!%%`(`J   rD   9@	   0+@   0+//+//102#"'&5476"327654'&zWWWW|lQiWWz=+,,+:9)5,+DWWz|VVG[zWW,+=<,,#-D=+,        ]@
   	   0+@    	0+@
	 **+?<++10!5&'&%53&'67zwqittrv^/FO.y8 :/'	"@^d9  f      !
0+@&
        0+@    0+@  **++***++?1035675#535!2&#"3#!fr|h))|.쵹)YXZ    + 7 m  *0+@  3,& *    5.$		(0+@3,& ($   *++*?105327654''&'&547&547632&#"!"654'&''f:=FEz{ΛݏyIIs4/'_4Y #D[NBNVUxjde)<XA7TVVnRBF,$0aK@v]  Q7}c  '   0+  0+/+/102#"'&5476hrRQRSudLbRRcRQusPQBW}sQR  N  Y@   	0+@  
	 	    
 0+
  **++?<+*+10&'&4763!##{@``áf MLi   D - j@	  *!!0+@, -    ('0+@"  -, 0+  ***++*?103!2#"'53254/&54?654#"¿qrA=FcUji^|EUbN='/1+kGFy_\Vc(/ue͝Z[ (yAet[GhLCQWLDG       + 2 @	   0+@&  21-,*)&! "!+('    /$0+@1-)('&"$*   2,+* 0+!  +**+*+??10 ! '$76"32764'&!2##3254##11ܶ]⻽XkذQ2{	"ǚKGo       9 k@  7"/* 0+@!  *"9-,*"      3&0+9-,& //./...++//??10 ! '$76"32764'&#"'&547632&#"32711ܶ2uxxttxmzLLSR|bذQ2{*vuqq#8WWTU2   :   }@  0+@;  
	 
   	 0+@  **+++?<**+10!5!!!33##ܳi{{(,  UUD  @   ....+*10!UA      D@   0+@    0+  **++*1053353       r@  ,,
	/ 0+@%      	0+@
 ***+?<**+103!!!!!!!!Y8$[hc>~>S  P   + P@1( * 	 
   + +*$ 	 ./../.../..../..+*+//??10&#"32764'7&'&576!273!"'&gfg0Lhgg0޲O(;S_O(;_|{iijwwhixx   h  C   Z@  

 0+@
	    
0+@	  **+**1035!!5!3!!hii(fe     s  @	  0+@3  
	  
 	   0+@  **++++?<**+10!#535#53!33#3#ZW[."  uJ  b  +0+@2
  			  	 0+
	  **++?<*+?10!327!!&'#"'(sx(>&0DdA3uZ̿Le4Ii  17  % i  0+@"  
	 $    "0+@ 
	  **++**?10#"'&54!354#"563 327#"''5#"32P^Z:;X0wkk}}$)	?0s-.J6M88W/^<+;~Mwq_K  (7   @@	   0+@      0+//+?102#"'&5476"3254}[\\\Xn[\wwx]\\]L_\]  Ec * 4 = @  :!3*"*'!0+@.'5 -,5+%$    
50+@65   /0+@65 -%$,+ *++++*+++????10%#"'&5476!354#"563263 !327#"'&'5# 32!&'&#"$ILn]]T̪մ
nQGQƊNK-,Cg.px8a1GWWaahbLyyƓ^0E>R.߲@))z>dp<   Jc   ' p  !!0+@&'	  
    %  0+@'
	 ../..../......+*+??107&5763273#"'&#"327654'JBBA_l@@<B^m@@QQRRoTiiRUTiiST   k]J     0+@    	 0+@    0+@   0+@
 **+?<+*+10!5!!27# 476776765`(++rd>3RQJ]|PNUKfY<^qD9P21::      	 R@  	 0+@	   	    0+ +*++?<**+10!5!11](   h(Cx  ?@
   60+@   0+  **+**105!#hۭ̬  1@  e  !	0+@	       0+@!    *++**+?10#5377632&#"3#1ƕEjbV5"Z8d&   A i5   6@
	 
	 ............+............10	5_`xili  > i2   6@
	 
	 ............+............1077%7>`=_SSiDDlPSiDD     KA    Q@  
	 0+@    	
 0+@
  **++*103!!!!!Aj@jAAAA      
  S@
  	,0+@#   
	 ...............+?<**+103!!!!#!>4<ŗ8uPNA       
 $ k@	  #!!0+@
  	,0+@%   
	 ...............+?<**+103!!!!#676323273#"/&#">4<ŗ枔 1u@?&@? 2s>A'V@8uPNGn+-Hl+>  P   : X@  9!%+!2** 0+@  .-%2!    0+.-! //....+*??10 ! '&76"3276'&#676323273#"''&'&#"Nط俿Ofgffd}gg} 1u@?&@? 2s?@'< @ͩl˗x1"Gn+-Hl+-  P  # @	  "**0+@    ,,/ 0+@     0+@  00+@  **++?<**++??10!!# '&76!2!!!!!%&#"32jOh7kzeffez%jk%c8 K  J!c  ( 8 t@  1!)!'*0+@)'	       - #0+@	 5# +*+*++/????10!&'&#"'63 !327#"'&'#"'&7632"327654'&e(Yd4
iO{MوFJm@@@?lc>NA@?Wg<͏Ó`1E>: @iikjTjɱii   X  (@
   0+@   *++*105!X   P  '@
   0+@	  ....++*105!P`{{  + 	  R@3
	  
	   0+@
 **++++*103!5%3!5%;o'no'nno  no    + 	  R@3
	  
	   0+@
 **++++*10#!567%#!567o(no(n(o (o   |+ 	 7@ 	  	   0+ +*+++*103!5!A|@{o   |+ 	 7@	  	   0+ +*+++*10#!567{AzAxo   h %C{    T@  
		 	0+@
	    0+@
	  **+**1053535!խ  uY & \           ;"    t@   	
0+@1
   	  	0 0+@
	  ***++?<**+10!!353353Ubt `l\qD  6!  @   ....+*1036T%    p  - @	  &0+@(  
	   *"0+@
	 ..../........../....+**107'1#"'1'7&547'7632"327654'&/zLLz}yz}zKKz}zywT>OAB\[ABABUz{||zzKKzz||{zK5Cg\@AAA\[AB   > ii  @  ......+......10	i`xi   A il  @  ......+......1077A`SSiDD  4  ZD     	0+@	  	0+@'     0+@  **+?<**++103#53547632&#"!!!53rrbcm~:Lop)7Do  4  ZD  }  !0+@  0+@&	
    	 0+@
	  **++?<**+103#535!!!&#"3#rr1XEEk"]o   ^  _@6	   
	 
	   0+@ **+++?<++1055!%%%%``(``\   {  7@
   0+@    0+  +*++*10!{A@  |A 	 7@	  	   0+ +*+++*103#!567{AzAxo   ( 	  R@3
	  
	   0+@
 **++++*103#!567%#!567o(no(n(o (o      ' / ? G K @  D8@0, ( 0+@28   00   JIKH   F4B<.*$0+@
KJIH<4$//////....+*+///???102#"'&5476"32542#"'&5476"3254%2#"'&5476"32543PRSTUPeTStstTTTUPeSUsssaTSSUPeTTsstTcdabQecccbbbQdbcܔcbbbQdbc      
  d@
  	,0+@)   
	 ...................+?<**++103!!!!!#'#>4<ŗ8uPNA       w@  ,,
	/ 0+@/      	0 0+@
  **+++?<**+103!!!!!!#'#>e9Fc8DA       
  S@
  	,0+@#   
	 ...............+?<**+103!!!!!>4<ŗ8uPNA     "    s@  ,,
	/ 0+@'     	0 0+@
  **+?<**103!!!!!53353>e9qc8D       j@  ,,
	/ 0+@)      	0 0+@
  **+++?<**103!!!!!#!>e9ec8DA   9  9   >@#       0 0+  +*++?<*103!!48DA      N@1
	   
	    0 0+  +**++?<*+103!!#'#48DA    ^"    V@  0+@"
	     	
0 0+@
  **+?<**103!533534%8D       >@#       0 0+  +*++?<*103!#!4J8DA   P   # L@	  ** 0+@  "!#    0+#"! //....+*??10 ! '&76"3276'&!Nط俿Ofgffd}ggͩl˗x1"A   P   ' ^@	  ** 0+@  &%! "!'$#    0+@
'&%$#"! //........+*+??10 ! '&76"3276'&!#'#Nط俿Ofgffd}ggͩl˗x1"A   ' 3 @	  (-0+@+-  	 +*    	3$# 0+@
	"!   0+@3$#"!
	 +* +*+**+++??1073&'547#7367!2&#"!!!!327#"'&'&'?B?b,+q{^:*>?3ETn}g:"!66G&7lA|#=4FU5.X5l  P   # L@	  ** 0+@  #"!    0+#"! //....+*??10 ! '&76"3276'&#!Nط俿Ofgffd}ggͩl˗x1"A  &   f  *0+@5   
	  
  	1
0 0+
  **+++?<*+?10!3 !# '&'&5!4FG''g5u``sllNmBXdA   &   w  *0+@D   
	  
   	1
0 0+
  **++++?<*++?10!3 !# '&'&5!#'#4FG''g5u``sllNmBXdA  &   f  *0+@5   
	     	1
0 0+
  **+++?<*+?10!3 !# '&'&5#!4FG''g5u``sllNmBXdA     J  (@     0+  +*+?<+103!(J  D  (@    ........+*+10!#'#$A  D  /@	  !!0+@   ....+*10#676323273#"/&'&#" 1u@?&@? 2s>A'< @Hn+-Hl+	-   (@
   
0+@   *++*105!  D  )  !
0+@
    ....++1033273#"'&.0LceEDPirN  +  7@
   0+@    0+  +*++*10!((  k?   7@	   0+@
   0+//+//102#"'&5476"327654'&U`EEEDcW?RDDb3$$$#2/",$%EDacDD8GkbDEo$$33$%&93$$   {P0    F  0+@
   0+
 .../....+.../....10!3#"'53254##LHHiQkG1wqE//[=S  D   #@   ........+*10333RAA   ^L    =  .
0+@
     0+ ..../++10!3327# 54?O5[mY\^Qt D  (@    ........+*+10!337DA   ' 3 @	  (-0+@+-  	 +*    	3$# 0+@
	"!   0+@3$#"!
	 +* +*+**+++??1073&'547#7367!2&#"!!!!327#"'&'&'?B?b,+q{^:*>?3ETn}g:"!66G&7lA|#=4FU5.X5l 4+   1@     0+  +*+*10334o  J`  (@
   0+@   *++*105!J   N%D  (@
   0+@   *++*105!N   &_  _  
80+@   60+@   70+@  *+/++**10567767654#"5632!&9,K%(cZ[8+]Cw_@(E5;G{>.DCpYD5L7a8  %I   ]@	  880+@
	   770+@
	   +*+.......././1053254##53254#"563 #"%a<-ftz<͊5)aayf4l3+֜C#H9MxCC   {  7@
   0+@    0+  +*++*10!{A@  1g 	 R@  	 (0+@ 	   0+ +***++**10535%31gG1h   %$  	   @   60+@A
	  
	    
 0+@  ***++++**++105%3%5!533#3S\\\@g7ozt%0   %h  	 &   80+@   %$6
0+@&
	    70+@$%	     0+@&%
  ***++/+**+/105%3%567767654#"5632!S<(L)(c[[8*_Cvg7ozt%C%E{:;F|>.DCpXE3N7`9  cJ   $ / 2 @	  880+@!
	)2 )(  10,+(6&0+@*).-'&/%#"$!   770+@/#,*"*10)%'$!
	'   &%*21*0+@-,/.+*('  ***+//++++**+/+1053254##53254#"563 #"3%5!533#3ca<-ftz<͋4)aaxT\]]@f4l3+֜C$G9NxBC%0      w   z@   ,0+@     
0+@
  0 0+@  **++?<**+103#53! !'3 4'&##3#Xmxxӌ~M   m y>J  3@
	  
	 ............+*1077mnznozoznoznzzn     ;   R@4 
	   
	    0 0+  +**++?<*+10!!3!Ubt l\qDA     %   h@  ,,0+@      
0+@
   0+  +**+?<**103!!2!#3 4'&##.$]^@[ΊIIEbv10  J  - |@	  (! !0+@.      
	    ,#$"0+@
	 	 +*+*++??10'7&''527#"'&547632&'"32765kt!nv<Q@ttDEDCphAS)&Kx뫫휛HccccTjV  uYD & \    ;    u+   u@	  +!0+@$         
0+@
    0+ +*+*++??10!!632#"'532#"(ijPs5uvuiϖ堠\       
  Y@
  
	,0+@,   
	  **++?<**+103!!!!5!>4<ŗ8uPN  E; & D             
  i  !0+@
  	,0+@"   
	 ...............+?<**++/103!!!!33273#"'&>4<ŗƔ.0LdeE8uPN玎PirN  E;D & D           
  z  .0+@
   	,0+@     0+@
	 .............../+?<**+103!!!!3327# 54>4<ŗɞO5[m8uPNbY\^Qt  E;c & D        P~   a@	  *0+@        0+@  **+*+??10! '&76!2$# !2!~{ '`w}9_A J D & F        P~   n@	  *0+@'        0+@  **+*++??10! '&76!2$# !2!#'#~{ _`w}9_A  J D   r@	  	0+@'	       0+@   **++*++??10%# '&!2&# 32!#'# ݛtqa`v1;+;eeXA   P~l   @	  *0+@       0+@   0+@  0+@  **++*+??10! '&76!2$# !2!~{ F(`w}9_(   J +   @	  	0+@	     0+@    0+@  0+@  **++*+??10%# '&!2&# 32! ݛtqa`v(1;+;eeX(  P~   n@	  *0+@'        0+@  **+*++??10! '&76!2$# !2!337~{ F`w}9_A  J D & F    K      w 
   |@   ,0+@
     0+@ 

  0 0+  +**++?<**++103! !'3 4'&##!337Xmxxӌ4ȷA   P+   # @	  +!
0+@+
# !       0+@#   ! % 0+ **++*++??10%#"'&57632!!&#"327#!527'ijP(t3uu	rqϖ~(f     w   z@   ,0+@     
0+@
  0 0+@  **++?<**+103#53! !'3 4'&##3#Xmxxӌ~M   P+  ! @	  +!0+@!    
0+@     0+@  ! 0+@  **+**+??10!!5#"'&576325!5!5!3#&#"327OأijP(t3uuϖ~        e@  
,,
	/ 0+@     	0 0+@
  **+?<**103!!!!!5!>e9Xc8D  J & H                !0+@  ,,
	/ 0+@(      	0 0+@
  **+++?<**+/103!!!!!33273#"'&>e9e.0LdeEc8PirN  JD   , p@  "!)!*0+@))     
0+@%$  %$    +*+**++/??10%# '&4763 !32!&'&#"33273#"'&힞
iO{N؈,e(Yd4.0LdeE>Ó`1?Wg<=PirN    l   g@  ,,
	/ 0+@      	0 0+@
  **+?<**103!!!!!!>e9*(c8D(  J+ & H              .0+@   ,,
	/ 0+@     0+@  	0 0+@
  **+/++?<**103!!!!!!3327# 54>e9O5[nc8Y\^Qt Jc & H    ?         w@  ,,
	/ 0+@/      	0 0+@
  **+++?<**+103!!!!!!337>e9c8A JD & H         P ! ) @	  *0+@$ ('#"       , 0+@$#)&%"!    	0+@%&$ )('#"	   0 0+@ !  ***+++**+++??10# '&'&76763 $#"!27#5!#'#}Pql G|zTHoOXy239_씓KuA  P\OD  & . {  "0+@O-,('&	    )(.+*' +* .-,)('  &	  *+/++?<*+//+??10&#"327#"'&57632!!"'532765!#'#'t3uujkP(YޛIIϔooNOWFFA  P ! / @  %!,*0+@% ,,"         , 0+@('#"!    	0+@(' #"	   0 0+@ !  **+++**+++/??10# '&'&76763 $#"!27#533273#"'&}Pql G|.0LdeETHoOXy239_씓KPirN P\OD & J        Pl ! % @	  *0+@#       %"# , 0+@$#!    	0+@	"  %$"0 0+@#" !  **+**++??10# '&'&76763 $#"!27#5!}Pql G|(THoOXy239_씓Ku(  P\O+  & *   "0+@#&	      *'(0+@)( '  *)&	 '0+@(' *)&	  **+/+?<+*+//??10&#"327#"'&57632!!"'532765!'t3uujkP(YޛII(ϔooNOWFF(   PP ! 3 @  /**0+@(     3-,"*    , 0+@!    1&	0+@&& 3-,"	   0 0+@ !  ***+/++**++??10# '&'&76763 $#"!27#5#"'53254'}Pql IzSaGFjFxB.THoNXy239_듓K%+WE00b?:
   P\OT  & 0   "0+@H&	  0.-+(')  *) 0' **  .-)(&	 *0+@+* .-)(&	  **+/++?<+*+//??10&#"327#"'&57632!!"'5327653!5%'t3uujkP(YޛIIrr'qϔooNOWFFjg        w@  
	,0+@>      	0
0 0+  **++++?<**+103!!!!!!#'#44wY8]DA     \   y  +0+@I	  
  	   	 0+
	  **++++*++?103!6763 !4'&#"!#'#(OHjw(Bu+i].Dk((4A        @  0+@3  
	   0
 00+@ 	
  **+?<?<**10!5!#535!!5!3#!!̔44oJ]     \+  z  +0+@    
	0+@#    
 0+@	  **+**+?103#535!!!6763 !4'&#"{{((OHjw(Buꔭ].Dk((4    |   T@	  2	20+@#	      0 0+  +**+?<*103!#676323273#"/&#"4 1u@?&@? 2s>A'V@8DGn+-Hl+>    |D  ! T@	   2	20+@#	      0+  +**+?<*103!#676323273#"''&''&'&#"( 1u@?&@? 2s>A'
	< @JHn+-Hl+-      H@
  
0+@     0 0+@  **+?<**103!5!48D    &         ~   R  0+@%
	   
	   0 0+  +**+?<*+/103!33273#"'&4.0LdeE8PirN    ~D   R  !0+@%
	  
	    0+  +**+?<*+/103!33273#"'&(
.0LceEJDPirN   &   e  	.0+@      0+@    0 0+  +**++?<+103!#3327# 544O5[m8Y\^Qt & & L         l   I@
  0+@     0 0+  **+?<**103!!4(8D( u & ,    -   ] & L    M9      w  0+@?
    	 	 	  0	0+
	  ***+++?<*++10532765!!"!#'#أ9:4ݫ@;:zzlA  e]D   w  !0+@@
    		 	  
	0+  ***+++?<**++10532765!!"!#'#j6R(Y55?5vJJA  P 
  t  0+@"	  
     0+@	  
	 0+  +**+?<+*+103!3!#"'53254'(h{SaGGiFxB.2h(a%+WE00b?:
 Pj+ & N   uA      jJ  F@,
 	  
	   0+  +**+?<++103!33!#(YJ  #%       	 T@
  / 0+@$	      	0 0+  **+++?<**103!!!4Q
PA  ^  ^ & O     	  P   x  0+@   / 0+@     
0+@

  0 0+  **+/+?<+**103!!#"'53254'4SaGGiFxB.
a%+WE00b?:
 KP + & O   u        a@
  / 0+@"  	 	  %	0 0+@
	  **++?<+*+103!!#!5674rq
(f    +   F@,
     
% 0+  **++*+103!#!527(rq+(f      	 R@  	/ 0+@     0 0+@	  **+?<**103!!!4E(
(    +   G@
  0+@     0+  **+**103!!()+(        X@
	  / 0+@     
0 0+@	  **+?<+*+10357!7!4TZ[ń     :+  @@!
	     
 0+@	  **+*+10357!7(xIJGI      	  T@6 
	   
  	 0+  **+++?<*+103!3!!g8PA   \D & Q    g    P 	  x  0+@! 
 	     0+@
  	 0+  **+/+?<+*+103!3!#"'53254'gSaGGiFxB.8a%+WE00b?:
  P\c & Q   uA       	  e@E
 
	   
   	 0+  **++++?<*++103!3!!337g8A    \D & Q          #+   r  +0+@>	 
    %	 0+@
	  **++?<*++?10!!6763 !4'&#"#!527[(OHjw(BurqJ].Dk((4(f   \  g  	0+@1 	       0+@  **+++?<+*+103!3!"'532767g[\IBO($8.,)^   \\c  d@	  +0+@+	 
     	 0+@
	  **+?<+*+?103!6763 !"'5327654'&#"(OHjw(MkB5OBvJ].D5-ak((4   P   # b@	  ** 0+@    # 
!0+@"!   0+@" #"!  *++*??10 ! '&76"3276'&5!Nط俿Ofgffd}ggͩl˗x1" J & R        P   - Y@  #*9 0+@  **   &%!    440+&%! //....+++/??10 ! '&76"3276'&33273#"'&Nط俿Ofgffd}gg.0LdeEͩl˗x1cPirN   JD   - Z@  #*22 0+@ **  &%!    330+&%! //....+++/??102#"'&76"327654'&33273#"'&qސm@@@@lc>NAA3.0LdeEciijjTjɱiiPirN  P   # ' Y@	  ** 0+@  &%"!'$#    0+@
'&%$#"! //........+*??10 ! '&76"3276'&333Nط俿Ofgffd}ggͩl˗x1"AA JD & R              v@  ,,0+@
	     0+@
	  ) 0+  +**+?<**+103! !#327654'&##!j?v`R>VJ1vE9M](YClq1+SA   D & U         P   *   &!0+@*$#!   ,,0+@
	     (0+@*$#
	  ) 0+  +**+?<***+103! !#327654'&###"'53254'j?v`R>VJƔRbGGiFxB.vE9M](YClq1+%+WE00b?:
 Pc & U   uK          @  ,,0+@ 
	     0+@"  
	  ) 0+  +**++?<**++103! !#327654'&##!337j?v`R>VJYvE9M](YClq1+A    D & U    9   c	 * . l@	  **(0+@"(     -,.+   "$0+@.-,+ $   *++*+??10753 54'&/$'&5!2&#"!"'!f&Q #>XXc۰FF" cr__c=.24>cZ[3R&'`?#!&,?[cblm[A  {D & V    E    c	 * 2 y@	  **(0+@*( 10,+    -,2/.+   "$0+@210/.-,+ $   *++*++??10753 54'&/$'&5!2&#"!"'!#'#f&Q #>XXc۰FF" cr__Jc=.24>cZ[3R&'`?#!&,?[cblmOA   {D % - y@	  !!$0+@*$,+'&   ('-*)&   #" 0+@-,+*('& )   *+/+*++??1075327654''&'&5!2&#"#"!#'#{k94d>>͙ka51VGK}$\ 6NF(R>=xN'93G>!VDGz\]A  cP	 * = @  83**(0+@*(     =<65-,+3   :/"$0+@/=<65/-,+ $   *+/+*+??10753 54'&/$'&5!2&#"!"'%3#"'53254##f'Q #>XXd۰FF" cr__lLHHiQkG1wc=.24>cZZ3R&&a?#!&,?[cblmqE//[=S {Pc & V         c	 * 2 y@	  **(0+@*( 10+,    2/.+-,   "$0+@210/.-,+ $   *++*++??10753 54'&/$'&5!2&#"!"'!337f&Q #>XXc۰FF" cr__&c=.24>cZ[3R&'`?#!&,?[cblmA {D & V         (P     0+@
   ,0+@	     0+@
	    0 0+@  **+++/+?<+**10!!5!!#3#"'53254##PP׈LHHiQkG1wqE//[=S   @P%  (   #0+@,  
('!    0+@	  %0+@('!   0+@ 
	 **++/+?<***+/?10%# #535%3#323#"'53254##tKbb(B%LHHiQkG1whB"۹|&'qE//[=S   (     m@	  ,0+@/
	   
	    0 0+@  **++++?<**+10!!5!!!337PPA  @   @&
    0+@$ 	  %0+@ 
	 **++?<+*+/+?10%# #535%3#32#!527tKbb(B%rqhB"۹|&'(f  (    ]@  
	,
0+@     
0 0+@	  **+?<**10!!5!!5!!!!5PP5oA   @%  |@&     0+@ 
	  	0+@
  **+?<+**+/?10535#535%3#3#327# 5@bbb(B%>tK+ҹ"۹Ҕ|&'h  &  2 w@  12#2*90+@:  &%* 
	  &
%   	1
0 0+
  **++++?<*+?10!3 !# '&'&5#676323273#"''&'&#"4FG''g5 1u@?&@? 2s?@'< @u``sllNmBXdGn+-Hl+-   PD  - u@  ,!!&+0+@;
 "!&  	"! 	   
	0+ **+++?<*+?10!5# !327!#676323273#"/&#"(NIiy(Cu(P 1u@?&@? 2s>A'VA\/D[Ak((Hn+-Hl+>  &   p  *0+@    
0+@ 
	    	1
0 0+@
  **+?<+*+?10!3 !# '&'&55!4FG''g5u``sllNmBXd  P & X        &  % u@	  "90+@;""    
	  
   	1
0 0+
  **++++?<+++/?10!3 !# '&'&533273#"'&4FG''g5.0LdeEu``sllNmBXdGPirN  PD  ! t@	  !+0+@=
   	 	   
	0+ **+++?<*++/?10!5# !327!33273#"'&(NIiy(Cu(.0LdeE\/D[Ak((DPirN   &  ' 7 @  0 (*0+@    
	    4,$0+@$$  	1
0 0+
  **+//+?<+?10!3 !# '&'&52#"'&5476"327654'&4FG''g5WaDEEDdU@RDEa2%$$#2/",$%u``sllNmBXdEDacDD8GkbDEo$$33$%&93$$ P & X        &    s  *0+@A   
	  
   	1
0 0+
  **++++?<*+?10!3 !# '&'&53334FG''g5u``sllNmBXdAA jD & X    n    &  % @	  ."*0+@  " 
	    $0+@ 
$$  	1
0 0+
  **+/++?<++?10!3 !# '&'&53327# 544FG''g5zO5[nu``sllNmBXdY\^Qt  PJ ! @	  .+0+@!
    	   0+@    	   
	0+ **+/++?<++?10!5# !327!!3327# 54(OHjx(Bt(؞O5[n۶].D[Ak((Y\^Qt    u   Z@: 
	   
	 .....................+?<*++10!!!3!!#'##-eG;>8	DA   >  D   Z@: 
	  
	 .....................+?<*++10!!!3!!#'#H 夻JA    ;   `@B
	 
	   
 	   0 0+  +***++?<*++10!!3!#'#Ubt 'l\qDA  uYD   V@6	   
	 
	 ................+?<*+++10!!3!!#'#v8.CJ:+A   ^   	  K@  ,/ 0+@&
	   
	  *++?<**1035!5!!!^i>-+DA  o  D & ]         ^  l 	  c@  
,/ 0+@	   
  
0+@
	  **+++?<**1035!5!!!^i>m(+D( o  + & ]         ^   	  X@
  ,/ 0+@,
	   

	  *++?<**+1035!5!!!337^i>+A o  D & ]         4  D  L  20+@
	      0+@
	  **++*103#535!2&#"rrTcT=O!\  cP	 * < @  83**(0+@'(     <65+3   :/"$0+@/<65/+ $   *+/+*+??10753 54'&/$'&5!2&#"!"'#"'53254'f'Q #>XXd۰FF" cr__?SaGFjFxB.c=.24>cZZ3R&&a?#!&,?[cblmV%+WE00b?:
 {Pc & V   u    (P     50+@   *0+@     0+@    0 0+@  **+++/+?<+**10!!5!!#"'53254'PPSaGGiFxB.a%+WE00b?:
  @P% & W   uY   {P0  :  0+@
   0+
 ./...+./...10#"'53254'ŷRbGGiFxB.a%+WE00b?:
   J 	  `@ 	    
0+@ 	   0+
 +*++?<+**+10!#!567!0o(no((o A(  {  7@
   0+@    0+  +*++*10!{A@  J`  (@
   0+@   *++*105!J   J`  (@
   0+@   *++*105!J   X  (@
   0+@   *++*105!X   P  '@
   0+@	  ....++*105!P`{{  N%D  (@
   0+@   *++*105!N   Jc   V@	  !*0+@    
0+@    +*++*+??10%# '&4763 !32!&'&#"힞
iO{N؈,e(Yd4>Ó`1?Wg<   hC  (@
   
0+@   *++*105!h  6!  @   ....+*1036T%   {  7@
   0+@    0+  +*++*10!{A@  4  ZD     	0+@	  	0+@'     0+@  **+?<**++103#53547632&#"!!!53rrbcm~:Lop)7Do  4  ZD  }  !0+@  0+@&	
    	 0+@
	  **++?<**+103#535!!!&#"3#rr1XEEk"]o  P 
  `@  	60+@%
      0+@
	 ***++**+105!533#3\]]AP/ e]J  N  !0+@
   	  
	0+  **+?<*+10532765!!"j6R(Y5?5vJJ    33`_<      K    ~ 6P            P   65               9 9    9  9    ss s c T - S T =   h9 | J9 |9s Ps s Ms s s s 4s qs Vs O   h h h _    P V  9 P 9 s    9 PV 9 P V c ( V  V 1V  ^ 9 < s   Us E s J Ps J 4 P 9 9es 9    J  P s { @ s 9 >s 0s   o c=  { P   PV  9 P s Es Es Es Es Es Es Js Js Js Js J9 99 99  J J J J J    s ^3 rs s fs  Qs N      U 9    9 P9   h9  9  s   9  9  9  9  9   1 (9   E J k  h9  s 19  9  s As >  s    9 P  P Js X  P    9 |9 | h9  s V V6s  > A 4 4s ^8 {9 |     V  V V 9 9999 9 P9 Ps  9 P   9   k { ^s  9  4 Js N & %8 { 1 % % c   mV V  Js   s E s E s E Ps J Ps J Ps J Ps J  P   PV s JV s JV s JV s JV s J9 P P9 P P9 P P9 P P    9999999 &9 &9 G s s9e s s  9 ^ 9 K      9           9 P J9 P J9 P J      V cs {V cs {V cs {V cs { ( @ ( @ ( @             9 >V s  ^  o ^  o ^  ou 4V cs { ( @ { 8 { J Js X  P9  s Ns J hV68 { 4 49e9       r   	d        $  7  9  :  <  b  c                                                                              2  1        `                          $  & $  $  & $ & $ * $ 2 $ 4 $ 7Y $ 8 $ 9v $ : $ <H $ D $ E $ F $ G $ H $ J $ R $ T $ W $ X $ Y $ Z $ \ $ d $ g $ h $ o $  $ n $ s $  $  $  $  % $ % 2 % 9 % : % < % b % c % g %  %  %  %  %  %  %  %  %  & $  & + & . & 2 & b  & c  & g &   &   &  ' $ ' - ' 7 ' 9 ' : ' ; ' < ' b ' c '  '  '  '  ) _ )   ) \ ) $ ) -  ) 2 ) D ) H ) L ) M ) R ) U ) X ) b ) c ) g ) i ) l ) n ) p ) y ) | )  )  )  )  )  )  )  * $ * 7 * 9 * : * < * b * c *  *  *  *  *  - $ - b - c -  . ` . &~ . *} . 2 . 6  . 7 . D . H . R . X . \s . g . l . n . y . | .  .  .  .  / ) / $ < / & / * / 2 / 6  / 7Y / 8 / 9\ / : / <A / X / \ / b < / c < / d / g / h /  /  ; /  /  /  /  < /  /  /  1   1   1 $ 1 & 1 * 1 2 1 D 1 H 1 R 1 X 1 b 1 c 1 d 1 g 1 i 1 l 1 n 1 p 1 y 1 | 1  1  1  1  1  1  2 $ 2 7 2 9 2 : 2 ; 2 < 2 b 2 c 2  2  3 . 3  3 + 3 ${ 3 - 3 D 3 H 3 R 3 b{ 3 c{ 3 i 3 l 3 n 3 p 3 y 3 | 3 # 3  3  3  3 { 5  5 & 5 * 5 2 5 7 5 8 5 9 5 : 5 < 5 D 5 H 5 R 5 X 5 \ 5 d 5 g 5 h 5 i 5 l 5 n 5 p 5 y 5 | 5 ~ 5  5  5  5  5  6 $ 6 7 6 9 6 : 6 < 6 W 6 b 6 c 6  6  7 m 7  7 l 7 8 7 9 7 $Z 7 & 7 * 7 - 7 2 7 6 7 9 * 7 : + 7 < ' 7 DS 7 FU 7 HU 7 JW 7 L 7 M   7 RU 7 UO 7 V? 7 X\ 7 YO 7 ZE 7 \O 7 bZ 7 cZ 7 g 7 Y 7  7 O 7 _ 7 @ 7 Z 7 Z 7  7  7 A 7 Z 7 Z 7  7  7  8  8  8 $ 8 P 8 Q 8 S 8 U 8 b 8 c 8  8  8  8  9 ~ 9  9 ~ 9  9  9 $| 9 & 9 * 9 2 9 6 9 7 - 9 D 9 H 9 J 9 L 9 R 9 U 9 X 9 \ 9 b| 9 c| 9 g 9 D 9  9  9  9  9 | 9 | 9  9  9 | 9 | 9  9  9  :  :  :  :  :  : $ : & : * : 2 : 6 : 7 , : D : H : J : L : R : U : X : \ : b : c : g : l :  :  :  :  :  :  :  :  :  :  :  :  :  ;  ; & ; 2 ; 4 ; D ; H ; R ; X ; \ ; g < K < t < J < h < n < $A < & < * < 2 < 6 < 7 + < Dm < HT < JV < L < RS < S < X < Y < bA < cA < g < 7 <  < l < \ < ! < A < A <  < # < A < A <  <  <  = Y = \ D M D Y D Z D \ D  E Y E Z E \
