gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r3096 - Extractor/doc GNUnet GNUnet/m4 GNUnet/src/util/geto


From: grothoff
Subject: [GNUnet-SVN] r3096 - Extractor/doc GNUnet GNUnet/m4 GNUnet/src/util/getopt GNUnet/src/util/string GNUnet-docs/WWW/papers freeway i18nHTML i18nHTML/src
Date: Tue, 4 Jul 2006 15:06:22 -0700 (PDT)

Author: grothoff
Date: 2006-07-04 15:00:47 -0700 (Tue, 04 Jul 2006)
New Revision: 3096

Added:
   Extractor/doc/PDFReference16.pdf
   GNUnet-docs/WWW/papers/correlation-resistant-storage-via.pdf
   i18nHTML/COPYING
Modified:
   GNUnet/ltmain.sh
   GNUnet/m4/Makefile.in
   GNUnet/src/util/getopt/Makefile
   GNUnet/src/util/getopt/Makefile.in
   GNUnet/src/util/string/Makefile
   GNUnet/src/util/string/Makefile.in
   freeway/ABOUT-NLS
   i18nHTML/src/i18nhtml.inc.php
Log:
sync

Added: Extractor/doc/PDFReference16.pdf
===================================================================
(Binary files differ)


Property changes on: Extractor/doc/PDFReference16.pdf
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Modified: GNUnet/ltmain.sh
===================================================================
--- GNUnet/ltmain.sh    2006-07-04 21:59:06 UTC (rev 3095)
+++ GNUnet/ltmain.sh    2006-07-04 22:00:47 UTC (rev 3096)
@@ -1,7 +1,7 @@
 # ltmain.sh - Provide generalized library-building support services.
 # NOTE: Changing this file will not affect anything until you rerun configure.
 #
-# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004
+# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005
 # Free Software Foundation, Inc.
 # Originally by Gordon Matzigkeit <address@hidden>, 1996
 #
@@ -17,7 +17,7 @@
 #
 # 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 
USA.
 #
 # As a special exception to the GNU General Public License, if you
 # distribute this file as part of a program that contains a
@@ -43,9 +43,14 @@
 
 PROGRAM=ltmain.sh
 PACKAGE=libtool
-VERSION=1.5.6
-TIMESTAMP=" (1.1220.2.95 2004/04/11 05:50:42) Debian$Rev: 224 $"
+VERSION="1.5.22 Debian 1.5.22-4"
+TIMESTAMP=" (1.1220.2.365 2005/12/18 22:14:06)"
 
+# See if we are running on zsh, and set the options which allow our
+# commands through without removal of \ escapes.
+if test -n "${ZSH_VERSION+set}" ; then
+  setopt NO_GLOB_SUBST
+fi
 
 # Check that we have a working $echo.
 if test "X$1" = X--no-reexec; then
@@ -83,14 +88,15 @@
 Xsed="${SED}"' -e 1s/^X//'
 sed_quote_subst='s/\([\\`\\"$\\\\]\)/\\\1/g'
 # test EBCDIC or ASCII
-case `echo A|tr A '\301'` in
- A) # EBCDIC based system
-  SP2NL="tr '\100' '\n'"
-  NL2SP="tr '\r\n' '\100\100'"
+case `echo X|tr X '\101'` in
+ A) # ASCII based system
+    # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr
+  SP2NL='tr \040 \012'
+  NL2SP='tr \015\012 \040\040'
   ;;
- *) # Assume ASCII based system
-  SP2NL="tr '\040' '\012'"
-  NL2SP="tr '\015\012' '\040\040'"
+ *) # EBCDIC based system
+  SP2NL='tr \100 \n'
+  NL2SP='tr \r\n \100\100'
   ;;
 esac
 
@@ -107,8 +113,9 @@
 fi
 
 # Make sure IFS has a sensible default
-: ${IFS="      
-"}
+lt_nl='
+'
+IFS="  $lt_nl"
 
 if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then
   $echo "$modename: not configured to build any kind of library" 1>&2
@@ -125,6 +132,8 @@
 show="$echo"
 show_help=
 execute_dlfiles=
+duplicate_deps=no
+preserve_args=
 lo2o="s/\\.lo\$/.${objext}/"
 o2lo="s/\\.${objext}\$/.lo/"
 
@@ -132,13 +141,51 @@
 # Shell function definitions:
 # This seems to be the best place for them
 
+# func_mktempdir [string]
+# Make a temporary directory that won't clash with other running
+# libtool processes, and avoids race conditions if possible.  If
+# given, STRING is the basename for that directory.
+func_mktempdir ()
+{
+    my_template="${TMPDIR-/tmp}/${1-$progname}"
+
+    if test "$run" = ":"; then
+      # Return a directory name, but don't create it in dry-run mode
+      my_tmpdir="${my_template}-$$"
+    else
+
+      # If mktemp works, use that first and foremost
+      my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null`
+
+      if test ! -d "$my_tmpdir"; then
+       # Failing that, at least try and use $RANDOM to avoid a race
+       my_tmpdir="${my_template}-${RANDOM-0}$$"
+
+       save_mktempdir_umask=`umask`
+       umask 0077
+       $mkdir "$my_tmpdir"
+       umask $save_mktempdir_umask
+      fi
+
+      # If we're not in dry-run mode, bomb out on failure
+      test -d "$my_tmpdir" || {
+        $echo "cannot create temporary directory \`$my_tmpdir'" 1>&2
+       exit $EXIT_FAILURE
+      }
+    fi
+
+    $echo "X$my_tmpdir" | $Xsed
+}
+
+
 # func_win32_libid arg
 # return the library type of file 'arg'
 #
 # Need a lot of goo to handle *both* DLLs and import libs
 # Has to be a shell function in order to 'eat' the argument
 # that is supplied when $file_magic_command is called.
-func_win32_libid () {
+func_win32_libid ()
+{
   win32_libid_type="unknown"
   win32_fileres=`file -L $1 2>/dev/null`
   case $win32_fileres in
@@ -149,12 +196,11 @@
     if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | \
       $EGREP -e 'file format pe-i386(.*architecture: i386)?' >/dev/null ; then
       win32_nmres=`eval $NM -f posix -A $1 | \
-       sed -n -e '1,100{/ I /{x;/import/!{s/^/import/;h;p;};x;};}'`
-      if test "X$win32_nmres" = "Ximport" ; then
-        win32_libid_type="x86 archive import"
-      else
-        win32_libid_type="x86 archive static"
-      fi
+       $SED -n -e '1,100{/ I /{s,.*,import,;p;q;};}'`
+      case $win32_nmres in
+      import*)  win32_libid_type="x86 archive import";;
+      *)        win32_libid_type="x86 archive static";;
+      esac
     fi
     ;;
   *DLL*)
@@ -178,7 +224,8 @@
 # Only attempt this if the compiler in the base compile
 # command doesn't match the default compiler.
 # arg is usually of the form 'gcc ...'
-func_infer_tag () {
+func_infer_tag ()
+{
     if test -n "$available_tags" && test -z "$tagname"; then
       CC_quoted=
       for arg in $CC; do
@@ -235,12 +282,116 @@
       esac
     fi
 }
+
+
+# func_extract_an_archive dir oldlib
+func_extract_an_archive ()
+{
+    f_ex_an_ar_dir="$1"; shift
+    f_ex_an_ar_oldlib="$1"
+
+    $show "(cd $f_ex_an_ar_dir && $AR x $f_ex_an_ar_oldlib)"
+    $run eval "(cd \$f_ex_an_ar_dir && $AR x \$f_ex_an_ar_oldlib)" || exit $?
+    if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then
+     :
+    else
+      $echo "$modename: ERROR: object name conflicts: 
$f_ex_an_ar_dir/$f_ex_an_ar_oldlib" 1>&2
+      exit $EXIT_FAILURE
+    fi
+}
+
+# func_extract_archives gentop oldlib ...
+func_extract_archives ()
+{
+    my_gentop="$1"; shift
+    my_oldlibs=${1+"$@"}
+    my_oldobjs=""
+    my_xlib=""
+    my_xabs=""
+    my_xdir=""
+    my_status=""
+
+    $show "${rm}r $my_gentop"
+    $run ${rm}r "$my_gentop"
+    $show "$mkdir $my_gentop"
+    $run $mkdir "$my_gentop"
+    my_status=$?
+    if test "$my_status" -ne 0 && test ! -d "$my_gentop"; then
+      exit $my_status
+    fi
+
+    for my_xlib in $my_oldlibs; do
+      # Extract the objects.
+      case $my_xlib in
+       [\\/]* | [A-Za-z]:[\\/]*) my_xabs="$my_xlib" ;;
+       *) my_xabs=`pwd`"/$my_xlib" ;;
+      esac
+      my_xlib=`$echo "X$my_xlib" | $Xsed -e 's%^.*/%%'`
+      my_xdir="$my_gentop/$my_xlib"
+
+      $show "${rm}r $my_xdir"
+      $run ${rm}r "$my_xdir"
+      $show "$mkdir $my_xdir"
+      $run $mkdir "$my_xdir"
+      exit_status=$?
+      if test "$exit_status" -ne 0 && test ! -d "$my_xdir"; then
+       exit $exit_status
+      fi
+      case $host in
+      *-darwin*)
+       $show "Extracting $my_xabs"
+       # Do not bother doing anything if just a dry run
+       if test -z "$run"; then
+         darwin_orig_dir=`pwd`
+         cd $my_xdir || exit $?
+         darwin_archive=$my_xabs
+         darwin_curdir=`pwd`
+         darwin_base_archive=`$echo "X$darwin_archive" | $Xsed -e 's%^.*/%%'`
+         darwin_arches=`lipo -info "$darwin_archive" 2>/dev/null | $EGREP 
Architectures 2>/dev/null`
+         if test -n "$darwin_arches"; then 
+           darwin_arches=`echo "$darwin_arches" | $SED -e 's/.*are://'`
+           darwin_arch=
+           $show "$darwin_base_archive has multiple architectures 
$darwin_arches"
+           for darwin_arch in  $darwin_arches ; do
+             mkdir -p "unfat-$$/${darwin_base_archive}-${darwin_arch}"
+             lipo -thin $darwin_arch -output 
"unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" 
"${darwin_archive}"
+             cd "unfat-$$/${darwin_base_archive}-${darwin_arch}"
+             func_extract_an_archive "`pwd`" "${darwin_base_archive}"
+             cd "$darwin_curdir"
+             $rm 
"unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}"
+           done # $darwin_arches
+      ## Okay now we have a bunch of thin objects, gotta fatten them up :)
+           darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name 
\*.lo -print| xargs basename | sort -u | $NL2SP`
+           darwin_file=
+           darwin_files=
+           for darwin_file in $darwin_filelist; do
+             darwin_files=`find unfat-$$ -name $darwin_file -print | $NL2SP`
+             lipo -create -output "$darwin_file" $darwin_files
+           done # $darwin_filelist
+           ${rm}r unfat-$$
+           cd "$darwin_orig_dir"
+         else
+           cd "$darwin_orig_dir"
+           func_extract_an_archive "$my_xdir" "$my_xabs"
+         fi # $darwin_arches
+       fi # $run
+       ;;
+      *)
+        func_extract_an_archive "$my_xdir" "$my_xabs"
+        ;;
+      esac
+      my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name 
\*.lo -print | $NL2SP`
+    done
+    func_extract_archives_result="$my_oldobjs"
+}
 # End of Shell function definitions
 #####################################
 
 # Darwin sucks
 eval std_shrext=\"$shrext_cmds\"
 
+disable_libs=no
+
 # Parse our command line options once, thoroughly.
 while test "$#" -gt 0
 do
@@ -305,10 +456,10 @@
   --version)
     $echo "$PROGRAM (GNU $PACKAGE) $VERSION$TIMESTAMP"
     $echo
-    $echo "Copyright (C) 2003  Free Software Foundation, Inc."
+    $echo "Copyright (C) 2005  Free Software Foundation, Inc."
     $echo "This is free software; see the source for copying conditions.  
There is NO"
     $echo "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR 
PURPOSE."
-    exit $EXIT_SUCCESS
+    exit $?
     ;;
 
   --config)
@@ -317,7 +468,7 @@
     for tagname in $taglist; do
       ${SED} -n -e "/^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$/,/^# ### END 
LIBTOOL TAG CONFIG: $tagname$/p" < "$progpath"
     done
-    exit $EXIT_SUCCESS
+    exit $?
     ;;
 
   --debug)
@@ -342,7 +493,7 @@
     else
       $echo "disable static libraries"
     fi
-    exit $EXIT_SUCCESS
+    exit $?
     ;;
 
   --finish) mode="finish" ;;
@@ -357,7 +508,11 @@
     preserve_args="$preserve_args $arg"
     ;;
 
-  --tag) prevopt="--tag" prev=tag ;;
+  --tag)
+    prevopt="--tag"
+    prev=tag
+    preserve_args="$preserve_args --tag"
+    ;;
   --tag=*)
     set tag "$optarg" ${1+"$@"}
     shift
@@ -389,6 +544,18 @@
   exit $EXIT_FAILURE
 fi
 
+case $disable_libs in
+no) 
+  ;;
+shared)
+  build_libtool_libs=no
+  build_old_libs=yes
+  ;;
+static)
+  build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; 
esac`
+  ;;
+esac
+
 # If this variable is set in any of the actions, the command in it
 # will be execed at the end.  This prevents here-documents from being
 # left over by shells.
@@ -399,7 +566,7 @@
   # Infer the operation mode.
   if test -z "$mode"; then
     $echo "*** Warning: inferring the mode of operation is deprecated." 1>&2
-    $echo "*** Future versions of Libtool will require -mode=MODE be 
specified." 1>&2
+    $echo "*** Future versions of Libtool will require --mode=MODE be 
specified." 1>&2
     case $nonopt in
     *cc | cc* | *++ | gcc* | *-gcc* | g++* | xlc*)
       mode=link
@@ -465,7 +632,7 @@
 
     for arg
     do
-      case "$arg_mode" in
+      case $arg_mode in
       arg  )
        # do not "continue".  Instead, add this to base_compile
        lastarg="$arg"
@@ -547,7 +714,10 @@
       case $lastarg in
       # Double-quote args containing other shell metacharacters.
       # Many Bourne shells cannot handle close brackets correctly
-      # in scan sets, so we specify it separately.
+      # in scan sets, and some SunOS ksh mistreat backslash-escaping
+      # in scan sets (worked around with variable expansion),
+      # and furthermore cannot handle '|' '&' '(' ')' in scan sets 
+      # at all, so we specify them separately.
       *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \    ]*|*]*|"")
        lastarg="\"$lastarg\""
        ;;
@@ -621,6 +791,14 @@
       esac
     done
 
+    qlibobj=`$echo "X$libobj" | $Xsed -e "$sed_quote_subst"`
+    case $qlibobj in
+      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \    ]*|*]*|"")
+       qlibobj="\"$qlibobj\"" ;;
+    esac
+    test "X$libobj" != "X$qlibobj" \
+       && $echo "X$libobj" | grep '[]~#^*{};<>?"'"'"'  &()|`$[]' \
+       && $echo "$modename: libobj name \`$libobj' may not contain shell 
special characters."
     objname=`$echo "X$obj" | $Xsed -e 's%^.*/%%'`
     xdir=`$echo "X$obj" | $Xsed -e 's%/[^/]*$%%'`
     if test "X$xdir" = "X$obj"; then
@@ -693,12 +871,17 @@
        $run $rm $removelist
        exit $EXIT_FAILURE
       fi
-      $echo $srcfile > "$lockfile"
+      $echo "$srcfile" > "$lockfile"
     fi
 
     if test -n "$fix_srcfile_path"; then
       eval srcfile=\"$fix_srcfile_path\"
     fi
+    qsrcfile=`$echo "X$srcfile" | $Xsed -e "$sed_quote_subst"`
+    case $qsrcfile in
+      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \    ]*|*]*|"")
+      qsrcfile="\"$qsrcfile\"" ;;
+    esac
 
     $run $rm "$libobj" "${libobj}T"
 
@@ -720,18 +903,18 @@
       fbsd_hideous_sh_bug=$base_compile
 
       if test "$pic_mode" != no; then
-       command="$base_compile $srcfile $pic_flag"
+       command="$base_compile $qsrcfile $pic_flag"
       else
        # Don't build PIC code
-       command="$base_compile $srcfile"
+       command="$base_compile $qsrcfile"
       fi
 
       if test ! -d "${xdir}$objdir"; then
        $show "$mkdir ${xdir}$objdir"
        $run $mkdir ${xdir}$objdir
-       status=$?
-       if test "$status" -ne 0 && test ! -d "${xdir}$objdir"; then
-         exit $status
+       exit_status=$?
+       if test "$exit_status" -ne 0 && test ! -d "${xdir}$objdir"; then
+         exit $exit_status
        fi
       fi
 
@@ -803,9 +986,9 @@
     if test "$build_old_libs" = yes; then
       if test "$pic_mode" != yes; then
        # Don't build PIC code
-       command="$base_compile $srcfile"
+       command="$base_compile $qsrcfile"
       else
-       command="$base_compile $srcfile $pic_flag"
+       command="$base_compile $qsrcfile $pic_flag"
       fi
       if test "$compiler_c_o" = yes; then
        command="$command -o $obj"
@@ -934,6 +1117,7 @@
     no_install=no
     objs=
     non_pic_objects=
+    notinst_path= # paths that contain not-installed libtool libraries
     precious_files_regex=
     prefer_static_libs=no
     preload=no
@@ -962,14 +1146,15 @@
          if test -n "$link_static_flag"; then
            dlopen_self=$dlopen_self_static
          fi
+         prefer_static_libs=yes
        else
          if test -z "$pic_flag" && test -n "$link_static_flag"; then
            dlopen_self=$dlopen_self_static
          fi
+         prefer_static_libs=built
        fi
        build_libtool_libs=no
        build_old_libs=yes
-       prefer_static_libs=yes
        break
        ;;
       esac
@@ -1144,6 +1329,11 @@
                  if test -z "$pic_object" || test "$pic_object" = none ; then
                    arg="$non_pic_object"
                  fi
+               else
+                 # If the PIC object exists, use it instead.
+                 # $xdir was prepended to $pic_object above.
+                 non_pic_object="$pic_object"
+                 non_pic_objects="$non_pic_objects $non_pic_object"
                fi
              else
                # Only an error if not doing a dry-run.
@@ -1227,6 +1417,13 @@
          prev=
          continue
          ;;
+       darwin_framework|darwin_framework_skip)
+         test "$prev" = "darwin_framework" && compiler_flags="$compiler_flags 
$arg"
+         compile_command="$compile_command $arg"
+         finalize_command="$finalize_command $arg"
+         prev=
+         continue
+         ;;
        *)
          eval "$prev=\"\$arg\""
          prev=
@@ -1285,6 +1482,18 @@
        continue
        ;;
 
+      -framework|-arch|-isysroot)
+       case " $CC " in
+         *" ${arg} ${1} "* | *" ${arg} ${1} "*) 
+               prev=darwin_framework_skip ;;
+         *) compiler_flags="$compiler_flags $arg"
+            prev=darwin_framework ;;
+       esac
+       compile_command="$compile_command $arg"
+       finalize_command="$finalize_command $arg"
+       continue
+       ;;
+
       -inst-prefix-dir)
        prev=inst_prefix
        continue
@@ -1311,7 +1520,8 @@
          absdir=`cd "$dir" && pwd`
          if test -z "$absdir"; then
            $echo "$modename: cannot determine absolute directory name of 
\`$dir'" 1>&2
-           exit $EXIT_FAILURE
+           absdir="$dir"
+           notinst_path="$notinst_path $dir"
          fi
          dir="$absdir"
          ;;
@@ -1325,10 +1535,15 @@
        esac
        case $host in
        *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
+         testbindir=`$echo "X$dir" | $Xsed -e 's*/lib$*/bin*'`
          case :$dllsearchpath: in
          *":$dir:"*) ;;
          *) dllsearchpath="$dllsearchpath:$dir";;
          esac
+         case :$dllsearchpath: in
+         *":$testbindir:"*) ;;
+         *) dllsearchpath="$dllsearchpath:$testbindir";;
+         esac
          ;;
        esac
        continue
@@ -1337,15 +1552,15 @@
       -l*)
        if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then
          case $host in
-         *-*-cygwin* | *-*-pw32* | *-*-beos*)
+         *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos*)
            # These systems don't actually have a C or math library (as such)
            continue
            ;;
-         *-*-mingw* | *-*-os2*)
+         *-*-os2*)
            # These systems don't actually have a C library (as such)
            test "X$arg" = "X-lc" && continue
            ;;
-         *-*-openbsd* | *-*-freebsd*)
+         *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)
            # Do not include libc due to us having libc/libc_r.
            test "X$arg" = "X-lc" && continue
            ;;
@@ -1353,10 +1568,19 @@
            # Rhapsody C and math libraries are in the System framework
            deplibs="$deplibs -framework System"
            continue
+           ;;
+         *-*-sco3.2v5* | *-*-sco5v6*)
+           # Causes problems with __ctype
+           test "X$arg" = "X-lc" && continue
+           ;;
+         *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*)
+           # Compiler inserts libc in the correct place for threads to work
+           test "X$arg" = "X-lc" && continue
+           ;;
          esac
        elif test "X$arg" = "X-lc_r"; then
         case $host in
-        *-*-openbsd* | *-*-freebsd*)
+        *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)
           # Do not include libc_r directly, use -pthread flag.
           continue
           ;;
@@ -1366,8 +1590,20 @@
        continue
        ;;
 
+      # Tru64 UNIX uses -model [arg] to determine the layout of C++
+      # classes, name mangling, and exception handling.
+      -model)
+       compile_command="$compile_command $arg"
+       compiler_flags="$compiler_flags $arg"
+       finalize_command="$finalize_command $arg"
+       prev=xcompiler
+       continue
+       ;;
+
      -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe)
-       deplibs="$deplibs $arg"
+       compiler_flags="$compiler_flags $arg"
+       compile_command="$compile_command $arg"
+       finalize_command="$finalize_command $arg"
        continue
        ;;
 
@@ -1376,13 +1612,19 @@
        continue
        ;;
 
-      # gcc -m* arguments should be passed to the linker via $compiler_flags
-      # in order to pass architecture information to the linker
-      # (e.g. 32 vs 64-bit).  This may also be accomplished via -Wl,-mfoo
-      # but this is not reliable with gcc because gcc may use -mfoo to
-      # select a different linker, different libraries, etc, while
-      # -Wl,-mfoo simply passes -mfoo to the linker.
-      -m*)
+      # -64, -mips[0-9] enable 64-bit mode on the SGI compiler
+      # -r[0-9][0-9]* specifies the processor on the SGI compiler
+      # -xarch=*, -xtarget=* enable 64-bit mode on the Sun compiler
+      # +DA*, +DD* enable 64-bit mode on the HP compiler
+      # -q* pass through compiler args for the IBM compiler
+      # -m* pass through architecture-specific compiler args for GCC
+      # -m*, -t[45]*, -txscale* pass through architecture-specific
+      # compiler args for GCC
+      # -pg pass through profiling flag for GCC
+      # @file GCC response files
+      -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*|-pg| \
+      -t[45]*|-txscale*|@*)
+
        # Unknown arguments in both finalize_command and compile_command need
        # to be aesthetically quoted because they are evaled later.
        arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
@@ -1393,9 +1635,7 @@
        esac
         compile_command="$compile_command $arg"
         finalize_command="$finalize_command $arg"
-        if test "$with_gcc" = "yes" ; then
-          compiler_flags="$compiler_flags $arg"
-        fi
+        compiler_flags="$compiler_flags $arg"
         continue
         ;;
 
@@ -1633,6 +1873,11 @@
            if test -z "$pic_object" || test "$pic_object" = none ; then
              arg="$non_pic_object"
            fi
+         else
+           # If the PIC object exists, use it instead.
+           # $xdir was prepended to $pic_object above.
+           non_pic_object="$pic_object"
+           non_pic_objects="$non_pic_objects $non_pic_object"
          fi
        else
          # Only an error if not doing a dry-run.
@@ -1738,9 +1983,9 @@
     if test ! -d "$output_objdir"; then
       $show "$mkdir $output_objdir"
       $run $mkdir $output_objdir
-      status=$?
-      if test "$status" -ne 0 && test ! -d "$output_objdir"; then
-       exit $status
+      exit_status=$?
+      if test "$exit_status" -ne 0 && test ! -d "$output_objdir"; then
+       exit $exit_status
       fi
     fi
 
@@ -1803,7 +2048,6 @@
     newlib_search_path=
     need_relink=no # whether we're linking any uninstalled libtool libraries
     notinst_deplibs= # not-installed libtool libraries
-    notinst_path= # paths that contain not-installed libtool libraries
     case $linkmode in
     lib)
        passes="conv link"
@@ -1858,7 +2102,7 @@
            compile_deplibs="$deplib $compile_deplibs"
            finalize_deplibs="$deplib $finalize_deplibs"
          else
-           deplibs="$deplib $deplibs"
+           compiler_flags="$compiler_flags $deplib"
          fi
          continue
          ;;
@@ -1977,7 +2221,22 @@
          fi
          case $linkmode in
          lib)
-           if test "$deplibs_check_method" != pass_all; then
+           valid_a_lib=no
+           case $deplibs_check_method in
+             match_pattern*)
+               set dummy $deplibs_check_method
+               match_pattern_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"`
+               if eval $echo \"$deplib\" 2>/dev/null \
+                   | $SED 10q \
+                   | $EGREP "$match_pattern_regex" > /dev/null; then
+                 valid_a_lib=yes
+               fi
+               ;;
+             pass_all)
+               valid_a_lib=yes
+               ;;
+            esac
+           if test "$valid_a_lib" != yes; then
              $echo
              $echo "*** Warning: Trying to link with static lib archive 
$deplib."
              $echo "*** I have the capability to make that library 
automatically link in when"
@@ -2027,7 +2286,7 @@
        esac # case $deplib
        if test "$found" = yes || test -f "$lib"; then :
        else
-         $echo "$modename: cannot find the library \`$lib'" 1>&2
+         $echo "$modename: cannot find the library \`$lib' or unhandled 
argument \`$deplib'" 1>&2
          exit $EXIT_FAILURE
        fi
 
@@ -2051,7 +2310,9 @@
        # it will not redefine variables installed, or shouldnotlink
        installed=yes
        shouldnotlink=no
+       avoidtemprpath=
 
+
        # Read the .la file
        case $lib in
        */* | *\\*) . $lib ;;
@@ -2149,11 +2410,19 @@
            dir="$libdir"
            absdir="$libdir"
          fi
+         test "X$hardcode_automatic" = Xyes && avoidtemprpath=yes
        else
-         dir="$ladir/$objdir"
-         absdir="$abs_ladir/$objdir"
-         # Remove this search path later
-         notinst_path="$notinst_path $abs_ladir"
+         if test ! -f "$ladir/$objdir/$linklib" && test -f 
"$abs_ladir/$linklib"; then
+           dir="$ladir"
+           absdir="$abs_ladir"
+           # Remove this search path later
+           notinst_path="$notinst_path $abs_ladir"
+         else
+           dir="$ladir/$objdir"
+           absdir="$abs_ladir/$objdir"
+           # Remove this search path later
+           notinst_path="$notinst_path $abs_ladir"
+         fi
        fi # $installed = yes
        name=`$echo "X$laname" | $Xsed -e 's/\.la$//' -e 's/^lib//'`
 
@@ -2226,12 +2495,12 @@
          if test -n "$library_names" &&
             { test "$prefer_static_libs" = no || test -z "$old_library"; }; 
then
            # We need to hardcode the library path
-           if test -n "$shlibpath_var"; then
+           if test -n "$shlibpath_var" && test -z "$avoidtemprpath" ; then
              # Make sure the rpath contains only unique directories.
              case "$temp_rpath " in
              *" $dir "*) ;;
              *" $absdir "*) ;;
-             *) temp_rpath="$temp_rpath $dir" ;;
+             *) temp_rpath="$temp_rpath $absdir" ;;
              esac
            fi
 
@@ -2268,8 +2537,12 @@
        fi
 
        link_static=no # Whether the deplib will be linked statically
+       use_static_libs=$prefer_static_libs
+       if test "$use_static_libs" = built && test "$installed" = yes ; then
+         use_static_libs=no
+       fi
        if test -n "$library_names" &&
-          { test "$prefer_static_libs" = no || test -z "$old_library"; }; then
+          { test "$use_static_libs" = no || test -z "$old_library"; }; then
          if test "$installed" = no; then
            notinst_deplibs="$notinst_deplibs $lib"
            need_relink=yes
@@ -2382,11 +2655,15 @@
              if test "$hardcode_direct" = no; then
                add="$dir/$linklib"
                case $host in
-                 *-*-sco3.2v5* ) add_dir="-L$dir" ;;
+                 *-*-sco3.2v5.0.[024]*) add_dir="-L$dir" ;;
+                 *-*-sysv4*uw2*) add_dir="-L$dir" ;;
+                 *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \
+                   *-*-unixware7*) add_dir="-L$dir" ;;
                  *-*-darwin* )
                    # if the lib is a module then we can not link against
                    # it, someone is ignoring the new warnings I added
-                   if /usr/bin/file -L $add 2> /dev/null | $EGREP "bundle" 
>/dev/null ; then
+                   if /usr/bin/file -L $add 2> /dev/null |
+                      $EGREP ": [^:]* bundle" >/dev/null ; then
                      $echo "** Warning, lib $linklib is a module, not a shared 
library"
                      if test -z "$old_library" ; then
                        $echo
@@ -2417,7 +2694,7 @@
                add_dir="-L$dir"
                # Try looking first in the location we're being installed to.
                if test -n "$inst_prefix_dir"; then
-                 case "$libdir" in
+                 case $libdir in
                    [\\/]*)
                      add_dir="$add_dir -L$inst_prefix_dir$libdir"
                      ;;
@@ -2490,7 +2767,7 @@
              add_dir="-L$libdir"
              # Try looking first in the location we're being installed to.
              if test -n "$inst_prefix_dir"; then
-               case "$libdir" in
+               case $libdir in
                  [\\/]*)
                    add_dir="$add_dir -L$inst_prefix_dir$libdir"
                    ;;
@@ -2551,8 +2828,6 @@
              fi
            fi
          else
-           convenience="$convenience $dir/$old_library"
-           old_convenience="$old_convenience $dir/$old_library"
            deplibs="$dir/$old_library $deplibs"
            link_static=yes
          fi
@@ -2670,13 +2945,13 @@
              *) continue ;;
              esac
              case " $deplibs " in
+             *" $path "*) ;;
+             *) deplibs="$path $deplibs" ;;
+             esac
+             case " $deplibs " in
              *" $depdepl "*) ;;
              *) deplibs="$depdepl $deplibs" ;;
              esac
-             case " $deplibs " in
-             *" $path "*) ;;
-             *) deplibs="$deplibs $path" ;;
-             esac
            done
          fi # link_all_deplibs != no
        fi # linkmode = lib
@@ -2947,7 +3222,7 @@
        case $current in
        
0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9])
 ;;
        *)
-         $echo "$modename: CURRENT \`$current' is not a nonnegative integer" 
1>&2
+         $echo "$modename: CURRENT \`$current' must be a nonnegative integer" 
1>&2
          $echo "$modename: \`$vinfo' is not valid version information" 1>&2
          exit $EXIT_FAILURE
          ;;
@@ -2956,7 +3231,7 @@
        case $revision in
        
0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9])
 ;;
        *)
-         $echo "$modename: REVISION \`$revision' is not a nonnegative integer" 
1>&2
+         $echo "$modename: REVISION \`$revision' must be a nonnegative 
integer" 1>&2
          $echo "$modename: \`$vinfo' is not valid version information" 1>&2
          exit $EXIT_FAILURE
          ;;
@@ -2965,7 +3240,7 @@
        case $age in
        
0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9])
 ;;
        *)
-         $echo "$modename: AGE \`$age' is not a nonnegative integer" 1>&2
+         $echo "$modename: AGE \`$age' must be a nonnegative integer" 1>&2
          $echo "$modename: \`$vinfo' is not valid version information" 1>&2
          exit $EXIT_FAILURE
          ;;
@@ -2991,7 +3266,7 @@
          versuffix="$major.$age.$revision"
          # Darwin ld doesn't like 0 for these options...
          minor_current=`expr $current + 1`
-         verstring="-compatibility_version $minor_current -current_version 
$minor_current.$revision"
+         verstring="${wl}-compatibility_version ${wl}$minor_current 
${wl}-current_version ${wl}$minor_current.$revision"
          ;;
 
        freebsd-aout)
@@ -3144,9 +3419,9 @@
 
       # Eliminate all temporary directories.
       for path in $notinst_path; do
-       lib_search_path=`$echo "$lib_search_path " | ${SED} -e 's% $path % %g'`
-       deplibs=`$echo "$deplibs " | ${SED} -e 's% -L$path % %g'`
-       dependency_libs=`$echo "$dependency_libs " | ${SED} -e 's% -L$path % 
%g'`
+       lib_search_path=`$echo "$lib_search_path " | ${SED} -e "s% $path % %g"`
+       deplibs=`$echo "$deplibs " | ${SED} -e "s% -L$path % %g"`
+       dependency_libs=`$echo "$dependency_libs " | ${SED} -e "s% -L$path % 
%g"`
       done
 
       if test -n "$xrpath"; then
@@ -3197,10 +3472,15 @@
          *-*-netbsd*)
            # Don't link with libc until the a.out ld.so is fixed.
            ;;
-         *-*-openbsd* | *-*-freebsd*)
+         *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*)
            # Do not include libc due to us having libc/libc_r.
-           test "X$arg" = "X-lc" && continue
            ;;
+         *-*-sco3.2v5* | *-*-sco5v6*)
+           # Causes problems with __ctype
+           ;;
+         *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*)
+           # Compiler inserts libc in the correct place for threads to work
+           ;;
          *)
            # Add libc to deplibs on all other systems if necessary.
            if test "$build_libtool_need_lc" = "yes"; then
@@ -3243,11 +3523,11 @@
          int main() { return 0; }
 EOF
          $rm conftest
-         $LTCC -o conftest conftest.c $deplibs
+         $LTCC $LTCFLAGS -o conftest conftest.c $deplibs
          if test "$?" -eq 0 ; then
            ldd_output=`ldd conftest`
            for i in $deplibs; do
-             name="`expr $i : '-l\(.*\)'`"
+             name=`expr $i : '-l\(.*\)'`
              # If $name is empty we are operating on a -L argument.
               if test "$name" != "" && test "$name" -ne "0"; then
                if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; 
then
@@ -3284,11 +3564,11 @@
            # Error occurred in the first compile.  Let's try to salvage
            # the situation: Compile a separate program for each library.
            for i in $deplibs; do
-             name="`expr $i : '-l\(.*\)'`"
+             name=`expr $i : '-l\(.*\)'`
              # If $name is empty we are operating on a -L argument.
               if test "$name" != "" && test "$name" != "0"; then
                $rm conftest
-               $LTCC -o conftest conftest.c $i
+               $LTCC $LTCFLAGS -o conftest conftest.c $i
                # Did it work?
                if test "$?" -eq 0 ; then
                  ldd_output=`ldd conftest`
@@ -3336,7 +3616,7 @@
          set dummy $deplibs_check_method
          file_magic_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"`
          for a_deplib in $deplibs; do
-           name="`expr $a_deplib : '-l\(.*\)'`"
+           name=`expr $a_deplib : '-l\(.*\)'`
            # If $name is empty we are operating on a -L argument.
             if test "$name" != "" && test  "$name" != "0"; then
              if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; 
then
@@ -3405,7 +3685,7 @@
          set dummy $deplibs_check_method
          match_pattern_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"`
          for a_deplib in $deplibs; do
-           name="`expr $a_deplib : '-l\(.*\)'`"
+           name=`expr $a_deplib : '-l\(.*\)'`
            # If $name is empty we are operating on a -L argument.
            if test -n "$name" && test "$name" != "0"; then
              if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; 
then
@@ -3535,6 +3815,35 @@
        deplibs=$newdeplibs
       fi
 
+
+      # move library search paths that coincide with paths to not yet
+      # installed libraries to the beginning of the library search list
+      new_libs=
+      for path in $notinst_path; do
+       case " $new_libs " in
+       *" -L$path/$objdir "*) ;;
+       *)
+         case " $deplibs " in
+         *" -L$path/$objdir "*)
+           new_libs="$new_libs -L$path/$objdir" ;;
+         esac
+         ;;
+       esac
+      done
+      for deplib in $deplibs; do
+       case $deplib in
+       -L*)
+         case " $new_libs " in
+         *" $deplib "*) ;;
+         *) new_libs="$new_libs $deplib" ;;
+         esac
+         ;;
+       *) new_libs="$new_libs $deplib" ;;
+       esac
+      done
+      deplibs="$new_libs"
+
+
       # All the library-specific variables (install_libdir is set above).
       library_names=
       old_library=
@@ -3618,6 +3927,7 @@
        fi
 
        lib="$output_objdir/$realname"
+       linknames=
        for link
        do
          linknames="$linknames $link"
@@ -3646,6 +3956,9 @@
                # The command line is too long to execute in one step.
                $show "using reloadable object file for export list..."
                skipped_export=:
+               # Break out early, otherwise skipped_export may be
+               # set to false by a later but shorter cmd.
+               break
              fi
            done
            IFS="$save_ifs"
@@ -3679,67 +3992,13 @@
            eval libobjs=\"\$libobjs $whole_archive_flag_spec\"
          else
            gentop="$output_objdir/${outputname}x"
-           $show "${rm}r $gentop"
-           $run ${rm}r "$gentop"
-           $show "$mkdir $gentop"
-           $run $mkdir "$gentop"
-           status=$?
-           if test "$status" -ne 0 && test ! -d "$gentop"; then
-             exit $status
-           fi
            generated="$generated $gentop"
 
-           for xlib in $convenience; do
-             # Extract the objects.
-             case $xlib in
-             [\\/]* | [A-Za-z]:[\\/]*) xabs="$xlib" ;;
-             *) xabs=`pwd`"/$xlib" ;;
-             esac
-             xlib=`$echo "X$xlib" | $Xsed -e 's%^.*/%%'`
-             xdir="$gentop/$xlib"
-
-             $show "${rm}r $xdir"
-             $run ${rm}r "$xdir"
-             $show "$mkdir $xdir"
-             $run $mkdir "$xdir"
-             status=$?
-             if test "$status" -ne 0 && test ! -d "$xdir"; then
-               exit $status
-             fi
-             # We will extract separately just the conflicting names and we 
will no
-             # longer touch any unique names. It is faster to leave these 
extract
-             # automatically by $AR in one run.
-             $show "(cd $xdir && $AR x $xabs)"
-             $run eval "(cd \$xdir && $AR x \$xabs)" || exit $?
-             if ($AR t "$xabs" | sort | sort -uc >/dev/null 2>&1); then
-               :
-             else
-               $echo "$modename: warning: object name conflicts; renaming 
object files" 1>&2
-               $echo "$modename: warning: to ensure that they will not 
overwrite" 1>&2
-               $AR t "$xabs" | sort | uniq -cd | while read -r count name
-               do
-                 i=1
-                 while test "$i" -le "$count"
-                 do
-                  # Put our $i before any first dot (extension)
-                  # Never overwrite any file
-                  name_to="$name"
-                  while test "X$name_to" = "X$name" || test -f "$xdir/$name_to"
-                  do
-                    name_to=`$echo "X$name_to" | $Xsed -e "s/\([^.]*\)/\1-$i/"`
-                  done
-                  $show "(cd $xdir && $AR xN $i $xabs '$name' && $mv '$name' 
'$name_to')"
-                  $run eval "(cd \$xdir && $AR xN $i \$xabs '$name' && $mv 
'$name' '$name_to')" || exit $?
-                  i=`expr $i + 1`
-                 done
-               done
-             fi
-
-             libobjs="$libobjs "`find $xdir -name \*.$objext -print -o -name 
\*.lo -print | $NL2SP`
-           done
+           func_extract_archives $gentop $convenience
+           libobjs="$libobjs $func_extract_archives_result"
          fi
        fi
-
+       
        if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then
          eval flag=\"$thread_safe_flag_spec\"
          linker_flags="$linker_flags $flag"
@@ -3769,7 +4028,8 @@
          fi
        fi
 
-       if test "X$skipped_export" != "X:" && len=`expr "X$test_cmds" : ".*"` &&
+       if test "X$skipped_export" != "X:" &&
+          len=`expr "X$test_cmds" : ".*" 2>/dev/null` &&
           test "$len" -le "$max_cmd_len" || test "$max_cmd_len" -le -1; then
          :
        else
@@ -3788,6 +4048,7 @@
            save_libobjs=$libobjs
          fi
          save_output=$output
+         output_la=`$echo "X$output" | $Xsed -e "$basename"`
 
          # Clear the reloadable object creation command queue and
          # initialize k to one.
@@ -3797,13 +4058,13 @@
          delfiles=
          last_robj=
          k=1
-         output=$output_objdir/$save_output-${k}.$objext
+         output=$output_objdir/$output_la-${k}.$objext
          # Loop over the list of objects to be linked.
          for obj in $save_libobjs
          do
            eval test_cmds=\"$reload_cmds $objlist $last_robj\"
            if test "X$objlist" = X ||
-              { len=`expr "X$test_cmds" : ".*"` &&
+              { len=`expr "X$test_cmds" : ".*" 2>/dev/null` &&
                 test "$len" -le "$max_cmd_len"; }; then
              objlist="$objlist $obj"
            else
@@ -3817,9 +4078,9 @@
                # the last one created.
                eval concat_cmds=\"\$concat_cmds~$reload_cmds $objlist 
$last_robj\"
              fi
-             last_robj=$output_objdir/$save_output-${k}.$objext
+             last_robj=$output_objdir/$output_la-${k}.$objext
              k=`expr $k + 1`
-             output=$output_objdir/$save_output-${k}.$objext
+             output=$output_objdir/$output_la-${k}.$objext
              objlist=$obj
              len=1
            fi
@@ -3839,13 +4100,13 @@
            eval concat_cmds=\"\$concat_cmds~$export_symbols_cmds\"
           fi
 
-         # Set up a command to remove the reloadale object files
+         # Set up a command to remove the reloadable object files
          # after they are used.
          i=0
          while test "$i" -lt "$k"
          do
            i=`expr $i + 1`
-           delfiles="$delfiles $output_objdir/$save_output-${i}.$objext"
+           delfiles="$delfiles $output_objdir/$output_la-${i}.$objext"
          done
 
          $echo "creating a temporary reloadable object file: $output"
@@ -3893,13 +4154,30 @@
          IFS="$save_ifs"
          eval cmd=\"$cmd\"
          $show "$cmd"
-         $run eval "$cmd" || exit $?
+         $run eval "$cmd" || {
+           lt_exit=$?
+
+           # Restore the uninstalled library and exit
+           if test "$mode" = relink; then
+             $run eval '(cd $output_objdir && $rm ${realname}T && $mv 
${realname}U $realname)'
+           fi
+
+           exit $lt_exit
+         }
        done
        IFS="$save_ifs"
 
        # Restore the uninstalled library and exit
        if test "$mode" = relink; then
          $run eval '(cd $output_objdir && $rm ${realname}T && $mv $realname 
${realname}T && $mv "$realname"U $realname)' || exit $?
+
+         if test -n "$convenience"; then
+           if test -z "$whole_archive_flag_spec"; then
+             $show "${rm}r $gentop"
+             $run ${rm}r "$gentop"
+           fi
+         fi
+
          exit $EXIT_SUCCESS
        fi
 
@@ -3977,64 +4255,10 @@
          eval reload_conv_objs=\"\$reload_objs $whole_archive_flag_spec\"
        else
          gentop="$output_objdir/${obj}x"
-         $show "${rm}r $gentop"
-         $run ${rm}r "$gentop"
-         $show "$mkdir $gentop"
-         $run $mkdir "$gentop"
-         status=$?
-         if test "$status" -ne 0 && test ! -d "$gentop"; then
-           exit $status
-         fi
          generated="$generated $gentop"
 
-         for xlib in $convenience; do
-           # Extract the objects.
-           case $xlib in
-           [\\/]* | [A-Za-z]:[\\/]*) xabs="$xlib" ;;
-           *) xabs=`pwd`"/$xlib" ;;
-           esac
-           xlib=`$echo "X$xlib" | $Xsed -e 's%^.*/%%'`
-           xdir="$gentop/$xlib"
-
-           $show "${rm}r $xdir"
-           $run ${rm}r "$xdir"
-           $show "$mkdir $xdir"
-           $run $mkdir "$xdir"
-           status=$?
-           if test "$status" -ne 0 && test ! -d "$xdir"; then
-             exit $status
-           fi
-           # We will extract separately just the conflicting names and we will 
no
-           # longer touch any unique names. It is faster to leave these extract
-           # automatically by $AR in one run.
-           $show "(cd $xdir && $AR x $xabs)"
-           $run eval "(cd \$xdir && $AR x \$xabs)" || exit $?
-           if ($AR t "$xabs" | sort | sort -uc >/dev/null 2>&1); then
-             :
-           else
-             $echo "$modename: warning: object name conflicts; renaming object 
files" 1>&2
-             $echo "$modename: warning: to ensure that they will not 
overwrite" 1>&2
-             $AR t "$xabs" | sort | uniq -cd | while read -r count name
-             do
-               i=1
-               while test "$i" -le "$count"
-               do
-                # Put our $i before any first dot (extension)
-                # Never overwrite any file
-                name_to="$name"
-                while test "X$name_to" = "X$name" || test -f "$xdir/$name_to"
-                do
-                  name_to=`$echo "X$name_to" | $Xsed -e "s/\([^.]*\)/\1-$i/"`
-                done
-                $show "(cd $xdir && $AR xN $i $xabs '$name' && $mv '$name' 
'$name_to')"
-                $run eval "(cd \$xdir && $AR xN $i \$xabs '$name' && $mv 
'$name' '$name_to')" || exit $?
-                i=`expr $i + 1`
-               done
-             done
-           fi
-
-           reload_conv_objs="$reload_objs "`find $xdir -name \*.$objext -print 
-o -name \*.lo -print | $NL2SP`
-         done
+         func_extract_archives $gentop $convenience
+         reload_conv_objs="$reload_objs $func_extract_archives_result"
        fi
       fi
 
@@ -4135,6 +4359,35 @@
         ;;
       esac
 
+
+      # move library search paths that coincide with paths to not yet
+      # installed libraries to the beginning of the library search list
+      new_libs=
+      for path in $notinst_path; do
+       case " $new_libs " in
+       *" -L$path/$objdir "*) ;;
+       *)
+         case " $compile_deplibs " in
+         *" -L$path/$objdir "*)
+           new_libs="$new_libs -L$path/$objdir" ;;
+         esac
+         ;;
+       esac
+      done
+      for deplib in $compile_deplibs; do
+       case $deplib in
+       -L*)
+         case " $new_libs " in
+         *" $deplib "*) ;;
+         *) new_libs="$new_libs $deplib" ;;
+         esac
+         ;;
+       *) new_libs="$new_libs $deplib" ;;
+       esac
+      done
+      compile_deplibs="$new_libs"
+
+
       compile_command="$compile_command $compile_deplibs"
       finalize_command="$finalize_command $finalize_deplibs"
 
@@ -4179,10 +4432,15 @@
        fi
        case $host in
        *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2*)
+         testbindir=`$echo "X$libdir" | $Xsed -e 's*/lib$*/bin*'`
          case :$dllsearchpath: in
          *":$libdir:"*) ;;
          *) dllsearchpath="$dllsearchpath:$libdir";;
          esac
+         case :$dllsearchpath: in
+         *":$testbindir:"*) ;;
+         *) dllsearchpath="$dllsearchpath:$testbindir";;
+         esac
          ;;
        esac
       done
@@ -4296,13 +4554,25 @@
 
            # Prepare the list of exported symbols
            if test -z "$export_symbols"; then
-             export_symbols="$output_objdir/$output.exp"
+             export_symbols="$output_objdir/$outputname.exp"
              $run $rm $export_symbols
-             $run eval "${SED} -n -e '/^: @address@hidden/d' -e 's/^.* 
\(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"'
+             $run eval "${SED} -n -e '/^: @PROGRAM@ $/d' -e 's/^.* 
\(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"'
+              case $host in
+              *cygwin* | *mingw* )
+               $run eval "echo EXPORTS "'> "$output_objdir/$outputname.def"'
+               $run eval 'cat "$export_symbols" >> 
"$output_objdir/$outputname.def"'
+                ;;
+              esac
            else
-             $run eval "${SED} -e 's/\([][.*^$]\)/\\\1/g' -e 's/^/ /' -e 
's/$/$/'"' < "$export_symbols" > "$output_objdir/$output.exp"'
-             $run eval 'grep -f "$output_objdir/$output.exp" < "$nlist" > 
"$nlist"T'
+             $run eval "${SED} -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 
's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"'
+             $run eval 'grep -f "$output_objdir/$outputname.exp" < "$nlist" > 
"$nlist"T'
              $run eval 'mv "$nlist"T "$nlist"'
+              case $host in
+              *cygwin* | *mingw* )
+               $run eval "echo EXPORTS "'> "$output_objdir/$outputname.def"'
+               $run eval 'cat "$nlist" >> "$output_objdir/$outputname.def"'
+                ;;
+              esac
            fi
          fi
 
@@ -4353,7 +4623,26 @@
 #endif
 
 /* The mapping between symbol names and symbols. */
+"
+
+           case $host in
+           *cygwin* | *mingw* )
+         $echo >> "$output_objdir/$dlsyms" "\
+/* DATA imports from DLLs on WIN32 can't be const, because
+   runtime relocations are performed -- see ld's documentation
+   on pseudo-relocs */
+struct {
+"
+             ;;
+           * )
+         $echo >> "$output_objdir/$dlsyms" "\
 const struct {
+"
+             ;;
+           esac
+
+
+         $echo >> "$output_objdir/$dlsyms" "\
   const char *name;
   lt_ptr address;
 }
@@ -4400,16 +4689,29 @@
          esac
 
          # Now compile the dynamic symbol file.
-         $show "(cd $output_objdir && $LTCC 
-c$no_builtin_flag$pic_flag_for_symtable \"$dlsyms\")"
-         $run eval '(cd $output_objdir && $LTCC 
-c$no_builtin_flag$pic_flag_for_symtable "$dlsyms")' || exit $?
+         $show "(cd $output_objdir && $LTCC  $LTCFLAGS 
-c$no_builtin_flag$pic_flag_for_symtable \"$dlsyms\")"
+         $run eval '(cd $output_objdir && $LTCC  $LTCFLAGS 
-c$no_builtin_flag$pic_flag_for_symtable "$dlsyms")' || exit $?
 
          # Clean up the generated files.
          $show "$rm $output_objdir/$dlsyms $nlist ${nlist}S ${nlist}T"
          $run $rm "$output_objdir/$dlsyms" "$nlist" "${nlist}S" "${nlist}T"
 
          # Transform the symbol file into the correct name.
-         compile_command=`$echo "X$compile_command" | $Xsed -e 
"address@hidden@%$output_objdir/${outputname}S.${objext}%"`
-         finalize_command=`$echo "X$finalize_command" | $Xsed -e 
"address@hidden@%$output_objdir/${outputname}S.${objext}%"`
+          case $host in
+          *cygwin* | *mingw* )
+            if test -f "$output_objdir/${outputname}.def" ; then
+              compile_command=`$echo "X$compile_command" | $Xsed -e 
"address@hidden@%$output_objdir/${outputname}.def 
$output_objdir/${outputname}S.${objext}%"`
+              finalize_command=`$echo "X$finalize_command" | $Xsed -e 
"address@hidden@%$output_objdir/${outputname}.def 
$output_objdir/${outputname}S.${objext}%"`
+            else
+              compile_command=`$echo "X$compile_command" | $Xsed -e 
"address@hidden@%$output_objdir/${outputname}S.${objext}%"`
+              finalize_command=`$echo "X$finalize_command" | $Xsed -e 
"address@hidden@%$output_objdir/${outputname}S.${objext}%"`
+             fi
+            ;;
+          * )
+            compile_command=`$echo "X$compile_command" | $Xsed -e 
"address@hidden@%$output_objdir/${outputname}S.${objext}%"`
+            finalize_command=`$echo "X$finalize_command" | $Xsed -e 
"address@hidden@%$output_objdir/${outputname}S.${objext}%"`
+            ;;
+          esac
          ;;
        *)
          $echo "$modename: unknown suffix for \`$dlsyms'" 1>&2
@@ -4434,7 +4736,7 @@
        # We have no uninstalled library dependencies, so finalize right now.
        $show "$link_command"
        $run eval "$link_command"
-       status=$?
+       exit_status=$?
 
        # Delete the generated files.
        if test -n "$dlsyms"; then
@@ -4442,7 +4744,7 @@
          $run $rm "$output_objdir/${outputname}S.${objext}"
        fi
 
-       exit $status
+       exit $exit_status
       fi
 
       if test -n "$shlibpath_var"; then
@@ -4582,10 +4884,12 @@
        esac
        case $host in
          *cygwin* | *mingw* )
-           cwrappersource=`$echo ${objdir}/lt-${output}.c`
-           cwrapper=`$echo ${output}.exe`
-           $rm $cwrappersource $cwrapper
-           trap "$rm $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15
+            output_name=`basename $output`
+            output_path=`dirname $output`
+            cwrappersource="$output_path/$objdir/lt-$output_name.c"
+            cwrapper="$output_path/$output_name.exe"
+            $rm $cwrappersource $cwrapper
+            trap "$rm $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15
 
            cat > $cwrappersource <<EOF
 
@@ -4610,6 +4914,9 @@
 #include <malloc.h>
 #include <stdarg.h>
 #include <assert.h>
+#include <string.h>
+#include <ctype.h>
+#include <sys/stat.h>
 
 #if defined(PATH_MAX)
 # define LT_PATHMAX PATH_MAX
@@ -4620,16 +4927,20 @@
 #endif
 
 #ifndef DIR_SEPARATOR
-#define DIR_SEPARATOR '/'
+# define DIR_SEPARATOR '/'
+# define PATH_SEPARATOR ':'
 #endif
 
 #if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \
   defined (__OS2__)
-#define HAVE_DOS_BASED_FILE_SYSTEM
-#ifndef DIR_SEPARATOR_2
-#define DIR_SEPARATOR_2 '\\'
+# define HAVE_DOS_BASED_FILE_SYSTEM
+# ifndef DIR_SEPARATOR_2
+#  define DIR_SEPARATOR_2 '\\'
+# endif
+# ifndef PATH_SEPARATOR_2
+#  define PATH_SEPARATOR_2 ';'
+# endif
 #endif
-#endif
 
 #ifndef DIR_SEPARATOR_2
 # define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR)
@@ -4638,17 +4949,32 @@
         (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2))
 #endif /* DIR_SEPARATOR_2 */
 
+#ifndef PATH_SEPARATOR_2
+# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR)
+#else /* PATH_SEPARATOR_2 */
+# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2)
+#endif /* PATH_SEPARATOR_2 */
+
 #define XMALLOC(type, num)      ((type *) xmalloc ((num) * sizeof(type)))
 #define XFREE(stale) do { \
   if (stale) { free ((void *) stale); stale = 0; } \
 } while (0)
 
+/* -DDEBUG is fairly common in CFLAGS.  */
+#undef DEBUG
+#if defined DEBUGWRAPPER
+# define DEBUG(format, ...) fprintf(stderr, format, __VA_ARGS__)
+#else
+# define DEBUG(format, ...)
+#endif
+
 const char *program_name = NULL;
 
 void * xmalloc (size_t num);
 char * xstrdup (const char *string);
-char * basename (const char *name);
-char * fnqualify(const char *path);
+const char * base_name (const char *name);
+char * find_executable(const char *wrapper);
+int    check_executable(const char *path);
 char * strendzap(char *str, const char *pat);
 void lt_fatal (const char *message, ...);
 
@@ -4658,29 +4984,51 @@
   char **newargz;
   int i;
 
-  program_name = (char *) xstrdup ((char *) basename (argv[0]));
+  program_name = (char *) xstrdup (base_name (argv[0]));
+  DEBUG("(main) argv[0]      : %s\n",argv[0]);
+  DEBUG("(main) program_name : %s\n",program_name);
   newargz = XMALLOC(char *, argc+2);
 EOF
 
-           cat >> $cwrappersource <<EOF
-  newargz[0] = "$SHELL";
+            cat >> $cwrappersource <<EOF
+  newargz[0] = (char *) xstrdup("$SHELL");
 EOF
 
-           cat >> $cwrappersource <<"EOF"
-  newargz[1] = fnqualify(argv[0]);
+            cat >> $cwrappersource <<"EOF"
+  newargz[1] = find_executable(argv[0]);
+  if (newargz[1] == NULL)
+    lt_fatal("Couldn't find %s", argv[0]);
+  DEBUG("(main) found exe at : %s\n",newargz[1]);
   /* we know the script has the same name, without the .exe */
   /* so make sure newargz[1] doesn't end in .exe */
   strendzap(newargz[1],".exe");
   for (i = 1; i < argc; i++)
     newargz[i+1] = xstrdup(argv[i]);
   newargz[argc+1] = NULL;
+
+  for (i=0; i<argc+1; i++)
+  {
+    DEBUG("(main) newargz[%d]   : %s\n",i,newargz[i]);
+    ;
+  }
+
 EOF
 
-           cat >> $cwrappersource <<EOF
+            case $host_os in
+              mingw*)
+                cat >> $cwrappersource <<EOF
+  execv("$SHELL",(char const **)newargz);
+EOF
+              ;;
+              *)
+                cat >> $cwrappersource <<EOF
   execv("$SHELL",newargz);
 EOF
+              ;;
+            esac
 
-           cat >> $cwrappersource <<"EOF"
+            cat >> $cwrappersource <<"EOF"
+  return 127;
 }
 
 void *
@@ -4700,48 +5048,148 @@
 ;
 }
 
-char *
-basename (const char *name)
+const char *
+base_name (const char *name)
 {
   const char *base;
 
 #if defined (HAVE_DOS_BASED_FILE_SYSTEM)
   /* Skip over the disk name in MSDOS pathnames. */
-  if (isalpha (name[0]) && name[1] == ':')
+  if (isalpha ((unsigned char)name[0]) && name[1] == ':')
     name += 2;
 #endif
 
   for (base = name; *name; name++)
     if (IS_DIR_SEPARATOR (*name))
       base = name + 1;
-  return (char *) base;
+  return base;
 }
 
+int
+check_executable(const char * path)
+{
+  struct stat st;
+
+  DEBUG("(check_executable)  : %s\n", path ? (*path ? path : "EMPTY!") : 
"NULL!");
+  if ((!path) || (!*path))
+    return 0;
+
+  if ((stat (path, &st) >= 0) &&
+      (
+        /* MinGW & native WIN32 do not support S_IXOTH or S_IXGRP */
+#if defined (S_IXOTH)
+       ((st.st_mode & S_IXOTH) == S_IXOTH) ||
+#endif
+#if defined (S_IXGRP)
+       ((st.st_mode & S_IXGRP) == S_IXGRP) ||
+#endif
+       ((st.st_mode & S_IXUSR) == S_IXUSR))
+      )
+    return 1;
+  else
+    return 0;
+}
+
+/* Searches for the full path of the wrapper.  Returns
+   newly allocated full path name if found, NULL otherwise */
 char *
-fnqualify(const char *path)
+find_executable (const char* wrapper)
 {
-  size_t size;
-  char *p;
+  int has_slash = 0;
+  const char* p;
+  const char* p_next;
+  /* static buffer for getcwd */
   char tmp[LT_PATHMAX + 1];
+  int tmp_len;
+  char* concat_name;
 
-  assert(path != NULL);
+  DEBUG("(find_executable)  : %s\n", wrapper ? (*wrapper ? wrapper : "EMPTY!") 
: "NULL!");
 
-  /* Is it qualified already? */
+  if ((wrapper == NULL) || (*wrapper == '\0'))
+    return NULL;
+
+  /* Absolute path? */
 #if defined (HAVE_DOS_BASED_FILE_SYSTEM)
-  if (isalpha (path[0]) && path[1] == ':')
-    return xstrdup (path);
+  if (isalpha ((unsigned char)wrapper[0]) && wrapper[1] == ':')
+  {
+    concat_name = xstrdup (wrapper);
+    if (check_executable(concat_name))
+      return concat_name;
+    XFREE(concat_name);
+  }
+  else
+  {
 #endif
-  if (IS_DIR_SEPARATOR (path[0]))
-    return xstrdup (path);
+    if (IS_DIR_SEPARATOR (wrapper[0]))
+    {
+      concat_name = xstrdup (wrapper);
+      if (check_executable(concat_name))
+        return concat_name;
+      XFREE(concat_name);
+    }
+#if defined (HAVE_DOS_BASED_FILE_SYSTEM)
+  }
+#endif
 
-  /* prepend the current directory */
-  /* doesn't handle '~' */
+  for (p = wrapper; *p; p++)
+    if (*p == '/')
+    {
+      has_slash = 1;
+      break;
+    }
+  if (!has_slash)
+  {
+    /* no slashes; search PATH */
+    const char* path = getenv ("PATH");
+    if (path != NULL)
+    {
+      for (p = path; *p; p = p_next)
+      {
+        const char* q;
+        size_t p_len;
+        for (q = p; *q; q++)
+          if (IS_PATH_SEPARATOR(*q))
+            break;
+        p_len = q - p;
+        p_next = (*q == '\0' ? q : q + 1);
+        if (p_len == 0)
+        {
+          /* empty path: current directory */
+          if (getcwd (tmp, LT_PATHMAX) == NULL)
+            lt_fatal ("getcwd failed");
+          tmp_len = strlen(tmp);
+          concat_name = XMALLOC(char, tmp_len + 1 + strlen(wrapper) + 1);
+          memcpy (concat_name, tmp, tmp_len);
+          concat_name[tmp_len] = '/';
+          strcpy (concat_name + tmp_len + 1, wrapper);
+        }
+        else
+        {
+          concat_name = XMALLOC(char, p_len + 1 + strlen(wrapper) + 1);
+          memcpy (concat_name, p, p_len);
+          concat_name[p_len] = '/';
+          strcpy (concat_name + p_len + 1, wrapper);
+        }
+        if (check_executable(concat_name))
+          return concat_name;
+        XFREE(concat_name);
+      }
+    }
+    /* not found in PATH; assume curdir */
+  }
+  /* Relative path | not found in path: prepend cwd */
   if (getcwd (tmp, LT_PATHMAX) == NULL)
     lt_fatal ("getcwd failed");
-  size = strlen(tmp) + 1 + strlen(path) + 1; /* +2 for '/' and '\0' */
-  p = XMALLOC(char, size);
-  sprintf(p, "%s%c%s", tmp, DIR_SEPARATOR, path);
-  return p;
+  tmp_len = strlen(tmp);
+  concat_name = XMALLOC(char, tmp_len + 1 + strlen(wrapper) + 1);
+  memcpy (concat_name, tmp, tmp_len);
+  concat_name[tmp_len] = '/';
+  strcpy (concat_name + tmp_len + 1, wrapper);
+
+  if (check_executable(concat_name))
+    return concat_name;
+  XFREE(concat_name);
+  return NULL;
 }
 
 char *
@@ -4785,16 +5233,16 @@
   va_end (ap);
 }
 EOF
-         # we should really use a build-platform specific compiler
-         # here, but OTOH, the wrappers (shell script and this C one)
-         # are only useful if you want to execute the "real" binary.
-         # Since the "real" binary is built for $host, then this
-         # wrapper might as well be built for $host, too.
-         $run $LTCC -s -o $cwrapper $cwrappersource
-         ;;
-       esac
-       $rm $output
-       trap "$rm $output; exit $EXIT_FAILURE" 1 2 15
+          # we should really use a build-platform specific compiler
+          # here, but OTOH, the wrappers (shell script and this C one)
+          # are only useful if you want to execute the "real" binary.
+          # Since the "real" binary is built for $host, then this
+          # wrapper might as well be built for $host, too.
+          $run $LTCC $LTCFLAGS -s -o $cwrapper $cwrappersource
+          ;;
+        esac
+        $rm $output
+        trap "$rm $output; exit $EXIT_FAILURE" 1 2 15
 
        $echo > $output "\
 #! $SHELL
@@ -4815,7 +5263,7 @@
 
 # The HP-UX ksh and POSIX shell print the target directory to stdout
 # if CDPATH is set.
-if test \"\${CDPATH+set}\" = set; then CDPATH=:; export CDPATH; fi
+(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
 
 relink_command=\"$relink_command\"
 
@@ -4944,13 +5392,13 @@
        # Backslashes separate directories on plain windows
        *-*-mingw | *-*-os2*)
          $echo >> $output "\
-      exec \$progdir\\\\\$program \${1+\"address@hidden"}
+      exec \"\$progdir\\\\\$program\" \${1+\"address@hidden"}
 "
          ;;
 
        *)
          $echo >> $output "\
-      exec \$progdir/\$program \${1+\"address@hidden"}
+      exec \"\$progdir/\$program\" \${1+\"address@hidden"}
 "
          ;;
        esac
@@ -4960,7 +5408,7 @@
     fi
   else
     # The program doesn't exist.
-    \$echo \"\$0: error: \$progdir/\$program does not exist\" 1>&2
+    \$echo \"\$0: error: \\\`\$progdir/\$program' does not exist\" 1>&2
     \$echo \"This script is just a wrapper for \$program.\" 1>&2
     $echo \"See the $PACKAGE documentation for more information.\" 1>&2
     exit $EXIT_FAILURE
@@ -4992,71 +5440,73 @@
 
       if test -n "$addlibs"; then
        gentop="$output_objdir/${outputname}x"
-       $show "${rm}r $gentop"
-       $run ${rm}r "$gentop"
-       $show "$mkdir $gentop"
-       $run $mkdir "$gentop"
-       status=$?
-       if test "$status" -ne 0 && test ! -d "$gentop"; then
-         exit $status
-       fi
        generated="$generated $gentop"
 
-       # Add in members from convenience archives.
-       for xlib in $addlibs; do
-         # Extract the objects.
-         case $xlib in
-         [\\/]* | [A-Za-z]:[\\/]*) xabs="$xlib" ;;
-         *) xabs=`pwd`"/$xlib" ;;
-         esac
-         xlib=`$echo "X$xlib" | $Xsed -e 's%^.*/%%'`
-         xdir="$gentop/$xlib"
-
-         $show "${rm}r $xdir"
-         $run ${rm}r "$xdir"
-         $show "$mkdir $xdir"
-         $run $mkdir "$xdir"
-         status=$?
-         if test "$status" -ne 0 && test ! -d "$xdir"; then
-           exit $status
-         fi
-         # We will extract separately just the conflicting names and we will no
-         # longer touch any unique names. It is faster to leave these extract
-         # automatically by $AR in one run.
-         $show "(cd $xdir && $AR x $xabs)"
-         $run eval "(cd \$xdir && $AR x \$xabs)" || exit $?
-         if ($AR t "$xabs" | sort | sort -uc >/dev/null 2>&1); then
-           :
-         else
-           $echo "$modename: warning: object name conflicts; renaming object 
files" 1>&2
-           $echo "$modename: warning: to ensure that they will not overwrite" 
1>&2
-           $AR t "$xabs" | sort | uniq -cd | while read -r count name
-           do
-             i=1
-             while test "$i" -le "$count"
-             do
-              # Put our $i before any first dot (extension)
-              # Never overwrite any file
-              name_to="$name"
-              while test "X$name_to" = "X$name" || test -f "$xdir/$name_to"
-              do
-                name_to=`$echo "X$name_to" | $Xsed -e "s/\([^.]*\)/\1-$i/"`
-              done
-              $show "(cd $xdir && $AR xN $i $xabs '$name' && $mv '$name' 
'$name_to')"
-              $run eval "(cd \$xdir && $AR xN $i \$xabs '$name' && $mv '$name' 
'$name_to')" || exit $?
-              i=`expr $i + 1`
-             done
-           done
-         fi
-
-         oldobjs="$oldobjs "`find $xdir -name \*.${objext} -print -o -name 
\*.lo -print | $NL2SP`
-       done
+       func_extract_archives $gentop $addlibs
+       oldobjs="$oldobjs $func_extract_archives_result"
       fi
 
       # Do each command in the archive commands.
       if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = 
yes; then
        cmds=$old_archive_from_new_cmds
       else
+       # POSIX demands no paths to be encoded in archives.  We have
+       # to avoid creating archives with duplicate basenames if we
+       # might have to extract them afterwards, e.g., when creating a
+       # static archive out of a convenience library, or when linking
+       # the entirety of a libtool archive into another (currently
+       # not supported by libtool).
+       if (for obj in $oldobjs
+           do
+             $echo "X$obj" | $Xsed -e 's%^.*/%%'
+           done | sort | sort -uc >/dev/null 2>&1); then
+         :
+       else
+         $echo "copying selected object files to avoid basename conflicts..."
+
+         if test -z "$gentop"; then
+           gentop="$output_objdir/${outputname}x"
+           generated="$generated $gentop"
+
+           $show "${rm}r $gentop"
+           $run ${rm}r "$gentop"
+           $show "$mkdir $gentop"
+           $run $mkdir "$gentop"
+           exit_status=$?
+           if test "$exit_status" -ne 0 && test ! -d "$gentop"; then
+             exit $exit_status
+           fi
+         fi
+
+         save_oldobjs=$oldobjs
+         oldobjs=
+         counter=1
+         for obj in $save_oldobjs
+         do
+           objbase=`$echo "X$obj" | $Xsed -e 's%^.*/%%'`
+           case " $oldobjs " in
+           " ") oldobjs=$obj ;;
+           *[\ /]"$objbase "*)
+             while :; do
+               # Make sure we don't pick an alternate name that also
+               # overlaps.
+               newobj=lt$counter-$objbase
+               counter=`expr $counter + 1`
+               case " $oldobjs " in
+               *[\ /]"$newobj "*) ;;
+               *) if test ! -f "$gentop/$newobj"; then break; fi ;;
+               esac
+             done
+             $show "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj"
+             $run ln "$obj" "$gentop/$newobj" ||
+             $run cp "$obj" "$gentop/$newobj"
+             oldobjs="$oldobjs $gentop/$newobj"
+             ;;
+           *) oldobjs="$oldobjs $obj" ;;
+           esac
+         done
+       fi
+
        eval cmds=\"$old_archive_cmds\"
 
        if len=`expr "X$cmds" : ".*"` &&
@@ -5070,20 +5520,7 @@
          objlist=
          concat_cmds=
          save_oldobjs=$oldobjs
-         # GNU ar 2.10+ was changed to match POSIX; thus no paths are
-         # encoded into archives.  This makes 'ar r' malfunction in
-         # this piecewise linking case whenever conflicting object
-         # names appear in distinct ar calls; check, warn and compensate.
-           if (for obj in $save_oldobjs
-           do
-             $echo "X$obj" | $Xsed -e 's%^.*/%%'
-           done | sort | sort -uc >/dev/null 2>&1); then
-           :
-         else
-           $echo "$modename: warning: object name conflicts; overriding 
AR_FLAGS to 'cq'" 1>&2
-           $echo "$modename: warning: to ensure that POSIX-compatible ar will 
work" 1>&2
-           AR_FLAGS=cq
-         fi
+
          # Is there a better way of finding the last object in the list?
          for obj in $save_oldobjs
          do
@@ -5094,7 +5531,7 @@
            oldobjs="$objlist $obj"
            objlist="$objlist $obj"
            eval test_cmds=\"$old_archive_cmds\"
-           if len=`expr "X$test_cmds" : ".*"` &&
+           if len=`expr "X$test_cmds" : ".*" 2>/dev/null` &&
               test "$len" -le "$max_cmd_len"; then
              :
            else
@@ -5291,11 +5728,11 @@
     # install_prog (especially on Windows NT).
     if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh ||
        # Allow the use of GNU shtool's install command.
-       $echo "X$nonopt" | $Xsed | grep shtool > /dev/null; then
+       $echo "X$nonopt" | grep shtool > /dev/null; then
       # Aesthetically quote it.
       arg=`$echo "X$nonopt" | $Xsed -e "$sed_quote_subst"`
       case $arg in
-      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \    ]*|*]*)
+      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \    ]*|*]*|"")
        arg="\"$arg\""
        ;;
       esac
@@ -5304,14 +5741,14 @@
       shift
     else
       install_prog=
-      arg="$nonopt"
+      arg=$nonopt
     fi
 
     # The real first argument should be the name of the installation program.
     # Aesthetically quote it.
     arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
     case $arg in
-    *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \      ]*|*]*)
+    *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \      ]*|*]*|"")
       arg="\"$arg\""
       ;;
     esac
@@ -5329,28 +5766,31 @@
     do
       if test -n "$dest"; then
        files="$files $dest"
-       dest="$arg"
+       dest=$arg
        continue
       fi
 
       case $arg in
       -d) isdir=yes ;;
-      -f) prev="-f" ;;
-      -g) prev="-g" ;;
-      -m) prev="-m" ;;
-      -o) prev="-o" ;;
+      -f) 
+       case " $install_prog " in
+       *[\\\ /]cp\ *) ;;
+       *) prev=$arg ;;
+       esac
+       ;;
+      -g | -m | -o) prev=$arg ;;
       -s)
        stripme=" -s"
        continue
        ;;
-      -*) ;;
-
+      -*)
+       ;;
       *)
        # If the previous option needed an argument, then skip it.
        if test -n "$prev"; then
          prev=
        else
-         dest="$arg"
+         dest=$arg
          continue
        fi
        ;;
@@ -5359,7 +5799,7 @@
       # Aesthetically quote the argument.
       arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
       case $arg in
-      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \    ]*|*]*)
+      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \    ]*|*]*|"")
        arg="\"$arg\""
        ;;
       esac
@@ -5528,11 +5968,14 @@
 
          if test "$#" -gt 0; then
            # Delete the old symlinks, and create new ones.
+           # Try `ln -sf' first, because the `ln' binary might depend on
+           # the symlink we replace!  Solaris /bin/ln does not understand -f,
+           # so we also need to try rm && ln -s.
            for linkname
            do
              if test "$linkname" != "$realname"; then
-               $show "(cd $destdir && $rm $linkname && $LN_S $realname 
$linkname)"
-               $run eval "(cd $destdir && $rm $linkname && $LN_S $realname 
$linkname)"
+                $show "(cd $destdir && { $LN_S -f $realname $linkname || { $rm 
$linkname && $LN_S $realname $linkname; }; })"
+                $run eval "(cd $destdir && { $LN_S -f $realname $linkname || { 
$rm $linkname && $LN_S $realname $linkname; }; })"
              fi
            done
          fi
@@ -5545,7 +5988,16 @@
            IFS="$save_ifs"
            eval cmd=\"$cmd\"
            $show "$cmd"
-           $run eval "$cmd" || exit $?
+           $run eval "$cmd" || {
+             lt_exit=$?
+
+             # Restore the uninstalled library and exit
+             if test "$mode" = relink; then
+               $run eval '(cd $output_objdir && $rm ${realname}T && $mv 
${realname}U $realname)'
+             fi
+
+             exit $lt_exit
+           }
          done
          IFS="$save_ifs"
        fi
@@ -5639,17 +6091,15 @@
          notinst_deplibs=
          relink_command=
 
-         # To insure that "foo" is sourced, and not "foo.exe",
-         # finese the cygwin/MSYS system by explicitly sourcing "foo."
-         # which disallows the automatic-append-.exe behavior.
-         case $build in
-         *cygwin* | *mingw*) wrapperdot=${wrapper}. ;;
-         *) wrapperdot=${wrapper} ;;
-         esac
+         # Note that it is not necessary on cygwin/mingw to append a dot to
+         # foo even if both foo and FILE.exe exist: automatic-append-.exe
+         # behavior happens only for exec(3), not for open(2)!  Also, sourcing
+         # `FILE.' does not work on cygwin managed mounts.
+         #
          # If there is no directory component, then add one.
-         case $file in
-         */* | *\\*) . ${wrapperdot} ;;
-         *) . ./${wrapperdot} ;;
+         case $wrapper in
+         */* | *\\*) . ${wrapper} ;;
+         *) . ./${wrapper} ;;
          esac
 
          # Check the variables that should have been set.
@@ -5677,34 +6127,21 @@
          done
 
          relink_command=
-         # To insure that "foo" is sourced, and not "foo.exe",
-         # finese the cygwin/MSYS system by explicitly sourcing "foo."
-         # which disallows the automatic-append-.exe behavior.
-         case $build in
-         *cygwin* | *mingw*) wrapperdot=${wrapper}. ;;
-         *) wrapperdot=${wrapper} ;;
-         esac
+         # Note that it is not necessary on cygwin/mingw to append a dot to
+         # foo even if both foo and FILE.exe exist: automatic-append-.exe
+         # behavior happens only for exec(3), not for open(2)!  Also, sourcing
+         # `FILE.' does not work on cygwin managed mounts.
+         #
          # If there is no directory component, then add one.
-         case $file in
-         */* | *\\*) . ${wrapperdot} ;;
-         *) . ./${wrapperdot} ;;
+         case $wrapper in
+         */* | *\\*) . ${wrapper} ;;
+         *) . ./${wrapper} ;;
          esac
 
          outputname=
          if test "$fast_install" = no && test -n "$relink_command"; then
            if test "$finalize" = yes && test -z "$run"; then
-             tmpdir="/tmp"
-             test -n "$TMPDIR" && tmpdir="$TMPDIR"
-             tmpdir="$tmpdir/libtool-$$"
-             save_umask=`umask`
-             umask 0077
-             if $mkdir "$tmpdir"; then
-               umask $save_umask
-             else
-               umask $save_umask
-               $echo "$modename: error: cannot create temporary directory 
\`$tmpdir'" 1>&2
-               continue
-             fi
+             tmpdir=`func_mktempdir`
              file=`$echo "X$file$stripped_ext" | $Xsed -e 's%^.*/%%'`
              outputname="$tmpdir/$file"
              # Replace the output file specification.
@@ -5728,7 +6165,7 @@
        fi
 
        # remove .exe since cygwin /usr/bin/install will append another
-       # one anyways
+       # one anyway 
        case $install_prog,$host in
        */usr/bin/install*,*cygwin*)
          case $file:$destfile in
@@ -5828,7 +6265,7 @@
     # Exit here if they wanted silent mode.
     test "$show" = : && exit $EXIT_SUCCESS
 
-    $echo 
"----------------------------------------------------------------------"
+    $echo 
"X----------------------------------------------------------------------" | 
$Xsed
     $echo "Libraries have been installed in:"
     for libdir in $libdirs; do
       $echo "   $libdir"
@@ -5861,7 +6298,7 @@
     $echo
     $echo "See any operating system documentation about shared libraries for"
     $echo "more information, such as the ld(1) and ld.so(8) manual pages."
-    $echo 
"----------------------------------------------------------------------"
+    $echo 
"X----------------------------------------------------------------------" | 
$Xsed
     exit $EXIT_SUCCESS
     ;;
 
@@ -6078,9 +6515,17 @@
            rmfiles="$rmfiles $objdir/$n"
          done
          test -n "$old_library" && rmfiles="$rmfiles $objdir/$old_library"
-         test "$mode" = clean && rmfiles="$rmfiles $objdir/$name 
$objdir/${name}i"
 
-         if test "$mode" = uninstall; then
+         case "$mode" in
+         clean)
+           case "  $library_names " in
+           # "  " in the beginning catches empty $dlname
+           *" $dlname "*) ;;
+           *) rmfiles="$rmfiles $objdir/$dlname" ;;
+           esac
+            test -n "$libdir" && rmfiles="$rmfiles $objdir/$name 
$objdir/${name}i"
+           ;;
+         uninstall)
            if test -n "$library_names"; then
              # Do each command in the postuninstall commands.
              cmds=$postuninstall_cmds
@@ -6113,7 +6558,8 @@
              IFS="$save_ifs"
            fi
            # FIXME: should reinstall the best remaining shared library.
-         fi
+           ;;
+         esac
        fi
        ;;
 
@@ -6398,7 +6844,7 @@
 $echo
 $echo "Try \`$modename --help' for more information about other modes."
 
-exit $EXIT_SUCCESS
+exit $?
 
 # The TAGs below are defined such that we never get into a situation
 # in which we disable both kinds of libraries.  Given conflicting
@@ -6412,12 +6858,11 @@
 # configuration.  But we'll never go from static-only to shared-only.
 
 # ### BEGIN LIBTOOL TAG CONFIG: disable-shared
-build_libtool_libs=no
-build_old_libs=yes
+disable_libs=shared
 # ### END LIBTOOL TAG CONFIG: disable-shared
 
 # ### BEGIN LIBTOOL TAG CONFIG: disable-static
-build_old_libs=`case $build_libtool_libs in yes) $echo no;; *) $echo yes;; 
esac`
+disable_libs=static
 # ### END LIBTOOL TAG CONFIG: disable-static
 
 # Local Variables:

Modified: GNUnet/m4/Makefile.in
===================================================================
--- GNUnet/m4/Makefile.in       2006-07-04 21:59:06 UTC (rev 3095)
+++ GNUnet/m4/Makefile.in       2006-07-04 22:00:47 UTC (rev 3096)
@@ -37,14 +37,14 @@
 subdir = m4
 DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ChangeLog
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
-am__aclocal_m4_deps = $(top_srcdir)/m4/ac_define_dir.m4 \
-       $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/gtk-2.0.m4 \
-       $(top_srcdir)/m4/guile.m4 $(top_srcdir)/m4/iconv.m4 \
-       $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \
-       $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libgcrypt.m4 \
-       $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/pkg.m4 \
-       $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \
-       $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
+am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \
+       $(top_srcdir)/m4/gtk-2.0.m4 $(top_srcdir)/m4/guile.m4 \
+       $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/lib-ld.m4 \
+       $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \
+       $(top_srcdir)/m4/libgcrypt.m4 $(top_srcdir)/m4/nls.m4 \
+       $(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/po.m4 \
+       $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/acinclude.m4 \
+       $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
@@ -77,7 +77,6 @@
 CYGPATH_W = @CYGPATH_W@
 CYGWIN_FALSE = @CYGWIN_FALSE@
 CYGWIN_TRUE = @CYGWIN_TRUE@
-DATADIR = @DATADIR@
 DEFS = @DEFS@
 DEPDIR = @DEPDIR@
 DLLTOOL = @DLLTOOL@
@@ -94,6 +93,7 @@
 GMSGFMT = @GMSGFMT@
 GNUNETGTK_CFLAGS = @GNUNETGTK_CFLAGS@
 GNUNETGTK_LIBS = @GNUNETGTK_LIBS@
+GREP = @GREP@
 GTK_CFLAGS = @GTK_CFLAGS@
 GTK_LIBS = @GTK_LIBS@
 GUILE = @GUILE@
@@ -134,7 +134,6 @@
 LIBS = @LIBS@
 LIBTOOL = @LIBTOOL@
 LN_S = @LN_S@
-LOCALEDIR = @LOCALEDIR@
 LTDLINCL = @LTDLINCL@
 LTLIBICONV = @LTLIBICONV@
 LTLIBINTL = @LTLIBINTL@
@@ -171,15 +170,9 @@
 XFREEBSD_FALSE = @XFREEBSD_FALSE@
 XFREEBSD_TRUE = @XFREEBSD_TRUE@
 XGETTEXT = @XGETTEXT@
-ac_ct_AR = @ac_ct_AR@
-ac_ct_AS = @ac_ct_AS@
 ac_ct_CC = @ac_ct_CC@
 ac_ct_CXX = @ac_ct_CXX@
-ac_ct_DLLTOOL = @ac_ct_DLLTOOL@
 ac_ct_F77 = @ac_ct_F77@
-ac_ct_OBJDUMP = @ac_ct_OBJDUMP@
-ac_ct_RANLIB = @ac_ct_RANLIB@
-ac_ct_STRIP = @ac_ct_STRIP@
 am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
 am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
 am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
@@ -194,6 +187,9 @@
 build_os = @build_os@
 build_vendor = @build_vendor@
 datadir = @datadir@
+datarootdir = @datarootdir@
+docdir = @docdir@
+dvidir = @dvidir@
 exec_prefix = @exec_prefix@
 guile_available = @guile_available@
 host = @host@
@@ -201,17 +197,21 @@
 host_cpu = @host_cpu@
 host_os = @host_os@
 host_vendor = @host_vendor@
+htmldir = @htmldir@
 includedir = @includedir@
 infodir = @infodir@
 install_sh = @install_sh@
 libdir = @libdir@
 libexecdir = @libexecdir@
+localedir = @localedir@
 localstatedir = @localstatedir@
 mandir = @mandir@
 mkdir_p = @mkdir_p@
 oldincludedir = @oldincludedir@
+pdfdir = @pdfdir@
 prefix = @prefix@
 program_transform_name = @program_transform_name@
+psdir = @psdir@
 sbindir = @sbindir@
 sharedstatedir = @sharedstatedir@
 subdirs = @subdirs@

Modified: GNUnet/src/util/getopt/Makefile
===================================================================
--- GNUnet/src/util/getopt/Makefile     2006-07-04 21:59:06 UTC (rev 3095)
+++ GNUnet/src/util/getopt/Makefile     2006-07-04 22:00:47 UTC (rev 3096)
@@ -40,14 +40,14 @@
 subdir = src/util/getopt
 DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
-am__aclocal_m4_deps = $(top_srcdir)/m4/ac_define_dir.m4 \
-       $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/gtk-2.0.m4 \
-       $(top_srcdir)/m4/guile.m4 $(top_srcdir)/m4/iconv.m4 \
-       $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \
-       $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libgcrypt.m4 \
-       $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/pkg.m4 \
-       $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \
-       $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
+am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \
+       $(top_srcdir)/m4/gtk-2.0.m4 $(top_srcdir)/m4/guile.m4 \
+       $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/lib-ld.m4 \
+       $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \
+       $(top_srcdir)/m4/libgcrypt.m4 $(top_srcdir)/m4/nls.m4 \
+       $(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/po.m4 \
+       $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/acinclude.m4 \
+       $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
@@ -109,7 +109,6 @@
 CYGPATH_W = echo
 CYGWIN_FALSE = 
 CYGWIN_TRUE = #
-DATADIR = /home/grothoff//share/GNUnet/
 DEFS = -DHAVE_CONFIG_H
 DEPDIR = .deps
 DLLTOOL = dlltool
@@ -117,7 +116,7 @@
 ECHO_C = 
 ECHO_N = -n
 ECHO_T = 
-EGREP = grep -E
+EGREP = /bin/grep -E
 EXEEXT = 
 EXT_LIBS = 
 EXT_LIB_PATH = -L/home/grothoff//lib 
@@ -126,6 +125,7 @@
 GMSGFMT = /usr/bin/msgfmt
 GNUNETGTK_CFLAGS = -I/usr/include/libglade-2.0 -I/usr/include/gtk-2.0 
-I/usr/include/libxml2 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 
-I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include  
 GNUNETGTK_LIBS = -lglade-2.0 -lgtk-x11-2.0 -lxml2 -lz -lgdk-x11-2.0 -latk-1.0 
-lgdk_pixbuf-2.0 -lm -lpangocairo-1.0 -lfontconfig -lXext -lXrender -lXinerama 
-lXi -lXrandr -lXcursor -lXfixes -lpango-1.0 -lcairo -lX11 -lgobject-2.0 
-lgmodule-2.0 -ldl -lglib-2.0  
+GREP = /bin/grep
 GTK_CFLAGS = -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include 
-I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  
 GTK_LIBS = -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm 
-lpangocairo-1.0 -lfontconfig -lXext -lXrender -lXinerama -lXi -lXrandr 
-lXcursor -lXfixes -lpango-1.0 -lcairo -lX11 -lgobject-2.0 -lgmodule-2.0 -ldl 
-lglib-2.0  
 GUILE = 
@@ -166,7 +166,6 @@
 LIBS = -lm -lnsl -lpthread 
 LIBTOOL = $(SHELL) $(top_builddir)/libtool
 LN_S = ln -s
-LOCALEDIR = /home/grothoff//share/locale/
 LTDLINCL = 
 LTLIBICONV = -liconv
 LTLIBINTL = 
@@ -203,15 +202,9 @@
 XFREEBSD_FALSE = 
 XFREEBSD_TRUE = #
 XGETTEXT = /usr/bin/xgettext
-ac_ct_AR = ar
-ac_ct_AS = 
 ac_ct_CC = gcc
 ac_ct_CXX = g++
-ac_ct_DLLTOOL = 
 ac_ct_F77 = f77
-ac_ct_OBJDUMP = 
-ac_ct_RANLIB = ranlib
-ac_ct_STRIP = strip
 am__fastdepCC_FALSE = #
 am__fastdepCC_TRUE = 
 am__fastdepCXX_FALSE = #
@@ -225,7 +218,10 @@
 build_cpu = i686
 build_os = linux-gnu
 build_vendor = pc
-datadir = ${prefix}/share
+datadir = ${datarootdir}
+datarootdir = ${prefix}/share
+docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
+dvidir = ${docdir}
 exec_prefix = ${prefix}
 guile_available = 
 host = i686-pc-linux-gnu
@@ -233,17 +229,21 @@
 host_cpu = i686
 host_os = linux-gnu
 host_vendor = pc
+htmldir = ${docdir}
 includedir = ${prefix}/include
-infodir = ${prefix}/info
+infodir = ${datarootdir}/info
 install_sh = /home/grothoff/svn/GNUnet/install-sh
 libdir = ${exec_prefix}/lib
 libexecdir = ${exec_prefix}/libexec
+localedir = ${datarootdir}/locale
 localstatedir = ${prefix}/var
-mandir = ${prefix}/man
+mandir = ${datarootdir}/man
 mkdir_p = mkdir -p -- .
 oldincludedir = /usr/include
+pdfdir = ${docdir}
 prefix = /home/grothoff/
 program_transform_name = s,x,x,
+psdir = ${docdir}
 sbindir = ${exec_prefix}/sbin
 sharedstatedir = ${prefix}/com
 subdirs =  libltdl

Modified: GNUnet/src/util/getopt/Makefile.in
===================================================================
--- GNUnet/src/util/getopt/Makefile.in  2006-07-04 21:59:06 UTC (rev 3095)
+++ GNUnet/src/util/getopt/Makefile.in  2006-07-04 22:00:47 UTC (rev 3096)
@@ -40,14 +40,14 @@
 subdir = src/util/getopt
 DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
-am__aclocal_m4_deps = $(top_srcdir)/m4/ac_define_dir.m4 \
-       $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/gtk-2.0.m4 \
-       $(top_srcdir)/m4/guile.m4 $(top_srcdir)/m4/iconv.m4 \
-       $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \
-       $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libgcrypt.m4 \
-       $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/pkg.m4 \
-       $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \
-       $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
+am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \
+       $(top_srcdir)/m4/gtk-2.0.m4 $(top_srcdir)/m4/guile.m4 \
+       $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/lib-ld.m4 \
+       $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \
+       $(top_srcdir)/m4/libgcrypt.m4 $(top_srcdir)/m4/nls.m4 \
+       $(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/po.m4 \
+       $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/acinclude.m4 \
+       $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
@@ -109,7 +109,6 @@
 CYGPATH_W = @CYGPATH_W@
 CYGWIN_FALSE = @CYGWIN_FALSE@
 CYGWIN_TRUE = @CYGWIN_TRUE@
-DATADIR = @DATADIR@
 DEFS = @DEFS@
 DEPDIR = @DEPDIR@
 DLLTOOL = @DLLTOOL@
@@ -126,6 +125,7 @@
 GMSGFMT = @GMSGFMT@
 GNUNETGTK_CFLAGS = @GNUNETGTK_CFLAGS@
 GNUNETGTK_LIBS = @GNUNETGTK_LIBS@
+GREP = @GREP@
 GTK_CFLAGS = @GTK_CFLAGS@
 GTK_LIBS = @GTK_LIBS@
 GUILE = @GUILE@
@@ -166,7 +166,6 @@
 LIBS = @LIBS@
 LIBTOOL = @LIBTOOL@
 LN_S = @LN_S@
-LOCALEDIR = @LOCALEDIR@
 LTDLINCL = @LTDLINCL@
 LTLIBICONV = @LTLIBICONV@
 LTLIBINTL = @LTLIBINTL@
@@ -203,15 +202,9 @@
 XFREEBSD_FALSE = @XFREEBSD_FALSE@
 XFREEBSD_TRUE = @XFREEBSD_TRUE@
 XGETTEXT = @XGETTEXT@
-ac_ct_AR = @ac_ct_AR@
-ac_ct_AS = @ac_ct_AS@
 ac_ct_CC = @ac_ct_CC@
 ac_ct_CXX = @ac_ct_CXX@
-ac_ct_DLLTOOL = @ac_ct_DLLTOOL@
 ac_ct_F77 = @ac_ct_F77@
-ac_ct_OBJDUMP = @ac_ct_OBJDUMP@
-ac_ct_RANLIB = @ac_ct_RANLIB@
-ac_ct_STRIP = @ac_ct_STRIP@
 am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
 am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
 am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
@@ -226,6 +219,9 @@
 build_os = @build_os@
 build_vendor = @build_vendor@
 datadir = @datadir@
+datarootdir = @datarootdir@
+docdir = @docdir@
+dvidir = @dvidir@
 exec_prefix = @exec_prefix@
 guile_available = @guile_available@
 host = @host@
@@ -233,17 +229,21 @@
 host_cpu = @host_cpu@
 host_os = @host_os@
 host_vendor = @host_vendor@
+htmldir = @htmldir@
 includedir = @includedir@
 infodir = @infodir@
 install_sh = @install_sh@
 libdir = @libdir@
 libexecdir = @libexecdir@
+localedir = @localedir@
 localstatedir = @localstatedir@
 mandir = @mandir@
 mkdir_p = @mkdir_p@
 oldincludedir = @oldincludedir@
+pdfdir = @pdfdir@
 prefix = @prefix@
 program_transform_name = @program_transform_name@
+psdir = @psdir@
 sbindir = @sbindir@
 sharedstatedir = @sharedstatedir@
 subdirs = @subdirs@

Modified: GNUnet/src/util/string/Makefile
===================================================================
--- GNUnet/src/util/string/Makefile     2006-07-04 21:59:06 UTC (rev 3095)
+++ GNUnet/src/util/string/Makefile     2006-07-04 22:00:47 UTC (rev 3096)
@@ -41,14 +41,14 @@
 subdir = src/util/string
 DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
-am__aclocal_m4_deps = $(top_srcdir)/m4/ac_define_dir.m4 \
-       $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/gtk-2.0.m4 \
-       $(top_srcdir)/m4/guile.m4 $(top_srcdir)/m4/iconv.m4 \
-       $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \
-       $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libgcrypt.m4 \
-       $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/pkg.m4 \
-       $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \
-       $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
+am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \
+       $(top_srcdir)/m4/gtk-2.0.m4 $(top_srcdir)/m4/guile.m4 \
+       $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/lib-ld.m4 \
+       $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \
+       $(top_srcdir)/m4/libgcrypt.m4 $(top_srcdir)/m4/nls.m4 \
+       $(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/po.m4 \
+       $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/acinclude.m4 \
+       $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
@@ -111,7 +111,6 @@
 CYGPATH_W = echo
 CYGWIN_FALSE = 
 CYGWIN_TRUE = #
-DATADIR = /home/grothoff//share/GNUnet/
 DEFS = -DHAVE_CONFIG_H
 DEPDIR = .deps
 DLLTOOL = dlltool
@@ -119,7 +118,7 @@
 ECHO_C = 
 ECHO_N = -n
 ECHO_T = 
-EGREP = grep -E
+EGREP = /bin/grep -E
 EXEEXT = 
 EXT_LIBS = 
 EXT_LIB_PATH = -L/home/grothoff//lib 
@@ -128,6 +127,7 @@
 GMSGFMT = /usr/bin/msgfmt
 GNUNETGTK_CFLAGS = -I/usr/include/libglade-2.0 -I/usr/include/gtk-2.0 
-I/usr/include/libxml2 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 
-I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include  
 GNUNETGTK_LIBS = -lglade-2.0 -lgtk-x11-2.0 -lxml2 -lz -lgdk-x11-2.0 -latk-1.0 
-lgdk_pixbuf-2.0 -lm -lpangocairo-1.0 -lfontconfig -lXext -lXrender -lXinerama 
-lXi -lXrandr -lXcursor -lXfixes -lpango-1.0 -lcairo -lX11 -lgobject-2.0 
-lgmodule-2.0 -ldl -lglib-2.0  
+GREP = /bin/grep
 GTK_CFLAGS = -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include 
-I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include  
 GTK_LIBS = -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lm 
-lpangocairo-1.0 -lfontconfig -lXext -lXrender -lXinerama -lXi -lXrandr 
-lXcursor -lXfixes -lpango-1.0 -lcairo -lX11 -lgobject-2.0 -lgmodule-2.0 -ldl 
-lglib-2.0  
 GUILE = 
@@ -168,7 +168,6 @@
 LIBS = -lm -lnsl -lpthread 
 LIBTOOL = $(SHELL) $(top_builddir)/libtool
 LN_S = ln -s
-LOCALEDIR = /home/grothoff//share/locale/
 LTDLINCL = 
 LTLIBICONV = -liconv
 LTLIBINTL = 
@@ -205,15 +204,9 @@
 XFREEBSD_FALSE = 
 XFREEBSD_TRUE = #
 XGETTEXT = /usr/bin/xgettext
-ac_ct_AR = ar
-ac_ct_AS = 
 ac_ct_CC = gcc
 ac_ct_CXX = g++
-ac_ct_DLLTOOL = 
 ac_ct_F77 = f77
-ac_ct_OBJDUMP = 
-ac_ct_RANLIB = ranlib
-ac_ct_STRIP = strip
 am__fastdepCC_FALSE = #
 am__fastdepCC_TRUE = 
 am__fastdepCXX_FALSE = #
@@ -227,7 +220,10 @@
 build_cpu = i686
 build_os = linux-gnu
 build_vendor = pc
-datadir = ${prefix}/share
+datadir = ${datarootdir}
+datarootdir = ${prefix}/share
+docdir = ${datarootdir}/doc/${PACKAGE_TARNAME}
+dvidir = ${docdir}
 exec_prefix = ${prefix}
 guile_available = 
 host = i686-pc-linux-gnu
@@ -235,17 +231,21 @@
 host_cpu = i686
 host_os = linux-gnu
 host_vendor = pc
+htmldir = ${docdir}
 includedir = ${prefix}/include
-infodir = ${prefix}/info
+infodir = ${datarootdir}/info
 install_sh = /home/grothoff/svn/GNUnet/install-sh
 libdir = ${exec_prefix}/lib
 libexecdir = ${exec_prefix}/libexec
+localedir = ${datarootdir}/locale
 localstatedir = ${prefix}/var
-mandir = ${prefix}/man
+mandir = ${datarootdir}/man
 mkdir_p = mkdir -p -- .
 oldincludedir = /usr/include
+pdfdir = ${docdir}
 prefix = /home/grothoff/
 program_transform_name = s,x,x,
+psdir = ${docdir}
 sbindir = ${exec_prefix}/sbin
 sharedstatedir = ${prefix}/com
 subdirs =  libltdl

Modified: GNUnet/src/util/string/Makefile.in
===================================================================
--- GNUnet/src/util/string/Makefile.in  2006-07-04 21:59:06 UTC (rev 3095)
+++ GNUnet/src/util/string/Makefile.in  2006-07-04 22:00:47 UTC (rev 3096)
@@ -41,14 +41,14 @@
 subdir = src/util/string
 DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
-am__aclocal_m4_deps = $(top_srcdir)/m4/ac_define_dir.m4 \
-       $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/gtk-2.0.m4 \
-       $(top_srcdir)/m4/guile.m4 $(top_srcdir)/m4/iconv.m4 \
-       $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \
-       $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libgcrypt.m4 \
-       $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/pkg.m4 \
-       $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \
-       $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
+am__aclocal_m4_deps = $(top_srcdir)/m4/gettext.m4 \
+       $(top_srcdir)/m4/gtk-2.0.m4 $(top_srcdir)/m4/guile.m4 \
+       $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/lib-ld.m4 \
+       $(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \
+       $(top_srcdir)/m4/libgcrypt.m4 $(top_srcdir)/m4/nls.m4 \
+       $(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/po.m4 \
+       $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/acinclude.m4 \
+       $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
@@ -111,7 +111,6 @@
 CYGPATH_W = @CYGPATH_W@
 CYGWIN_FALSE = @CYGWIN_FALSE@
 CYGWIN_TRUE = @CYGWIN_TRUE@
-DATADIR = @DATADIR@
 DEFS = @DEFS@
 DEPDIR = @DEPDIR@
 DLLTOOL = @DLLTOOL@
@@ -128,6 +127,7 @@
 GMSGFMT = @GMSGFMT@
 GNUNETGTK_CFLAGS = @GNUNETGTK_CFLAGS@
 GNUNETGTK_LIBS = @GNUNETGTK_LIBS@
+GREP = @GREP@
 GTK_CFLAGS = @GTK_CFLAGS@
 GTK_LIBS = @GTK_LIBS@
 GUILE = @GUILE@
@@ -168,7 +168,6 @@
 LIBS = @LIBS@
 LIBTOOL = @LIBTOOL@
 LN_S = @LN_S@
-LOCALEDIR = @LOCALEDIR@
 LTDLINCL = @LTDLINCL@
 LTLIBICONV = @LTLIBICONV@
 LTLIBINTL = @LTLIBINTL@
@@ -205,15 +204,9 @@
 XFREEBSD_FALSE = @XFREEBSD_FALSE@
 XFREEBSD_TRUE = @XFREEBSD_TRUE@
 XGETTEXT = @XGETTEXT@
-ac_ct_AR = @ac_ct_AR@
-ac_ct_AS = @ac_ct_AS@
 ac_ct_CC = @ac_ct_CC@
 ac_ct_CXX = @ac_ct_CXX@
-ac_ct_DLLTOOL = @ac_ct_DLLTOOL@
 ac_ct_F77 = @ac_ct_F77@
-ac_ct_OBJDUMP = @ac_ct_OBJDUMP@
-ac_ct_RANLIB = @ac_ct_RANLIB@
-ac_ct_STRIP = @ac_ct_STRIP@
 am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
 am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
 am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
@@ -228,6 +221,9 @@
 build_os = @build_os@
 build_vendor = @build_vendor@
 datadir = @datadir@
+datarootdir = @datarootdir@
+docdir = @docdir@
+dvidir = @dvidir@
 exec_prefix = @exec_prefix@
 guile_available = @guile_available@
 host = @host@
@@ -235,17 +231,21 @@
 host_cpu = @host_cpu@
 host_os = @host_os@
 host_vendor = @host_vendor@
+htmldir = @htmldir@
 includedir = @includedir@
 infodir = @infodir@
 install_sh = @install_sh@
 libdir = @libdir@
 libexecdir = @libexecdir@
+localedir = @localedir@
 localstatedir = @localstatedir@
 mandir = @mandir@
 mkdir_p = @mkdir_p@
 oldincludedir = @oldincludedir@
+pdfdir = @pdfdir@
 prefix = @prefix@
 program_transform_name = @program_transform_name@
+psdir = @psdir@
 sbindir = @sbindir@
 sharedstatedir = @sharedstatedir@
 subdirs = @subdirs@

Added: GNUnet-docs/WWW/papers/correlation-resistant-storage-via.pdf
===================================================================
--- GNUnet-docs/WWW/papers/correlation-resistant-storage-via.pdf        
2006-07-04 21:59:06 UTC (rev 3095)
+++ GNUnet-docs/WWW/papers/correlation-resistant-storage-via.pdf        
2006-07-04 22:00:47 UTC (rev 3096)
@@ -0,0 +1,2891 @@
+%PDF-1.2
+%�쏢
+6 0 obj
+<</Length 7 0 R/Filter /FlateDecode>>
+stream
+x��[ێ�ȑ�7}E�yt��{r��Y�;�^ð��.03�*v�*�DV�������7:��d�[�m��
X�dFF�8'"��MY��2����_������a|��FL?��l�7߾���
+)��y{�*>&n�-�����޼=�����ah������fl�sݝ��/�������ݫoޜ��~h�uc/�
+�����4�.}����yQT^���IWh��ɧ�����,=��͛�����0=#JX�0������t
+k
���5�8|���QZڛ��B�����l�1ܬDadzϷ��P�p�Vp������y?}X��z���#���L�C�L�0%�I�;����^
 !��.�F�
+�>���v���Y
�.��~?]*��^���z�����2��}/h��ƃ5����V�lࣥ����~�M_����^�]z��`�V������iժ��C���������V�J��/��.��������F3���}�s��&�5����C�s_���re᭄STE]�\��۱���R4�K
p�*=|�yu�+E�]p�p����!�J��~�X��v"w��k������Q��2��o���Poϫn*�;ۈ    
������U�""OQUZ$H������ͬ+�,�<�9�i�Q�xs)�5��Ϫ0�"�\ƶ{��/����Kw.㹙pC�”%/�x껦;O��

yٹ�_�ӴĻ�C��������x��0 
�T}>address@hidden&w�!}i{YD����2|���n̼ST^U�ͮ�&��!B���0>�Ɏc�f�|er�����N_Ѣ���M��������A�:4�C��a9��d�C���2�Nvq��|:��}�%��4$���(>�~׌��
+ yvڰ�ҹ�]��v��2���U�e)i�����ޡw:E[���+WB�
��'���þ�LV��J�H*��kΏx�Ғ{�ûb:)]��g��D�o�-pR�z:��۶�������]㦀���&�ɜ:]n�]y8Y��;��M�{Hx�>�o�s�$ʐ=?�c��,��f{�[tO�gdC��bJ����jz�M�C�[�i��WwO�B�P���|�W{�}s��|�9�^����'Sͽ�n�nG�d�v�x�l����=u�1n08�.9�6��Ñ�֔S;:��0
 `��_>�c���9�)ʺ^��� ��e9C��C������m]a�,����9�       
��O=�!��#!>��siRnW��rW���s�_��������C���t�À������q��My��S�
�E������'address@hidden!��{��XӄNSn�0уq���<����t�
����x9r��^f��BLi
address@hidden|Z�\��?��*2�x�{T>EwP�� �J���C��"JI��W�*�
�
+g8��b�K~       �<address@hidden,address@hidden<address@hidden<�_���=�� 
��5g͔��u/D����g��<ɛ��$�        ٻ��vM�#D�D|��)�
���g�_�����Za`v{#B,٤ʃ�=�b�Y���%��=xƠ������w7�W��SAc$�Rpmw�^���d=F���I�WwͶ��\�5���Zht)����8J�|(��rpb�2d��ٛ���Z��:"lL1J����k�_�$&���G1���
 W�t?
iJG�4�)��`�¦]��s���1SZ�ȕZ(b��"9F���z�S������Z������L-��"Cѥ$�>�9��}�ɍ��W��KG�*>D�V>�
 �!B������!        ~O      o
+HL�1�N4���]�w(KCf"'address@hidden     
�N�CC槟�uĐ�'�GWX:^!��=�����/x91dN��O$��R�*��.!�If~��U��_��Z>�:@address@hidden@��)�a^8BBj1���s�,�����4�G
+�$�~�&��[d��q$����M�3ԇ���.�����|address@hidden   
��euU_�E�zI�����pY]ې������yd�G�AJ\�r�F�E�j[����9���)��nL<�!k��p�����E}��-yq����<wHM�.®��0lbM�U:>��31g
 I+�
lg=ێ�V�<Y�~���H:#ܡ��FH��g��B*��ܼ�߂���ӽ�,��d�!%��]3�Rt㕕�g=
���xٲVo��4y�/*&�pH�O���2�Ge�  
�����tijD;�}·+.5QuGT���)X�䫒���&Ez����%�`R���K:C.94�^�m��p%�
9�e��hdVPC�"+�*A[����lȀ�Q�
uCeഉ��l���U�9�7�L��/�L        0���fL���;��K,�JV�I��Td���v�V�Ԑ�����(�^bA�, 
T(O�t�=�T;����z�8Ϟ�T����%�-[�E������#�J���Yd������v(6N4���p$Շ��f<]}H��A�k��S4��0�ﳆ��c���/W�d�T����O˾��X�
 �j�p`��ȏ�4��-&eI�� �u�ަ��+����q@;.���!�g��f�h @���w� 
!���3���r�gںiu��k���\I]��gq�>���;,僔g�^,둪���9��նc��H(�o�����Su]�š�)i;eIz�%�}�Kc�Y���A璺�Zki��|E��>�����MM���U�fo�����"~���$;Z����3d��zxBߐ����A�L&I���������9m���CR��$(_�����3��ͧ�]|������ŀuƐd�%%d�Re�ڿ���)BҊ�3)���*�f-�!�uwI�#T�TP�+�l�c}l;?����s5M%�,p��!<�֦7��r%�K�����s�C��H��]�On�T$-����+T��
 d����m
+誜{QTY�(���q�y����������؞�e*��H�u���ԿN����*OY���     
�O�#���#���J�Ce�]s��L:?��H���Y��4���Ig�   
�R:���9�x�F�ZV���nl�hC%I����YZvU�9Vq\��Yd�SA����$�wf
+�3Ƈщ�ߧ���nS/��<�YO�I:z!����T�%�A�'address@hidden
��qf�JF��,��nm>��K*?�#ĥ+�W�5�y�����3v
+�G1��FlQo��_��\���ɕhWy��ԙ��r����A�����^�&ƴ�'address@hidden(��
�Қ�I���,ړ�
tmQ����+�
��G�.?_�*��fU���݃TM��/B(��BPd�K1��e�1l�h0���9#]GS�T��g�L#+�c{?С�h���⟾������h�۔�$A�y�?�m"�k��
     �OT*�u�wV�ư���b3��p,�V�
�K�!�I�2z�����?�5�V{�4/�?b4B^+-�ނ\�R���O֞�Z�|��䌛�����|^Î��Ht���i�� 
iC�4+���E
+��#
�R^\T�0������&�?G�yŽΏ-�M�����i��  
R]�'f�{)�`*���y��^�S��>1/7n���J(address@hidden><��Lc.kx�%�~{�A�8��)SJz�¿T��'!/��G����=����G��J�'Ǒo�l`��+Ex�
  -%��N"�V��
address@hidden>05q �+Gt>�y�2 Th��l�;���&
+˱��5h�P�Ȫ�k{N�\2�p��0�Ey���g�����du�D.��s�<+C���|�R��n�D�D(�(r2&eɍ*���yYPohZ�O��Q��
 �9��Mj�f�������l��<�2�5W-a-�T����1�ˆ��Q;�a�=7�    
��:�}&�v����m&־��}��0گԬ%��€�z�J��=�C�1؄�]���4�G�?�h*sR�qé���Qܖ�_[2��<address@hidden@Ap���I<7�r��y
�
address@hidden;���X6�ꡔ#ք1O��;7���<��ʺ�H��*T4��Gh��ty0��8�tI2T��R����eLL��BA�-�G*����l�O�����ʔ��cP&<|�ɧ�G��Y���=�'��U�p��
h�+���̟����c��f�3��a���:pV�lc�JlgH�<V�����2��G�3ȜR�����,� 
3$�r�H�~<�Z�~N�b��r�19���P���Za��\�/X�g��hI���۸�V���Ѽ:�,dދj���4�n�*I�y��
+��*�[�G��.�8�:WN7�#C�o����S
כ����`��l�|*��X|wm��4���٨�a��h9���ӯ��CCӞ�_%Fh6���]n�%e�GZ���wkh��2�V�aC������H�0g~�W�M'<+*<�(��VT�ӟ���9
�����Ւ��1�Tq����G�}u�x��X�3YSv�>��o�ۅ?3"_�1��ȼy-�'@Eꢊ0V�����⤢8y~+A�S�eu�"u]��6�#��\��i
   
_ͭ�feu���:address@hidden(�]������_RQ$յJK)w��G�+���9x���A߇:t*��Z��?D�a�����6UE�Z�g�Z�[.�O�H���i*ױ�~W�S���ۛ?�
+��
x��0endstream
+endobj
+7 0 obj
+5077
+endobj
+22 0 obj
+<</Length 23 0 R/Filter /FlateDecode>>
+stream
+x��\�r�8r��S����K�}�zw'bwm�ȱ��9PUl�۬b5�j��v�ߢ��   "�      ��$ͬ���H 
�����|�g�*��������w���t-��;\������(�U��F}u��]�qe��y���ûon�����"����|��Mu�փ�,U&%���o~����÷��I�L:����
 �       ��SƇz��)B�S�q�v����!2+c������'W�/xQ���ź��iz�ɜv
+�7Ӫ�L�B�d3��L���M���(rG��W9��Ū����2�����j���BufK!��Mیa�.�-���隐��e�����;4Cs����D,K�����P��9��q?=ɂ�I>C�ֻ�����v�DX��2��i)7�(2��Ս����>L2�y�KI���՜���O�(���C�{�C�ruHB2.0�6���t��fW��*S��ê���4�.�z<C��(����-���RNm���G��M�CE�ݒnPS����兛�"莨J�FT���(�r?���zk/�7�պH4h�]�����
��;�"address@hidden��
��=�M��S�_�pN�PO��H��qm���E��e�s��T�γ�?��>X��u绶�P3-� 
A������X��8mIX�������s�I��²&��fW�w���$���k�p`^Ë��MJv��*��3�?�G���W�.3WȂ�k�?��A�h��RkB�a�Pж&L�3'��aՖ��}}��O��(��Be��L��U�H������u�aZ���6t|
&O�E��:���p�
������oj��Lo��'m��[��{h�YK�p�N����O���2;Q�d��v'K�#��2���$�����\Sԛ����le�6�`�$���a׾��݄:
+T•l����Q���8��q�pG��������z]pƅH<n�jVն]%�x��N��N&�   ێ���<%���?!
JQ�MLR�6^�!L�Y���wK��\�����Lh���>�5�op4���o�iWm8aP1����'9��h�K��l\(address@hidden>$6����2��o����Qc��ؗ
 address@hidden&
+�|�l�5w&��ʧHC>�T�M��r
l
���ܐN��6�a�0['/�'�
+���ɣ�����\��ig�+���
go��+v����Y�^�d� 
ɲm�7؇�p�M��mP�#��nC���#*"address@hidden"��nk�;����F��и�E֖�k��i�m]�Q�o��=)�
�       X�H
�;����+�!
GL�l��O:�2w�u����AT�XK��A4���|Aw��?n�z����a�!�TLZN�5�s[�hB�����Rݶ�ɀ���"o�\�"=��ȯ$��<<،$�rQ7,yA�{<8«���|�UAQ�lYY�-�ў+!'�=�Dޤ��e������6�j�ӑ|����x�1�[�z�s>|�te~Rp�fK��ǡ뇇�D�<��I�*)?�%��hO��t?
 ���^O"U^�m�<�I    ႙ߦ���K�|���iR�o�9Csd����}�`�4!������IA������ 
address@hidden&q� ��>(r�> �y~�Vu�81r��؄�l��address@hidden<���� � 
xQ�ArS^B�}5n�R��;��J���_�e�k���n"ɂ���=��FGd4�F�<�u}��W.y]bH�<�NQ|f`�7Bd��f��s|��Lck�~�b6wW�T��(���ن<
�C����_�4&�h�1�hD~Iۙ�)M
R*r�m󉰉���D������S4���D������ڿ{(;O���c���k�       q��?��ei�s    
�䇚��0?�Щ°��,:x+t��牑��l+    �6��Z�V:plD���4t��!38      
gW���I��"�`"n��V������S�B���&���;`���r��y�a����JN^���80�    S 
p��L�����̥a����b�^��gt,address@hidden@h�dJ��SO�Ӫľ\�d�:0����y�(����"|��7wȉeI9���$j���,9���(C
cӶ(�i�/�և�1C
΂�[�H,*�.zqH���F(�H
�R9_c�Fdڑ��Ճw�t���O���1d19���:�fD�Y%�S����Pǰ��Rí�K;QI�Sq!}Ɇ�%|�|�<��&�����P.Ҏ�
      address@hidden(�f�y�&&�'����X�uݟ���    )�Κ"D0I~膘8���**��'��q`    
�U����A��}BP$����,address@hidden/      
'h��/dQ�im������۰�#>�뾩��"*T���(Q}�V�"���OX͈�y��EAGz�s�Vs���z�;�k4L�Alj�W���R�/��R�(L
 
�\7��88�7���%���h��$������C9��(�>2{IU��Dt����������)�4g�����_�v�N(��3��G�Ϣ���*��
+�~d�J���xAL�����fF��\J9��ʬn��
ߢ�~A�o��U����&�����{Vle�����\PD5���U��x�T#&L?Ի�����1����T�c0��<V��     
ʨLx��֥Z�|9��=b���*(�e���4>������D����>�-��~�j��:�y:�9����T_D̻���S��s>�G���a�%'o�yI����Q��7�+����Y����ϊ��pH_�b$�P
 =�w�ظ���Ľ�)�t���b�ߠ�
+Q(xy'{��b��9�a9`?R��%��p�;b��)ifyKp�}0<t�����`H 
;C��>q.��74#����yl��읇Hy˜�\�c���;�x�� �:Q���7�|��1v�8K0��}�-@
address@hidden<�E�(�\�ט^*\��y�
+KC��gܕ���x��S�
+��D#���_� =�![%�X��M        �O���"dk⃩I�pD���M�bp��LG�S����>��-�� 
*ؑ,<Y���e�[��F���T�{���E�\��cw���B=r�Y��Ҍ��;Aҧ�b��u�o�R���q%}p\���;mY�7�U1x�L��7�t�g����H��/H�Jcp/R�BX���Y;����j�O�����r�"address@hidden|��!/��ɛ�Y�ʔ��P�oL"
�Cs�N�mJU�5�&I����ǡ��)      $f4����*��n5;�����g��ĺ7+�����
+˛J5�Bq��uK�%e��l%��֖$��-%iv�M/�(�q���&���˔~��][��ד����޽��h������m���ڗHō6�&b�A�U��(p�*b`��l��
+6"��9�+�S�Ee��Lϯ��$"��Gn 
�N�sl~k���8�����֊�!l2֘;q���Ѷ�X�-�߆�)�?WÈV�}�W��U��o�>�$͗��Ʋo�C����{Iͬ��ྦྷ��cw`�:��&o�L��T`DI�d�.����x�ӶT�%����#���4��z6��`W�b
Hq�H=���\��,p��_�$��Zm��k$�֤��C�R�)pI���n����6h��(��n|�nj�A�{'address@hidden|�!��A���l��M��o���(address@hidden@?���

_������c:�;=ʼn��:#��A�=�s�����;�C�P_����+X�F��1�^�p���1J����zO�9�i`��"wkR:������p��
+��r�\����K�?�!~2��i�F��������*��ck�Ϛ�8�rk_�4_|address@hidden(�|妎b�    
����j���E��f�'���gŭ��8�\�pI.����&address@hidden'ห�;�}�^�����8�|k∄2���ߦhS1Š���T��uI
+p!���D�c�͂����lUN����)�ґ�>ֱOs'/2��Z��s�7b�K���ͽ�9�gB���>ȁ5w��^*n��#AVJ�5�Hڶ.��EƩӘ���E��_��w�3H>1��g��"�C���,address@hidden;{}f�}����m�cə�(���8�Y�7]�r���M;Er��g��;�1`p��|��8#�E�-S8y�z)J����u�����h�4UDu�:V���\s���S��&��ʤ�կ����/��7%ܴ�l�~>v�>Op~�z�q�I��%���?�O�4o�:c��/k�қ$��᯿����ᅴ����WD
+�$�����t�}_=�l��)����R���Ϲ^�I�������ʫ��>�_Y�Xyu���t����{Nu�4h�
+o�25j��J��0i:��e����Y
+0!7�����Q����oJ�����p_ᧀ�,��!�3�'Q�A���F����.@,F���-yߨ�G��y��UP���܊^A 
|ip��%m��4_1��;�L�m^����PLI4�
+�z
wTf+/=�|����
+�l V'�t!���Yb"address@hidden 
�R�~�F,�:)-R�3��<�8`Q.uY�jN$_Π̝gh�ɐ��=7��[���(m������H?�^r�̚o0��
�r��jg��pk�����o���=>ɏm�dn��MK�tJQp{�Ӊ]蜶�^r�D�XAZ�
�S��$M��s;6�6�)��s�������X�o]f�m�&n���a��������u�'�+�
+�\1ʷ�f^
+_z!O���x[��A�;��,�+�ꑢr�.�}
 ���:���ř3���MVH�B������I{wȿ�OJp�<�����p�˶
B�,�1#�J2؊�O}��?��x0b?0���r�.y>x���+�茙h?k�»���dl7�uڴ���)���qC���������q�n����]����a��K�L.g���GR��@

�kU�j��ٟ�-ճa:��?��f��>�̤+X��0��?��=���A�Ĥ�!����]U���*���f.����a�%ͨ̚1��aIy�02
LMq�a�
���57�绁�����Ƴ�#��r�-0�"�A3�8k褸Nc�YoRs<G|7��i�����(-�$c>̇Q-w�b�?��㖛#��u��F�,��fr��t�׸g8B�4�|`_ߤ�+���e�<n�er;��I��$���9��|�&!��/�O_�쑷��A�����n|�%�������B��_́������������,!;�Fx��*e���s��t�K>�Ƈ���TV���
���`���&s�����h�i�����c�o)���`��e���O�PM�\הgk��S�yV]X
-�r�?ś��Us obN��E�X��
+3�
+x[ɿ�QpK��r�mh��K��v;
���8i�Q�˭f��2_f�I�/�̧��ke���P���re��#"v<8��9aR������d*!"��2��M��g��Β��K<�v���Ǵ�$��|�Πj},��ψ���H�$�ɓ!��?�~`?�U��*+"3�fo�8z����h
t�3�����      I�|��Ji�[��U:�SS�"    
J����eaA�mzmT�~y�y�?��ݼ\QM8ږp7��؍�9�y�/��n�~-��g&"F�9u��Ձ篯eF�H
񃈪�}���$�0.�!�а
+�����9d�|�(�<=t8��?yE��}��΂�6�G����Q!H�{���.,���'y~��ڂ���R7o�
���m> address@hidden>�����÷����%O���ҷ���Z��܇�������0K��C� 
Hr��]�[��-OF�צ��oZ�    �
O.\M��G֨Z�ԋH4�>��J���d�$n֙�\pa�φ�\Α�v7x'address@hidden;���{O��1��Z���m|:5���#��ឿթ�\��P��D›?B5�1e/9Xz�pE���֗�n
�q�Hѳ���"�t��"�VwO�xzD=^��r�q���NJW�Y�2��BY�3c�ë�\vA��5K�/�'�$�[��qDߴa�y��M����S�j���n�21�"��|i�95&�:/x����6��:�9#�FP>��o�F�
  �C�v��ʕ�o�?oW�����D����:�#}���`B�$��8���gR�F�}hHS6q} ����/��Ӌ�;·C�   
  n�Y4Uʨ+Xp_Q�j扲�k��6o��]�u��Ʌ�����?zI��
���������k��HJ�pk�+W��E�y��W0�\��Y��%��o��>���h�Z�0��Ϸ�Mj�x�w,�������C>Q���K7�~L?N��z{�������Q�endstream
+endobj
+23 0 obj
+6608
+endobj
+29 0 obj
+<</Length 30 0 R/Filter /FlateDecode>>
+stream
+x��\͒��q���„/"�30��:PKYd�A���
+�VL7v�`tsv�"~>address@hidden(�޽��>�_0T�Ca�F����|��
Q��*����0�*��H�����B*�|�y�/_㣪0���?�r3�������:;ջ��erUQ�����w����ef�Ϝ�p��a�/qH]�
+�&��𡨋F�����
�yy�i� ���2Z����:�5B��h>�S����*�����&�o�o��a��ȫ��χ���EiE�^�   
$,W����������,� 
����,�2L}��6�������e����*�K?�,�����I��e|]���h��r�a���JH�Ȼ�C��W���ZZ��
+���+�E�+���B�e8¡����M���vM���d�
�����f�E�w�ݴL
b�d��E���q����mmE:y?����`��7;_WxӲ�=���b��t�w�C��G���_:S(UI'�dgJ�q�~8�S�լ��ʿ�k�_i8,
�t��ܮl��ծ����j� 
��ɝ�*dӄe���,*Ev��~>�Ɲ�������q�[Քdt7m?�G�N%�t��n:Ÿ�����?܎s7\���[����r*���*��������}��ڵ��[�VҠKbVG����W��XMf��۷�ɦ�Mf���ɝ
(Pú�Q�Ґ���kxU�-�� �Z�&ڣ�dp�N�I      fP"Bg��:Umyy���!l겮d������M��a}�wX�
+�8�3/+M��*7-�BU��[?����X����f�̠���}����vT��ﶋʈ��^��i�8;�_����~~�^�e��
����/����A��D3/�j;�V[��21l���ɖ�d�������o���[`6�pO����0�\&0ީ��R�D{N��,�F�ey6��$W5u�q����
   ��0N�+I��|���a֕.
�uʍ�6H�G�����!��emiqz��Q�p����� [���G����<����J��= �=�#�� 
�;�ۚN3Sp��k�7�Iۚ���8��)�k`�����qh�z�T�YE:y�
��:秀�4��f��Bj$�=�_SeB6t�#�q���
��\����v�'�%PY��� 
>-6|Z+�ӱ�F�����v���#P��?t%�f>address@hidden&~7�:�����ߑ���1�� �:��f�x
G"DXf�^QG�X90��/��ֺ�XPM�O�7�r����f�J���7ׁ]�YE�e~   
address@hidden;�J�!�����B\5����[*lZ�|�a;address@hidden
aA�.���uC����Tu��js�5�}z�|��z�:���0�U�sV��tΞ����/ &�N[�|�2���О��*Xh�   
����^��޳YKZ��d� ��     ~v���;,oI��sn�&�l�G��j��\
+�6<�l��3����j�����*�!xn�1�>s�L�R���FO�b��S
+`w�PKf7�������
+���:{R��dP��<:EQ��۵��U
+b�A{K�#\o��^4D���<�5M���C�Si�ܭ���o�|&��<���:ߺ!��-1>�qˑ=��/�|�9�ڊ!gK[3q����Iߟ���Q��jp4l>[.}.�K�1�����$3��2�4�Jc��
+^$�L����U��sQU2��m�����bpFUqF5�29#       �Rm���,���|address@hidden
'*箝�����I�K>address@hidden(S�:�\����>�C��;f�4Y���wcMI  ��@�L
\)address@hidden 
'��Y�2�/���fmԲ�(�6:����n���.�os?FE��~���l(2|D[[�,L!��8W�I��8h�&�O
�����ؔՃR�       �k�ai�L>nO�F���6��D��n9�aLJJ��7,g�}�m`��n,�����ґ� �?     
 �%U>K)�X-85ZR��g7,�l"������X�cC(es�     
g�^��2ͺcf���4)address@hidden@�omk��n����R�AB�]�]��C�1Kي)S�X�D�\y���e�\B�X���WĈ�¥�(T�u������kETС�-��(�����%��%*��֚ba�4B}��䳏�X��U3"���
+h"���S7^�l��U�$�hyD����Y+P/�B
+֣�!�x���.24ۉ��x��&\�UnLpM�c����ͅ�LE�|�\�b�L���,!���赠��g?z���i;'ic�j��K�=�C��$�f�R���-1���
ԵO�i�z55�_ŵW'�7�5�O��6r���df~2�����g�[���Ȩ�,��܆詬��1��y
�<*=�Eš/*B|�E�ȑr�����m�Qd�&���u�暽q�]�m?��zIxQX�󌶱�Ѧ�J�6okɢ`��%g8�r��^�d���&�)j�2`�ф[:�q�_VYN,u3����ߌp�>Ά3mi��p
+[Fۋ+�j��
��2��&D��r}ވ+��'��R|拯�_�_}
+h-T�Bz2����q�K����ǀZ\���+��S�T����\�zy-��g��
f~i     �������K�D"�B
address@hidden;SnTeH=|��Y"�D�3m�}�Q�zt�c�š���3c.�z�        
��j�����"����n0�������Ĥj�4ٔ��A
address@hidden&�?���t�(����Q:��bkv!�L5
+X&���'"SHi�qN|��e�F0NC�"�?�z���+~�*���K�D�e�ABx������Q��bG����F��.^�]y�ӆ��w�����:hOf��U
+��E�x>uX���6/�y�E����՚���Zb���|��� ����C\��(�����6�address@hidden 
����Nk��fK�ּ�l(���,+w�w�K5U��ś��5
+�Q�    
����M�(A�eo�`�L�v^��Q�T`Zr�QB�Ilð��ҟkť�3˕��َjw��I���!{�q3�j�����l����hw�X`�S�VPi�nK�����;�E:5l�0�0Z�4����mP=5,��E_���:�at�
}ϰP��vC��< �<��aâ�Uv�u�EZ����#Qn�SDܹ�f*ή�,��#�e$&�        
h�$��n<��4U����w��{D�I
+��ȩ�IM=#���Y       N"=�(
��H�B���B���C�-��A�x����:address@hidden
+о"
+����l�0,F�����7u���_C%㨿��[\2�t�ж�goۡ;�K� eI�����:����_��
ذ��s>5�|���C���u%��v���8�a7��Þ�      2=�Swh?y����~
�V��K�7Ggt�4��-�
+"�6�l���c�ރ/9`��5g�`\y%Ξ1,��5���
+F~�����ArMBc^�
1.Ί)���%�+4D^��0Wr4��=��Z'Fӎ�\+�=.�W��%�Yq�I
��
}d���_dG��L�V��Ohb���1�q<⺱�k�l�����6r?��
T�&ΤG��<
+0�u�
���J���p��Ba��)��(��i��������'�p?��3�9n�U"܍����?�o�:�����D�M�Zcɾ�0I��       
address@hidden;f
�W��)v��9:d���t����"�,s�r%�?��~-3�iؚ����Zōn�z�0W���Y��qf���n���Z��*j�x���4��F(
ѧ�{C��Jc�KUg
+��E�s������������m�϶-�����ͬ=Ē-�QWS`3�
+Q��S��;94k�=M�'-Vq)���`>�P���S��̏;>�>Ci93��n     ?�v=��6�e 
�D�<��(H|ä�b��`�"w.E��E�\c��)ė�jbw�#�eM�'N�\A���#6d�=���}AKp��^ѽ`y
�K
+
*��p0!���̿��jU1�=��+�\�vb6���%�t*�Rv�x=�{V/=�D��C"���Ya����n�*m�Ud�f����2t�!���٤�M7���nɭ*f�4.���̣�K��Sw���n��g��
 �X PQ��]q��jl��t)��X����?�);�W�1�Cq�oK'ʄ酌�\zK#������J�nF���w3�&KNZ�(oV�
+�Իnox��mk���s�p�
>�X�NB��s��d0ʥ���ٟ��u�����!h�F��B��lU-�!^`��ǜ      
>G��^>oB�6�1�����a]�O�/��ٍ,Ճz����h        9��5
+�Y5��;6�O�9U>Qք�_�ց(_��g6���tf�.w_��p�s��[O����'address@hidden
�\����^V�����px�li^%��w����kj�����ۯ�/\aC��<��U!y!*�)��I���i{�p��4r����B��^����;�AZ���I��sH��H�~G���2�\�U\�Nwמ!�Л$kt-��͐�Q��V�oH��\/������
^V%�����q�Õ}���2L��~��.���R���fY�9��v��+#Xq�h�rʼD�
+�7Psp�8��͵`?(r<�W�{�N��[,j���ܮroyiKF��܍���OX��7��3����l.K�اen�ژW���]��,address@hidden<�Bb)address@hidden
+)������1��$%�zj�4y��M�cb���(��k�i���]xv�����a��~�2DI���70n�ߊw��,�,�A
 �t%�<� 
���;<n��UtI��i�b�y��_���S�H�&(.��Ko�K�J���%��u���]4��k���iB����ۥ���+!>_�B6�D�E����u�����46�����;yxS�[S�}t�1<address@hidden>��+��.}ퟶ.=s_b�N����ǂ�f�;address@hidden'.�&u��E�;���8���:q]�2�
b����k�ގ
+9
+��R|詄��f������e�����+b���t�o
�f��.�R�xv�Č«va㡪�T-��  ��K���=G�����x
+�����7�f�     #j�U�
��=�`��Ԩu�L��l9,ӗ�z%2
�K��^n��������J�R����g�h�Ep\L"��ݏVU%�=wi��R��C����IE�3gD]U��[ge�/$
�uVGү�=O�};�Y�(WM�+���m�_v�5�Aྕ���?�>�R����|q��z�F���c����e>iŽ�k�M\X�����V�,}�d$�����{�k����%
+�p$�&)c�ђS#̣q;�       P���   
���.��*%��G��ר�^����GlTt�íGs~���/�ᮕTQ����ݫ(��"�yV�x����EV    
�l���-Dp�g�}���,B��#),9�Cˬ�dϑ[)kn�/hjNM"(�ᮈ25��SA8AwF���%��NM� 5L
s���$�Z.r��Q1�ޯ�������Sn�4���s�/�W)/3�yZ��u�V���s�u�h�Ӗ��ڻUdlP�T��7��/��ʹ�aZ�I-���'�tCЀ7O`e.�'�͓o�}wu��N1?M��t�vx���a��k`�T$�w"�*�Z��?x��������}"N9�5aX��#>�D�
   
h��ԡ��/�G�[��.҂c�j��R98w�e������Ⱥ��S�rᘣΞ�'Y�+���RSKN�]�~&��)5�܀w͠QZ��hr�h�T;D
+L�2�d��UdSIڲ��Z�=6�"�[rF8������K�q��P7�N\�v��(�Ԛs5���ISr:{�[�iC��k!hr�K���h�z����.N�T��kO��qb�o6�(�\'\�H>?����/xU˨�w�ժ�'�}m�����xt�Rr�/
   ��Ê*��͞ɒ�ǹ;|�M0H씍���3H�U�E��P��1)]JD��#�}3x)���E`z�*G�!�u^W�QkI� 
2��w4��:J
+���:
�a�H4�K]p����̗�Y�xw�4�:c6����
+0��qsGR�3�J,zօ���﭅��Gb����]'����.��
��7|endstream
+endobj
+30 0 obj
+6555
+endobj
+60 0 obj
+<</Length 61 0 R/Filter /FlateDecode>>
+stream
+x��\˒�8v
{Y�����������=3��GLMڳ���)1StIb)Uv�7������HH����^T�$��8�����T�
�����7��|���k�������7߽�Ս������޿qP�(z�jR��������^��x���?|�������Ym���͛���ī�0������2u���fwj������x��7���>���v3���Z��tj����Q
     
C���v;�������v}���'5������uUs�w��[{�������^R����v?���J�*�n�>����ǥ
���he8.���+�y���6�߹�Z_X�߆vul�iͲ"���������g���߬�W�ۤ��}?��|��P3���������D*�As�2�5�eo�aE��FD�k��s+�����\�R1�b���Ie�~������
�}l���7�u�I���'Y!D����n׭�[aiR�[?:address@hidden
+��qF"d���+�/����`��$J�sA4�{c
�����2D�5D���q�����9���-�ٻ�̝':ߠj����Ļ��8��}�O�����     
���<x>��C����q�
1��� address@hidden
+)� �d�`A%B갯�'����� %"c��]���~�]c�m5�c7�"
[6(���̓��B^D������y�r����n�����OÃ
�O�Q��u���c������M�[�/3=(���o���4-�C�9{iˇ~�MN��p#hru%
���Fmou+�*y�;address@hidden(ޜ��w3zQ*DrR�=�J�>address@hidden
�[���(����XE�����G"4�3a�Rh�'�gB�HaP���LSb&",eiE���:������B<�1�}pC���yJ<
+�
�^�p���.�����-��1�m�q)�OV������%[��"!��C�        ��c=Z� 
o+�/#mi�����G�/@�Bqd��ޞ� ��q��vϞ��%0�h�8��A\A��w�]�\��N{~'�ɏ������f7��   
       ���� ���z ����L��,�B����o�=2�� 
9�s�/address@hidden>u��D.�B�!�j�e��.�`�&���o��M
������ Y�O�M�s�iEI_V��������\z��m�p�������i�Y�icZE&���W\
+�P����m��[�4�]>�CA�'�*m���
�Afσ��F�<6���]F�B�����
�,�����d:��o�s���D�]�*��6��蝎��c�Z!�u�l��m&���Ț�RcX���D�]!�\
+D���읲��Rg7U��+SK���n(���������<>~,��Z��"��4��2�%�Rz�f���
.�bUۛAq�+g;��Pߤwve���.�]���xj�����|��        K��T"��
C7$6C�;c��
D���-����$��=�/�=N��J���P$�>address@hidden ��I\;�n     
+��s�e��ӯe�&address@hidden<�$K+O��"ҭ/��V�m$x�l#��
+c��>��j�o���"���0
+�s|�x%V6��Lq�[ZiH{��YZ[Y��������RjFUx�f��0�&�I��~�w�=���b�p�K��$�6f]���"1���{��M����J��:<address@hidden/���`��

V�h3^:������bm�(�����霐�6���s<������뛲��W��l��Py1��b�AG#�Z*�K�dRYt���k�3�HB$2Y%uC�Nb#�
@�imJPB�"����W̥�D�k/[ٙ�e���,Ƈ���X�/�ǫ+���S�����hT���%�)eȨ�
k���j���p
+�w,address@hidden>�;uΨ�ӎ�Wi���h�Bn=I�ª/address@hidden|��&�|�<�H�I�
+R��I0i�LX�Wя4�(����    ��y���
��{���>|��N\�����V   address@hidden
��i#�YA]�X���?aR��q�f2�MY�H w�'�'address@hiddenh�F���e��
+�A2y��n�%Wq*����j��N�f�sx?�
+cKj���ˊ,�0�d�I��6�桻�F
Z�)�]����]��6��I)�519m���1�ɠkZ�6&�n3��L�vȊˉ8`X�:t��;t�a�n�^��V��1���0���.2�<^��k����Y��d�o�ø\�Ϗ�^B���X_˗Z�X
#
+����y�y�==�������y(�~�3��   {xᇷ @�����g��f��0�w~���>k��,-��9:�k!"��)   
���É6[�C����5� ����a�>6w��f���+1隳%-L������5���6��`�
@1k,�<�h!��M�b8�r�r���`�{tg�тU6FG��؏f~1Y?���� L�,�(v|% 
�x�f�26ki?��U��ϴ��)
��>D�h�_�y���<��]�<��������������yf���L���\E��n�K��9ș��˜�.L)i���      
�:MbS3�by|���3�O7ד_C��
++����|:"�8�Z����/2'b�����\�<+?�y���BF��>���/�,Bsm�b<'h  ��`=z��#b���8�� 
4�/'a �d����f
+Y�u���u�oY,��N���y c4ξ9�k'��v`�I"m�p��˧�ȹ���
+o{ں
+��W�{!K��RȦ;�$��v96�A)8<�
þ�*�N{����������32yA�       ��N�\�a�dEm
+yH�Y_ۘ��k��Z���ۉ��;�>address@hidden)\`6��j6O�t
�b��n�_��1A
+�,j1�b�Z[+��k����P���Y��/���{�wTN\v5\z�zk�]�a����a�;�X*N�o{�RlI=��Ƽd��0S�3�G��
S �D�� 
�jzM=��1:������N�%�dz㬓V��Yf�!pe��1��Nݐ$�I����TA��^����ʁ�U�ˀ�3γi�F�Z^B�2
  �OnYvLzD     Jy�-�M��d1Kmn�:�7p⧙��W�`�
+>��8���z!k���FK^'�:M�e,�a�S��%�,GXU���\\n]3�׍̺C6�Vq��E�BU(�j���|���]i]:�#�<֦B(e��ӱK�Ӂ��y�E�:���8��
+i2�����
�8�
��di�
+^�f�F#��y���       
єЕ3S��x=q�0�Gx��D;�������p�'���ӽ�'�pI2�/kg�]��1�Y�î!���4�J��/K��Sm�"
 F%C�Pt��v���f��a^�Kf���f�bX
��l(address@hidden'��#�PN#��5~��֨"�8^���(�����*NrG§�_
�>��R��B�ƟI����T��iRZ����'J��
~�h����Y.�-2�����;address@hidden(JgSL<�I���!WN��31se؉|�l�0=2�E:�}   
pJ�lPsvn��
+��     address@hidden,��Z����9哌�̌/�,!\��� 
���h֨|�d�ے|3���AcZ�)���[�Jz�_3�i���m�E�����Y���?�����g�éH��#GnẌ��������O<D�y��8w�{*��!�?��o�&CvJ����e����n)r:8#aɡ��4ܩco��Y��^<��fw��`V�y��mU�q�0K='*9��u���t
 
��LK;�9�K�y.��=M����_�(�w%�r,֖�S��wm3��`�����A��o�2{.�t��!�tg(<���,��l������������
5vv��)7F�6C�
+E��a�Z�
+ԥш~h�
@�_��~�"ۃ�/�R�>�J���6]wX�N�a�G�kSn�-�SG��Ƥ�cNȼ�)v8t�*F�cI�Y�c�R�c{����q��5��^
3��WX�� ���ݴ��]��Vm�.���u��2��q�
(4��.|���(��=�����Il##yZ���2Tv�ap���:       ]�p�Q��        
Z��'��x�A?��J        �Y�z&Y�8G�UU�D��%IJS:*?�g����"~�    
~��*����}�dʼn�7e�Y��q���_+���f��*����\L��K�8$��O�O��o�����0�"��)�.����Di�    
?y�fO�J=����x��쑌�T�ex~�Sc�u��5N
%g�l�
�6]�(v�0����i�����)��5     
[�LJ?�~t���2`��+���p�B��献���xv��f��*��aX������f������c���%F�fW��3%�4�Z�vI����+�F\�
+r�i����ED���B�;7�d,%�}�n�p"gݧ��U��Cׄ�i��/X�������:$��X������Q��݊��8�
����������}n}�/;��c�����!пX=m�3iT<6k�w-1��9?;�WJ��;��»ϴ䑿H�]�}��k-k>ҋd�6��U`CA�܇<��ƪ��y���&�|
address@hidden
N�ň�N�2�F��]�b<���aI4�PZ�ѯ2(��C�_��.|��=WnF��~%J���%��沆��DY�r�����— 
�,ؘ��D��fH��Z�?����)la.ZH�l��#��^���x�%�!��r.�x��FIl�����0J�CU�>address@hidden)|address@hidden&n+����'�����קq
S@<m�&�-6!��fg�����8&�|����=b�Q��0��ө]0�������"      
�eS�$Ne���T㲹���RI$�&�e�h6���0�84���/��0��g9��#��C�jA�lR�U����?4u��4��<K��:�{�d2��<address@hidden/��1ۋ��������
6����Y��Th�g
™�:address@hidden|$V�/M�{��޾{��H*G���gK\c�b���?]2�ݺc��б�u��l�+�|b�cZ��U��m�t8NT���{�a���S�v�o�#����0K��
     �K�+nyB����'G0�7!�����2
++�c$��)�]d�,��������W��abK���Z����
+ZEZ��>��V�3=��c#��N�B;@F�\�۫�����������endstream
+endobj
+61 0 obj
+5799
+endobj
+70 0 obj
+<</Length 71 0 R/Filter /FlateDecode>>
+stream
+x��\ێ�Ƒ]�q������f^ɔ�]
k�+Ƀ���U�i���5Ūi��������$����H<0;+��'"���,�M���׻�^��a�Y�g������?~ϪS͵�y}�������M�ʢ�����~h_����.�d�޼��m�l�)��%���ގd׵��N���`�d�as��B
+x���=u��v֪�K���C����I�7��?u>3�2��i��pj�
�A��ia�K{�N]��v8���B�,
|o_T�X�Y�?�C�X=���iW��¸�dy]�uX��ߴv�\\Һ�!��C]�n��{��i��S�?m��.E�K�rl�'/G����z��ʔ�^��Skŵ�֬nV��?�;�Ǯ
+;UUh��8����B1IGѺGL     
'�o����1�B�e4�S��q�3����v�(���4�;address@hidden:�k>ё����E!+EjWAwMQ�*��mFe�6ϔL��NnZ�l�ѫ��P�h8���)c��
 �RK5���]:�     
F�,�*%�3Zw�Ϋ��a�uXYs��ƭ�B�D�WN}���U�?�����;���GGH����e9�*xM+~���)address@hidden&$DX�yh��[�)���ams�ҁ�k��Knə�m�{?Δ�j�������"�}��_�����-}��h�������]|�x��+h�����t�N�_9g$��u.Ds���n�%5��Jj^p�!YU���'Yj��k�ݏ��G�
  ^���c�v�7�X�0z~��k:�a�����$�
+㝟gT��4���:0��4�;>��*'�m�E��Dn����x=�Zz��Ĺ����(UV�����,��JZʂ%ʪ24����l�
+����k�I?f4lG����YJ���Q����`tX���ӣ?��\�/� 
�s�\������jI�r&6�hw��J�.(�y��m[�p��m�>�U�����msj�ǒ`bc�Lt!�֡)�l��=��(ãK~Z�S?
�Ӆ��R�-n�kc*;��I��Y��:2=��A�����S.bP�N��S�Yu����kN��Ҁ��웻�|���p��s��2A����2�f�}Z�m�N}��������8���n�n��
address@hidden'�o9
+��N�7��y����/�����,la��>��Ah���A:����>��-����A_J�6B!�Nr�c�"��Gon���`كw�F(8=4'�)�&�K?5�~><�t>*��\��:�"�\8�[�u�Y5_V�p������afU�&r8�m��?]�r
 �$����ǧ�:�c؇�6DF����6X�?Y��C+��D:��}�)���&
Y(�]�&�=������f�W˯���T�ܴ��N��A\ѿq"�mv��H`�*�t�ss�[r+
+�cI�R���`Ӝ���T��L��L��b$�f{n�`�U%I��^��A� 
$�PrB.���Gg��5fyW���p��<G��&��ཽ%[��D_�����_~���2��̄)��u0u�((ɫ����v5�{]B�I�ͧ]���!N��
-�]�yXa��ᤒ�,�i��G�HN�� ���1u�`3 �����֩i/�F…��{ӐI:q؂W<�
+!��}�ݛ���r��e�<�AH�;9-ҕ��"�}��qёg�'^��MNܾ�P
��C4>&������u�CеE]Wo^ZD��
+Kw�#+���>j��'�����~��‡[U���K��w�H����-`:��Q��D_T��wmt
"�n��7/o�_J|g��7���`v�";v�R�5˺߁��u �����Kb>��������v.�U�(��m��rrO}ɬ��"�v�
+ b����ԴD9�����**��������0!�sH��a~�Dr�3X���  
,�q��UF�8r�,FV�c�yE����H8Ș��ќ|address@hidden(n$l�ڢ�"�~��4���>x
)M���P4���@/C�F0��o-b���m�i�,��O������!<��?��]I�
�#����m\.ը���>P�L��v�):oj&���dFw�)��W>�U�7c������m�zi�ᕉG<"address@hidden
+R��LzC���+��E��H�S_��� 
v�D7I��C���AEV`8�K��j›��.c4�y��c$#L�>$���-
W��}63�8�qX�̨��=�:Y
/\nLua7sX����d�mC4�6���'�(Hχ����{o���w
address@hidden)�|�
*����
+�Wh��'�/T�*��K<����9<8�50�2TdhO�hk�   @t��5B�j��܉�X
I�,��_ w��g��ٍD-&�S0�S�∆���^0ɠӃ��A�J���.�!�f{{�χ�3�j      
.�����W�����6�`uCT��[H��
+�B�+�0���S��&��<{o�r�����s)&address@hidden,�� 
mCu�Cn�Hq0"+���k15Q,���s�:��29�O������pM1�d$��>8��~^w�!ɬ*)���|
+�̴������(u����M;�5���Fh*�>#g�      
#�S+�N���ZƐ��j3�hi�'Y=�Kz\P���������g���H<Hx����j��lu�[`E*���w���Nck>D�.-F"��bL*��J��^ۡ��

bਾ6U�1�Κ�B�$׽"���b�����g\ĵx�/�<A����m�c��ցG��^�?�X���O��{H����~�������؇��"�W��<����"��������K�6��>'O�$�����i˺�\Ώ%
address@hidden;P�q�z
g4��֤Zc
��w��/�8��m['<address@hidden
+Z����x/�n     f�eL�rӌ
+��:)������vi���ܻ*,address@hidden,���;9�Ļ�m"��s��z&���
+di�������gY���(ǽK}
ͷ%i}r��s*�"��sV�F�l��6QkBv�����q�aL�,���l5y_*�
+C2^�pgqDL�&=;O�0�=Q��i���$��#ca���cvi'��C��m6], 
�f�At�/����<;*u0~s);*+D+����he��#���]����1��1 
�;�IX�"�ٗЅ��H�:ֹw���;l�u,���#�$_ff��BG��}^�\M�\�b$��ַ#��h~�J����ݒgػDEGY?�Y��ͧ��Xe�*�^
 ]�"�r�v��/��`��YOd�IOv�z��$�j=�Ol������
+�hY�Bo}V�el�iv��ɇ(5�OD�3�)\��^a� 
+���*��(�4�2��O���۵��[=��H����S{�;Rϒ�a__��BΔr�O����v�k�.3�3�yv�hG���2������o^"������!�E�ڒz-x��g=M�K=
�-b
+of�Fk��4����;�\j+���G��3<�ꫯW�*�n]J�7n�LX��~JQk�U"�s�s(��     
?���KA���[7ױ��m�>`�I���{ym���P�=L�X��KF*�fb��[�ƊLNA�o����z�]�"�(j�B�3���1"U��4�&t�I��ֶ����C��2Ż�����+r���m��Kp���v
+'&��M��(�gD؇��u�%�    
���,�jAn]�U�%�=6���l:address@hidden&��?Ӗe�=�.�)��"H��V��eɯ�nu�v�c%5�-$K��jA�X�ٷ�y��
 ���[_��R��C�Ӛ�N��/��H�}AM�.\3��vg�Xji{�"�S01i       ȑ��-%
address@hidden
�+���VaK3�<�H�����I�>�.�]�;5�b���E����O��X�m��tB�=w�1T*,�K-\�����BB`M��ж�\����V��g-
  I�1*��xY,��8^   ��Ule��_ýk��r!��<Ա�1j�q\���Ok�"address@hidden(�
����a�ٖ��g�ᗱB������F�U%"tY�KNvtJ�O�ol��L��;�һK�
�<�]�гm.MZ߃O�Dl��6�P-g�ru�b6+���Z�B�;^c�����2o2;�
at$x���w      
�9�ℜ����9�����WMxr�d�IB�YKZ'address@hidden&��w��]�f$�G'e���<�R�I䗒-%+�}=�
+��Nka��\)�w����grސ��z�8��ݣ�)�U���C^�M����Bc+�w4�+dـ
+�-�/�M�y],UH��^N2޷&�dщ��η�Ʒ���pF���pXB�bm�Q+x�9�%I�X�Zw��
wI+Na�QF�<q��M>���0��<��PI��)��Jʢ�)�4�3p+�Evdg���J&��x�$KT}C���l����s"v����*ǂ����!�
�X*!��P�g.��䅰.�
+������
+bI�߻@,�
>�b���>N�%��V��x
+����1�XIl~��!D��ikx�n��{q�_K�����ġ\N2��   address@hidden
�r�O��tGd{�I4��PZ^ʬ0�I���ԁW�q:
+V`j�
+�'���-l��#���0��].?  
��L���*;!Njn'���H"�`�x�Z<�{n�������6�ض̬�6�b;�����9�������C��|^vW  
���E񱲳��o(�%��vT��$)�����%[�$i���<�9O�H[.�+I�EM�3b�\�-���ٱ/�%�p&��;�<�� 
��W�[/���=ݴ���E?�*3l��Le�Yq���ȿOs�tb�㕾�Yȫ}ؔ
˩9���Z�Ա�P�WK
+�5^��`����w��us��stb�li"H"A���WɅ��^���:�*>R�spi���X'v�K���>�*--���v>����3���蠯�:���띑�c�y����M��3����<"
�7�ru���1ԥ������M��"�͕��tV�������JYs��C��n�rA���Y\�m��a����6Ոu
�H~U����g�ܙ�郿j�Fn�
address@hidden(��g��
+$��R��dO�/���i��`)������     
��`��|:9~�?�~�����)Il�RπT����w�|�$~���K�)address@hidden:��dցO[]�Er9��f���҅���Z�_;���s�ݠ�6v��
 OC����#;   
����u����u��v��a�[��������7(���pw_l�]���cl^\K�O7�(�e�ᓞ��Z��nр����ٿ�ju�J��%B 
�bS$v���9�C�uw��v)U1��z�%�e�؏�P��Û��?L�-.��/�L�S�S���+��ٓ�     
Nn������/W�
d���G����fT�����T�b�!^��3��񇓟��������k����W�$��/��B�����ֶ��+0��y��������i�����f��R{������-�cs�Ͼ>address@hidden;ؾ�g�)�P*^��`���_�-b���5�(K�2�����w/����>
+
+endstream
+endobj
+71 0 obj
+5962
+endobj
+77 0 obj
+<</Length 78 0 R/Filter /FlateDecode>>
+stream
+x��]Is$�����3������R�J�H�:X�,w��Ztxl��bv�,����l�0?�?C�q���d"ki�fb"�p��(address@hidden>����g�����g��>z�������]�~���
?3�mZyvy�����_`�����5�    
�/��}�9�_ftx�r��|�5�0օG_���e؆����ۈ��i~�fM�d����z�Oy�tF�𴿝m����~��lg˭_��ٸ��|�x���o�äim����4g0��Z�/x�����
�G?w30 
��*̰�Yl�SO��7�<�O�,Z��=�w1�p|�v�o��ŕ��а:�S�4-�B�/9��Fu��9������~�2�����1!�7D!)���W��n֪��90$���ߊ�u���v�������KF�_^�uF�7mg�
 TR�q�o�m��rk��u�]/�ļ��q��G��bQ�f�aV�D��zu�~���
+Q�xR��}v�B`ݟ����M�5�3q׫�7MX�H�yGmcM�i���+�^ة��>l���v�=�hN��_�+՚�����޳��H���I�(A���ȕJ��(�`;�Dү^=�I��ʁ���
+�
+��z�47Ri�
,5qF��H��*���j<address@hidden:��$���$/�s'V�q=\�Ֆ2%rEۭ��Rc�n\����Oҥ�!�̲V�("]�W�;���;
      
�%�����/����<��Y`���ѵ*ٴh���љm��Iv=��:�p0�V�}��n��l�6�k�q��x�$���H��bsEK�����M�L�j����6Z~[X~
 
ēR�J�{�2�y+h��M�s����v�'address@hidden<�)e��lT���)��,|S!�$2���6\L��:�x�|�l=�
     
+��rÓO�n�M%�LZ�iߞ���kA��5�Kض�� yM�0ZDj\�
���I!��V�/Q3�Y2���W��L�������.
+�����%�*+K��]x�|�z
\8�I�!*,�#05t�ݾuF�b�YTp���v��i��O�3'�MR��5lH▀���"��(address@hidden/��m�7���CM��f#�L�3zi��&�O��2��|wc�����ޜbɖ4�j��v��ρ���6��6�v
�e�b�!.���V��j  
��5A>R7�e����Dˁ�`G���:4�D��Z�N��v56E09m��v1�im1���<Z�_�����o�\��'�T��v�?�s�
 ��E� @6c��(̏D���j�ٮw�(��BF�=$�E���T�� �:I�LR9'����óن�XJܡ_
���xi#H�WwW��,[�f|address@hidden        �'Gz�M0
�LB�I=m�ާV����'address@hidden>�ABUa��/    ���������,i%����t) 
N�:�nΈ���m���IٝQ`�P�8����5�pAE�`���l���qCO�:�\x�<���F�����1vx�7�
+�f=�A-U\��
&|J��      �϶�>����w�6��h����2Š�pQ[4�'�E]�#P��œ ��v螁ll+LK��9� 
��l�[#7�x�E2{����Ə�����<q~�rn��IF&.}��B�� ���~=j$1?G��     
!ΰd�B���wf魻MD���R� �0��Z�cn�'�1� 
��_Qf�~wn,�7Ӛ�&��R���t�����fd2���o׳���H5�2��V�
+�I.�a��!p,�)�L�
+��2EH�ү�C.~嵙F�{h���ڋŽLhѠG�BQK��܄���_/b���rEp*a7��:O%kS7i�&�?m�n�����H�����sX>�!�j2r�
 
׫���<���z��H�⩐dQ��l�L5���z��2B�����ެU6�����C��Wp�������_\�,����#5-ZDق���(%�6��j�\�-.��M0>R���zR�,?��c
+OV����>�
��'��t�(<z�>,)ai13,
+�8�B�c5f�e�]�&I՘Po}� address@hidden 
s����`���B޴\�U�?����˫��M��>�6�0����.(����V,�%��ҁ�����ՇQ��L�<Qnw��#��r���c��e�lCI�y-�*�o3J�K�)6�����iSee��M���!"�G���M����1c�
      �
+d=nf��0����‘���"��3���y1|qp�����f0A\r�' address@hidden
address@hidden,�53s뇩�wT9�VJ���X��4�(����M.��.B����k��]�֔Rr�ADG9$�J�
address@hidden@�A��;�%��������\�R⻈[���|R&Ҧe{��޿�=�X������I��\
+�����ʼn��߃qkS�5��1Y�������F�غ�R7چL�������C  !12*�l�h�)�8��aq�?#��
+�<��&:J��R�.�;address@hidden
+0v��G��U�j9ą� AB&��F�uYt:Q�ʃG�\����"yǎ>�
+K����wH��KyID�׳u�4!���#��y�n0�*M��ľ�?�
Ix�D�I�{ì�#�g�۞�֐)�m`�E��^��`�x��$L9��]*dFF�.1�v��������
+��i�D�矹l�5�&83��Z����)&;�)��v����$YPp0T$<����!K�pV$���Nm%�.�#�#U3)]�~tp
 �mGo*K�:�Ҽ�r|�B��(��K���n����X1LL

&Z ���"4�Z��i��oW�i{�SW   ��
+���bնg��`bl��8�<!����a��j��Qa��M,�����mT]
+Ğd`�d0^�٢wh���Ra:U�Y��*Ul�g��Zo�%��3��,���՛�jw���/����"}��Y�ݘƊ�ҏP�-BJĹ�Ů�9�e;(EK�
  �?���tGٴ�K�l�
+Y��W���*��.jr�v�
+�����)��׊�J���!���KQn��Gz�A�.��q�Q�S     
�/�H�8�W��a$զ�}X�%��RZr݇~�[�w`�x���M9�j,��Q�2������*�Oў�u�E�}�v�F        
�������b�
a7��n
�|jy��aN+��녫��|�����p�yk����#�cM�v��6"y��G�Yφ��D]����#qS9����d�v�,�*�O7�,1�<GW����_����C���c!.�"Ā2E�W1�Um�Dz٬�2��j6��M�c�k|R�������IU�K�jk)address@hidden:�0E��,�쮏�L���J
%ަ�V���S�A�R8�X�ow��7��p�d�=���:OF�d��"0{Ҷ^��ۉ�w
+X������
��� �<E<{l;��E͕i�^�\Y�ρB���V|��{M>����&����b�������.��Ҩ�M
+"���"�!(CP������<��T��H�\�Mga    ��!?�mr<.p�a�.�
+�j�_3�p�/�4:address@hidden@���|`&|,-�      ��X��`��u�Y[�xR����%
+�LEu��D�;F���/Q0�X�pC�e��sB�)�4mV[�v�X�<8�Q�
W6�b��q�e�R�B�i�)�?B�&address@hidden@�(E��%K?��#b���9���Zu.�;��P�Ǵ��"�B8�0�,���$o�������d�[�Պ�T���
       �      
�DJ�������5Y�ȸ�h��O�Rڦz#�1�B!���m%EW!�рYj0�mC�Qi���DwrB�<�γ:���*���aj�h���c݆c{H\��]*�f]#�
 �Ig ��q���F�6�I�x�S�\IŠ  
˾���f5~�u�ݲx�H���[(SZ�/F��%dQ��y`�HY��<�-��n����A2�"F#&�p*)��1^R�8kDBX��aHh~1����xޡ��P���сʼ���H��x
OU��_N�1H  ��꙱D��f��3a��.�
�C�3��f�)[)�����=�WU        
=���u�6Uj_��r�fa>�ou��)F�Sr��gm�{�KA�����ksq<address@hidden
+�����[
+�.���;Z�kR9��?i4��.<�v�RT۽��WX�6�S]�z�"J�V��f��2T�&�~U[�K��"
Z�i^�������    �S�[�H����{U�+ߑ�:��#,address@hidden/�qSBȫ8���dåP
+u�i`S�/ܨ�&\�>�K���`\~0.߫q����K8��j������ȸ\��]��`E��Q�+�Q�8�g��Z��R�����vBe%�:address@hidden;B�~\G�"�r:�p5�fҤZٗ!",�t�vW������l�G���5���PQ��Ӳ���u�m5t��l���~�24���O��;,@�,eܨ��M�z�tw�]R��tw�����b�������/8}��[���`�����(�q��6����!�B����ӎ�,����c�B�@
      
address@hidden&rRV���ѫ�P��v�nW�դ?�T��j�������Pw�}��`�aEr�Q�}Y���{���nxBe�.6!��P��Em)���4f*�c`�a�l4����ͩ4��V*�
j�
�)������,7B>՚��L�ڟV�̰G��tu�C��Z �ϲ^S�yY�x�d�S address@hidden �
+1�͠���TN9�hWi28N
+�1U��Y>�fp�"������q�L�m��5������,�'qoO=_?E������I����r�k�8��t�Oֳ����(�h��l��>�\p�\r�]0�o��Sێ��+G����g9b��\A�Z�i�G�4�G8{����C�B剕�Ù��F�pD�j��nӽ����R�������4��(����À��f�T�:;�_���5�Pb�tƣ��(��/����˘'�p?[�\撑����x6�r�]�Mb2��</���2�cmY*��;�q=wau��";�wd�n<3�)address@hidden
 f�\�R"¨���#Ծ8�V���C�m`JY�paU}�*�4O�=�P�5�"address@hidden'k�U#mu
Y���óE�k\��/���hy���6����1Ik�*Un�
+�j�P��,h~gGq���ñ,k�z��e9�Iu��d��L�]�G�`��x[O.(f)?�������(address@hidden:�W)v��*�����ٶ�[���6�~�n�`d���4
 ��M���#8�0�<<��5�9�c��u�[B�//��19�CO�p�]C�w��!�tRwU���J�Cޓ[       
 
���$���*�}�I������CM�܅���A�=mXaĞ.�8��.�8dOV1u��>x�EG���I>^N���{K��;�w�J;�
�]������u�H���ũ^      ����F�����U��c�*���C��T�����d�(�ե8�u������|�g        
+���4p���Q{�<�:��!���i����M�UI�s�}H������,tL�A�~dq21�S2��&��%_G�].Y���_��.ڤ3������h�k}J��2^97�R4x<����V�+�k��ݏ���FG����{���Vg��G�]ٗ^ݠ;[-�^�s�ˎ�T����ڍ�kmb�jJ
address@hidden  
address@hidden>�����)<�A7C�۬9�􍈇�u�]�y���L������-^�C=�m݌�x���i���B�����=��ze؄�e�S��ī���0�_��n��7ٍl'�N��

���������!�ĉ�"�+1�'���������Co�w4��z��ݽ���V1u\d�n�I��z$�k���l��r���O�9I8���-�S3p\����LՊ�ٟ4�3��.ү��u
+W?e�ݥ"ǘh4Qzl��%�b���?�� 
-�\�F����ƞ07�jO�{8�=���L��;dN��"�Ú�׬ղ*.�K�~���D�>r=�M�ӹ��}�/;[~B��w���z�$u�N�c��2S��:�����w����k/R���=�|�X{5k�b3��s|������A]M�����B�nσ����zB�#���E/�J��ݣ:�#`Þ�)�l���
 ��+�9�
Ռ�]YvB�m��T�Xmût��e����L7�cU�79!���b��1�׋�z���z�R��Q.�LS�x�%����!DI��xG�l
�?�NϿ��\L"gwɆ>�Q���o�e�P%|�0��G�G�S(Kۑ�:�!`�ε��_|VA�'���C�8��̡t\q��u^dV<�e�9�Cw�i���)�xxNbYi_d�
 ��)��Wk�C�Q�4��G�waX�񣉙_#RmIO��ȱ�% 
�d���u��V��V���_H�z�,o�0fp���?k�8*��:��K��M�]2����g��='���z/��k�e/�Y���ȿE������ɲ��������������
+M��.v~T���f�j<��ԧs�G��Ic��-�8U|U��{��U�·b���'4��Ն�•�y���y������������L
+��u�B����4(%�P�x��Ҫ�տr��lP�"�y?Z�"
address@hidden>��*;:�8&�[�tRř���(�R�����,���nx����E!RK�o��ݧ0�k�Q�z��-~'������z���#�::address@hidden
�Б�i�K���w�>{�����9ۮw���~ƞ}�K���^|�<���?<�⹟�uӄ�wg�]�2 �V�ib��쇜Y�b�����.U�
+a^��G��{O�N�Ϻ��ܤC���6}�at�};��Aw��������k6�h[�[c�X��:R�"]��
_Ev�B�R������-��xt���S�=Z�]~�        
��ei������������˯�W�D��R6�Q7}~ҷ~4����Nj�h�O
��'�vF?��f�Kw��/H�dQ���;Jm��o����:326׾'Q~6�}O��)�kk���wQ*5i��?^]ğendstream
+endobj
+78 0 obj
+7455
+endobj
+87 0 obj
+<</Length 88 0 R/Filter /FlateDecode>>
+stream
+x��]YsǑ��G��_ߒ�Ӭ��WޕIzW��+~0�04�13�"��߸�ud�Q3�����B"ը�#+��/���&�����?��g���Mxx���_O~����m'��F5yuq_�+&�������Ϟ�7��_��L��[��ū�����n�n��Ÿ<~�{�(�x�uj����F�5���p�f�FZm��o��j<�\�a��m��2�Z��c���R����4Ki��������h�����r���J����6<��g.��XoRC�t^���mm��I���(�Qx_��i�8o�q�ݷ�⒦��}��3%ҳ��<<ԍ��!U�sa���~�\�-�:s=�ͯšm#�������(
address@hidden)�p!'S.�O�M�Vg-O���v�k����y�U�m�.i�F�N���<GP�"��-dž����3����߶���\�#��6��HIN&f�a��f�TZx��vq�
        �s�(��l�uA���Ӹ_�<���X3|
f"Mh��7�ka/����}�s�`ϳ��|L[ᄐDŽ�X��UZ�TI�3eA�x�\��j}�6I��\���S�XȂٴ׳�*�2�O�,w�}��
+�/+���*-E�J�iħ�/�W軛7W�4g�J����|}��Ec��>��]T-�gv4W!��7��b��6�]TZ� �]�Лv"
�E��( 9�E����bP�
*}��`r=S�9(�'�����Њm,��.�U���)�0C��߶��5?�M��S�>�C�J�19�p#�N�U*NS�i�|}}6�&���-�د���:�����0I
 ���D��:"��&address@hidden:c�W"/oV���
+DY�!�3�y�ڸ�+�Qy_������8/~+#��!?�
�
X`6���2IAv�������V�Ԧ�pp��!Yj�Lm��RA��=|�YmT�I;��֗
address@hidden  Q��X�RCm���D�a$#N�U�l֨,��6Q�Lq�m�)|G`8�l���O�wZ凯?ۯޮ�      
�Dat�Wq�`��x����V#�0GD<address@hidden,�fE����
�e��h��<I!de�/^?t䑇*B��>e���ԣT����w�_ձ�X��˜����V�D��NԸ�fL'~�I4�r��w�����)C�vq��$��:��<(��z�1aV�����.���z>���¦_�f���W��
+���}���[L�ƽ�ON!DE��kS��=�Q�#�j
+�_SdVRޜm�,v��&�Q�X��X����   �"s���uN������UƱ�`ha���m��6 
֮�bg+"M*EF��7Y(���c4�S��/b�����˛���&:�t�ǿtC�Y/����M�k�Q 
)��d��P���jZ���J�a�|�y~d�&���`c�J��J|K���I�e��(���E�ʤ�\��j�_�89/�M��
\DZ�tqޮv���T����U1�q]o,��L�R��R�Z-G�UD�C���o��ʛقa;�
address@hidden'���uy-e  ҦO��w�:�(���,czd� ��@,
� ���/��C�z"��S%��   
���.�`�)I"��.�����.+J��&8ȥ���h���S~l���ֻ��G=.�i�ń�~������5ΒC�i��m;�P��C���焳���)�
�-
+-O9^L��#
wm��#�¼�T��%&�vi���
pL���m��n�I��-m�e�3(�D�(C���U��RA�i�S�qbY�v[&��n�1������=49�H�Rx��{Yof�e�ScXB��VUb����)�����Ҿ/address@hidden
�`=A|������ 
��h�V,��:+��xp4KCJ-;A���5�EH=�$���3݈��\���?m���UZ��itL� 
>y��e���&�𢝯7�aZ
+�L����        ���\�r���Ul&�p��Bb��x��0W�����A(mmZ�1:�l��7
+��-Ji^[K�^�R��#�el�n3��M9y�'/�A�#���狛�v��Gm���ˇ]l���/�����Q�YYS����*�$����W�]^"���Da�
 
���?�0��b��J���CX=���i��*��J\T1���}�_l�|<`$��3�0(��������x��ʦ�ˈ�.�����}��(�|̦
+�]mH�0�C�E�8B:�81D:�ǡ���s�GI������ɝЁ�v�׿�mv�lN�{�'���\�1��-�Y��D'yEF��a�Mkኴb6߬�
 Vc�.7��/w�7I�t!��2
+~�D��%N�b��Y&��4�eT8ѡ뛂-��8����
+�,��-���؂��8|/�X��M\��+x�����-i���
�)�"ݷx���͊%���ɓ/���5�^���
"���+���'�B?����ޕ�H�Hx9�<��f���#������P�3���
dЋe��8a��w�x^6������H���-wd����4]ƴ�P���^����y�C�n�w�vH��ٌ�%����zy�����j��x�a�࿝��C?*Yxz��ی����<�‰cdq����0P�%���t�N
 �eqA�
È'��j�� 
��9�<��0���"���ZvyN����z�#�#���eG>�r�u�aKu%����%��.�;,��^:�ib����F'($���`���B���u�
+�Yx��:Q��"address@hidden/A�a��no����y����2�����:?��1)������
V?��.v�t�X��A:6J���g>&�pR걘���rYN�r����H2�E-
��蘰?��J'�X�
��஝m��4��(Edď���m�>��/`��>��4��̜��ߧb��%a���*A�&+�.��P��Uj�$��8���\}|�Y7�M����i�B�c��(�
 0�������pNk<M�MΨ�\KP\��ߎ�Ei��
+,��x���v�R���tǧ����B(%:^�:E�`
���M�H��1S��x�j��iH*���F���ڴ�������$ѹ�,�ڌ��0�1Yi<���¿Ɔ�\9���G�����V0~U�bZ���R�����f�tFe&����%�)RL(����:K�w��
        ����*����"3a�%m�sㅢ���G���+Y�Ķm[�������f���L��s��j�r�J�c� 
�)�y�AfN;'�8k�軙��E v23&address@hidden|i��l?^_c
address@hidden,�5R�V`������.��4`8(�b�Q!5V����Z����m��x]����
+Y��N�T��M�`\��=h�k�b�Ѧ��n�����]���#�5�RJ'�`���<���'�)�!B�����C�D]P������D��U���E
 �b<���?*\T 
ڹͯi1p\����Bt)aV�`�Zb��+/��ȽY������!צKn�o�ڶU���Y���o;�F�3�r�Tw���2�]ݝ/���ʳ
+��/�4t�qx�|xx�K
Ό��K 
address@hidden@�
+ 
o���׋G����՘5_83�Dcս�l��y���-Օ�����m���Sw��"�OZ���dn����TU��:VHW�R}0�\�I�{Z.���GTc$�B�mt/���"[`c�QT��y��t4��M$��=��3��x�
 g��=���"�2a}�<!�lg�����?|Sw ݓ��13heA�\���JE4�%,������t�к�3����r
address@hidden&����Ɠ��QfTfyr|�?��+3�o�| 
�����d��;�F/�;��R����$����j�Ȱa�0x�J��fO%�1�
UT�J`�|8�����~�lmt�RǶ�d������?cZ�{�g�d؟�|5W�ëۤ*����n����M���       0 
address@hidden'Z̲�7I2�$?~��-{��kx�E0�R���O�xT���.�)��I�ckh��(0�K^j���ʄK'������r𚶦w-b�]J����r���~E��X̀l4�hq}�,���G�+��M*��Dzy�/W���{%��\6ѓ;��t����YOg*�����J������7/�=�&�¼��p��R���/�걩�x�ف��Eԍ
����U0j֫>ëĔy�h � �?zu�zC��6��� 
xI�y�j�����;P%���Bz�.���P��{h�<�:��d�uh��O6��?xU�&�����j,���M{vq�n��X5��C�
 �`(f"�!4��W%�p~�t�S�HƚXrR^�Ƃ��􊍯��W`oѭTG������� �#q��
���w`��v�W�Tz���0�������R�`ܾ��pƏ���l_^��[�e�050j%�;���h�Ժ"address@hidden
K;�g���D��     xZ�uI��=G�������z`
J+���m�`�`�IX�xy���M.~�3y�y��sl*��`��f �~��G�x��ϏH��s�d�$�f!� 
�G?�/*����g�[�����)����6y����sH��}�2N^KK���ٿ���h��2��T�˩�6��gu
q�f,����j�`�f�%���b�J��U���e����[�˲����*��kجR�)�a 
�х���W&cCx��U,����Prwc�����bW���)bwc��{���      U�M8���
+0��!0yD`�_�3R�>��?'t㓯Oy�v з��U �ؽ@
�J������M��X 
��������9��!ӌnx�r���a����q�J�9�P-=��ߓ.8����}q���C������J���Ф��`�=�9��m��F�Jh
^y"-��r=}��Xz?N4d��,���
+�Q+�Biv��
+�(!<L��e���Oh�2��K�E
�2���'�C��1�vW:���4�Z��Ɵ�1$��״��b��J=�
�;ҡ;��I�����X��G���B��+4:��F��O ����{����|�V�\fA 
<����p�r����ރ�I��`�a���n�{Γ|}�Q���c��
+m���{�{�z�V>     
#��3�ľ�T}��^6F�D}R�R.��}��~����+)�d�_��?����T)address@hidden/�C,���&��S�S\��0�̲E\�}����β�{Ƀ���ƹ�8=&��)
 D��������l�2��������-,��}�7����kH��~���W\#�2A�AX�����B+h_           
 O��+��'Ύ�n.�l,kG!��0�A`���#��J\�D���\�V�B��s���8�����%r5�6�ʣk5�M 
L�1�u�x=��F偀�������T��9�E�1���� ա�����B�N�
OG��6<0���J�ȁC�LZ0�L,<�(s�����𭗉�(��C&�ʀ�}
�o=�
��$~�V8j%/[!��=��?
Opu��H/��^�_�Ha-rt�uw��������αzŢ�'�=�?�f(address@hidden"Y�ʺZ
��Qn�4��RKqa"@��4x�B�x␫�m�J�����s�&Z4����ţB���uz!�P���ॗi{�Q!��Ω'���#��z������_%jg���E�P���K´Tc�xu�NRy�:K?�0\�(��c"1ܿW����e
+�a��#���X尰����m�˙ґ#�:{n�J0�<ِ|����_�'v��Ժ� ���P�k�|,
%"l��W�*fɟ���8�
B�A����B!l�ʇ��]��f�Uy-.���,��Tk��PP�?��{��r��/�$c�E`Ҵ��e-�        
address@hidden;address@hidden:���5�ѷ���$�C�Y׹����*�e3
�_<��B���7�c�4Rt��ce�M������ߌ��%}\�.�ELsx��D�'����̴\<address@hidden    
����f0n�����a�x���Ǧ8F��Y�� �x��T`ރ�lWa�N$�\�}|d�$�iz�����r� 
�󱺢"���T�ٹ��w2�4��X�f��R�XX��(��+<���t����,�/��������x.��bӦ_��(�
+�X5�ޒ�R�a�Y\.V�e���A!h,���<�Or��;�৿×�MW�8AKH,[I;�2vw�#z��$
�����M��3ᗫ:�lUmQ�v�_�J���B.�b�J��&���K���o���$~        
A�\Hi;�����>k،endstream
+endobj
+88 0 obj
+6564
+endobj
+126 0 obj
+<</Length 127 0 R/Filter /FlateDecode>>
+stream
+x��]ے�Ƒ}�W̛�6��v�A�2C2-Q�����3�o�I�����ͬKVP�3Cѻ=(S
Tee�<y��OWuŮj����}�ӳ���}���^����/�0s�V��Z^��y�~��
���2��jx�}�ū߾�+����55c8ZT�0��_�]?��5�R�'�G�b�����J�F�󣾚��;��|�-�0J�!?�����myx�������׿/}��J�6���n5���~�ceS՚���cUc���k|d��(��f�襛����t�-H����O�~�F+HX�j���57Bh�h��v6�j�&<���g�bu�9ޏ�n��د;+#Y��O��r���~T�J5����]����i*ٴ<�
�fsX���t[��ͦ�9M��_�    rUI��g���t���lsR�J   
q�`��s��LG����o�U_i���jj)ZxM%e��#�)��]��qm{��}��v��}��~���Y�j_�VS�V��}��g��"h�m����qowD�U�i����8���q���h(���&�ܭK�a�2q/~(/��ɆO=w��XM�&p�VG�~ӯI�>�����6��*5�<}����i*~����w�&(����GV
 Ͳ��=Xh)k[cG����-]�:'X�,�$�R�C�3,��#$_93f���AC�
+�TF��(�l�j��re�������Z�-��.
�0address@hidden
���.����       ���*qݲ0r�wx
/�����`�cx�6�ct�ǻ���c2
����u0P\FK��ӣ��0����0�o��%� 
m:���NnƠqʐg8]o�՗�����0�斖n$|ϯ�I���E�G8�&U���`�M�<address@hidden<xk�n��*rݦ'0���
    p�W���P�s�"����K�E>gH������QA~�\�/3�J�=W�hCџe�����
+J`[]P�N�w�X�˶Қ4��pں}�p�dU��AH8��s$.�/d��   G���x�QJ��?���%�ƪ��/�e �
+\^CNۭ~�Z�Q5��
/{�W�"l<�1  
tK���1���M�Q�8^��^,9��9D3E�����(&ș+��r`j���ʼ�Ժ�%���$�"r�;��֩Q<�s��&address@hidden"E���E8�7h�����
+6��[����$�)d-��!����(�sNT;�*6�!��rs��.7�J�D�HY�U*��&��OW��1�!e{���^��Z���K�7��l[J=���GK��
   ´l"��N$~}�a&_�K
+�>E�O�CQ���1��+�h&���g�3����x�5�.Ra*���n�Siݺ��$‚ߴ���Oi:
+"6��Q�~[��tFE��k��ǻn(bAK�"�m�%�41�~t�����*!¦�x��D 
address@hidden|address@hidden|address@hidden& �h���Djڂ�z���C�ӆ���t 
���w�߂T��p��wy��IF��������~,���F��sI����      
��Kf���1��<ޔV�8���ye��������]������,(W��`dT�n矪�j2.
������:7�9�b��Zs��O$qc4{aE������3D�HGPrjBI�n+��G�-�;����s���DF?(
l���6��B#iJ �!&&���:��n5��3��V�    
y��~�{�e-����x���jz�Э��+23�R�np9���N��Gʯ����D`�u��=���B��E���G�P5�K|address@hidden(���'��z76��"а>b�1)S�Y$�c����|��j
+�dQ%�:yh�߹,V�&%��՛��
�m��`��pwK��yL��6�E�麾����E�!��KT���$�,���,`~ʽ�����)���7�)���׿v�FXX�_f_3��4!P`�/Kʳ�s����?<�(V=�>lhK�8������b
��w�i'$+i&�����FD:���i2Z�����إ�L�����~1��Li�
��^Nɀ��u)�A^������u��ם�Ͳ�y���P��X���.�� 
��&�;���'��0�P2Ƭ��d\�V��ʆ���Ot�� �S�       1U��N��?�
+�d��3�]e�"X��}���ɿ��_Ii�ٯ��S�����0f�k�MSU��ڤ�`d}5�M�\[��kN&��0rI6?˓ 
��S��jQ3w���ە��myi�j�"x{İ���-�O�RUv�u��������^F�S�-��2nAHklK09u7�ס�m$�����͚N�QZOۿ�Yk�G�$��
      þ:جW �bI���\�zDQ�-.�a!��q؎�i�)�(address@hidden
address@hidden,Ap5���Ӎ�'��rЦc��X�����[��i(�`�Gc�D� 
͸�,�3�~����n���z��xj��8Gq��}�d°ף�e��H�)��1B�=bA�D�������#]��
���>�N��c?��6����q$����Xh_��
+�k�n�Z/��)�WC�m�cY�U
+8hM���c�y�ؚ��"Tm}�^{H�D�M�˴�GΨ�(�ӿJJ��mA_�eĶ�X�3��5��$k�vR�ɗ�<X�S��͊���PӬ�'��,7z�ʜ�ʓH�`����I�l���!
 �Y�r��L�:^�����9PvfQz���р9߾,Rhpv&6�,{�T
Br�iC�=r��E'�1�sPKgb��0�h��s߹fQ�&&'λ�+��:
xb�Êձ,{�$�I�u��R���cM��C64�<Z0O�3�_�4���x��K�ݍ��o,����٬��`�[t�����Q���
+��t��  ��MZ�ӆ7��S
,����^L���M)��s���+I���77��ao�����d���G�P�����n��c��V�f����Hf���I�Y���;���
��b��=�8������� F%��ЭO����p�
+�n�m���[���Lԯ"�a��o�c�Cܭ�O<�C�,��áۭ_���
+��[��qP���i�
+�F)�<��2ڦ�<F{�SU����s.0�/-�}=�O!�w���B�0|���H`#{D�b���<M.�����i������h��6[~9zې��s�޲�"address@hidden
+��JH�v��o�F���b3S8�63�.�����u�-\������^�M�Ɖ
�*vjȓO�rX<address@hidden@�H2�l���
�ܡ&>i;�'��b7
bnK<�2�Je��g���
�u*�ih�~��u;$&�F�^��/��aA­�
~�
u�Y�Y��3���4o,s(      u
+D'��>�z�)C�������y���B��sM6F-�3�\E��R�MB�x���e��:]O2X�\ 
Ǵ货g�n��V��h6�q�s�i�x�]��x�1�Xd��   ,��SX����,�+��ĐŲ�����f��~����;c'
zy̧�)�!t��A!+ 
�(�S���E�6iЌI�����prNA`A�je��֧UL���LhM�<t=��M�ܹ���yj�v��-L�g!/��w�p
%mݑ':address@hidden&��>��:��*�����v\(��ӔF����4=��#j��g�-Hc~V��s�~�(������X�'�L۴��3��}A�#�bѱ?�d�`-�q���
        �����~�髣x���
$���S�D������a9��H��H�k(qa��i���#ᾞ'%[9-�E���!TZ<��T������ �yn_|�"�
address@hidden
+I��tR5�ۏݰu��%�R-}џ9f�)Z����5-        
?���g��7���lHJ�3�CZh?;�؞��CƇc��9Ӂ��P@    &+;�
������δ����:=������41����ʄ3H�#�)Ǭ���O��慶3]<Օ�z�9
R��r�9W(�ek:��&��l�Tό�yq�U�-������b�=����4�S<����N�e����M�$�^�s옕x8ǎ��m/g�4�tZ�յ����<��*w=U\e<1t�F)��DL'�<r�շ�<�b�6M���Itc�������$Ӻ(���hJF
+���<��CS��,�6���?%*���<��ׄ�j^\�3��1��T�����K�#)lz�������,t�Ϧ�t��qy�§�C�[o���-F^\7xmk
       
����5,6�')�$K��J����҄^y�xr=�:�Nu���17��dC�����x�H|�HO{\�ǫFx��4;�6/G8G��J΁�����N"`���e�p�B�E��ߟBzr��
  
F�vu&e�Ӿ�~)��1{�x������`"I�D{��"���\M��*���#�z�/$hI�Ąץ$�s�R�r*�_橌���,\��J��>O:�)l�
��1c<#�6�[��C� ��C�~չ9�Rʹv���7��x(ă�u��?��K{ra�$�d��
+/address@hidden|�����6��&�"i&MQ�ug��n9�w���Jg�ng���C�
i�-��qZ/�K��և��IPH�˿ii2o(�"-���f,��D]V1o�����z�؄(��b���\��*�+{��:F=��'K�T���Xa+pG=��)E*y���ΝE���)���r.��N�"�����x��:�o�ӉV�Z��o�S6!�v$��%z�.5�������.\�#�
�b�������c^8�CS�U��'k;�����B��J��y����&��Ȇ�xg��^� �Ok)uKRd��
��ηpb412P���I[M��[��,�j��&�F<���*g~�J���`��Hk�Y�
Z��*�<=��q�b^Cʙ�K%�*ȞG)G�^��8v�{0K�.4$��$id>�n1�[&��L�ƴM�vh�4�ګ�cw��a�G~�,����$M��Csx�M0#SO
       
xv��-�8�ܡ��=yp�zI�h�����.�.����ʍn�F��xaD-�����NM�<!��.�6k�����T^�~�x��׮��*���}A-����\ùK[�6��6%wYC�\����M�%�v�f�؏.����$Q

address@hidden<Gѭ�{�ŴJ,address@hidden|ܴ��=��g������;H�֗k�:�/-C0ɞbG�����^�]P���M���"��C�tDܶ�bZ,˲2Oɀ���"�/�y��܏U[����K����“S�!�xj�ǻ�i��bR�j
 "D�����,ے�l{p��a/��XoJ�M����      
ebO��H��OG��E�x����F����������gS��X��;7��+�'���s��]�d���C��� 
��c��t��Bf�z�-7�c�O���{a�=|��h́_Hz�u�|�����
bW+
+�ܥ�a��x���.4��mL�]�x�'b��1��4x��
+XA�{Nvvz
+bcZ��.�ES1�ɯ�sI�ǘHXHL�'����k���c��xr�f?PM9��������^I����6"I%�)*���!��o�������}�;Qw'l�T$�����D�7K�:F�6(;

�ݸo��.}�Kg5Ş�p]ωZ��[<�g��f�w�A*6v�]�\���+�>Q�u�ٝ"���)�����7����d9��I�<address@hidden/��j��6Q7Y#�&�7��P"g_Β�����-?՜
+�s������4-�I�ց��  �o#�yG��/G@|Qb�Z4���'
+��H�'�r�PS����&����ҡ�,5�nr�(����>iU�M��H�#�����I���%�'��l�No�ʚX˖L��
�;��Hp��W"[�;�=�еT���
.�!OV�H�N��>x�������͗��]!y,�W�����M^?�;����i�t���g���ٹ���ڭ��.�K����%#=o�)�A�gt)b�����3
�e��:�U��'&�W��v�z�l�.*��/M���f�S��i     
��(�s��^[ωo���Ekj��q��'9��ߡ�ʮ�!/w�IS�;address@hidden<� 
ޞI>�����d�7�B��S?�-��������
��k����&�i��dL����|�z�[,�K0�V`��;���~w�/��$�L�*e=�����t���W�`�;address@hidden>��Z��_j�L�[K���m���V�"���;X������{^,�)ʑ��ϴ;i���Հ�$���Ф0Nz��~ҷr�QO.3B]|�-�񘌭��ys.�%�̛����3����ìFĮj_
        L�`Z!��6񖃄:���{�k�'_���Ts�!3���� 
̀l}(��4�!���vN���m���k,���tZ~�M/�_jE�w���|���W��y��H|BD{ED��f��b��|�8u��n����b����~N�Y|�u"�&@���u��D�5�0���㿮4����SMz3H�wD>�\eXR$/��f�1�e���7��?5���o�~x���/��_�endstream
+endobj
+127 0 obj
+6997
+endobj
+130 0 obj
+<</Length 131 0 R/Filter /FlateDecode>>
+stream
+x��][���u���k�>ȋd`�b]X��BRdG(�m` ��pgh�e�٭������ߘs�r��,�{F�v 
�k�9ź��w������u����۫�Wﯙ}�Yo��~{��2}m*����o�]�?`ך_kVW5<�^}v|�~���W��8���ۻ�����j}���0�\�������m��g+|��-!£����>梒����������g�]7��k>t(|��g�PVB7�?���Я6v��bܴ�����צk>w���$8�,_z�awo�G��5-��t�w�4cf��մ�C�=mV�~���Gi`�\���ڪa҄
��f6�ar��;��I�J3a&�L���ݹ��b�  ��3>���W���7�t�n?a9�~xX���ޝ[�k:�����'*T�
��hS�9�v����M����_m;�K���1a�o�"[<��k_�U���t�z<���a���l,�0Q1��1�2b��3�뗕�,���{�ݶ��G8|�3ˍl
~��Um�}�:{n��`������s���V)�{0!�y�==+��S�<�Ɋ��F�Ϧ�        
g�ڭ#�q���U�s���M卨+���?u'=2��I�J;��u�����2���na�1ڃ��wf,��N���W�/�&����_?��-�6
��ю�p���n���$Tx�-�9`��/^J��
k�Jr#k�Wƀt��������"@��t�����Q�R��)��l���%�Q�D"�~#� 
�D|b���w8���0�4��y����A�m�R�Ѥ��D+ύ��L��>������2��L6�-���o��,��v�m+?`���������9��jI�F��r,�iI��%=x��T-����]���I�Dm6h�;;
+�D��t'��2V������?n:Gd<'address@hidden(^5�3����EYg��+�������{M}
�h�
address@hidden 
|��X${j�:}�Ui����r�������j.��G�DQ:address@hidden:��A�L���JIV�si��p�3��;<�O��1�%ɦw65I���R=��z8tݟϵuk��^F�|����;���C��zz��iA��8�C�XX�mx��S"�!��G����9!�
+��
`��M�2j���N�B���:�+#X8���X��/b�[�� 
�i³�~��A����?�d�J�ڒ�X�''�Y�:#��c���{-    
t���jS�E���x���밍�c?���8����3e\b���E|i�
��B|��Ę�Zx$��XJ�X��lR�D=k��ۨ�bQ�|�?�,address@hidden
�.\�GA�6d�VGoV���Ⱦō�U�#��$�M՘Zy��g*ݐ8�KN�_;��Ra�_<��`F-��sb���Tߗ�_�>��=���E_��|Y�:0z"@address@hidden/ւn��:G��C�
+�l����۠^�
?��A��#9x�
+s�E9z5{(�S�Z�)d,}X�?������mC&��n*V/ȘZ�V5��4G���J�^�)�!{�Iì6��3���̩$�$�-�3�j8�%�sp��
@� ��I�x�=�Ӓ�c ���ϣ�C�#8KE���AVD����b$W��JD��
%���5�ͩ�/��a!�I᳔��4&address@hidden&���0jU�Ô��;���!���O���)���K���B�0��~��
T[����Jr��]     �%{�J��]���=�h���k�fь�ki�c��|�r��L9���Τ�
4�"^)address@hidden;}��Y�ё� ����ג��?:Fo�!Ob��       9�<�H��R�X#�OQ5��
address@hidden;���
+�靣s�2o��;϶�)�8$�DZU���Ľ���r�4�3��
�3m��c�%s�>�J��og�S؅�-^{�h�-#'�9:������z�L>ۂ$0�I
+�������1�_G�acDz�IuVV���F/�3ժ�(����3�zb�3":�!����fp�
�T�[tj{�6:����y<�������-�!Y���Z���|��v֓L+w+D.z�F+�?Հ0���������G�����p�����YI'�{��ڒS��F'�aܯ��i�,��K���g�[B�lu�jA��?����.��{N��M<��v(�o

i�ӱ�+�I`=n�$�Y�?>v�d`��C��o�N��Q�u�K��xz�tX�wݱ�°l�ڇ�s�%62Ay٠P��0�0�hE����
����3|��B�C�p�
+�����C�^��XWk�v�a?��P�t���]Pؠ�䋭�
�Uc��6M�}X9f��,iK|��A���RK����f��Q��V�2��2HB�~<address@hidden"PO���#'�Jؽ������,�<�^ᨤ�t��d���3��'`0����
6\x�O�:�p��p7x�o"3Q���z,�?܇��P���U�
"��hKE�
Ì�U�C ϕl�k�Z,�0
Dj��Wg����_�/����T������JGpVFB�k�*
+z��i%;ʅحS,��Q�^�*�&A���~v2t���5��1
APb�J��P�RB����W�|�&������hX&����c Z!�K�0�"c̋"݀�   �W�t×j1�F��
�;gc`������
�O`�b}���J�Rdlx�����&z��t���a�B�B�%i�b왬��8<Y4�̋N���Ց�y^9���Ƽӎ�
T���빢���$���"7Y?�e��K�/address@hidden@:�n.��/���z�]�f�}W��s"�_9|*�c��3?IYl[�
 �i�f��Lx�
��b�i+���$�S!_��`.h4C<�-�����|W.M/�5��>�    �ט5R���uS���Š/�����5��x��K
+)�ª/�]Z�Z,A/q�c.���1=        xb�O����n�1؞?����R�0�� D�I��8D�E�������޽�\
+2Ћ������v�O�0ւ8ɟ��4�)vN��ő'u��~6��>��Vzb�d)�����~^"S�dN����$�$|Jq����|`1�2�u�idd�R��|address@hidden(�:&eA�ϓ���CCYM�0�$�h�9E�M������c������ǙY��g�����Ty��M�4�t{�m����o�c��>@��F�����
 
��Xkr3���o���,}�B�4�l+�Ž�Y�¼�-�f���cpŶ:address@hidden|w`j��t���c$EG����Q┘�Z06wA[Y�r�x��Z�V9��2�'���
r
C��W�6&�v�v{����)V��       �7��pz���ȥǣ
��%��b�Q����]��3,�dY;�s�
A�4p:��o.�
��V��5x��J1��rU��H?X����,�!����$R�ղq+��|��ېz�9~�~D�g�H�r8
�%8����&address@hidden>0Rߞݘb)�gw<�?]"M�r/��c�B�բ�*��
�~AYF��,���#"/QY�8VLl�`�<Z�X$�}�W�X�E,address@hidden/7��H����;�t� 
�dǦKML�H���̌�KI�����?�˂��p����u�{'
+m��Y<�X�rn�Ru;2
+���=1�f������>X�#lU�D���t�MC�������%�֓Q�r,*��K��I��8�Y�(�'֬�� 
/�S$[��W��cw�t+o1h���SliuY�� 
����+ԑz9�DIV>�8-C�{)��a�މ]#5)address@hidden@��zJ7�b���G���2$��z.B�i8R9W*O��VOJ�j��&I�~��g9Rd��s~��s>���\OJ�&;�QM�wl�1���a��3�_|l
%�/U��?~��$��fP�mjui�P�Q��u髺j/
+��R�/;����0��N』�cWt9�H��Jش��%��Γ�l��
!sV^"��ы��,sH�tf_y�A���'��g�����4�“�z��;�o�$a;Zx�Gߡ`��¸��j����O2(}�r~����n���3E31g��,�D�%ϓc���l1��r=��"en��
�����&��`sJ3��a3��0eyͷ���ۭ�w>�� ˘�>+d��h��9k���|gOc���`        
jsi�����E����ژ�^<�9z���
�K��ʖߔ�įN��n�>���4����'��LLu���yl)c�i�l'#�B�M� 
Y�K���������5������/۩�BSr���D�4��[}��R��[m�       ,�9
+a����^��J�����"&`��}d&�0#M$����܌����
9)�Mb���I5��7J���X��U�?��]ko�pFD� ����
+!d��t��V����;V
+F����,address@hidden)H`A�?K�Y 
^y�8��?�VS7������D��x�_�&F�sh���&I�u�in<���\��k="���d��WFv�)��M{���>F��SoP6�;Y��NIX��rTb;�x����sZyH���1����Z\6���ߩ͍o�s���X���҉,���0$Ri���
9�)hI7~R�(&OE�S�j 
���V�AODŌ������Y�1)�rU;9u)/;t�$|ѩgG�5��*Fm�x��r������_��Q���p"���U�sϳ���O>ϣҷ��ð�ؾ,UN��T��~X:��������
 ΏeH�oC�SRhơ��|���3���|&#j��y�    )��e�lm�Rxq���jt�HW]P|a�f��y��t�
%��&7�`��x�0�=��ݞ�!`+�2��)*�OJ�h+%k�N�<a[�t~�S�?#��8��~_��E!�q��_���H���[_���*I�[*����I^�ǣ!���g�Y��mB�%�����8..|�5`�H��$����r�e�d��_m�z��I��,u�(�o�w^恕&�����n��:y
����|�屛- d̢*
+����m%k1"�c֏b<6�%�I�y���d�U�|�v}Q���i�j�vM�A��+,>�}��3�8|�d�r���
+�Kb<IY��b<��B��.�x0�M_�m�"<)Л�wbYV������Hl4�3VىM)�Y|��ć�j�Z
��l5X�'���jh�y�{ҽ�j8�y��Z
�р1�I�iHR�?)���QpR�m�-3`�i_ŒU���9
�362&m\����>ti�;ɗjK-��1�`xj8?�ir�V�Y�\��fa73�w&36�s
+��M*�59��[,X��Nͅ����B��r���v� 
������g�w�|��E�-������)e�2��lpA]X�2�{i�
R��e���H�����+e�`MQʕ�0�����Yن�aE�f~WW���/��%[V�    ��}Q�Ͳ����� 
�{}���R��m�t>}ɨ���4��X��3*��ۙ+��zf̞V�Czf����<���U��0k(OB#<�M��j�ec���v8Rf���a�ئ�����U^6���l
 
>=��獠r9���y�Ƅ�DlN��~5��c�VM���/�aԁ*f�%�(��Dž�(��&ޟ|}�ô�?��U-Ҹu�$�af�{�\�ҙ��b+��x��Y�o-{X�������*�i�~�
+��IR�ݤ�W�sK���c0&��`l:�
֚�#�������Ξ亰�%܌���Ě�W�$B�H����a8�kA&VĨ|�>�=�+Έ�
,7t����W�jLbɣo�{�tGR���,'�lV��d�����_����+{�W���m��W~L��gZ`.���~YTcߢ����&츉�>�ݤՄ��l���X������{�S���>w��(��$��o!��8�`!�����])\_
+��r���h�Ln�w�ri��2�μu� 96���-�9��b�F* �:K<
+�q�    
�gn��/��.ϴ�ŞK˩�mJ�$��kZ&����O����3�G^�Q��$ɴA�8�i���OYx�O~�����Nu�&�
60<�w�و7�I*1,�XQ,Hb����՜���_�cXn
+t�2-=��T�EDѤ�=0��5��+ܹ���k����$�͸wͨ���
��3�E^�=�c��J"��DQkLMX��ۑ�]Z1����V�-aɘu���u;;E��
+�
+rHf��%ӳ��w�3^ȇ�ޘV�X4:K���׬j-({���/��Uפ�..�.�:НǍM�-�l|�����>tn8�6�b춁pi0��*U�+S����{M�#8%
a1�\hWD��oqE��8�M��     �N.�0�aJ��
+57eN����q��0��R��[Nn����_�q��Q`��qS�;{ȿ}{����k{N�����'�����������7W��������]}��kv����?_���ϛo�����o�H�4G����<��wlck��xh
 
1ŨO�j�C��<��ES���$z�G{����\,�r1j�p��eO���V�+<8.3���2�`�9A��u6�HT�-n$�K=���:.Iv�jo�6�2D�bƀ��'���
+d>�J�B�k�f�Z���8��-&{����;�=Qt�(~�M��{�P#W�rtcJQp�ٚ��\Y0�,`�%�
+��A�P��"$�p-�B���IS'�mh�Df֟�      
:�rE�Z�|�[mO�������3.sӶX���KP�.m\��Mr�l��
v�E�`�X��*�o�-��&qF�L
+o�jZ��DZ��������p-�T�"����p���p��vF�����k5C�f4�6
�_�q�B���N�ѷ�EcEFK'��`g��S{z�
+����
+�,�M�K�n�k�۞�>v�����y�����m �    
*i��W���u����%�D;��D;�m�k&aG>�v-)h���&3�W�UβLf��ʗ3�̋���-
�w�=�ɽN�HFê� �GC2[7j�N%T�dF���
|�d��+ߎ�'��kT�,��$�.��L��&�â���y�`V%�݃��?$��,<:���.m�3
+�([u�â�V<����3���Ԥ.�������>n
��<����x�����[���G/�$9)�򾜀�i�U�-�֎�Q
����ql��Y$���V�O~�YX�y�D"R��5q���̖�1�|�e֥e�w*0����"-'�Ʒ����#����{�u�t���M[E
]�2��9{���#*��v4y��.:�އ~�M�9���  ,�9ڛ�-t�&u����c�:�K�C�8�I��fSh        
�WIJ=Q�*(�h�Ry_������c��$������d�ݙ�w��4�5OF 
^T���G(/address@hidden"�)�D/hw�ei�J�>?
+��=��k��V��]<�vi�^��6���������o�l��p�7���U����{�
�7��_
+endstream
+endobj
+131 0 obj
+7790
+endobj
+134 0 obj
+<</Length 135 0 R/Filter /FlateDecode>>
+stream
+x��][�$�u��:�[�����%d��x'-(address@hidden'?<�a��g������O�}���5Ns-g/n�����3�ڦ���O>]>{��xM)���/VO>}��n7�����(M�����->b����g7�n��z�
+�_��W�m8�"������F떅��C��=>��᭵�y��aN���훝�5J(��‡���F1�_��b�h˙O_~zXo��w�ixZ�����Ǣ�J��x�2�H-��۝��圛��M�Z�HW~���π�BŇ=ym�`�<<Z���ˮ�!�L��qߊ6�#����2N}�z�?��0*�����/?{�UJ�9��[/������"������I
+Ѝ3XH=��5V���4���aG`�d�,��������9,¶��Z��/������Ȫ�=��%e��9�L
�-2�Wϟ<{���q��<���=y�
��W��+���׳O�����.儢HX״(j�9z�خ�iq���e��������ڜ�4-        
�i�'�k���3`ݶ���S/7ؙ���q3Wݱۯw��q���H��F����_�(e����
address@hidden<����V���Ta,�x��i������z6��,Ω�GsP�U��=��o�`�D��~�5h��Ѻ�
address@hidden|/�̒��w����4h       lj'~�{��[x]�׷�c���vq
��,i�7w�ֿ�����|��vڌxB5B��ӆ�Z��5��~�U+g
��l�a�
.�q�
�y��g�n�6�!����O��!�-��7��]x�rAr7�R0����F��V���"X4�BkL�6���v�?䄖��[�=�0�L*��>A�O��]��A��jq�5��N�������.<֭���݀)mMܛ�����(l����0���f�m_y|�Ÿt�����o�!獡m�S\��bEږ��!p����͋,���$3����2PP����c����DpG|address@hidden>�
Pm��y���zd�,�D���d����b�[��H�ua9.�*�r���CN����       
�䉺1!�`�X��Q�DHV# 
i��w�����~�l�\b�qMЌ$9<��(��J�,%O'ܙ�H��h���\��і[=�m�9��>Qr�O�"address@hidden'��lb��g��H`�#1��WXbߡ
+�����X�w6Jx��[#�VŴ�E��+(Ԥ���W!�t��0=��g�����pt��
address@hidden@I9&�L�jڮj��׌��J�e�*IbMK����� 
3-��%AT�0O�*.�wݱ:�������       ��4�⿅�!�����/ȧ`����%�i���}�B�|
+�KK��A�*suFL�p��̻i7] 
�i�Y�J֊+�������0��?~���[+�$��9�g\Ef��uj�O�{_��:/?��X��}��Ͼ��R1HA�ʗUj�g�Dx�nu��mD^�+��(address@hidden
 �8G>"��(
+��4n����H���j���8�ˤ 
C24G�o"��7]XثVj�/�oC��Gb��>%�/DA���g<address@hidden;;F�l0�%����$H�`#x�%lt
address@hidden
1�O���n�        
a#�W��Ɵ�zȗ��I�'��)o�衢z��3�-R�1���fbp���s�Q����-cEf��S3���D� 
0��
4h=X��c��C
��4;�6�L�&address@hidden        `۫�ڀi��s���L;�0���ПbI�Fo�d���mK�Ǯi��Aޔ�co
+̸҄��j!�.(aI=νY-:(
+\X{fq;0>7���ka*�p��H7#�e�eIf�ׯ��a�$#��������mZ�ct����C  h���t�7]����
+cW]�����5O<�eԁ:�&jy0d�����[
address@hidden,�U���#j�t�7��|R94-��?t�S�`���|Ȕ��c8��>ׯ���_!%�j��+�j���3��]dP����9>��[~�9cː�
+R�)��Pe�+�N$�G<address@hidden|����6�`<�BLQ|]��>�oI���7)�K��Ł�w�v�����E�������r��S�x
7��d茹nC�R��<�Z��0�M�r��c
+�S҇j�����"@�2�d1����i�y�cX鶱       
�H'*wel�a�p�t|����ٮ����$����C0��>>`J3�W�M'ćf
address@hidden"C�֍C�y�,"�%���A��
+LT�fa!LʝM�N�%�۷��<��LLD�ELZ12�;
)�]%1�Ԁ
+��$J]�)�2ULS�*�����xr�L]���Cq+w�MU��7ȣ��E��?�ks�DKi�        
�2�ݡ�ބ�c��Ʉe��+��b����̇<address@hidden�$���>�Y/c�̱!�       
jt���x��~�=�t�U�����)��R�b�1R�4�x���/"�����g�ڶ�s-xѨ�|R����������Wo��q��U�|address@hidden,��U�m�ޘwh.wi8�(,�������̫��>,0��1K����A2&n-7'�
  
}5���d<��01��3��kɑuv����Zrd�py�z2n��h����8l�E���%Ւ!Ӏ0��Em��w/address@hidden"%�3�CaI�K�
    
address@hidden>xGI����q}�J��}�\D�1,��`���P�O(���{�闇��>ۙ���Yo6��-�����Ź+Ӄ�H�����k�Շ~H�����
 _���ޘs���z�?��כ�>$4�a�ˢ�D��GX/`�a�H��|�V�&���eV����#�Fy�'`T����5s�h 
�?�h ��R�[P/}�i
����(0dS`�����Cl�u:&k�ujL�+��#���JX9��f6��%�;0,���߭NK��CI�y�ju�9�3ѹ�:u�����5����s�6�Q.��K9,)G��y�{P��a�Zŋ�e���BD�-2�Y~|�Z><�
      R2�T���#��K����rT�Q��M�(���mSeU�
�´���Y2 1���'\����Fee=�9k�0(S�k�e��UD֙ 
address@hidden<.`��YA������`_�l*8^�?�:���RFa�0��^,й�¼!��ӿ�I͠���rpW�쒴�}̤2��0_k-/�#ذ
 c�j��"address@hidden
+�2�X��U�İ")9�o��v�S��d��&�I����Gi��>+��[��H)m�e���9�x���S�`���M��j6���J^4a��)��{�ź3P`3
+o���I^�����6-�8TF�r\*��+�8,address@hidden 
le2�İM}�Yx�Ze�BpC)q�-42�����.p�(D^�24��H�ʑ�!K'�_K�t��:���I���dȚfGT���</�y՗b�����x��&�+��Ī����K�����|�i�<�Ӌ�����
"�d���|�Gd���}�����
.�1�P��b�}ax���?�N��f[ȫ;��r��՚Cַ1��O�ݿO�k����}���g�x����U~����o�jf�&ն���j�V�;�yl��p��hvV�U37���!zV��7]ȃ��M��7ѫ�lI5
      ��4�NO[m.Z��Ҫ��|�Q�
+��k���ʨ�/&�� +����mE%բsq�'�N�ǎLOI���^��d)�RI��e����:X�>�O��� 
�¶����d�'�g�
+�h�IϨ�"B
D����]�lfŚop%��������P����-`�uB�Z�F��x㤎J��S�1)8Y��>�#N�A7?.bKd�jnH�/s�Lks�m��"O8�uS���M��lz��|m���5���P���9q���.l5�7c��u!5qE�m��
 
y�!0���K����{8��A��w����Q1C�̀Њ6+k��)��`X�I�v!2f���k�_ֿ9�Uv����hLۗuч��"�#�.x8�_�����W�����&��e����#'�þq�����!v���p߇�U,�YX�H8�oC,address@hidden<���!
+�8���A���P
D3RUq;Ċ�pT��h��!�6��SC����Jͨ��H���T���D&�B���n��siS��ƾǎb�Vͷ\�d���A��"K��J<�ں�|$�\�������qq�>(�\-}A!��Օ�q�j�ShW#�bd!��fA�D5��)��¼�zk+Y�����^�����Y��|C*
B�a�O�Lv�SX��"E�`�"F�aGS�zU���U����   �M���z-��S�M��a1�Ί*E*�����ZI
+�ѩ'��F$S��S�N�`"��l��;Fe��8�W������ܔ��c�DYK+�����r�m���t��v��8��^Z\�!b���
�=�
+d���b?��oM�dH}����0g4��,�'��9z��{LͰ����ObAF��OV+�d�����b�m���������1+E{�rM{��E���R�hR���X�.6'j�jS�i�&�Clu����K}R-�]�y�fҩY��eH�F���0_K����ኾ_�����ŏ��c����ڽ��J���ت2�mx��?���r�15��;L���S�0�8�ISꂥ��X�
  [�i�����/7gs   �7k]��߁����cT<JP���>E�{����e��5��0�jlL�     
L8xZ�*F��8�����d�Ǣ���\~��f�;P��H�+��}`��So��r����j��D�_�M]O�����U�^2|�p�//�Mm)�M*e�����G�|�s���'�)�/.���%-<ԆDy]��#R���|���T������a��:��Ejr������
�~���3�j�d����_s�[j���GU�b�,address@hidden&\�G�r}�����ʃJOp�
�✍*S�8�2]e�a�ʌ�"ٝ����&K����d����m�-��*Ng�:/�Z�y-u�M`�;�6�ﱜ�T�=�R������z��N򹍲�<�������z��e5�0{�I=\��P���t��Ÿ�&��������dz�
 ��M�j,���"�fӭ|U�O3%�w�U���XbŠӆ�GV+P���>�
,#�Řp]�c����h�`��|��6�t� )��}���13,B,�> ��u��e�:J*1gi�a^US���������
���W�ꞧa��8�A�cF�0Z�o
+�
+��ٻ+�՘W�LA��H��7z����T6l:_����T
~swnHOL�n(3(����H��`i)��Wk������b6��)�E��%�a��X$�K>���{ֽ��νY��*���cP��!��\���J��B/���XCN�����ƠdC��y�����;8E%W�V<J�Y�e�3�Iv�

]�S�����v����ȷ��UW5�Xu������������)�j�?�xR*8m�x�#\��']�/����F�X��"~<p����ڀq�B~�Z�|��Z����tW-F��X�D$��✈`�G:W(�u���_9��O�
    �91�c<][9B}Q
+yv�i�f�y�g��f����G���i%R�Sq�_k���2���0�����/�,�J�k>zZ�7��1��N�)��6o�T6�*M��T}|���m&address@hidden<EHg�(���gUg��ɘ�WFȉ���D��?O��7/����X&)|<�rl������ŨGm"�`ÉT�?�{p���9s�h�I�c��樾Q�J�s=�Ң��3e�!l�?�&2����'?��I��^��(��A�����#�%!�VW��^VW
      
v�Ja�H�#*��V'l�:���va�����M�p"niŠ‡I�`�'���k��?Lא��'��Mm���-C�L��u��G�k�c<-�Y��/�c�Z��~��N*֙����^Q�Ny�W�)�+��}��µ$���n�I���0J15�J���谫K�
 F��A�r�a0e������ǥ���k�<�kd<�#�/���m*s, �ƶ�u
㽎c]OӶ�����!��������0��°�u]&��G��xP
>�L#^�uaEa��]�O�~+��z��)�:^A�ެ�U<��_���i[ҿ%�Kx�ڪ+�~��d1�}��F���Kk��)eӡXS�B٪L�܄�W0�݁�2�ĻgdW�i�t�pTئ��Ձ�ɇƃ��������C3����?xڳ
�_�ku�/Ѻ4R��?������Q}f<I�{^�����e�C5�L�ԡ:��)͙�1y�*4��b�z}�jtESV�z���E:���!/�������%�i�n���$<ʤ,m���pUv���n���7Ui�����;�$�O�%�-e�J�C,��
     �էx���t9=��r<"c8>�>$����bC� 
��_:�L��[��\��q��=�(�a/;�����x�OD�8��dj��)^�֎:f�#���u�
��X���Y%�f�3'�ϱ�Sd'���/0�)�U)w���k�37�L�dQ��ס��j���  
+�m�Z�Ѹɩ_(����慐����5XT��v��å�P��/��}������TcSQ�'���i���kx9'�&�K�3OF=�"��eu�����Ac٩K.Z`8Ѩtpl/ԩ��8�S�D\����})mVu�"����hoh+A���Ud0nnP�,�ʀ�d�9+�5Y�r�ϯڅs:v����I6EF��
    l�հ`(��egkuqѨ=�`"�I1��
address@hidden(����p����aXS&�����SJdW㴈&RI��-
���qY*��{Xq���=���Ȕ��s�ci�+��=T�4�5�.o��怭��6�,Y
�F�kI���t5�&p0��e���um"}�#ՒaE�K�x^Tv�m�ίM7��>��z�p7v�P�Q�˪���ž)]�]�S��s��v����
       ��h��+��ق8���uX�kSkm]b�]�K
�a�J&3X�9���/Hw[����~Y]*z\$\�M�咞G}�蜞�x�`�&��W��c$�7�m���A|�_&�%��L��q����P���6�J
 ��M�+�x���{�_�Z�C�2A�b&?j�q����v�V��M��Dtc��
Y�o:!�H�0,�**��;;�p¥{��7;��~ily��I�s�����$�G��¥�I)�ʔ{X�)��������/�l�Qt�-6�x
+<m].���z�M$��u��$�6;m����g�H�=o�3���ʜM��$=
+������57V�9�xJ�L.�}����7�����*��*-��C 
��+��0���cXk���av7u����*j<G�V���;���ޑw��4� 
�Y8�L�}|&]9���2l�O���_���ltv�Y�����[�����H6�*��y���k�t�ֳ\~�S�q�yM�J4��/�ײ�k��x�m\�fw��%��bM~M<��Bb�}�{3��)�DF��X��5��S�{�����
t�����h��2�D�Ծ��jX
+�A��[K�˞L�����ܪ�ڥs�!˯�xt��x��mW���?��䜌�$���kE�/���`]�h͹�զ 
�WsO=�ob��g������.��_��o9�B:�ԇ*�!�r�\�/»�nmR�~G'�g$�ѻ6j 
3�"d���B�ä�8�/�pp��]��b���13���*�e����U��`���
P�I�����&�M�9,�f�!fWuEڶ�
�UN�������^���c�KKk�m������k.�J��+�z����r��djb�  w�
e�AN�eL�`�iV�����t|�:���c���t�M��Q,����.�[d�.����ɞ���l=��*�D�j��I�
+Po�6��M+�\������Q�  
Q�ib�(YyI��/����|r�)���_kb�ހ��G����f0<b�tkut���K'�5        
��H4mq��e��i�|���<����jB/6�8���W�K=9!�J��prq���NJ�j�a�&��#��g���镦�i�Z�%b���XK���_u���endstream
+endobj
+135 0 obj
+8572
+endobj
+156 0 obj
+<</Length 157 0 R/Filter /FlateDecode>>
+stream
+x��]ێǑ�3��b`+�Yk��%�a�Ѕ�XpMOq������I�������q#��Y�}J\0�bvUfdĉ�L�x�6�����?��g?>����g��������^|��M�t�ky���3�vc͍am���ͳO������?c���������}��Fu�G���j�j�����hmx��E�����������{h#���a\܇������~�?n|.8L���-�!S�Ԓ��6�u؍�W�m���=�C?�w�l�dq6�V���!�*>2�6B��
 
����p�&�As�³������׭�����o�ٶp���Kc]g����e�\��ۛE>�+?n�ϬaJGy��~���1�k&������tF�2`�i,
 
�k�lQ[`$�}�d�V����]m��ᚑ}��W4�K��5�����O��m˯��l��.&���e�t]�������t'address@hidden
���O���n��vR}\��/address@hidden
��O_#+�п�E��nD����{Zٵ�q$��M��J���nZ��uKenvs�G�p�K�Y�������t�%W\W�b����$���9®a̴�V����Kn7��BL��C�a����佮Э��:�x��x��V5��`PqHE|}��
+qQz��j�>MHz�}HW�K�]V���nf�Ȭ1^C��+6��� address@hidden&�TQ
�{
:ELsX�a��P��rbs��U���NӉ�V^B�S�L���O�?�A]�|������4E��Xs��~��hx{;
+_���k�����8����n�A��[)R���Baj�B��BM�Z|�U����d?g�2�i�+���!|b 
*�ѷ��t�}Fҗv�}p����c�        
Q�]�%���&��g���x�U)��\����q\m�C4*[Fao�:��'YAdx|tcE#L������h� �%�?.c�    
������b�E���=�U����v�`ū��!�f)6���n�_��a["��۹���#�nW$��Lt�.���:��C�W2ۘ��������\�3�3�|`��MM���a�8,address@hidden
�����q��z)����!���
+�ύiEҵj"D!� 
�?�&��E��Z��֫��V�)��맼�q?���%����r�N�������j�L�;��?xLH`E`�        
2����1������[���(���w)d��B     
��6<ˎ�v�a�ň~nww���������w�d)m$��{��a���9�v���ƀ������ưJ�q��U��X������贚�e`m�`
B���y�6s�V���
+��G���z��d��8�B�յ��?-\�!z
+�j�D�5aޖ�8�ii���X{2�"��XK%0ƒ���y%��4��,���"�b���� 
aHk�qޱ_�� �^�H���ø
+L�R��+o���l)�د�}�a�ᝉ�K�uj�4]<�_��E8��n��'n���;lL�M����s��/N��b�����Ӊ�s˘�b�0RN���{�!"d,a�!h��,��C����B��f�6�W`P��x��&U���:�q�A1W%Y�C���)%�x����|�
����.#хY25�|�I�����t����E�7�w`�L]%�k���O�>�{Z���ˎjS:address@hidden
+       �gO;����vT|;�}����l����uG����9�Q�+˪T�ZD��\Sm̲c��S��/5&Z>       
 
�x�髂d��,�!,���5R�1�����C����Wd3O"��ՅN?:Yh=�V�,��?���R���R(q'��CM�gFS&�&D�L;�
 _SMs        �R�_(�P��S�A�>�0�T�>�ШJ�k{�ۮP�P+s��-        
T�)�����_���d��������^��W�B�����)��嚪V�!����pp�.�V^�Qz$�P���y|�u�0*�bҞ�)

;address@hidden)�_#W�����׀!%���K�D���9�����1[Yŏ����i��0ZSX�Y�G?}&ˇ~�B(�:e'�XH�ѡS(\�Z��/'�D���e�fiH�>)&"�23�c��7߸Ԧ��j�0�+�8��88�
       �m2qr�n������ r<Ez#�3�x�!��P`�w%����20/_�|�-SX�������
�(��:�!4.7�>}��ū/o�qx�������_�~������_={�ʿ��}U�E쾂��ѭuq���'���*!5��1~�E�+�oj�wFMfvEP����¨�2�bK��q-��RE.c>Ar[�w��xZvd��R
�"ݫֺ=nnY
U�L���J�ݕqݻ��Y�����
��$�"��xo��)�IR�D��p���f�
�~�0}�1�98���:H�"���~n�h�(\\�wa��6?ʕ)I��7�/�S脞�W������/�P�'�����������<b��u�
�g�Oc�̉�T�5R�.jk0IL�)�}���i
�-��q$ԭ��֫?�����~�(&9A�~X�eJ�oS��"֒�����t���ߎ���ؕ�n��Q�0E�lIw*y��Gc���4�яl�4r1l��{�
A��hˇak~�$���<address@hidden>�����],�խ�x�����ƗM]��Tߣ     �%y#���
+m��綻��+�,�$����U�BK����Y�*ɊۆI�.ŀ�MR���f�$���oz]c
��/b�Z�"address@hidden@��q�d��"��.�����F��V6
+'��
+���<�F�+~ ��R�$e*�� �S�!�  
�Q����*�yF�G�C��m$��:�eπCLC�"�����?��bK���<V�PBx˝{�[򤴿�=�:���9L�i����6�\���æz�5�V���������]a��ҺI����w���ː��m��]N
      ��I�s%�
+�
address@hidden;,��� 
��~��k2�T~������qk�ʎ�>�l�����pg�؀v��j��;l}���H�b����3Fv��a��[�<SPh([T
+�ud-�ٶ+;��a�a���r(�2�������WA
@��e�s����q��C,*��0��r���Nd����9��
address@hidden|��P��`),y��/(@�v�'2�IT�{�(P������h�9�̧�l-�5"��~��_tp��!4�$�/��&�"�入�U�+>address@hidden;K��3�g���?�
��;���5V&�]B]��xj`'address@hidden 
~�?��ZbKI�†w�~��V�J�n���%A`�AY��+�GZ���M���u�����c��ɲ6��z}�TWPS 
��K�Gg�T��������<��JL".��a_d�v)     �t�H�*����k�#J�      � 
&��2����n�"O�ԑ'$r�u&��L��'���P#�.̙0^����"R�\K�,address@hidden>b�Ĕ�.瑷:D���YI*T��*�t<kΙUK����y��)��bl&2�i-�7�9��(#B6�ڂ��9�[�U-�;��̡�G@'����A�ڔh3�Ī�mo��+B�-���A���k�et��MRxfy����8S#��k'��'�X�a:�˭
 �n\+b�X�x�ð���I�*�I�d%u�e:�0����a���A#;U�Sg��qm̽
��%������[+���P�@|CH�}J%:I�2������!�
�&u_���DbG����h�F���71��*N�4�+l_�׻aも�}�E� 
S�DC�<e#��YQv'�D�O�֢l����Mj6��K29
��
uh$J�S�}�~JI<p�l�"g��'�v)����g �hW� 
����/_|���0W�#|���C8_�����D׈C��r}�C��8��i��#�<)~��*T�a��m�X.�Eӵ)�6l�S�
+�`~����*�;�zge�
,address@hidden/������6[�YK�Xs`Qm���9Z��m�l�R���#����)0��u;��&�tJ�H�NQ�LT4�K�,ϿD�2�I�-�q
+�݁:o�)��(��ӹwP����mj,+,�n�Ų1m��UOb�l�1E�jݿ���"K���U`��    
address@hidden)q��Em���΅�.��Al���2�~V���gv�T��9x6$0�N�ج��M��q�c5���6� 
9e�Ù>address@hidden&�Eu��x�2v����o�xy2?��L{Bt;���u���G��I~�U��e_�Qݬ�"address@hidden'S��1���
+tG�z�
+���o�Q�e�R� k�ž�>4��+�����d�4Ģb   ��ӫ;J������P����P=���� 
lR�?�4�j]O�E���hP3G���A"address@hidden;�)8��!p�ܓ��}�᮳�_�H�m��!+�I.`
address@hidden|:[&xh��7�6�9sߌ�/x�M��b�T�O��1;_,�Yi��;_�V�;=������
�eT�DI�MP�T��T���PRw����~�z�C��Q'#X�¡%<�-T�\�n5�ߦ��jk�d��#�1��������j����Z<fNU�~�;���3��}RA�s
 
�N��ҩ~��y,�ݾ�M#6%k�Gd_�?�J�8���^%֥$��)dĉ�NX>h*���c�xuT:��B[��q씒�&컌e�'ro�
 N+��LǦv�7�VS؟NU�?
����1:
+���{��'9<7?~hO��[l+��ŖE�R�16��:U���鎛�;�};? 
���ԡ�.Z[�)N<}�־�r"�pNgg��ʵ�D�2���$m�{��uM�f&�Y�Z�Ƨ5�],�Oa��hg��F�CM�l��mj#�#��Eo�|M\A����QE�g�/+���NY�dP1ۍ)p:��|������ݝ���~��Y���j�Ø�Кʃ�13�ԣ�u����P[.�]�c8�f��C�
+�]�ܚ�gLj��QŶs,1��ǻP0t���   ��byoR]-���E���a�0��W!#�"H�S�L�
+g胝g�rk
+[U˲��e���Q�3�Nd�ZL��s�p��#�#��P�V)����d�?-�*+RI�ߛ*�/����q��C�:?U�
+�/address@hidden>address@hidden
+Rn��I��� 
0;8���%�g�b�z`�)Xݍ1�R�]�dR����=�l�8u���x�|��n��4�&̗ibt�`��.�;�±�ڥ\R�S��۠3�SJ֬�̤�Z��8�
���qL�`�g���v�e��6�N��Lh�Y��n8r�ME��LY���:ֺ�rkX%�b�%a���>C˼�}
XқB"A���g����p���KdʙP�ž��G~C
(��@<6i县�GʳCj�c�������=>�~k筘&���U=L|���c�R5��h��Y����*kw�?%k��j��戒&address@hidden(h=U��3iȲ6��Tb��v0�{���eV��{N
       ?�t�%g?*U� O|�~;,wN�lv�<��$x6Ys!)C        
�G�c�|�S�,/.���]£v���r��O)�M[�Nh��vBbʼn�/f٭}���n��{���c>&� 
}TvCܰV������եsb���é
+&���8�G��a��?P5*7~���C�S�8����c(5M�X�|
+�b��{NUPr�|ok/BUV����U��M��ә�1�(address@hidden/�{��Y���CǛ�R��v^e��;�c�L����6]���c�*�D�u�����#�
+����"�<,G%�J%y��ىh`����cQ+����Ҟ�������(v����zB����b4 
address@hidden,�c��{�8���Y)��L��#�����۔&J��R;�n�{2u��0z�͘9$+{O�?�0o�˺᳠�h��.1-ߪ�7b��l��H'�D&
        ��T�"/ũ���l8�]_�fy
+��mR�Fn
���p�j�5�U��:����-�L�쌠Ig]�N]�s�`����a��݂X��]t2!+e�����IQ�����jҥ_���8�
 �X���[Y�zm�������%�н�Լ�'address@hidden&�D�[m����l�vu���p�/����Q�Z੝�+    
 �����tf����9L��f��7t(address@hidden;address@hidden
uޝ�1æ�'��      ڻ�s��_��Q��T��>�N��
+����}�)������s��N��W���Q�&address@hidden"��5����No~��0{w�5��a8i�:�L�ϲSu�.���:�<�
�M��?r��MO|�\t�     �%K*�e���
ة����:ҊO<�R����o�����HF�i�TQ M��   A�r�    1#ͲxFfN��
+ 
�<���!��OZ�����32��!�bz������l����n��#z2S&��)޿�[��ڟ�/��V6��W!vk/%DO99K�>�)LA��b%���-�6+v�Y�]e���
  ��축7
+Vn�ͳ�K��q���$Ĥ�1�aĘO�j�)Ψ���z�/�(�/K�ܼ��! 3C��0Iݐx        �?��a���Q+V�   
i�T���b���C�ނ�Q�y��9�M��.�ǻ!;��
}�k�̭Vg��`D��Gx�]h�U<�Cfso�fcS[���y��y��nJ�Kd����j��
K�\�+Cȑ�+6�E��Q�s�ߪ^���v���s�
+ 
�n�Mj�k�d��W[���F�.�����í��������/;C�޴��.~]�ɿ2��lvG�#�q��7��0�������!ֻ����~����in�L�������Y�9��i��~endstream
+endobj
+157 0 obj
+7392
+endobj
+160 0 obj
+<</Length 161 0 R/Filter /FlateDecode>>
+stream
+x��[�r�H�}�W���$����M�{lw�6�ܻ���em�R͇�3�7����l���>l�� 
P�̓'Of�>��;��?��}����3�?��-�gO�=�d���LH�Ϯ>>
+�3��
˳\�]m�`~���g��F��W�G?\4�rs誦���0��fVs-�0�����L�����/�b�r��G:SV��v��\��?�<+r7��_�o�Za�[��P�n_t�W%�\�%~l����BY|X�)�IS���6�\�8�|$Du������1
+���'23��8o�a�ZdRыݾi�kw��m�r����i�~g+�|�
+��ٹvۏ��Bp��4���L�".dٴ�۔{p��]u��^���0�����Uoь��o��d��v���5qؕ���.`&�ޞK-2.�ٜ��(pSU�=�3�G�|q�<%�m�Ș,��]�2�
+^𱗅"��۹e��eo#�IV0�G����r�XV�c(����l.�i���q/���9���јM���     6�N�f6g 
p��o�>��,.��)7ajر%{{�4�7rZE�W�]�U�u�K�Y��5��-]וm?����1���jUL�<e㚲�R���q�"'�����Li'address@hidden:�uw�����O��D&��C4q2A��
������e{��Ȓ
+���'�5:LYC�_W�>�9ZQ�7�C�H��K�{l�"�����n�r[�ø)�Z7�R;JrM&���5��`��\��_ܗm��Gs_��[w�=�1"�ti��<�
        
VM���S�"�se�\g��Fyn.|<�q��U�v��K���$�n:�A\Xx�'�0���#Y(I�?��G�&p��n�:YJ��#�M9���\��z�l��F&���'{��Wg��(<N�:#��/J���FF��2CS�BE�_��*L��\=CHEi����/\�-?��Z���_B�L�Y��YsX������9������)��h��
 �x��pLh����Px~��y��WkWm @JSV,5ڥ�1�$vd<���d� 
�T���^7W��И!^B�E��%,@XK�Y�]�w?��m?��V�-!D�UKp���Jʀ/O����V��fh���îAq��l�����"'"*&�餘"��tv5B
�&address@hidden(�̗�|qۅـg��)$�)��^W
H2�s�X�0����.�)��������1p+|���3y?������B�๏Op�/Ρ�XN��•��)address@hidden>�[�?^�%��]]�b��$��5���!O͎�V
+
+"�mB햛q7tY~���2��|[##hN�<address@hidden/�\��j���/�)L�����Km�
��">4)����*P�ώb����'�n4ʻ6XY�IH/�[�~����^��c+  FĒm$�e�wm��9���9��,�'�`�)
�t
.��A1�~��
+Y�     zHE��䡥j�|�u�/1�� 
�u~��i�Յwc��V�V}݆,���n�u|��"�*��Uw�����u]}>LHZLu�P���g�v��Ӥ�q��!���~«�^5���������b�Cu|�C�s&���Z���r����"�rI�n7�u`3j&��a�(���]6]�`�Q�:�!gv1��,e�+ĈB��y`F
+�\���ε7��ޡ��
R���O��8
+����*�nz>�
�����S���address@hidden       W<����G˂�
+�Q�:T 
`n��~A�bHRc碄�^u(�����Ħ��>m]bP{��w�.e����^����eh~�Ը����-�.j��0�_^>C|�|�/�!q���tS�HC,�PUw��T����wT`��
+��™�0g����bH�����(�ʳ
���g.�x�4�a�Z��͏�ㅄH����PiՀ�"�-��Wg�!ƻ�B;5[..�suꔺgA���|;ߤN]�����
+���[S���0p2Q}�EbA��W5~���d��3$��R��i0i�$?����9�]["q�Ei�X�����b��.^�0i�����C:,
�}�Zׅ�[�^p�0��W�_š����:      
~_�����(R�}��8�E�I�Ǫ�Hq�2�M�lq��j|P�"�E�v5z�g.�y����9Y+�!�����T�BS���m;Ď�'R��(�<'���:�T�¾�->W�*%�ٖ��{+)��i�C���"br��(t؜
r�w�>�0� 
1��Y_�+�����v�b]h��<���B�bR,�L��#1*�P��z��������c�U��͚���t�3Y�(H�"Ř���_�����D�����l�vEDRP)�p�)��1Y��#���ܖ-2����8U�P�C�����릆0
+F#J���tP 2�h+7�M
�������ʉ"���C�2|�l�?5�����m�`��R��C����c���ER�9�h2!��a�S!�[�ȡg��êܗz#�E���I�*��(�n:U�����
2��ՄL�j7��5&]h�J5(���Tc��S  �
+�8��?6�����s������T5��T9����//^^,��Rb��'9BKb�z��
E�X���C�����[R:�Z)�m����О�F�c&��]X�VąM4��^��$�b�ss�v.R���l[�o"�1K�cO�`���War�
i��:��'address@hidden,L~��=���ѹ!�����0a^        
DS���ק��-0�*�$5������S�b᫁��-9>;da�y.����P���}Q��M�8�l� 
��>��S�=��~W߂�n��-:�ȩ
+��=8\[�G&J����bR��^돚��he7��6VF�;�T��FI"S���p��
+,3���"��H(���M�O�2
�v�����_��H��P���AA^V'�7��q�       �       id����������(�A�( 
\�3U�]Lb��݋x4��1S1/T��Ÿ�3�]����t;&��oJ�n��o��\R;�݄�� 
+Xw:�r�M��ɋ3�79�WdR������<i�xΤk$�
+�o>�nY�-��*�%լn��� �a�
6R���^�W���N��TRē�]�,+J��*'+��q�Q��*    
�i�r2��j.V�B�J18�0w��}(address@hidden      ӣ�      
address@hidden,�V�����Մ��nV�}&c_i���Qx)F.�bD�J
�=IP�
+LS�����4��s�Q#��+H����
��l�E�m#���R��W�c3�R��Sa8��'KI1��T��L�.���wg�DO�k.�?�����A�d(�L�gZ����g���P��$��M��ǭ�Y
����V���)bG������R����Ɉ?����˸�����2��R�{�p*_�t��?����6^װt^��B��;^!
�̟�O�X����1����GM
+��IQn����6��o���N�xJK�V�Pvx]
+�MfLʄ}/��n���B�>�>˷랯n�x�IzҤ�'�&�J�-Ԝ�E*6�#z�����wIY�i��Oi�����c��9���WΕ�"�%
        [.%GQ�y�dC��b1�V���&�P�N�"�E
�&ݥ�J��r�l"B_��e��̯S�%)G���I��v���$(W\6\�������P|p�)�߮
)H��҆X�����,����:ڤ��,?!�A�Pe٭�/sM���u[b���<��M�F,��wx��jy?@&/�����m�V*lK���U<�e�&�;����!��\�]�
+��G8�=t������r��d"!� �:�R�!���W�a��^={�q"����뉬<���      ���E� 
"v��,���O�ǯ��͎k��N Y�q�11    F����;���E����~�է9�j�OD��)W��A
ˤ�ܾ��C�O�����D��f���M����d����0V����m>p�+�.(Z���o�Q��<v�
ojMT�`-��K��R��tu״ݺ���C*%[H9�eݺ��.��۷�������|��%kn��
+������'��K�i�Փpͅ6
������%�3��(������@|��D?O�څ��߾�G����6�����#q�}c,ޢ��<K�{��e��W
+�\bt��������)��B���Ϫ�S>�/address@hidden|�r�ʅ��$]
+=�.�����^>$���j?��\NA���������r����Y�q���S[��=>� ��3"��b�o*׈���l� &)
�[>�V��{���0�$�G�NFrl���Od�Ss���u    address@hidden 
.^���&���D�t3��,���}2��_�������0ة�
+c������1�a�b���.�%�S�ä>��?_��������e�endstream
+endobj
+161 0 obj
+4651
+endobj
+166 0 obj
+<</Length 167 0 R/Filter /FlateDecode>>
+stream
+x��[�r�F�}�W�m�X6����� ��n6%.I{bf� address@hidden'Of�~;�#v��o�z�۳ߎX�
�䫣���N�Yr�F��Z�~x�>`G 
?JX��p���3�?������H%�}�v���Y�?�#�$�?|�����><J����������?�h�(I��QVץ�(�q���*O�����������I�J�l��?��,+��A�w��_�𽦅u��n�����[���n��u$|K��3v������G`���{U�]��M����_m��2��F\I4ƽ[�
      ��
       
&ȶ�jM�(��â�����l�s��n������,�ә�&bp�3��f{�7���8]�:K(M��芬͗�n��I�M�(���1�c�"?]�#�Q�
 ����ab���W���t
+<���dz��rt����G�lQt�A��iB���gŹC;L�i�v�~�3�La�3XJ�,�o�'��e[��-{{)����I�!p��m�����*�c:�_b��>��g���h���j3|�7p2i�͢�
w��^TU       `���E�G�oۏ~�d�7 c���Pݶ�dwU�4���>4���UJ�P��g��p�uE�k��A� 
=؛E����3(��6�}j��(���Y<:O�� 
0�5��p�����q�%���������o�&��-�MKc���&��#�7ß"d-FHVQ�*|o�٬OON��]uTfy5��G>����hl��Щ��1��
     address@hidden< 36��C/ȼ�����eޓgy�������
+��%��y�Zg�}>��U1˳�3��� f�JZ.' *��!�!� .)A���Ա+,�1b�뀪4�1�08{u�xU� 
address@hidden&�`�J��d&�t�єF&%j9��b�)����!��z�h�4R�m�/;�O���Q��
�o�n�P�1�O�]YT]QG>�3Fs^U�;�"���Ofy�^���=-"�p4��O�<�q�]|Zn=�Œ�R��D�X� 
��H�\�n��X��6|address@hidden)������;`K'��ƃM
������}q�&0<��=�E��'����Ȭ�1�4����v�
address@hidden,�y�:e�)(���`rNJ�(address@hidden/ۢ=��Fґ�����)^�y����W��{"PA�4H2&�>��m���X��(k����5s���
��*C�,address@hidden'�b!@�6~,�Ͷ��ӊ��8~�RJ��M�$T�ڟK)�0�o��
+�w�t^B"QL�����4����OO��/address@hidden,d��<���g��(D���78O������̋z���F8#�5��C^���$����Q��x�h��۲�cD�#�����q�f0=$i.6�]�i���Kb�n�U=�8$j�Ҽ�����!��y�=�)��
 [(�ĥo?BL�6D*<address@hidden �U��4f�(�y��%��v"�=�S������ю����h'��
+G�Z�n-�x:v address@hidden address@hidden<���_і��Qvg"މ� 
ݺn6^���hF���u�u�~���2/��C�D�x�/JW�pj���Q�^U�r�r�X�-�f��Q-��2����G�mkGߠMBJ���m�9&U
+.
+b5�lǒI$\f�ea�Q�M����|& AĤ�$9�1�̙9��+v�9����#��        
�\lgo]��z��U�R�X��j������+e�(�Q,�� address@hidden 
�<S>b�p9������O|6���uQ�의d       %�0�$$�]�:�,���g��OJ`p����: 
`�1S&�}��-%H���Lu�lQ{~`��G8u����3�JH4�������+|�Հ�?E��-��8Nn|�/�
+���9�b�]�81�@:4 
���S�YH).���B��?���}�"address@hidden<����0aVA=�s,address@hidden"��
+��%��Kw�Z�s,['c%���Ý�B�C��eSϳ�IU�A/��&T���;�������ζ����>�KS�L�- 
��KNx�ղ�J������*/B!~��r      ��;Ͼ4J$�6��3������ؿ
�#�}֖�<�·ۢ��=G&��A��
+EnJe�l[y'b��q��ѻ$��1xV��p���\����f�X7v>�JyQ[�ƭ[R
+�e(+C�Ū���Eg�#�/Ӎp
+42:�U�0'�`�󢰺�󣂊�Q)�r�I�¦lQ�Ԅ��9��5������  h)T�1�Wd�    
����P�X��|�TB�5��y�
��s��GQ~3��Y��DI��~�;m�B�d��tP˽���0��mV�������h��nΎ�1����k��*X��A26�*��<��|���P2B���̼uaf�Y"���[$.�Q��VUn��%H��?��a�|Y��À&�J���?�CYw�%��������%vx��Y�,�8���
�BA�bɑƠt�h�Ϋ�j��ݺ��ˉ�����"�|=����r��Z���n����D
+�����:�5� b�:b��!��H�Hɐ
��C�k���/lDq�þϋ��E&�v�A�yEJJ�O����Jwi��A"�D���j��j���+!�$qJ;X�vt�)���T�A�[W�r|�w�q�{���S7;�'�ј?�^��O[ߌ�]�
   �$��A6c���2~( 7�A�E���/d�7u)�x2�k��:address@hidden"9մդ֡Z��      
�:�&J2���Z��  �*���{o
+�����-]��\�D:address@hidden
���8�՟�a�T�<���$$�ڢ#�36Hc=`g�X<�S�~jUǚ�hUE
<h��%F�A��i��֠Ĥ^���7�\�WAB���e[��zS��z�'�����������C�
+ș�f���~<'*���,��s���JZ���o&5�Ԥ���vTw ز#�|�9�*˻���/�#'��K�ƀhɚ�J�L�%�
H����#�       ��&\�t�+Ԧ�j�PReĖ�1R���36u
����:2�wr8{�gP��ncۓ$
d�AX��_R�����Ԕ��
���#�>��}���(1�5�ҽ�0-0�o�^R�¾��`�g!��5����fD*������xJ��: 
��,��[��RK����gI�W[e���؆�1M��x��קq��/��m�����N�_I�/d�
-�17(�t�:�$1�e���*�?�ڶ�4H�:1��P��}c��<���
+2�Fj3[g���CZf�!ʹ���㌮YKb�K�����)��ޞb�<9�����Y
+0Y���: �h�
i��Py����oh��u
�A�;e���%g�$���c���[��3I�y$B��      address@hidden)
���\�$ ����>(�MZŻ�b
address@hidden(ͼ����|�ە���0&����xs~q(��"�C������VD������~�"�)���s{�m�Uӝ���(�=Ȩ'n4���>���^9;CP*N"0����TN�X�g3.�g��>aje3d�z�b�<S�e��_L�B���c.�pBǮ��hhMg��7����"C����Y����5&���
������³-�*v�zU~��
M�sV-���,�s)������İ~u����r;)�D�_��n"�r�$hgyv\�����o��K"�Q����`b����/܅�/ق��λ"_f�L��~���K�����
+f�ZWx�*��}�$14e>����-\\����p��"�E�
O������lf���٤잗]��-\D�����~�I��Vn����^���q:t�۳w��ϟ���)����E)'�"��T
��,X0{1�i �nP�P��O  
F��l�|��+oR&�Չ�77+Pm�Z��<٘���<?;�'R6]�yf/F��OHZ�����Hn��e���K�OR��w���:T���P�]�1�h���z�b[9"U�fR2=6�����S��S�����/���.܀���?r����o�'��8�S�'(��AH���fCQR<Y�9\�O�K
  ׻      ����'X*�N�l���WE]�T��@&5���:j� 
���,B�z("m9T|IDF^Hku���j5����F��7���3���!{�����9���(��=��g���cJ�endstream
+endobj
+167 0 obj
+4530
+endobj
+170 0 obj
+<</Length 171 0 R/Filter /FlateDecode>>
+stream
+x��[ݎ��r��C��#;���:8�J��ز�]',#��P;<�!G$G��E^"z
?c��������8\��ꫯ��.~<�3v��������G��x-�g�={~���[V���j�����G��Y��
+�g9\�>z���}s��G�e�(�=W�G��?��LgJ
+/V��͸"\�\�Ð��Bf�^��U3��r�V�g�g��~�bq]���2���_����2�D�Z�        
&��Kw~%F0v�M��\�����(2kdx{ٌ/fV��Ůڶ���g:Wa'��fQ7��L�U^x[��*������6�),�,�x}h�=yV�̆5��e2�Sk{�����va�š�v��.${���?\W��sz��#�2����+wIe�9yx�n�g�'׿�vm7྘.�cy��'address@hidden)"S9�ԭ2���UZ��Lᵟ<�
address@hidden"�<Z��PfZ�m�Y����'ծ��!����
���Mn�ކo�xs�/S�2:�������ԣ&���~���Uș��W�YeE�Z/��X,��r��wF�P2��C�K��  
��"�
+g�x���Y�ho9x�ԐWWu��*�<�i#���eQ�%��=�"c"      �M��  ���n�
�atn��P��P%�\���7���,8��]f���}�{4�R��g�Oe���rx����wKAw�#����
�j����/~�,4���[$�¨��s�'[���;I
`x+xx�� �2��/.�1�Ra���o�+�'�~��g�����!S2k.�
8�W}=p5�.�"�>��S����G���Ċ�9'��
address@hidden,X�%�`�tBRB������7�h3�A���̐�p�g��7zC�<address@hidden,C|i�
�Q("ޑ!=����2�'Onoo�~tdS
Ov�V�l��zpN&��������ATXÃ�<�8,����3�{Q��!W�ކ\
:"��K]����M
3,����Q�\��C�T�(�Q��7�(Ť�|s�x��������su̍\Q?[u�G�Kc���M�u�M���7]�-�-�{e��}�Y
     
"��(4|^�w��F���b8S�8��*�2Cͣ!sN��=L6�ϫ�/_�6��W/address@hidden;���
�G���T�=��;$i�(�Gˋ�$ᛮ�T.�fi䈤|w�>�2�WPY�N)?+u�����#�Ao�VN�^�  
��j]~(;̌"��ˮh��Q!�K�З�kC+     �� �b�}��
+83���3�V �S/@C�~Ŀ�
+;ԭ���կ�p<^�TA���    ����j�k��φ�\~�Q���C�}X3𶡇��.G����~\�ְ 
���X�WU��7��}HX�L$.#�5��+&�6�*�4�ϗ/_��c�0b���<��#�ÞO��'o����ݮ�������7�>V,�%
+����b�e3�嗝ϥ�x2�t      �O݊��+i��[W�M B�|��K`h��
+Ō�%���E�T��r���f��;�C��m�
+�ɢ���;�u�4��/address@hidden 
�/��k/��TрA������!��CTk��l�O��x�|�B�I܂:�W�WK�m����,}B�D9v�)�'+�I|��+Q��o�����������q%�1��
  �s�z��b��ZKT�����xJ�������rr�?�{
���w�U�Y�&E�3�1gs�����V�I��a�˪�ۮ_׻<�vZwĿ�wX��i�&dn�5���q�1�8���A�^      
��4��ʾ�v��V
V�9�    address@hidden@0���z�-���3���A��D�"�����$~�����
��h���!!�F��m�ˌ?���������ʡ�q�1�o�{�Pr�r�\�c�t�y��y�=���D���d,\�1_��JC�2���S���L�P��p��E��r���cr���dդ��bh���4R���)����9F�=nhQ��TW���P�zr���o�׵$$S{�YH,��k�l�0bzƷ���9�I��mL�]ٴ�h�:ٱ��8>��O%�J��wY<X�k������Ÿ/Wk
+6���-���גJE-9J�!(n��)Jo[T���mu��vK�~ʕ�jϕ���:,�^q��ZV�R)n�;���{H�4Q��FR�s�gʜ�d�&��X����\�>�86q�;L%��J�
+9�=ʩ�/�]')k����Ca�ڄ�#��z��CY�����w3-=mh��AFa      q�j�!}�z���|ߠWAB�K2 
vX5�꾮"^��B�i�Y��z�O�o]� �(address@hidden'@�'address@hidden<s�r[
rw����ެ������u�� 
�����cU7ۛ���p�"address@hidden:�Q�aZ�PW�LI%�\�D6�+�y���%��'$QS�Zz������?�r^KI�����
+8��wئ��^���7mH�BP/���9��f���V�ݾ���;{JwA��3w�$!�J���ݷ5
qXD6|address@hidden,��<&1�&v|address@hidden;�f߿���ت
M��Hjlu>%cg�h�����m �
������4��ƄB�:-h���f�K5E<��z�>address@hidden"�s:��{�#�t�c6qºX�Mv]o�{Y��iۀ�]�(��v�����<�Kr�5J��y��,�n�^T�ZuN�]Wo�7���m�BYBO������xu'��p�tq�i�<z#m'���{�I�vO.���3���!�'�&�mG�"�Rol[�����

�{pI*��J:address@hidden)A�8V���o��h���5�;��n��q0'�����>ӭ���øC�C1��35��1#jF���ڬ�Q����p�sL���`1鵸3+E:�[˴��A*�N�2)\C���q6!XH鍘Ur^s��:l��|B��6�
address@hidden
N\{��&���MU��T)��v�G+7��c7'o��eۄI���9�Ȱ�X�zk������`�� ݻc�|��8igP�\�
+n��E��ΥH2�t}��H9<address@hidden"3ҥ�������;  
�Hy��î��D���i�H��_�c^ϽJ�8�7Ӹ��������2 v_MB�0c�I�܉-K6F�F��
iv�aG]]7��b�
�:��c�%��8c��;�3I�/��[����uU�x�M�3��9ҏ_8��b�̈́���u�,��Q��c9��uS�=fof��q�ӎ�o�`7ƀ4W"e����և8S�]z,0cj���
   
+�cL��]���D��\'%�UM������}
+-b�r<v 
)t�I�;address@hidden>Yx�j]=���e�M��i�����xh�"N�a�1��d*�[��*ҡ�b��Z�[�vm8��4(Q5��s�p�<�c����O�HT�����!��)��
+z�I>g�N^�PwCz�?ν�AR4�y�[s7"=y+�����]�;��s�d���ZĔ���4�$1�%���W��b
N$#����q�nʼNHO2/uq�>����2gTF��v�je���P=���湞�R���b)��OXb��r��#�:�*�t!ZMr�ẙU��B���r����¡F�앳
     
*�~6D'|��s���3���&u��s��3���=H8ڢ^�'jF���Ȑ�|�z�Mn8�z��h�N�R���_f�HU��o�Ĩǧ�/ӗXb�;�*Fg�8�a���Z��>�W�!�أ���t��S�O6��U�7�-n�Qs�x$j�⧅tgl|R<��m=
���4���_�G��]���iL��i)��&̘%m��z(�&�ŃA]Q�d�"����\��牷ԖM��8&
>#a��(J��;l<1�
+ӽ5<��ڡ]����&λ7���2:���N}���M;A؃�8y�����Tq:L[|v��g�0�S
��}C��<�I����:;R 5-x���+̸�Y:� 
�<E�8"��;ɧ+a�69�I4<ULt��f�$M���5eW�{����;��#�?����f��\H����ѷ�OX�$��N���`���u�����Y�Q��ǁ��т;����L��n��;9r�R�YAI���%X34�w<������U\PZ��[R
+�SN��¦�߬�*�R2��sq���P��#��xqk0��`�)9����ģ؟ug�6��/��W}      
�'address@hidden("����;E���%,�������Qi����l� �}�:~I���1��T�L`�N
��3�-���o��n�0Hu�z^v]�M6��ɪ]�-x�O��DN����x�[:\��/̑o������l�̕և6�\�X�'GM�,��_�IK
 ������P7�D9˺���X��|O��     ������9�!`8l�u���.��~�ɢ��x�a�0���P6�7�$�
q����X{Ac���
P(�MmQq�����<address@hidden"���A�D8�$2�P�f8������A�D�HC���    Ƥk�F
��PKvb�Z�oO�[&E��~F������X9rח5�R�ш�r���y-�[�`��5�TOȟGM1$�B3ߗb��p�:�������h&l�������]`^
 7�ڹO'`}��9�?7���x���
�[g�%>ɴ`�-7���Od���:26�{W�dt���d��U�jE��SM�|�r�K�
�S���Mrj�DI��gEqj�uEb[�y����7m��*j�U���Ӎ��ԛ�+�Ua�ON��;�Z�IuꔥL>�7
��*W���<Νh�)���=�N����o�4~�c���%�=�~�%����/zϿ�i��v`����b�;,
+�;g� ��un4񰬛�b�l�ޡ�p�ؘ#M:9�  
1���De�cL�F�|�P�ԯ��x�O:���z$��&I$p���q�v&̕�'�ƉsL��C��L�N_���AL7�h���r�d�d�S%���rJ�r�y
��uL������2%�k������q����N_�|�.�����
+����/�<}���f�_4_�� 
�o�a��w�y:|܋�B��<�m�āS7�C;address@hidden;��Iw�:|/b���!�� 
~�kL��t�;����ٿ<r��-
�endstream
+endobj
+171 0 obj
+5691
+endobj
+174 0 obj
+<</Length 175 0 R/Filter /FlateDecode>>
+stream
+x��]ݎ��r|�/address@hidden
���^=�����7|���z����������#���{�����Xqc9�\|~����u׭?���WRV5��������{����s.����K����,�����/����Ň�8^�p)���k�]W�e]If�S����ں���X
       
i��Ү���}���4��f�ku�d#Š6G��T�ka¯���-e��Cw<mǟUik���7�����9�S�O�i;��V�^���ǟ�ڛ&address@hidden>�sj%�S«~�S6���$���4�l$�?�[`=
 K+���X��Y����{���N��
�pͥ�Vղi����ݝ���U��چm�Sie�.�Fqe�1�q�+S��      &+ˬ�T`��]������hT���P���h�\TR   
ᯭ7ǡ?
~W��4<�����T��ACXܯp��П���6��u��>K?�Xc�����r�7f��4W�x��溛zy���:Ǖ�s�.H�V)�L���^NV�E#ժ!uX
     �bu-'UV�ఆ���J������z�Ay�>��FS�������䗷��;
+�m�����{0�^�:xǡwҗ�*���$)$7��O^�O�V�[�/1��t�
�Ѹ�Ł���.        address@hiddenx��l
I�~�6�u���+��V��!���)zx]�*z���7Kp�\��*�d�ģ�6�*�*�����3�ܿ;M�\5�A]  
��v�"ye
��b��{�O5#�q�j]Ӄe��
+I��;�ڻ��YP�1��'�4x�����4�!i<�?mv��ǂ(4����yY
#���w�������jH �n��v���v���j����zŘ�Q!θ��R7�\���f
�G���*�m�9%*|ནQ]�F�� #�wA����&2hA������p�M�Z�w��p����-�����
%\�WK��/��A�  O>t>��Z��jw~
�P���o��G�1��N����ip�a����YA�5�(EVGaق�ݺ����O)address@hidden
+�
��U������R�����8A�"V������q����E�:address@hidden)&���(�m��Wu<p��!O��mk�fg"2�$�%��,��J�q`T�v��c����s��:���E�����,��`��"��/address@hidden:�H�H��qaن,lM*^r;��y�`������v�4L,�2�χn��q��)�6�����;��R������l�%��Z2>7WhIɄ�G���)�6�m�>p�
!�%Ħ$�k�>Q�����5#� ɝƌR�#ߗ�Ր[�B}o�IcV(r��
��6(‘yb�Q#�l����Yy�Җ��4�1��&1���7��!���&address@hidden&@�/%��g�����wl�d�D�۽��S�߅�
6�4�����"����cI�z���v�PW
+����$�����8x
+#3�#n"�ҽqkc��>address@hidden&������}��L
+��"@address@hidden&y��g4��R4Z\���#� �7&`��y�SK�e�4\v��n
+K����P!~YK�U���   �=���   
�����,%�ȽB)A+>D�I2���j��[��K�eg*�[��g1m�xU���ȑ���&����zyi�4�b�����ء�^���%�����}������c�Z�\ݘ�N��e��/-h�����oK�GB�����j
+���)m�/��fx��JKFjIRY��td>8uS��c�e�L�T����������   
J��li���fq+58��87Nɾ�c9��²HQ��*9���42g�T)V5�����G�L\.�-3j���5����
�H�=S������)��/Ksh��jkٜ�O>��o��b����3��+��S�!�5��,2�g=4����BcHg�H�ܦ����q�M����֌��X�9z��7l�_w�GfB�\#�뱪"m����Ɓ���2�MQ�
��e��Z���e[���aϰb�B�m��]�E��b���`��6A�PZ���YWF�[��E���2���B����%�#�H���ѓ��
 D;&T�f8�I���O�� ����Cz����MP�}3r^ͼ��O��wx
5GD��Vk���y�vsp�+,�(�g����=�MҮ�7C�.%����9���+��g_�ӊo�=�����HF������&�Ǭ�cR��v/h��
 �}OEVs��.���x<=��3�s�f�
+�0�,�c 
�2�e_^�v6[Cd��T�Rb����/��}j��~�2��i��b��$�8ۖXkY�;�`��Ć�8��A�)0�1..2F_�O6���5q8J�*����6�j]��Ex[j��_���ȝ�ua1�����l��E1%�k����h+xa�4��;����A7,?&�0�KІ|��?���W!�������2ɞ�hi��Yf�
 ^i��JY���?�z�=< �r-��_�"���E:address@hidden
��mL�mc�D��&����(y��4C�F_U0s[��Y��e�� �'�搢��6���3���\�r^���߮6��ES���
Uq�mG�~`Ql�X�
��u��U_�o�7�T<��I�b���Ae1���b]���DAs����D1��D���شܤ��i�)�거���n��&Ϗe��M,�y�[7�j�̮u#.�cH���J��ũB�Q���B��Ϊc^�
+��d�2�9��q�=��u��R, uM��%/�������   
��}Xv���>i�*6��f��_R�~�R]t���zr��<�c;#���(/P�L��֪���&���Uk%�͘��Yw��}�3b��i����v�2�:6��Q��5��]�<��D��w�
�Ek������d�ưkw�����o�{��t��_�~!N���R�Դ�ef�B�T63������4����mc.!
+
/E_!.f�-������+Mr���j�d���/���j`4e�;B������4�5�MF���ڍ\B$ۗ>[�����vBY4H���E�|�<Zj
^A�{��^l��<��L؍c�cu8
+z������}l�{��D^��
�Hg�В�]��G�4:INfL;Ǜ��3���%N
+���~�m��.��Ȕ�y��̐k��V�~��q�(��{�p�g�U���b�6��+N�l��%Sϩ�+�Ӣ�UT����\�>-�s��\Ry0_[��Y*7�"�X�}j�:l�I
        �6)_�6�0�Xm!�����"+���ߞ���Ud��\r.�����h��D��Եul��)�9�dkN���        
B���n�'��CZaI�W����<��'o��dbkW�;��8��&-tE�^Jo��l]���+���Y'�����8D$�=�D��>��Ԗ���ݣ2��4;�m���uǣ����65U*"L>��{�+I�����8ipX���'l#��ᕁs�Y�1XyG(��$�U�1w�iL�[KҘZ��$�b
i�#��9CӤ�O2����ޣZ�|���C��     
˃��N5��B�;��<�A�JÙ]��(K���jG?����5��f&�x��z��]u1L�7�1����H�F��_ծ�W��P|x�Z��O���
�-Uh�&�A��)tJ�h(�w� �1b�{T�cl����3���6�nӷ��M
+U�<V>n�b�TDa᥹&l��|r6
]*[��;�c���fJ�fkR%5u��p�%eI/>;z]ъPUaN:�
I��=�r��$����.D�������lbB�ɺ7�L�x���eg#e�2��B`^�B��؇�,��e3?��=|����q  
u�W��X.�(� pnū�w�j
address@hidden"g%yv%g�㌍>���sƱ��(��Yi$YW(����8,�xy[�A�|H2��U�?h귐b���0CdM�zr]�C>vx<�V��+y�V����
+��
+P�Vb�u�7jZ���
+�Kc�DF<J��$�-�)���7��<��dRY(�(���%�0~M3��
+!�#L!&�*RK�����<�ݑ�h���;��Y����\��_
e�͘×�#V!?�cY�gE���\�0X�4.���^��OtBo׸���ޗSc��N/}�?��N]�U����^���^{p/���h��$���r��꼑�FQ&�G
 
�M�=�+��!��++4cf��4��F�v(%�!���!%��p4JP�Hb'��$v:_�a�}A��)m͜Įi���8��RP��Bb�D_�P���J�"�}�!M�T��V�,���r�`T��!'��^1ϰ0F��z6-�rd��h;i��s
 
address@hidden(�y>���9TLn��*j:�$�{y�������>,��庳X�T�T|���m+sx���#���9_{��5������
������>�
address@hidden:�E��>I?$N�S��\֗�ᬎYl�C|��Zt
<^��5�PR����3��ف�z7E}ASa�#�j��*�H��o�!2�L6������TJ[XI���s���|�C�s�œ��'s�#$���*�h��н>address@hidden&.
       �&l�%   �4����y&9?/��$u=��a�&9��?��[E��~��bG*�f���_�'l\C��*
���Hr��:�=h��7J:ɵ#�[7SR7c:J:M��?�۷������_�n��)iK�:5�7M6
+U���v:$N    Fa9��k�;?�,57��cVHe�,�/:<address@hidden&address@hidden 
��c�����e4S[f6��f��Rx<��kimf�h���K��{P�x�K
�G������n�u�b��:��ali�}�VFLT�EY�8���]v��ݜe���߶iяQт�J�D*T:|m��;��Ϻ��  
 �'��on�W����
+       ����1���>address@hidden/�И�1������2%��K�}8�ޮ�^���
+�B��m?<�
�9����0�$�bSJ���9t�p�<�Q�}��q�AN�3Y���,�V����6q�)�D��Nא>�ߩ���A�:ZP�2��P�Qi-�d�֟1��NRD�OH
       �$��𕶬:��5#Y�p�q�<F���<[W~2�%���%�x�T˅�XA���x����1��g��`���
+,��W��E�Dey��w�����T[�X��&��s��X�;�<�\]x����x6��C�#�"

����±�s���2�Q�k��ްs��s���R��_B�V�8���Y`�����:�����/�tFz�7        ���     
���&�Lv�.�0)פ��[:)�|}��ם����   
�Ee�����.u嵫���#�o�M�LZ��UG5.I�R�S�� 
�J$g��m8YIJs����_<"w��8�oՑT"Fz�-�a����iO�p���x�k~�5quá_�V�ܯ�}ӱ���U$3[�t��6u`9��['J��
        ;��d~ۓ���?uV�x͇�q‘%כӁ����pv��d�3���{�p�\1Q�����#��S�c�P1��^��
6��� ��JyT2{N��&ӹ�+u�E�c���R�
��f݅N����rm�����~�)�nկC�$�:vk�x�IT:��丧�xJ���5��č��pۮ~��k 
$ه�oU�(A�}����C�d��lTk�����lFÒ�d$9Ļ�DZ���3�o�ېL'��]W�s-������=���p�ޑ1Y 
(�uOa"
+�N/;��_8�<address@hidden<_��5�����tV9�a�%� |;��{4�����C׃
address@hidden(�|�X\Nq0���Pș�(M�H����uNGVL3�ܔ�=IS��S'����6g9� 
�����"#��>-=8���)ӳ�9��X�G�O���]�1�b�,ඥ       
E�ty��f9Om=��B�:�vO~Ю�O�'��9L;v�fw���ϲ�W��FA�zb����/0��b�{3��93W���+�鱡�5B%�5���Pc�s��Q
2_O�(��H���B���6{���=�����u���UV��;�B�1x9Q|� E��
+��     j�K��y(��΄����ga#����A�a��O����ؗ<���
I��T���{��M��o��\��D�1��Q�����Iͯ�S�hE��x���E���ՌE)�j%W����w�,���܆C��܋�����lz�hj��nJ���
17���S���(����f�4��鬀�l<��}����w7��
+���ʍ�endstream
+endobj
+175 0 obj
+6774
+endobj
+178 0 obj
+<</Length 179 0 R/Filter /FlateDecode>>
+stream
+x��=ْ$�q���v($�
+�rx�/&C���U��Q�ȍ�J4��(z�P3];�bOwo�~D�otfHU��P(lٽ 
����u�.j������/��`�o΅n/>~���/����mx#/�>���]h~�Y]������?�V�vq����?Me������a��1^�Z��ևM��������d=��?��?��e'ʺ�L�����RV���7����T�C�v�~1Uͤ�?�?�J0A+�]����
+���O�R��a៮ݪ_*}�    
����ղ����*Y�p�~��˪Z�a���vsػk�JؚNl�nzxa�D�uu��/V��z[iP�^���.Z�=�q����
�ˀ^�S�ӥ[�q������,#H׈»Ů�u&�Ά�����_8��a��v�p{d��!d����a�zӾ88���d��E�U=U�Z��/���מ�F�p����~o�E����I�����#���ڈc�-V���:��7�%p{{�tl$���̉
�֑�ۗ�}�j�/w�hלh����(��U�Z�{rpSm���g&-e`�9�.`����t�VJ;�|�]�:address@hidden@:V���m�h���vfI<<+W��Ȫt�ӛ���,���v��>�'ȏ0:��v�X��{�l�E|�B�_��4��K��ZqB�M��i�:����].ݭ��4���T#IG�O�^�bYC��럇$����
 
�ܨ�����O�>)�}���O�}Py*p�I�_�y��t����M1~��2�p[�4#��0�kԥT���σ����TO]��ZY�j�y5&�\����bs�Ր�����-��5P7,��8a
 ��n�/�p�   
�`�>�aI�o�+P���aN��"���<x#�8�(address@hidden@�[�Q�܆��q����]^�{���0�n"����J5�É^�5"w������l��6^/�վ�?q���*��qZ�y-��&ܨqc��������v;�/E�$N�����ö7�ʙ����
     ��E��;E��o��j|���:  �%�
8P u���'E�,�l�r=^M��  
address@hidden/p�a7�tZu\:����`�yd�]�I����2�ͳ�?����>x�}�ɐ>�uʳz25��OϽ�=����y
     
@Yb�E��[.o�|�(8+��X��>address@hidden<*v�$�����`tqF�K���G�\zMc-ip%�Sg�P��G{l����9(S��c:��7�Wt���z���I�'�u��\�&���Ѿ�
+AUV�/�n啢j�y� �so����:��&<������    cZ$w 
�MY"��]lw^e���sG�|y/�;2�:.��D�����}���\��7\��˛>߼���/�1P��+��,!����`d"z_�)>Yg��uU��
   ����O���j4OD�
+���~�t�Tz��Qip��?�.9,�.��Cuޠ�H$m����>e����zYb��
+4���Vd���M$�)�w��� ��d�;P4 �;address@hidden/address@hidden,颿�81  
Y�'��Ԗ��D^"��҅��(
���:�X5���u���t���g�N���G�W(�$��S�}B�p{���˛��O�,�a��n_��kUo>address@hidden:@���$�2��7�Z'�u�[[A>��b�Xu�6�,��ǹ�5�w�^���W�ڪpr�ϴ��hP�M������h
  
H`A�j��R5���X%�"}�ߟ˫$gAy��/C]y`�����j���t���Q�1jt�*Y�f�IblM��6��Qm�o�-�Ѭ������7�j�'N�'address@hidden>����pˀ&�R8�]PW*f�����K���v�c{��x��/�D��,5Ra
+~���5`mDd��G�&(�"p��?��I����g��H�_�B�ԛ\Q,JV,����Ӆ��s���E�6�f
y�MR��t"��(a��?=����]��ቒq����<�RT��F�Jv�v��#ʣ$�p�
v�      ���<���y�&]����H�Zѱ�2���S;Ę4�ä!�#9�Yo����A
+�G�]Y
+�m0j�K)��n����?�m�_�B��(r
+�����������zE�,O��r=��;�%�J��)L�#�a��9���������c�I/<��S�TqNZa��     
�&7��d��7A
G(�OW��-�xG `�H-�TAj!ڕC�z�na���v��%�Ǽ�ҙz��Ov�?8�y�z1��12I
mjWJ�?���Mŀ��G�j���CG�E����.-0h�է��؎�g�
+)address@hidden        
Mb���(�����Cƫ�&��`�QLn}�����B�����u�!H2�gL�'Ա��l�n��m��       
�\&AL�,��[Gg�����Ӣ��*��'߹���6�N=�M�>        �J\��5��u�T�=��F�&f}W����w�
^�Aݬ���W���6��Y��O�Sg��Rg��Sg>w7�r�J^�05ـ%�*ܱ&�,�:ҳ0�`���U�o&3T��a�/�92f
 
t�6�w]/5��(���,l.�K�30�7���+d�wl�S�9o0͒����&z)�.�;l#t���>��b��E�Ӳo���NԞ�O�����9׋o|�'~Eٝ�0��:Jbѯ��rJ�]�B���|
��:!����d(��:�:�uË��#/���a�Ȝ�ӹɋ�6<R�S,ǧ�Sؐ���9e���Ԧ�G9(�bD�[�b3xgy�n��
     
|�\O���|�%c����Ƨ�%�GY��z<�����:��b]�v=�$ٔ72����.wΰ��Z��<����Vr8��~B�H��|e%X:6�7���pxb�ʂ_�<��3N��$��Uf&y�9�
��(��q��#i50�V�J���Ҭ��ؖBN̔}�
+��!헥���)U���$�"K�p�ؔ�o̜w���:r=D�S5:f?�ܬ�jb�׸3KtΤW��{�IW��|e3�o�����pc�F��t
z+MZ�[=�J\ݣ=�D��VqG�H3$�
+�Bp*���VX��59�e0�|��S�0��:���(�:��Ǝ�.�n���فk�(`\�����a�]��w���1��|T�����+�`q���L���}��.�$A}�o\�`6�q}�_��c�؎�v�|G��L�I���
 �DV>*=ˣp��᠅g����A�pZ\������i̻����E3do����85�r
�4t�����0M�X.[,#�_N�FSj��ҹ�Q�ˠ'�^gh.Mdyٵ;]�2`NLj'����ƅ?z��^\h[!�ꋙ������B��밝���>|��b�=t>��{��g��>��g�_�?��΃�?�w��y�"���
�"�x��������P1�X�2���Ks�7V]C��p(UNj�ˉ
+b���r�|30�*�12E�7e�P*&<KLQ4Tkϟ�n(-��$y��W�i���6���
�� ���~�&�~�`O�sy�㬦�}I�/��?;�O��Ў��2��g=�tkPT�����j}��Ю����|�(E�M�0��ܠE  
?�A����Cl#'�d������/�m��#�E�
���򝋩m������)QW��N�%�����|address@hidden/$�UM���V��(����F���R       
�oSJ�ƪ��J
address@hidden(�1�����Ӝ��     �|����K�`C�L�j���3�
�g�&�q��*�GY�wB�4���B��f�ỎM:"��j��6B����׀�+b������!����F0u-�}?&address@hidden,�/���]�����OJ�Ae���r60C�0����J{輺L2��ȭ�[������F��>address@hidden
 
I�d�(")�6�=8W?*m�1-��eD��1��9n���D���L�\���#$��,�'���Q�K�R&1VaU��������ʷ�?�ʭ�I�z��_�91�v�,'#E�vo���]�'&4WS��؈ŘʧX���lVԧYQ���~��x�]r�}g[W&�8�ߌ�_�S�"�iґ��P#�A�wB��F����f�R���H
�O����dL���O��^:)�T�1������t=�}�E�9��\��[�{gX=���6�%��K��sE]��](���w��
�����n.u)k��(�HzI�����I����W�t��B�o
+�&�9x�纎�EJ�B� 
;l��Ox�5`�L�*2k�eCwj_G�T�L]�[��(address@hidden,��2����y�<����k�%��ƖO\��Q�8������W�c\`�
:address@hidden        �N�ǁ�y�1����-����
address@hidden&ɮ�uِ�X��H�F�ۻڄ�b~�WPXjɞx-����        
ڥ�������7z�Fː��Gx��g�T/'r��u���n9tU�
T֔4����:�(�Q��'�9K;��𝲧��
+Ò���������S#�簲X���M;address@hiddent"����`���ui����xެ}�
���o�Kr�^�g$�[g6�yLZ���yY�vf�Suߌ`�(0��r�.�
+J<MY�S&\Fb沔��Te'�,���b��n�;".[Cl҆�ld��e860���վk�^1ҹ�Mj����b�x��-[kl���פ����<85a��,�;r��3k=�A#OpLP�5��F來�rgt�'R��QE���R���S���MboG�&m��lHrʠ툎��������=K���a�|�=�mµ)DT��}"�?�!b�<����(��f���8���G3�!OƊ���-�LJ�R���,�O���>U���f^I1�`I޴c���������e����}�i;;/���X�>��
    i`�q��x�Gc��l�6�   uU!��-�ד�0m30!
��,E��T��Q������H���#�����8��:mw+��!;���3�~"���v�P��Ͷ5�te���5��[�`���}�α�l[<Rb����nj�=����Sk����_�}���ޛN�m�Y���0Y�3׵�fЩ:�_(kz�u�ߟBf���,x�+�t�W\f-�.�%�4f�����H������)�0���A%+jP9"*߫�
N[��hVGt�k+����\�+&#N|Sb�����>��ީ������د�(~p��E��}��+��4��M�չ�Am]�(Rk��8��d"�_��|��kC��o
+��2�.Uda��i�:g؃hF�c��5^��ҥ��)"��)�q�Γ���F��%H����Egi5.�ӊT��
�jN�6�����F�
�~i��'
i6>��R2�!N��䡘�|������v��6k�Ips)�鶤��[ɠ��Q��(�;�B6n��f/�
address@hidden y�%����~读0ç���eiDj�=�3)L�R��v1 
�9>�u0U�Q�W����`�Ҭ��N���f��s�"=�e�v��:��xq�1���~���(���'&��O���_��%��q�&\��~����sՈs?�
 �������3�K���xJ��S�գ�x�Ձ�BE1Ki%/���BR�,�����r�H%f
�*gy�����4��0��sJCM>�lƳʆӺ�f���B>�-��Ϛ�y6+Y
+9�|MF{K,��q�X��r���� �Mn��0a+
�U5�|�E2�r�^�8��|g?���e�+�w*n���|R��f�>��0��-�
v������ v]2*�Ҍ��vN�+i��Ɉ$K�5��yĢŎf�������S�}�����b�Ӹ{
�d%y�ivw��M.�����;
+�|f�%���^}�>�W6
�5?\���`���(,�E.�!�R��_wQ�6Q���10,�,,�p�<#��%�J�z0�7D����ǧ�{�:&:��"�#�3Mb���Ӗ'��ݴ3>Ϩ�ঝ���)G�L�)���6�(���

��t�������B;��}�������*ͨ*n9�ߍ�o��=|��0;�810R���5a�����3��k&�y:�F�:�5�]o-��&��͘�Q�DZ�eLd��&0�X�Yo����bBb
k���!���羻?�,{^gl��u���G��,kM*�N�<�     ����a��[(address@hidden:5?�<$  }
+��jL�ª1y��V�.��]�<�r��q�H&�\3�w0�id'��Ai��kq�3-iTMB`�����B+0��o,N>address@hidden
  =7Ѵ��3Ҧ�����8"address@hidden/B\�ڇ������~����������Y��t�
��.    QFM�w�K����^���0H��H���A��� #��|z����6yU9������Yj��R�1~���RD�u
�~aɿ�m��bS���i�)���ݢ��+��z�D;��QL���=�x|�u�My�f؍t�6�N
+J-nv�O���LA����w��~�^�iƸ�$�ɹ�p���n���!���w��*9C��.�?�N!enʪ��}T9P�E��     
�h���
+��Ք�9�D��+j�;*f��F��J���Q�66�N%�6F�?�����*�
�+_��6�l{�4�j�i�wI��w�¬���]����
address@hidden">�RS�9|�u6����0�=wR���~8%n��� D!Ւ�UV��FYIE�#�1ǯ�k��}�     
����(�����C�����h`SK�d�I=����י᝿�ҕa�wT�|��:��W�
+�/K�*%6-�#�)�f
+O��7�O�
�o;xoq.���'
+S^t����'s�&p'��O�v佁z3x:鞼4g��1a�A�
�����[!�5�r\��rO孤f�<address@hidden|~�%}.���J4(V�)��Q5�n�1�}[7黝s�N0Y�gˍ�;ɼ���
��ˬ�r۵�P�N^'���[���5�Y�T^'�VL'�G�&�=Sτ4#��U��y�գ�U`:m�������/?>ϔ
��_�X�.}W;�e5����\�ۊ�������s!�T����}����������w��F��eQ����2���T�~Jd�P떇�ֱc"N�M��Wޤ�,�Ֆ�M�x�C�L+)�πc�����l�],����E�xV'�\ār�Ẽ)|�C�g�(��lx��ts�&��¿��$��(�D�Y�%f&vI�k1������G��
 address@hidden";'�jq��$�%g�?3�Q0�,3̕v�ɰظH$4>��BQC����[�`��1}�sS��-
�!*s�_zr���)�r���/��QS:���$�4ց� �c����EL|A�����Z���ڋ�Nendstream
+endobj
+179 0 obj
+7672
+endobj
+191 0 obj
+<</Length 192 0 R/Filter /FlateDecode>>
+stream
+x��YKo�6nћC��l���^�>address@hidden"y-wUhWI[7*��C�=w�  R�`���Ùo��f�mF  
˨��7���Wo3֯�?�]�����W�d�8͵����Xfxf%wW�ݶxq���DQ���=\]We��՗�$�!�R�]?�-�f�8#��[4�
        
��2"%���NvN���s.o��%1��t�Ӷh�5c�&�[�}�f�$B3�W�Qb�S�$Kw~���]3�3¥�������9�e���T�ѩ��y�W9'�(W���}��u�������?��m2���]����!F鴻����Q�0��DVi�,��R�\`�l>�MWn�U�{DR��N��~I���'.�������ҹg��m�p�#J(��)�8�V���P�t>�
#�clڮ8�1�Z���C�<�ͮx��#  �"���]
+'�r���j�Y^�U7e�ݑx���_ꦨ�k5��ٸ�Op�c��G��"5�7i��UM}�ߗU��6K��j
+ԉ3��`h:�]�^)��k��f��Ne�z���Tf       
琼��`*sB�i��]u̻r�Wyi�����6�m��cLII8�zy��c�+"�rީ�0�šS�&����uB�3�VJK��lɈ��^����n0���Ҏ
        �$���zS����h�;� Rq6$B��,z4A�؁�Nо�:���~�ཉpc~z
�桁`n"E!u�n_�ʼj߼��BC�S�ߟc�04�=�UU�k䉧��5S��:~^�ɽ�}�F�UWǮ��D��H
��
+�U��>�
G��mY�����3�?D�۱��v��)address@hidden 
�HȨ�n5a�9��5}n2B��C�I�}�����f�tK^�a �߃�PL:>�����}!�9Ot��4ai_��{�p,��
+�$x'����,address@hidden(uۖ#�1#���C�r�>%�a3gl����t_V$f���wېB�j?��X=D��P���6?�},��'&(�}�/Hz�ϤW�4�{J�uzT�h`(,#*������d[PH��&4x�
        6�"��tl����(�E�� 
��9���!����%UTE�7(�L�dr�JЎꎃr���l�|ߕ�4�d(�s�r����&W,KY�7e~_e0��R�N|���:$�p����
 address@hidden    �7�{��(address@hidden;���rV(K��
�H��ʝor469CęTn�Q�3�*P
+�*>�&�ٖ�=޷]�a����07����Y�2�>�Vڷ(address@hidden 
����&Tk���j��C����`H������g���+����Z2Pw�������T��6`O!~���w���;����5��J62`J��S��^V�9eN�:�f����I|���o�5���Ւ�����5��$�_�
��)�����������b�\�9��>�ڲ~�‰w�:��L��J��R��)��"�Ǖ�y�o�����[
+K����o]�bJ?%�
�z�Aa~�W�|�'��rC<�:q�H\��-�3P��
�����O���3}��mŸx?R��T
,�KWw�h�Jeʪq�_��L�f>Д�a���O̼Q/\4��HA��dP{�l�6�2�W<address@hidden   �h��
address@hidden
I�M��.)9�:�Ԑ�?�����~����D^�ӓ�H�V�Z�ֱEW���p���~�x��P�����ۥ�     
 ZC�4�.x�LAN�S?�EȎ��4��ԋiVh���N��z-(5길�kïNp���<
��H�_�������C6  �
��,UwD�����"address@hidden/�xgم��(address@hidden:�65�pmP��C��h����m`V�������D��
7�-�9�o���S��$�|:address@hidden|�      #"赆
+a3�h��(�'4
��`ICM��|7��a��Y����drJ�ՙᆲy�[M��P�^΍7>�o0�q���*�~<�!��w�oW��?͋�Mendstream
+endobj
+192 0 obj
+2159
+endobj
+5 0 obj
+<</Type/Page/MediaBox [0 0 612 792]
+/Rotate 0/Parent 3 0 R
+/Resources<</ProcSet[/PDF /Text]
+/ExtGState 19 0 R
+/Font 20 0 R
+>>
+/Contents 6 0 R
+>>
+endobj
+21 0 obj
+<</Type/Page/MediaBox [0 0 612 792]
+/Rotate 0/Parent 3 0 R
+/Resources<</ProcSet[/PDF /Text]
+/Font 24 0 R
+>>
+/Contents 22 0 R
+>>
+endobj
+28 0 obj
+<</Type/Page/MediaBox [0 0 612 792]
+/Rotate 0/Parent 3 0 R
+/Resources<</ProcSet[/PDF /Text]
+/Font 58 0 R
+>>
+/Contents 29 0 R
+>>
+endobj
+59 0 obj
+<</Type/Page/MediaBox [0 0 612 792]
+/Rotate 0/Parent 3 0 R
+/Resources<</ProcSet[/PDF /Text]
+/Font 68 0 R
+>>
+/Contents 60 0 R
+>>
+endobj
+69 0 obj
+<</Type/Page/MediaBox [0 0 612 792]
+/Rotate 0/Parent 3 0 R
+/Resources<</ProcSet[/PDF /Text]
+/Font 75 0 R
+>>
+/Contents 70 0 R
+>>
+endobj
+76 0 obj
+<</Type/Page/MediaBox [0 0 612 792]
+/Rotate 0/Parent 3 0 R
+/Resources<</ProcSet[/PDF /ImageB /Text]
+/Font 85 0 R
+>>
+/Contents 77 0 R
+>>
+endobj
+86 0 obj
+<</Type/Page/MediaBox [0 0 612 792]
+/Rotate 0/Parent 3 0 R
+/Resources<</ProcSet[/PDF /ImageC /Text]
+/ColorSpace 122 0 R
+/XObject 123 0 R
+/Font 124 0 R
+>>
+/Contents 87 0 R
+>>
+endobj
+125 0 obj
+<</Type/Page/MediaBox [0 0 612 792]
+/Rotate 0/Parent 3 0 R
+/Resources<</ProcSet[/PDF /Text]
+/Font 128 0 R
+>>
+/Contents 126 0 R
+>>
+endobj
+129 0 obj
+<</Type/Page/MediaBox [0 0 612 792]
+/Rotate 0/Parent 3 0 R
+/Resources<</ProcSet[/PDF /ImageB /Text]
+/Font 132 0 R
+>>
+/Contents 130 0 R
+>>
+endobj
+133 0 obj
+<</Type/Page/MediaBox [0 0 612 792]
+/Rotate 0/Parent 3 0 R
+/Resources<</ProcSet[/PDF /ImageB /Text]
+/Font 154 0 R
+>>
+/Contents 134 0 R
+>>
+endobj
+155 0 obj
+<</Type/Page/MediaBox [0 0 612 792]
+/Rotate 0/Parent 3 0 R
+/Resources<</ProcSet[/PDF /ImageB /Text]
+/Font 158 0 R
+>>
+/Contents 156 0 R
+>>
+endobj
+159 0 obj
+<</Type/Page/MediaBox [0 0 612 792]
+/Rotate 0/Parent 3 0 R
+/Resources<</ProcSet[/PDF /Text]
+/Font 164 0 R
+>>
+/Contents 160 0 R
+>>
+endobj
+165 0 obj
+<</Type/Page/MediaBox [0 0 612 792]
+/Rotate 0/Parent 3 0 R
+/Resources<</ProcSet[/PDF /Text]
+/Font 168 0 R
+>>
+/Contents 166 0 R
+>>
+endobj
+169 0 obj
+<</Type/Page/MediaBox [0 0 612 792]
+/Rotate 0/Parent 3 0 R
+/Resources<</ProcSet[/PDF /Text]
+/Font 172 0 R
+>>
+/Contents 170 0 R
+>>
+endobj
+173 0 obj
+<</Type/Page/MediaBox [0 0 612 792]
+/Rotate 0/Parent 3 0 R
+/Resources<</ProcSet[/PDF /Text]
+/Font 176 0 R
+>>
+/Contents 174 0 R
+>>
+endobj
+177 0 obj
+<</Type/Page/MediaBox [0 0 612 792]
+/Rotate 0/Parent 3 0 R
+/Resources<</ProcSet[/PDF /ImageB /Text]
+/Font 189 0 R
+>>
+/Contents 178 0 R
+>>
+endobj
+190 0 obj
+<</Type/Page/MediaBox [0 0 612 792]
+/Rotate 0/Parent 3 0 R
+/Resources<</ProcSet[/PDF /Text]
+/Font 193 0 R
+>>
+/Contents 191 0 R
+>>
+endobj
+3 0 obj
+<< /Type /Pages /Kids [
+5 0 R
+21 0 R
+28 0 R
+59 0 R
+69 0 R
+76 0 R
+86 0 R
+125 0 R
+129 0 R
+133 0 R
+155 0 R
+159 0 R
+165 0 R
+169 0 R
+173 0 R
+177 0 R
+190 0 R
+] /Count 17
+>>
+endobj
+1 0 obj
+<</Type /Catalog /Pages 3 0 R
+>>
+endobj
+4 0 obj
+<</Type/ExtGState/Name/R4/TR/Identity>>
+endobj
+19 0 obj
+<</R4
+4 0 R>>
+endobj
+20 0 obj
+<</R18
+18 0 R/R17
+17 0 R/R16
+16 0 R/R15
+15 0 R/R13
+13 0 R/R11
+11 0 R/R10
+10 0 R/R9
+9 0 R>>
+endobj
+24 0 obj
+<</R18
+18 0 R/R17
+17 0 R/R16
+16 0 R>>
+endobj
+58 0 obj
+<</R34
+34 0 R/R31
+31 0 R/R27
+27 0 R/R57
+57 0 R/R18
+18 0 R/R56
+56 0 R/R17
+17 0 R/R53
+53 0 R/R50
+50 0 R/R47
+47 0 R/R44
+44 0 R/R41
+41 0 R/R40
+40 0 R/R37
+37 0 R>>
+endobj
+68 0 obj
+<</R67
+67 0 R/R34
+34 0 R/R31
+31 0 R/R64
+64 0 R/R27
+27 0 R/R57
+57 0 R/R18
+18 0 R/R56
+56 0 R/R17
+17 0 R/R44
+44 0 R/R40
+40 0 R/R37
+37 0 R>>
+endobj
+75 0 obj
+<</R34
+34 0 R/R27
+27 0 R/R57
+57 0 R/R18
+18 0 R/R56
+56 0 R/R17
+17 0 R/R53
+53 0 R/R50
+50 0 R/R16
+16 0 R/R40
+40 0 R/R74
+74 0 R/R37
+37 0 R>>
+endobj
+85 0 obj
+<</R34
+34 0 R/R67
+67 0 R/R31
+31 0 R/R64
+64 0 R/R27
+27 0 R/R56
+56 0 R/R18
+18 0 R/R17
+17 0 R/R53
+53 0 R/R50
+50 0 R/R16
+16 0 R/R84
+84 0 R/R44
+44 0 R/R83
+83 0 R/R80
+80 0 R/R41
+41 0 R/R40
+40 0 R/R79
+79 0 R/R74
+74 0 R>>
+endobj
+90 0 obj
+[/CalRGB
+<</Gamma[1.8008
+1.8008
+1.8008]
+/Matrix[0.4294
+0.2332
+0.0202
+0.3278
+0.6737
+0.1105
+0.1933
+0.0938
+0.958]
+/WhitePoint[0.9505
+1
+1.0891]>>]endobj
+89 0 obj
+<</Subtype/Image
+/ColorSpace 90 0 R
+/Width 801
+/Height 195
+/BitsPerComponent 8
+/Interpolate true
+/Filter/DCTDecode/Length 6616>>stream
+����Adobed��C
+
       

$, 
!$4.763.22:ASF:=N>22HbINVX]^]8EfmeZlS[]Y��C**Y;2;YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY���!"��
    
+���}!1AQa"q2���#B��R��$3br�    
+%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz���������������������������������������������������������������������������
      
+���w!1AQaq"2�B����      #3R�br�
+$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������
?��(��
+)3I��E0�&����̣̠      h���<����̣̠    h���<����̣̠    h���<����̣̠    
h���<����̣̠    h���<����̣̠    h���<����̣̠    h���<����̣̠    h���<����̣̠    
h���<����̣̠    h���<����̣̠    h���<����̣̠    h���<����̣̠    h���<����̣̠    
h���<����̣̠    h���<����̣̠    h���<����̣̠    h���<����̣̠    h���<����̣̠    
h���<����̣̠    h���<����̣̠    h���<����̣̠    h���<����}�J)address@hidden
_?ޏ?ޱM����cր6��z<�z��X���cր6��z<�z��X���cր6��z<�z��X���cր6��z<�z��X���cր6��z<�z��X���cր6��z<�z��X���cր6��z<�z��X���cր6��z<�z��X���cր6��z<�z��X���cր6��z<�z��X���cր6��z<�z��X���cր6��z<�z��X���cր6��z<�z��X���cր6��z<�z��X���cր6��z<�z��X���cր6��z<�z��X���cր6��z<�z��X���cր6��z<�z��X���cր6��z<�z��X���cր6��z<�z��X���cր6��z<�z��X���cր6��z<�z��X���cր6��z<�z��X���cր6��z<�z��X���cր6��z<�z��X���cր6��z<�z��X���cր6��z<�z��X���cր6��z<�z��X���cր6��z<�z��X���cր6��z<�z��X���cր6��z<�z��X���cր6��z<�z��X���cր6��z<�z��X���cր6��z<�z��X���cր6��z<�z��X���cր6��z<�z��X���cր6��z<�z��X���cր6��z<�z��X���cր6��z<�z��X���cր6��z<�z��X���cր6��z<�z��X���cր6��z<�z��X���cր6��z<�z��X��]�Z����Z�[�z��{��I��Z���5r6�X��4�(��)�O���
+�5f�ɀj���Ym�h���<�.}蹓�fK/4p���}�޲�ZO8���ڽ��W�ey�֏8���ڽ��W�ey�֏8���ڽ��W�ey�֏8���ڽ��W�ey�֏8���ڽ��W�ey�֏8���ڽ��W�ey�֏8���ڽ��W�ey�֏8���ڽ��W�ey�֏8���ڽ��W�ey�֏8���ڽ��W�ey�֏8���ڽ��W�ey�֏8���ڽ��W�ey�֏8���ڽ��W�ey�֏8���ڽ��W�ey�֏8���ڽ��W�ey�֏8���ڽ��W�ey�֏8���ڽ��W�ey�֏8���ڽ��W�ey�֏8���ڽ��W�ey�֏8���ڽ��W�ey�֏8���ڽ��W�ey�֏8���ڽ��W�ey�֏8���ڽ��W�ey�֏8���ڽ��W�ey�֏8���ڽ��W�ey�֏8���ڽ��W�ey�֏8���ڽ��W�ey�֏8���ڽ��W�ey�֏8���ڽ��W�ey�֏8���ڽ��W�ey�֏8���ڽ��W�ey�֏8���ڽ��W�ey�֏8���ڽ��W�ey�֏8���ڽ��W�ey�֏8���ڽ��W�ey�֏8���ڽ��W�ey�֏8���ڽ��W�ey�֏8���ڽ��W�ey�֏8���ڽ��W�ey�֏8���ڽ��W�ey�֏8���ڽ��W�ey�֏8���ڽ��W�ey�֏8���ڽ�<���8�҉�hj;�z���5��-h�IҀ:address@hidden:º<�ʘ�Z�}�*n�Y��n�V�P�Q��E;u��P�Q��E;u��P�Q��E;u��P�Q��E;u��P�Q��E;u��P�Q��E;u��P�Q��E;u��P�Q��E;u��P�Q��E;u��P�Q��E;u��P�Q��E;u��P�Q��E;u��P�Q��E;u��P�Q��E;u��P�Q��E;u��P�Q��E;u��P�Q��E;u��P�Q��E;u��P�Q��E;u��P�Q��E;u��P�Q��E;u��P�S�sQӗ�[�֝��VT=Ei���dzVշjIJ�[v�h�Ҧ�b�R��ETRt�j):P���y����zż�h��eMֵn��T�h�Si�M��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(address@hidden(z˵m�t�eڶ��
+ы�KQEҥ���(���R�Rt�
+�󡭫���y��
address@hidden@address@hidden@address@hidden@address@hidden@address@hidden@address@hidden@address@hidden@address@hidden@address@hidden@address@hidden@address@hidden@address@hidden@address@hidden@address@hidden@address@hidden@address@hidden@address@hidden@address@hidden@address@hidden@address@hidden@address@hidden@address@hidden,address@hidden@.;�-�C[W����
���7Zջ�YSu�
+�M�56�
+(��
+(��
+(��
+(��
+(��
+(��
+(��
+(��
+(��
+(��
+(��
+(��
+(��
+(��
+(��
+(��
+(��
+(��
+(��
+(��
+(��
+(��
+(��
+(��
+(��
+(��
+(��
+(��
+(��
+(��
+(��
+(��
+(��
+(��
+(��
+(��
+(��
+(��
+(��
+(��
+(��
+(��
+r��ӗ�Y���;^��!�+Nר�
�.շm�V%�j۶�(F.�-EJ���(����KQIҀ(\w�[Ά��;address@hidden@�NjmQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQE��M�/address@hidden@E'J����P��X��
address@hidden)����b��\Q�J)qF((�����b��\Q�J)qF((�����b��\Q�J)qF((�����b��\Q�J)qF((�����b��\Q�J)qF((�����b��\Q�J)qF((�����b��\Q�J)qF((�����b��\Q�J)qF((�����b��\Q�J)qF((�����b��\Q�J)qF((address@hidden(���*7�
+���[s�k.�2
swIɬɣ���!�x��`��c4g4�]ijo���?ˣ˭��Q�j�����C���}�ڀ3��<���?�g��
�.�.�>��G���?ˣ˭��Q�j�����C���}�ڀ3��<���?�g��
�.�.�>��G���?ˣ˭��Q�j�����C���}�ڀ3��<���?�g��
�.�.�>��G���?ˣ˭��Q�j�����C���}�ڀ3��<���?�g��
�.�.�>��G���?ˣ˭��Q�j�����C���}�ڀ3��<���?�g��
�.�.�>��G���?ˣ˭��Q�j�����C���}�ڀ3��<���?�g��
�.�.�>��G���?ˣ˭��Q�j�����C���}�ڀ3��<���?�g��
�.�.�>��G���?ˣ˭��Q�j�����C���}�ڀ3��<���?�g��
�.�.�>��G���?ˣ˭��Q�j�����C���}�ڀ3��<���?�g��
�.�.�>��G���?ˣ˭��Q�j�����C���}�ڀ3��<���?�g��
�.�.�>��G���?ˣ˭��Q�j�����C���}�ڀ3��Q5��Ԣߞ�^(�J�:S#�ڴ-��8��kҶ��J͵��X�\����qR�EPMaN�4VE�Q�,��j�4�5�{UG������B����m=�>address@hidden;P0E����#�N��z�}
 
�QEQE�)address@hidden@address@hidden@address@hidden@address@hidden@address@hidden@address@hidden@address@hidden@address@hidden@address@hidden@address@hidden@address@hidden@address@hidden@address@hidden@address@hidden@address@hidden@address@hidden@address@hidden@address@hidden@address@hidden@address@hidden@address@hidden@address@hidden@address@hidden@address@hidden@address@hidden@address@hidden@address@hidden
+endstream
+endobj
+92 0 obj
+[/CalRGB
+<</Gamma[1.8008
+1.8008
+1.8008]
+/Matrix[0.4058
+0.2286
+0.0078
+0.346
+0.6645
+0.1305
+0.186
+0.1089
+0.9527]
+/WhitePoint[0.9379
+1
+1.0917]>>]endobj
+91 0 obj
+<</Subtype/Image
+/ColorSpace 92 0 R
+/Width 172
+/Height 130
+/BitsPerComponent 8
+/Filter/DCTDecode/Length 1690>>stream
+����Adobed��C
+
       

$, 
!$4.763.22:ASF:=N>22HbINVX]^]8EfmeZlS[]Y��C**Y;2;YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY����"��
    
+���}!1AQa"q2���#B��R��$3br�    
+%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz���������������������������������������������������������������������������
      
+���w!1AQaq"2�B����      #3R�br�
+$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������
?�}³��=h�P��
Œ���X��cր4r(address@hidden(Ȫj�}�z���2*�ڇ�j�"������Gڇ�_ȣ"address@hidden(Ȫj�}�z���2*�ڇ�(��{4UU��2�hZ)-q?���P��o�'֔\�Z�M����\��>�Ƹ>��
Gޝ���\��>��j>���h�����\�ڏ�j>���h�����\�ڏ�j>���h�����\�ڏ�j>���h�����\�ڏ�j>���h�����\�ڏ�j>���h���P��\�ڏ�K��Z���7�k[˸
+���$�k��|address@hidden)�]*J�M��j���6j74�����.�M�E;address@hidden;address@hidden@��]]�A\���WWa�P�=*Z��-x�=i���
       j7�*7���Gz(��(��(��(��(��(���PT���
�?���à�SO�+���(r�-EJ��<F���z��ԕ�}製QEQEQEQEQET���*xz�ޟ�WWa�W)address@hidden)�(J��LS�"�E��%���R��PQK�1@
       E.(�%���<=jT���
�?���à�Rè��à�
�zT�=*Z�ﳟJQ����{R}��P���[���R}�����җ��Һ��Jw�y��w��ҏ��J迳ϥ��Ҁ9߳�J>�}+���>�g�J�~�}(�9����<�Q��}(��9����Һ/���G�y��w��ҏ��J迳ϥ��Ҁ9߳�J�(address@hidden/Eҥ�
 ���7��'�ǥkyb�,PG�ǥ(�����6
+�cҏ��J��(�(+�cҏ��J��(�(+�cҏ��J��(�(+�cҏ��J��(�(+�cҏ��J��(�(+�cҏ��J��(�(+�cҜ-�i��QKp;U�LT�E.(address@hidden@address@hidden@address@hidden@address@hidden@address@hidden@address@hidden@��
+endstream
+endobj
+94 0 obj
+[/CalRGB
+<</Gamma[1.8008
+1.8008
+1.8008]
+/Matrix[0.4058
+0.2286
+0.0078
+0.346
+0.6645
+0.1305
+0.186
+0.1089
+0.9527]
+/WhitePoint[0.9379
+1
+1.0917]>>]endobj
+93 0 obj
+<</Subtype/Image
+/ColorSpace 94 0 R
+/Width 664
+/Height 130
+/BitsPerComponent 8
+/Filter/DCTDecode/Length 4482>>stream
+����Adobed��C
+
       

$, 
!$4.763.22:ASF:=N>22HbINVX]^]8EfmeZlS[]Y��C**Y;2;YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY����"��
    
+���}!1AQa"q2���#B��R��$3br�    
+%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz���������������������������������������������������������������������������
      
+���w!1AQaq"2�B����      #3R�br�
+$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������

?��(address@hidden(Ȫj�}�z���2*�ڇ�j�"������Gڇ�_ȣ"address@hidden(Ȫj�}�z���2*�ڇ�j�"������Gڇ�_ȣ"address@hidden(Ȫj�}�z���2*�ڇ�j�"������Gڇ�_ȣ"address@hidden(Ȫj�}�z���2*�ڇ�j�"������Gڇ�_ȣ"address@hidden(Ȫj�}�z���2*�ڇ�j�"������Gڇ�_ȣ"address@hidden(Ȫj�}�z���2*�ڇ�j�"������Gڇ�_ȣ"address@hidden(Ȫj�}�z���2*�ڇ�j�"������Gڇ�_ȣ"address@hidden(Ȫj�}�z���2*�ڇ�j�"������Gڇ�_ȣ"address@hidden(Ȫj�}�z���2*�ڇ�j�"������Gڇ�_ȣ"address@hidden(address@hidden(����Y�����P��~���y�
address@hidden>address@hidden>address@hidden>address@hidden>address@hidden>address@hidden>address@hidden>address@hidden>address@hidden>address@hidden>address@hidden>address@hidden>address@hidden>address@hidden>address@hidden>address@hidden>address@hidden>address@hidden>address@hidden>address@hidden>address@hidden>address@hidden>address@hidden>address@hidden>address@hidden>address@hidden>address@hidden>address@hidden>address@hidden>address@hidden>address@hidden>address@hidden>address@hidden>address@hidden>address@hidden>address@hidden>address@hidden@�������W3�˜WClr\��ҊJ�w���Ҩ]�4��g�sWg�].�޹����(��n47Zm;address@hidden;address@hidden;address@hidden;address@hidden;address@hidden;address@hidden;address@hidden;address@hidden;address@hidden"���_��(��J��:
+�t���Zt|t��ҊJ�w���Ҩ]�4��}똻�k����1w���M�7ZmQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQE9z��N��/address@hidden((���}
address@hidden:
+�t���Zt|t��ҊJ�w���Ҩ]�4��}똻�k����3w��{u�ӘsI�J)qF((�����b��\Q�J)qF((�����b��\Q�J)qF((�����b��\Q�J)qF((�����b��\Q�J)qF((�����b��\Q�J)qF((�����b��\Q�J)qF((�����b��\Q�J)qF((�����b��\Q�J)qF((�����b��\Q�U�W�:����д�(��;WMi�W3�v��Ӡ����PzU+��j����Er��y�s�P�O�]����=�'�r����'�ϥtGO9�G�y��w��ҏ��J迳ϥ��Ҁ9߳�J>�}+���>�g�J�~�}(�9����<�Q��}(��9����Һ/���G�y��w��ҏ��J迳ϥ��Ҁ9߳�J>�}+���>�g�J�~�}(�9����<�Q��}(��9����Һ/���G�y��w��ҏ��J迳ϥ��Ҁ9߳�J>�}+���>�g�J�~�}(�9����<�Q��}(��9����Һ/���G�y��w��ҏ��J迳ϥ��Ҁ9߳�J>�}+���>�g�J�~�}(�9����<�Q��}(��9����Һ/���G�y��w��ҏ��J迳ϥ��Ҁ9߳�J>�}+���>�g�J�~�}(�9����<�Q��}(��9����Һ/���G�y��w��ҏ��J迳ϥ��Ҁ9߳�J>�}+���>�g�J�~�}(�9����<�Q��}(��9����Һ/���G�y��w��ҏ��J迳ϥ��Ҁ9߳�J>�}+���>�g�J�~�}(�9����<�Q��}(��9����Һ/���G�y��w��ҏ��J迳ϥ��Ҁ9߳�J>�}+���>�g�J�~�}(�9����<�Q��}(��9����Һ/���G�y��w��ҏ��J迳ϥ��Ҁ9߳�J>�}+���>�g�J�~�}(�9����<�Q��}(��9����Һ/���G�y��x[���ְ�G�4���jJ�N����`
+ʹ�ێ+^���
+(i����PI!�U��է�I�PW�ǥ'�ǥj�l��1�G�ǥj�l��1�G�ǥj�l��1�G�ǥj�l��1�G�ǥj�l��1�G�ǥj�l��1�G�ǥj�l��1�G�ǥj�l��1�G�ǥj�l��1�G�ǥj�l��1�G�ǥj�l��1�G�ǥj�l��1�G�ǥj�l��1�G�ǥj�l��1�G�ǥj�l��1�G�ǥj�l��1�G�ǥj�l��1�G�ǥj�l��1�G�ǥj�l��1�G�ǥj�l��1�G�ǥj�l��1�G�ǥj�l��1�G�ǥj�l��1�G�ǥj�l��1�G�ǥj�l��1�G�ǥj�l��1�G�ǥj�l��1�G�ǥj�l��1�G�ǥj�l��1�G�ǥj�l��1�G�ǥj�l��1�G�ǥj�l��1�G�ǥj�l��1�G�ǥj�l��1�G�ǥj�l��1�G�ǥj�l��1�G�ǥj�l��1�O[P;V��K�PX��VUqN����(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(���
+endstream
+endobj
+96 0 obj
+[/CalRGB
+<</Gamma[1.8008
+1.8008
+1.8008]
+/Matrix[0.4058
+0.2286
+0.0078
+0.346
+0.6645
+0.1305
+0.186
+0.1089
+0.9527]
+/WhitePoint[0.9379
+1
+1.0917]>>]endobj
+95 0 obj
+<</Subtype/Image
+/ColorSpace 96 0 R
+/Width 172
+/Height 130
+/BitsPerComponent 8
+/Filter/DCTDecode/Length 1690>>stream
+����Adobed��C
+
       

$, 
!$4.763.22:ASF:=N>22HbINVX]^]8EfmeZlS[]Y��C**Y;2;YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY����"��
    
+���}!1AQa"q2���#B��R��$3br�    
+%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz���������������������������������������������������������������������������
      
+���w!1AQaq"2�B����      #3R�br�
+$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������
?�}³��=i
���
—"�
���cր4�(Ȭ�v=i~�=h�EC�C֏�Z��FEP�P���Cր/�Q�T>�=h�P���dU�Z>�=h�EC�C֏�Z��FEP�P��#ր/f����ަW�KE
 ��#���Ө{�;���M�I�����
G޹�p}i����N���?�G޹at}i�j>���h�����\�ڏ�j>���h�����\�ڏ�j>���h�����\�ڏ�j>���h�����\�ڏ�j>���h�����\�ڏ�j>���h���P��\�ڏ�K��Z���7�k[˸
+���$�k��|address@hidden)�]*J�=�4�Z��)��Hhv�Q��P�7m�ƍƛE;address@hidden:address@hidden@�4���ޝM�N��(��(��(��(��(����AS�ր6�������M?���à�
�zT�=*Z�Z(hԆ���;ө���QEQEQEQEQET���*xz�ޟ�WWa�W)address@hidden@�K���4�)��ޝI�v((�����b��\Q�J)qF((������P⦇�m��Euvr�Eu�m�ҥ���R��}��S|��]�=����P��SL'ҷ���P,�`��;��ҷ�O>address@hidden>��g�J?�ϥs�g>�}��WE��}(��>�����Q�s�]�y���<�P;address@hidden>��g�J?�ϥs�g>�4P������O���Ҁ
 ���+��\Y�օHⶭ��^��KLA�O�o�Ji�����<address@hidden
+)nj����h��b��(��(��(��(��(��(��(��(��(��(��(��(��
+endstream
+endobj
+98 0 obj
+[/CalRGB
+<</Gamma[1.8008
+1.8008
+1.8008]
+/Matrix[0.4058
+0.2286
+0.0078
+0.346
+0.6645
+0.1305
+0.186
+0.1089
+0.9527]
+/WhitePoint[0.9379
+1
+1.0917]>>]endobj
+97 0 obj
+<</Subtype/Image
+/ColorSpace 98 0 R
+/Width 206
+/Height 130
+/BitsPerComponent 8
+/Filter/DCTDecode/Length 1924>>stream
+����Adobed��C
+
       

$, 
!$4.763.22:ASF:=N>22HbINVX]^]8EfmeZlS[]Y��C**Y;2;YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY����"��
    
+���}!1AQa"q2���#B��R��$3br�    
+%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz���������������������������������������������������������������������������
      
+���w!1AQaq"2�B����      #3R�br�
+$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������

?��(address@hidden(Ȫj�}�z���2*�ڇ�j�"������Gڇ�_ȣ"address@hidden(Ȫj�}�z���2*�ڇ�j�"������Gڇ�_ȣ"address@hidden(address@hidden&hj)�-%A+�T��S�8�(����Y�����P��~���y�
address@hidden>address@hidden>address@hidden>address@hidden>address@hidden>address@hidden>address@hidden>address@hidden<��_�G֞�G=h���q�Z�����K�H��K
   2o��-W��
address@hidden<��u>��]�4E���q���hۍ�6�v�F�M���Ѹ�h�n4n4�(address@hidden@�6��i�QEQEQEQEQEQEQET����H����Q]V��W+e�WU�����j���j���}
address@hidden@�]EuZoA\��Q]V��PCo�U��o�U�CҨ]�5|��}
s:�z�.����>����4��i���b��\Q�J)qF((�����b��\Q�J)qF((����#�L�>address@hidden
�AV���AV�J�t2
]5^uȠ_Q�9�r�I��K�}���'�$��Pۜ���9�����=(��>�����Q�s�]�y���<�P;address@hidden>��g�J?�ϥs�g>�}��WE��}(��>�����Q�s�]�y���<�P;address@hidden>��g�J?�ϥs�g>address@hidden;��Z�ڴ�)6��������]����2��=(���]����2��=(���]����2��=(���]����2��=(���]����2��=(���]����2��=(���]����2��=(���]����2��=)E���M����(%���qb��)address@hidden(��(��(��(��(��(��(��(��(��(��(��(��(��(���
+endstream
+endobj
+100 0 obj
+[/CalRGB
+<</Gamma[1.8008
+1.8008
+1.8008]
+/Matrix[0.4058
+0.2286
+0.0078
+0.346
+0.6645
+0.1305
+0.186
+0.1089
+0.9527]
+/WhitePoint[0.9379
+1
+1.0917]>>]endobj
+99 0 obj
+<</Subtype/Image
+/ColorSpace 100 0 R
+/Width 206
+/Height 130
+/BitsPerComponent 8
+/Filter/DCTDecode/Length 1924>>stream
+����Adobed��C
+
       

$, 
!$4.763.22:ASF:=N>22HbINVX]^]8EfmeZlS[]Y��C**Y;2;YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY����"��
    
+���}!1AQa"q2���#B��R��$3br�    
+%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz���������������������������������������������������������������������������
      
+���w!1AQaq"2�B����      #3R�br�
+$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������

?��(address@hidden(Ȫj�}�z���2*�ڇ�j�"������Gڇ�_ȣ"address@hidden(Ȫj�}�z���2*�ڇ�j�"������Gڇ�_ȣ"address@hidden(address@hidden&hj)�-%A+�T��S�8�(����Y�����P��~���y�
address@hidden>address@hidden>address@hidden>address@hidden>address@hidden>address@hidden>address@hidden>address@hidden<��_�G֞�G=h���q�Z�����K�H��K
   2o��-W��
address@hidden<��u>��]�4E���q���hۍ�6�v�F�M���Ѹ�h�n4n4�(address@hidden@�6��i�QEQEQEQEQEQEQET����H����Q]V��W+e�WU�����j���j���}
address@hidden@�]EuZoA\��Q]V��PCo�U��o�U�CҨ]�5|��}
s:�z�.����>����4��i���b��\Q�J)qF((�����b��\Q�J)qF((����#�L�>address@hidden
�AV���AV�J�t2
]5^uȠ_Q�9�r�I��K�}���'�$��Pۜ���9�����=(��>�����Q�s�]�y���<�P;address@hidden>��g�J?�ϥs�g>�}��WE��}(��>�����Q�s�]�y���<�P;address@hidden>��g�J?�ϥs�g>address@hidden;��Z�ڴ�)6��������]����2��=(���]����2��=(���]����2��=(���]����2��=(���]����2��=(���]����2��=(���]����2��=(���]����2��=)E���M����(%���qb��)address@hidden(��(��(��(��(��(��(��(��(��(��(��(��(��(���
+endstream
+endobj
+102 0 obj
+[/CalRGB
+<</Gamma[1.8008
+1.8008
+1.8008]
+/Matrix[0.4058
+0.2286
+0.0078
+0.346
+0.6645
+0.1305
+0.186
+0.1089
+0.9527]
+/WhitePoint[0.9379
+1
+1.0917]>>]endobj
+101 0 obj
+<</Subtype/Image
+/ColorSpace 102 0 R
+/Width 206
+/Height 130
+/BitsPerComponent 8
+/Filter/DCTDecode/Length 1996>>stream
+����Adobed��C
+
       

$, 
!$4.763.22:ASF:=N>22HbINVX]^]8EfmeZlS[]Y��C**Y;2;YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY����"��
    
+���}!1AQa"q2���#B��R��$3br�    
+%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz���������������������������������������������������������������������������
      
+���w!1AQaq"2�B����      #3R�br�
+$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������
?�%�JK�;�wr�ú��<��^�ZO�Z�d� 
�}h��x����ֹ��G�������֏��Z�?�O��'ր:���Z>�=k���>�h�Z���=h�x��C�D����}h��x����ֹ��G�������֏��Z�?�O��'ր:���Z>�=k���>�h�Z���=iE���?�D�Ү�sր;D��\������d��{K�������k&address@hidden/})�K��5�_�Mf�9�Z��'֙;sU���O�i>�C}���O�i>�C}���O�i>�C}���O�i>�C}���O�i>�C}���O�i>�C}���O�i>�C}���O�(�>����=l�tA�Z�w�#�壓~�b����8���gܢ�K
     �G5�i�eEt�EKU�9�P'��5��MuڏC\����
�Z��v��Rz��(��(��(��(��(��(��(��RP(T5rȪIW 
�({O<��4�������+��>���ߠ�UVߠ�T��=
r:�S]v���#�u4�q֩=]��T��#��(��(��(��(��(��(��(address@hidden      
�A�U4��u����]���Eq���i�tPEo�U��o�U�����C���Q�k��:address@hidden(�P�W 
�*�U�:�������L����?�
+�4Ϻ(���*�U��*�r���k����k{A�f�ߓ�r7�Rq[Wp`�͖<�E��Q��!���Q��!���Q��!���Q��!���Q��!���Q��!���Q��!�T�(�@
AW �
+�j��6t���
3���l"��3���m�
+�Um�
address@hidden|���l��X���+���ݞ+*m8�Ҁ8�jsҏ��J�N�s�h��?ݠ[��ҏ��J���h��?ݠ[��ҏ��J���h��?ݠ[��ҏ��J���h��?ݠ[��ҏ��J���h��?ݠ[��ҏ��J���h��?ݠ[��ҏ��J���h��?ݠ[��ҏ��J���h��?ݠ`Z�J�+c��Ѝ0�v��q�R���8��NLT�����mZC�(F�`
+�P�0*j)����PI!
ګ��=�O�h����J>�=+W`�`����J>�=+W`�`����J>�=+W`�`����J>�=+W`�`�
���J>�=+W`�`����J>�=+W`�`����J>�=+W`�`����J>�=+W`�`����JQf=+S`�`�
+       lj�X���\P(�:�(��(��(��(��(��(��(��(��(��(��(��(��(��(��
+endstream
+endobj
+104 0 obj
+[/CalRGB
+<</Gamma[1.8008
+1.8008
+1.8008]
+/Matrix[0.4058
+0.2286
+0.0078
+0.346
+0.6645
+0.1305
+0.186
+0.1089
+0.9527]
+/WhitePoint[0.9379
+1
+1.0917]>>]endobj
+103 0 obj
+<</Subtype/Image
+/ColorSpace 104 0 R
+/Width 206
+/Height 130
+/BitsPerComponent 8
+/Filter/DCTDecode/Length 1909>>stream
+����Adobed��C
+
       

$, 
!$4.763.22:ASF:=N>22HbINVX]^]8EfmeZlS[]Y��C**Y;2;YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY����"��
    
+���}!1AQa"q2���#B��R��$3br�    
+%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz���������������������������������������������������������������������������
      
+���w!1AQaq"2�B����      #3R�br�
+$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������
?¸�橵���\�MPv��,���G�O�P/I��4>�}h�I����o�
��Z>�}k?}�C�'֏��Z��F���I���'ֳ�Ѿ�4>�}h�I����o�
��Z>�}k?}�C�'ցr}k?}�^+����iy�ֹ���A>
w6w��5�gs�k����G5�i�}9��'U�ұ�n3�kJ92(z)�-xe�SY�к�k:J��74�L&��3L�����3Fh��4�њ~h�34f��3L�����3Fh��u34f�%
SF������������c���|V����wVW��5�ZO�Ep���k�Ӥʊ�#l����rX�
��k:JѺ�k:J���Oja���(��(��(��(��(��(��(E8SE8P�j���U���Eo���]��~Q\v���vg��[�j���j�<2멬�+F멬�(�S
=����(��(��(��(��(��(��(address@hidden>��?O�»
3�����
+�Um�
address@hidden&�%�Cyny�����3�Tf�:��"�E;b�E;b�E;b�E;b�E;b�E;b�E;b�S�&)�P�W�����v߭n��xWa�}�\~���vg��[�j���j�<��˯�����+Ю�2�{c׊ᧃ�<x����nx�����
ݔ�*ً�<�����oʣʠ
+�(�V��<�����oʣʠ
+�(�V��<�����oʣʠ
+�(�V��<����-Y��DT-[�sLX��+�li��]~��ErV�]v�>address@hidden
�AV���AV���
d���Fj��dPi׊¸�9<Wwwi�<VD�y'�q����'�O�uM9��f���/�S�G�O�u٧��f���/�S�G�O�u٧��f���/�S�G�O�u٧��f���/�S�G�O�u٧��f���/�S�G�O�u٧��f���/�S�G�O�u٧��f���/�S�K�S�]?�i��٧��̋S�R�lsҺ����ri��F�⺍=0S��*G�i�8�
address@hidden&address@hidden(����Q�P��Y�,T�E.(b�EQEQEQEQEQEQEQEQEQEQEQEQEQE��
+endstream
+endobj
+106 0 obj
+[/CalRGB
+<</Gamma[1.8008
+1.8008
+1.8008]
+/Matrix[0.4058
+0.2286
+0.0078
+0.346
+0.6645
+0.1305
+0.186
+0.1089
+0.9527]
+/WhitePoint[0.9379
+1
+1.0917]>>]endobj
+105 0 obj
+<</Subtype/Image
+/ColorSpace 106 0 R
+/Width 206
+/Height 130
+/BitsPerComponent 8
+/Filter/DCTDecode/Length 1996>>stream
+����Adobed��C
+
       

$, 
!$4.763.22:ASF:=N>22HbINVX]^]8EfmeZlS[]Y��C**Y;2;YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY����"��
    
+���}!1AQa"q2���#B��R��$3br�    
+%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz���������������������������������������������������������������������������
      
+���w!1AQaq"2�B����      #3R�br�
+$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������
?�%�JK�;�wr�ú��<��^�ZO�Z�d� 
�}h��x����ֹ��G�������֏��Z�?�O��'ր:���Z>�=k���>�h�Z���=h�x��C�D����}h��x����ֹ��G�������֏��Z�?�O��'ր:���Z>�=k���>�h�Z���=iE���?�D�Ү�sր;D��\������d��{K�������k&address@hidden/})�K��5�_�Mf�9�Z��'֙;sU���O�i>�C}���O�i>�C}���O�i>�C}���O�i>�C}���O�i>�C}���O�i>�C}���O�i>�C}���O�(�>����=l�tA�Z�w�#�壓~�b����8���gܢ�K
     �G5�i�eEt�EKU�9�P'��5��MuڏC\����
�Z��v��Rz��(��(��(��(��(��(��(��RP(T5rȪIW 
�({O<��4�������+��>���ߠ�UVߠ�T��=
r:�S]v���#�u4�q֩=]��T��#��(��(��(��(��(��(��(address@hidden      
�A�U4��u����]���Eq���i�tPEo�U��o�U�����C���Q�k��:address@hidden(�P�W 
�*�U�:�������L����?�
+�4Ϻ(���*�U��*�r���k����k{A�f�ߓ�r7�Rq[Wp`�͖<�E��Q��!���Q��!���Q��!���Q��!���Q��!���Q��!���Q��!�T�(�@
AW �
+�j��6t���
3���l"��3���m�
+�Um�
address@hidden|���l��X���+���ݞ+*m8�Ҁ8�jsҏ��J�N�s�h��?ݠ[��ҏ��J���h��?ݠ[��ҏ��J���h��?ݠ[��ҏ��J���h��?ݠ[��ҏ��J���h��?ݠ[��ҏ��J���h��?ݠ[��ҏ��J���h��?ݠ[��ҏ��J���h��?ݠ`Z�J�+c��Ѝ0�v��q�R���8��NLT�����mZC�(F�`
+�P�0*j)����PI!
ګ��=�O�h����J>�=+W`�`����J>�=+W`�`����J>�=+W`�`����J>�=+W`�`�
���J>�=+W`�`����J>�=+W`�`����J>�=+W`�`����J>�=+W`�`����JQf=+S`�`�
+       lj�X���\P(�:�(��(��(��(��(��(��(��(��(��(��(��(��(��(��
+endstream
+endobj
+108 0 obj
+[/CalRGB
+<</Gamma[1.8008
+1.8008
+1.8008]
+/Matrix[0.4058
+0.2286
+0.0078
+0.346
+0.6645
+0.1305
+0.186
+0.1089
+0.9527]
+/WhitePoint[0.9379
+1
+1.0917]>>]endobj
+107 0 obj
+<</Subtype/Image
+/ColorSpace 108 0 R
+/Width 206
+/Height 130
+/BitsPerComponent 8
+/Filter/DCTDecode/Length 1909>>stream
+����Adobed��C
+
       

$, 
!$4.763.22:ASF:=N>22HbINVX]^]8EfmeZlS[]Y��C**Y;2;YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY����"��
    
+���}!1AQa"q2���#B��R��$3br�    
+%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz���������������������������������������������������������������������������
      
+���w!1AQaq"2�B����      #3R�br�
+$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������
?¸�橵���\�MPv��,���G�O�P/I��4>�}h�I����o�
��Z>�}k?}�C�'֏��Z��F���I���'ֳ�Ѿ�4>�}h�I����o�
��Z>�}k?}�C�'ցr}k?}�^+����iy�ֹ���A>
w6w��5�gs�k����G5�i�}9��'U�ұ�n3�kJ92(z)�-xe�SY�к�k:J��74�L&��3L�����3Fh��4�њ~h�34f��3L�����3Fh��u34f�%
SF������������c���|V����wVW��5�ZO�Ep���k�Ӥʊ�#l����rX�
��k:JѺ�k:J���Oja���(��(��(��(��(��(��(E8SE8P�j���U���Eo���]��~Q\v���vg��[�j���j�<2멬�+F멬�(�S
=����(��(��(��(��(��(��(address@hidden>��?O�»
3�����
+�Um�
address@hidden&�%�Cyny�����3�Tf�:��"�E;b�E;b�E;b�E;b�E;b�E;b�E;b�S�&)�P�W�����v߭n��xWa�}�\~���vg��[�j���j�<��˯�����+Ю�2�{c׊ᧃ�<x����nx�����
ݔ�*ً�<�����oʣʠ
+�(�V��<�����oʣʠ
+�(�V��<�����oʣʠ
+�(�V��<����-Y��DT-[�sLX��+�li��]~��ErV�]v�>address@hidden
�AV���AV���
d���Fj��dPi׊¸�9<Wwwi�<VD�y'�q����'�O�uM9��f���/�S�G�O�u٧��f���/�S�G�O�u٧��f���/�S�G�O�u٧��f���/�S�G�O�u٧��f���/�S�G�O�u٧��f���/�S�G�O�u٧��f���/�S�K�S�]?�i��٧��̋S�R�lsҺ����ri��F�⺍=0S��*G�i�8�
address@hidden&address@hidden(����Q�P��Y�,T�E.(b�EQEQEQEQEQEQEQEQEQEQEQEQEQE��
+endstream
+endobj
+110 0 obj
+[/CalRGB
+<</Gamma[1.8008
+1.8008
+1.8008]
+/Matrix[0.4058
+0.2286
+0.0078
+0.346
+0.6645
+0.1305
+0.186
+0.1089
+0.9527]
+/WhitePoint[0.9379
+1
+1.0917]>>]endobj
+109 0 obj
+<</Subtype/Image
+/ColorSpace 110 0 R
+/Width 206
+/Height 130
+/BitsPerComponent 8
+/Filter/DCTDecode/Length 1924>>stream
+����Adobed��C
+
       

$, 
!$4.763.22:ASF:=N>22HbINVX]^]8EfmeZlS[]Y��C**Y;2;YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY����"��
    
+���}!1AQa"q2���#B��R��$3br�    
+%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz���������������������������������������������������������������������������
      
+���w!1AQaq"2�B����      #3R�br�
+$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������

?��(address@hidden(Ȫj�}�z���2*�ڇ�j�"������Gڇ�_ȣ"address@hidden(Ȫj�}�z���2*�ڇ�j�"������Gڇ�_ȣ"address@hidden(address@hidden&hj)�-%A+�T��S�8�(����Y�����P��~���y�
address@hidden>address@hidden>address@hidden>address@hidden>address@hidden>address@hidden>address@hidden>address@hidden<��_�G֞�G=h���q�Z�����K�H��K
   2o��-W��
address@hidden<��u>��]�4E���q���hۍ�6�v�F�M���Ѹ�h�n4n4�(address@hidden@�6��i�QEQEQEQEQEQEQET����H����Q]V��W+e�WU�����j���j���}
address@hidden@�]EuZoA\��Q]V��PCo�U��o�U�CҨ]�5|��}
s:�z�.����>����4��i���b��\Q�J)qF((�����b��\Q�J)qF((����#�L�>address@hidden
�AV���AV�J�t2
]5^uȠ_Q�9�r�I��K�}���'�$��Pۜ���9�����=(��>�����Q�s�]�y���<�P;address@hidden>��g�J?�ϥs�g>�}��WE��}(��>�����Q�s�]�y���<�P;address@hidden>��g�J?�ϥs�g>address@hidden;��Z�ڴ�)6��������]����2��=(���]����2��=(���]����2��=(���]����2��=(���]����2��=(���]����2��=(���]����2��=(���]����2��=)E���M����(%���qb��)address@hidden(��(��(��(��(��(��(��(��(��(��(��(��(��(���
+endstream
+endobj
+112 0 obj
+[/CalRGB
+<</Gamma[1.8008
+1.8008
+1.8008]
+/Matrix[0.4058
+0.2286
+0.0078
+0.346
+0.6645
+0.1305
+0.186
+0.1089
+0.9527]
+/WhitePoint[0.9379
+1
+1.0917]>>]endobj
+111 0 obj
+<</Subtype/Image
+/ColorSpace 112 0 R
+/Width 206
+/Height 130
+/BitsPerComponent 8
+/Filter/DCTDecode/Length 1924>>stream
+����Adobed��C
+
       

$, 
!$4.763.22:ASF:=N>22HbINVX]^]8EfmeZlS[]Y��C**Y;2;YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY����"��
    
+���}!1AQa"q2���#B��R��$3br�    
+%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz���������������������������������������������������������������������������
      
+���w!1AQaq"2�B����      #3R�br�
+$4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz��������������������������������������������������������������������������

?��(address@hidden(Ȫj�}�z���2*�ڇ�j�"������Gڇ�_ȣ"address@hidden(Ȫj�}�z���2*�ڇ�j�"������Gڇ�_ȣ"address@hidden(address@hidden&hj)�-%A+�T��S�8�(����Y�����P��~���y�
address@hidden>address@hidden>address@hidden>address@hidden>address@hidden>address@hidden>address@hidden>address@hidden<��_�G֞�G=h���q�Z�����K�H��K
   2o��-W��
address@hidden<��u>��]�4E���q���hۍ�6�v�F�M���Ѹ�h�n4n4�(address@hidden@�6��i�QEQEQEQEQEQEQET����H����Q]V��W+e�WU�����j���j���}
address@hidden@�]EuZoA\��Q]V��PCo�U��o�U�CҨ]�5|��}
s:�z�.����>����4��i���b��\Q�J)qF((�����b��\Q�J)qF((����#�L�>address@hidden
�AV���AV�J�t2
]5^uȠ_Q�9�r�I��K�}���'�$��Pۜ���9�����=(��>�����Q�s�]�y���<�P;address@hidden>��g�J?�ϥs�g>�}��WE��}(��>�����Q�s�]�y���<�P;address@hidden>��g�J?�ϥs�g>address@hidden;��Z�ڴ�)6��������]����2��=(���]����2��=(���]����2��=(���]����2��=(���]����2��=(���]����2��=(���]����2��=(���]����2��=)E���M����(%���qb��)address@hidden(��(��(��(��(��(��(��(��(��(��(��(��(��(���
+endstream
+endobj
+120 0 obj
+<</Type/FontDescriptor/FontName/GIYXZS+LucidaGrande/FontBBox[54 -204 641 
783]/Flags 4
+/Ascent 783
+/CapHeight 783
+/Descent -204
+/ItalicAngle 0
+/StemV 96
+/MissingWidth 750
+/FontFile2 119 0 R>>
+endobj
+114 0 obj
+<</Type/FontDescriptor/FontName/PNHYKQ+Helvetica/FontBBox[5 -214 768 
736]/Flags 4
+/Ascent 736
+/CapHeight 736
+/Descent -214
+/ItalicAngle 0
+/StemV 115
+/MissingWidth 722
+/FontFile2 113 0 R>>
+endobj
+117 0 obj
+<</Type/FontDescriptor/FontName/EKSQRI+Helvetica-Oblique/FontBBox[31 0 683 
717]/Flags 4
+/Ascent 717
+/CapHeight 717
+/Descent 0
+/ItalicAngle 0
+/StemV 102
+/MissingWidth 722
+/FontFile2 116 0 R>>
+endobj
+122 0 obj
+<</R112
+112 0 R/R110
+110 0 R/R108
+108 0 R/R106
+106 0 R/R104
+104 0 R/R102
+102 0 R/R100
+100 0 R/R98
+98 0 R/R96
+96 0 R/R94
+94 0 R/R92
+92 0 R/R90
+90 0 R>>
+endobj
+123 0 obj
+<</R111
+111 0 R/R109
+109 0 R/R107
+107 0 R/R105
+105 0 R/R103
+103 0 R/R101
+101 0 R/R99
+99 0 R/R97
+97 0 R/R95
+95 0 R/R93
+93 0 R/R91
+91 0 R/R89
+89 0 R>>
+endobj
+124 0 obj
+<</R34
+34 0 R/R67
+67 0 R/R118
+118 0 R/R64
+64 0 R/R27
+27 0 R/R121
+121 0 R/R57
+57 0 R/R18
+18 0 R/R17
+17 0 R/R53
+53 0 R/R50
+50 0 R/R15
+15 0 R/R44
+44 0 R/R11
+11 0 R/R41
+41 0 R/R10
+10 0 R/R40
+40 0 R/R115
+115 0 R>>
+endobj
+128 0 obj
+<</R34
+34 0 R/R67
+67 0 R/R31
+31 0 R/R64
+64 0 R/R27
+27 0 R/R18
+18 0 R/R56
+56 0 R/R17
+17 0 R/R53
+53 0 R/R16
+16 0 R/R50
+50 0 R/R44
+44 0 R/R41
+41 0 R/R40
+40 0 R/R74
+74 0 R/R37
+37 0 R>>
+endobj
+132 0 obj
+<</R34
+34 0 R/R67
+67 0 R/R27
+27 0 R/R57
+57 0 R/R18
+18 0 R/R56
+56 0 R/R17
+17 0 R/R53
+53 0 R/R50
+50 0 R/R83
+83 0 R/R44
+44 0 R/R40
+40 0 R/R37
+37 0 R/R74
+74 0 R>>
+endobj
+154 0 obj
+<</R34
+34 0 R/R67
+67 0 R/R31
+31 0 R/R27
+27 0 R/R153
+153 0 R/R150
+150 0 R/R147
+147 0 R/R57
+57 0 R/R18
+18 0 R/R56
+56 0 R/R144
+144 0 R/R17
+17 0 R/R53
+53 0 R/R141
+141 0 R/R50
+50 0 R/R138
+138 0 R/R84
+84 0 R/R44
+44 0 R/R41
+41 0 R/R80
+80 0 R/R40
+40 0 R/R74
+74 0 R>>
+endobj
+158 0 obj
+<</R34
+34 0 R/R31
+31 0 R/R27
+27 0 R/R147
+147 0 R/R57
+57 0 R/R18
+18 0 R/R56
+56 0 R/R17
+17 0 R/R53
+53 0 R/R50
+50 0 R/R138
+138 0 R/R84
+84 0 R/R80
+80 0 R/R41
+41 0 R/R40
+40 0 R/R37
+37 0 R/R74
+74 0 R>>
+endobj
+164 0 obj
+<</R163
+163 0 R/R18
+18 0 R/R17
+17 0 R/R16
+16 0 R>>
+endobj
+168 0 obj
+<</R163
+163 0 R/R18
+18 0 R/R17
+17 0 R>>
+endobj
+172 0 obj
+<</R34
+34 0 R/R27
+27 0 R/R163
+163 0 R/R18
+18 0 R/R17
+17 0 R/R53
+53 0 R/R50
+50 0 R/R138
+138 0 R/R16
+16 0 R/R40
+40 0 R/R74
+74 0 R>>
+endobj
+176 0 obj
+<</R34
+34 0 R/R27
+27 0 R/R57
+57 0 R/R18
+18 0 R/R53
+53 0 R/R17
+17 0 R/R50
+50 0 R/R16
+16 0 R/R138
+138 0 R/R40
+40 0 R/R74
+74 0 R>>
+endobj
+189 0 obj
+<</R34
+34 0 R/R182
+182 0 R/R27
+27 0 R/R153
+153 0 R/R57
+57 0 R/R144
+144 0 R/R56
+56 0 R/R18
+18 0 R/R17
+17 0 R/R141
+141 0 R/R53
+53 0 R/R50
+50 0 R/R138
+138 0 R/R83
+83 0 R/R40
+40 0 R/R188
+188 0 R/R74
+74 0 R/R185
+185 0 R>>
+endobj
+193 0 obj
+<</R34
+34 0 R/R27
+27 0 R/R17
+17 0 R/R53
+53 0 R/R141
+141 0 R/R50
+50 0 R/R138
+138 0 R/R83
+83 0 R/R40
+40 0 R/R74
+74 0 R>>
+endobj
+26 0 obj
+<</Type/FontDescriptor/FontName/KICTLL+CMSY10/FontBBox[-29 -250 978 775]/Flags 
4
+/Ascent 775
+/CapHeight 775
+/Descent -250
+/ItalicAngle 0
+/StemV 146
+/CharSet(/minus/periodcentered/multiply/plusminus/bullet/equivalence/lessequal/greaterequal/arrowleft/arrowright/similarequal/element/negationslash/A/B/C/E/H/N/O/R/S/U/braceleft/braceright/angbracketleft/angbracketright/section)
+/FontFile3 25 0 R>>
+endobj
+25 0 obj
+<</Subtype/Type1C/Filter/FlateDecode/Length 194 0 R>>stream
+x�}V   
address@hidden>�$��֞����s�}���������?���G�4�~]��D�&$-��{#�~Es�����7=�v�ɿsz�̟q3�G��Qo�M��=��B
     ζ�ӿ�.,�*���.�=[�`ɒŢU�⒜]�����lq~z)���
+w��K���V���6�,$��b���\�1�?�0���T\"�-����%qqYz^V�8��������R2�)'��]����Š<qf��`�$'?'/address@hidden;K�w��K�
��ƭ(J>}��w���ܘ�vs%���ǧ^,|^4sVTvN��6�Q�ک��{?�<@��G�ц�4\�MF��z�
+��S/QT$5���2�*�*�R�n���Gh��h#m�ʹ���6�N� 
����St�_��9�[�[��������b�?fsb�����G_
��N�6��Tfj�ԁ������������a��Cs�Gx�=�D`�q�X*])��c�
�9��h�e��V*����%T[5M�h1p�paddress@hidden&5TAI�V/�6ht��
FO,T�ℍxJ8���'�������'�6=耑�o/N9�14|�>
address@hidden
�Q����F���8>$W������,�/�~�9����!��       FƦ7)����"�
��NK�AV6[�_�Z���V%��P�!�Yn}����B��ۇ����I��<8p�K��I�䊲����
+(g4F���i�V�owc�a���3����      
��Q�$)�J;���L��u����8��o�}�򶣫�pp��i��'�Gֈ���
+���2wKж^���N��#?}��<�����~>�~݋�C--����o����C=Ӭ)���fG[�V�,_��&����z`�r?/�c*
+�4+�����M
+��j����`���` I�sb��R 
B�kO��b��SS�\�s}O���������>�6�/�xҌH����iA�����US�Q��v�ٛ���ʊ(��vt����7.�#0��d{ԕr�P!�������,X��r���Ě����]��H";��N�~x���7�9���a6�_�d
address@hiddenN�^D4��wr�7�•���/0S�z�ڒ�H�1j�����F���d�{:ε��u����s��
+�+���p:�Ǣeh
+�����_Xoom'cS�v7>������� 
IV����/�J��#�D�X�~��p)�1�?I~�^G�D�|Dv��؝�J�Y�r���a4EX���������x�]�t1퍈F��ۺ�{5r���k�*��
+���\���#��_!���g^���'��{��hI�oF���۲!��ja�~w(���~u��68w�e`P�G�m�X5骝�Š���t��7�n�\��I��WG�a��x�9sބ�Qlj����:0��$wgZ]��CM�Q��vQ�$^�ˋI�
7n������t���ST�i���Aل�ɨH�0j�Ʀu���Yџ�BAh1�'���Ѷ���4��s�a���������`'�Vy�]2H��F')B
+h꬯of��������=;I�a����٘Yv{ׅ���)�Ħ.��Ö}t�
]>^cT��at�
��6�   ��ѷ������[����!��[�����!�ƨ��+e{؊�J�^��)�`R��q�
ME�g��H�"5˪3���
�9��r�W�:�[���FV+�Oه���3�s`g�K���k1s(g'o�3灖�w�9j�-߸gc�*����6���κ����5��q^|�hB$0rw��
 
.^�|���z����,�:�J)-Q�z��H�#��&����l��x���W�#V8��{�0����s�-��\��^��z�;Ih��)��eF�,�ů����ﻟ~�|�
+Ыl��tq6��Ӕ����!���ZU�J��UNh��Gы
'       h�t�y��6��6.���<��Pp�;x
އG3O�y��ɿ�K=7?�='M���zR��Ly����i��w���w�_�N��Ǯ.�����O��(�'���赹[ϖ�]FG342�=�je�67���;_^�y����؜fAM䉯?=y~�ዔ�˓��
          <����=
���&dtK:
+
+$���IwwGG7�����evp9��C��+�       m�--��-uf3XW-�f-L�ֳx}̅��š���-�R
++8
�!�H9�b�����s�C��j㶃˩E�p�%�����E��Ϡ9�g�ν��we�P�A�����=�����������"
�Q�D_F~���?}�v����>�}W�����i����( ���{��TG�IN���`�5�tlE����q`��B�
�h(��TU�J��jZ-�����t���E$��Ե��a߾̌�V眈)���GD
+��WB^.և���E�h;Jv��F�Os)�Z�V�dq2yRP�ܥ7��4�B)�5kJ!�N���
+���ir��i7].%���TX�����;\v�Q�N8�A�5�N��]�qs�u��7���S     
5B܋z��୨���}5�PQ�
+
Bԇ�p���{���x�g�D�x�����屣�6�؇g�y^��3��5���i��I���N>��rv�<nTh�Z�;
dN�C˝Í�.�����[e�Y�cm�Ο��U<�'�
�k*�������N��^iVX�΢�н�rr�R.����B�
׍�c�R;B�P��F��X�N�_��xw
Ʃx�ǝ�&���h:
+|���~����8��f�/Ea8-��g�#�X8����_�9DB��h����� 
��y���F!����g�>�K��A��h�I�c�M/"���q        �����"�?8��
�}NJ��֤���Z=+�΍��,W�
��Eo�~�qd��x�Ҩqc���ݟ���cG�!Ǯܴ�5�e�v��m���l���[�N���:���i2�x�=�Co����)k�^�d�����m!>�c���^�`C̭���*�N*3�ڥk��
q�8 �Yw&i`0���FJl�6��cZ����E�g3��_O:�q��^��+�S0'������ 
��}�S��7:et����#�$��kj�L͎m��R�z�NSY�68�V��taZ���T��      
������d��M:address@hidden
������B�      ��p4��q��5�?Q���g���]ov��lPY���6>��La'-�L�<�8u*E�?     
�
+endstream
+endobj
+194 0 obj
+3317
+endobj
+36 0 obj
+<</Type/FontDescriptor/FontName/UUBTXF+CMTT10/FontBBox[-4 -229 537 612]/Flags 4
+/Ascent 612
+/CapHeight 612
+/Descent -229
+/ItalicAngle 0
+/StemV 80
+/MissingWidth 525
+/CharSet(/a/c/d/e/g/h/i/k/l/m/n/o/p/q/r/s/t/u/w/x/y)
+/FontFile3 35 0 R>>
+endobj
+35 0 obj
+<</Subtype/Type1C/Filter/FlateDecode/Length 195 0 R>>stream
+x��VyTSW!�������G���(
+�V�c�U*:�(R0�$�    
address@hidden@X�w\�.�������VGgƙ{�c^�x�Y��?��{߽�o���9;a,address@hidden:k�C7(�׸B����
+^�Y�$E)�r���s������O�(��%������89���Kⅉr����H�f}C��(K��'&�v
��S���R�PIB�4�0R�/IHIL��e�0-)C�cX4����a�`,
��`�Z,�6a��(,�Ƕ`��)�t�3�aqY[Y�N��8}�^���p��Tr^�����7�L��e�ˀE?��G
+���Ī��m���d+^e�m2�E#<[
+ĢFPM�$��Y�,M/�����
+�<a�4�;�Y2 address@hidden(��A��'G��/�.���� 
���d*S�:�{^���*4s`�}����fa�����L&�AU<address@hidden(#�;T�l�[�X����:�rM�P���[d�_�X�
e�l�N�"�ɠ(kwIF!U�����e�?�5B.��;�i��N��F]M��oA�݀f}��=�� 
����vlj0�-|("�$Ͽ"g��9MB�g�tz��Q(-%�B�<����
+Y���gka�7L�crc�` address@hidden
���֚
+Tt���VtX�.J�8��e׎��3�c!⡉������#
����1�Wn�9���z�W=�V 
��[���`��\kȫW.^�}��C��������\����퀀���At�~��g1J�����R�M|�0o���2܆Ԭ^8����ɶ��᤮tB��h
+�1�� ��BN;��`%GY�WQH�EE�K�/�=���P��ځ�_���OZ�>a��


w�����H���h
+r�3�������������‡��CH�E�����?z�o�{�Ԫ��ʅ��0����SP
+דO�>��)��&�}}us}���Q�*�E�<sw�3�d7�=Է¾�Z�ʊS*Ȧ�
address@hidden'O^������bc7�^��䨼�n
address@hidden@�4T�4(�"��K����
+A�6@,
+�]��fW���!,/+?M<address@hidden(ؗ
address@hidden>��0Ǣk�<�'k����iCu9� 
䀥������ō�1�$2M彂��!R��(��O֬�Lj���g�jũe�:s_f 
>�z�̭��XUXB��b��a�c�����*�����nΦ;w�Z�5��)����"��A/�fiky������_,12j�n���?�K�O�x�k(�ؖO�i�p=��{��/��dӰ!n��^ς����̆R&��r��]~��8=��������^�������@'�U��I�����b�`�G�z����2����g�Aڤ8�Ne���t�ԇƏL¬���8署�8��IZ�D�O3�z#5�X}�
   
��?���$��c`���XB&��V�&�l�`�/�E帇Y6��}��9j:8���Ć]�\�+�r>wp���F���2��_����}��V��:address@hidden
��2=���o�D.����ZP :AY�FOAcQ�Xp#�s�?��� �)oU�tX�wP�|�I/address@hidden
Eܛ�ߡ����b]Vc���SM�Cju�>��(�_.�i���n��|address@hidden
+��Wh%YJB��t������R�������+N��ц�I�XǠ�h"Zʉ�?�.��Ӂ�~]�+G�6´�}�x�!�/_�c�?��Ȳ�!KZ3�I6���4���Ӈ�xh�K:��p5��3�}��A�B!W1�w�)��%{�����9
   *�CR�$�J�FLȫ��
+^�#�A�i�y,5�Y)�b7�<n<��L%M�
+endstream
+endobj
+195 0 obj
+2159
+endobj
+33 0 obj
+<</Type/FontDescriptor/FontName/URWYVG+CMR10/FontBBox[12 -250 813 750]/Flags 4
+/Ascent 750
+/CapHeight 750
+/Descent -250
+/ItalicAngle 0
+/StemV 121
+/MissingWidth 333
+/CharSet(/parenleft/parenright/plus/zero/one/two/three/four/five/six/eight/colon/semicolon/equal/circumflex/a/g/i/l/m/n/o/x/tilde)
+/FontFile3 32 0 R>>
+endobj
+32 0 obj
+<</Subtype/Type1C/Filter/FlateDecode/Length 196 0 R>>stream
address@hidden �"o!�� ��    �d'address@hidden(oD)��*�����5:��U[�  
�r.X��t�̟�u�s�>g��}�އE��,���k���
]ݽ&6���a�昙~��yX�2�e�EӜ�#�(u�l��lk��ݮ1�qdxD��|address@hidden,���1����"{g���k�#��K/��M��#�ML���c��h�
 fEDŽG
+C�EK?^�|�J��U�,����� ��̈́;�B�[��;b1�x��C� l�M��
b&1��Kb6�%�%�ĺm��,�m��������_9s8���ܕ�.� 
��{�kS�)��6�B�/^��}�Y�2[�q�ɢ3Qo;���
������:n�6�Bn��W]5Ч�DI��p��ܸ?]>s��b/��˝ 
�1ys�����������1�$��.�+�r/�v��Mr����g�t����Qh��Ql�g��Yx�~Z�� 
�g�#���?A�ؓ�.8����]�'�u���k�k��>address@hidden
�<��U5��EG��ځ��b�Qib~VFBL(�󋨶�y%����n������͟4�W��A����H!�L)�(;\YXU�����'�i

address@hidden"0&y�DC(���vd�,�nJ��UG�����L�A����o�ȃ�r-�x������'[[�4�s�{�����]��~Ţ�O���Fm;G�
���u�������Cٻ�X��U�����5h�r����gy�V�A��&������u]���1V'kx��֍m����b8^���F�i�
Уh��2�S�(JW��S�-��{��
]5��R����T^hmH7���Go�ψ����l����4��B'������������H�RSW��9�����6�7��y�b�^.��t�|��M�&R���߉�<��]I��rj�����{�N}�y90I�ټ���&��
�XkkOu�����[�$�)address@hidden;�T���S�TH�<����j֪g3(�
�������M�T���X5c      T�n�05���^~�����Q�6�j�:�uJ��J������ԇI�|��%��
��*�c�3j=�B�򘂱��:���~�v���OJ���%��U�� �#E�~߹8��p��
 ��}������-��gD��0�4��
+Muz�   ��Ԉp��j�e����HI�<_�T�<��tpw�F��B]�F
+ 3!+��{��:Z�����e-���E����0�%y/!<address@hidden
��#dK��G��|��^Gk�}՝�v�-<@address@hidden>�%�"r�#�~�-��[��7����D���:����RI7܄
+r��郲��n�+��.�
~��.��I�      ��L_�C'��I-
��M�
+5p�V�V��|܀9G�2)      ��i܈��ɐ�T      G��Yq�!Y��ʣ�dfc6LV��PMW�);�
address@hidden;/_����+��#�֧QWZz�`�|address@hidden,=!褓u������B���nѧº�nl%���tZ��ŝ�
����ی��Q���v�5U_]___]]O�a��{��}th�wNgS��8˲��IY~n~񕛈�W\�����ŕ�6��A��U���‰���59���9��Rp3�fĵ�'Ne!�.q{E��Y+aM�c���+�&address@hidden|��z�0�?
#q8�J��6���t�9��E��h��Ch�AI���ް�`
l�nI��K89������Q��L��      ���%5�O��Q}5�x)7\��HG  9M����|��IN������      
��Zt��X��l����o�9�܈�NJ
+�הB��Ѣv�}�sE7��7l���=�|�c����gi��o9iox5�
address@hidden&"KJ9]u���,�#�W8����vw>ގ�I�
p��M\�DRW1)�c��s����q��:�LR�¼�wy���R�vwU�2����
+Y9�B����$�u��ޭB�Ͼ`��?~�V>\���8zAݮ={�����3�[��z�>�ި�ן��4��3X�d�g��
+ϸ 
��/R.Vf)�2�Rʔ�I�ƥ�B(��8�[6,�s�G�)?�o�1ꡕl��F�G�9<ڄX�zd��m��?�&-��kt/��,8�Fw��
�S��d�<}ȥ� 4��3�4da�&;�q�m�wa��f���bl���6�6� OS8   
��m4�hmQ卵��x����*?��+���~!�C���N8

��s�����O��G�y&?�x�向E���Hdx�9Hn�b�/�#&�N��`X���#d��b&�ٹ��rPTJ����/,�z/^��c������-8��+�;G�"�#�
wIkF�����Es��#\���T��|�v���iӆ�Ӭ��n���
+endstream
+endobj
+196 0 obj
+2630
+endobj
+43 0 obj
+<</Type/FontDescriptor/FontName/FKYXSF+CMTI10/FontBBox[14 -205 586 694]/Flags 4
+/Ascent 694
+/CapHeight 694
+/Descent -205
+/ItalicAngle 0
+/StemV 87
+/MissingWidth 357
+/CharSet(/c/d/e/g/k/n/p/s)
+/FontFile3 42 0 R>>
+endobj
+42 0 obj
+<</Subtype/Type1C/Filter/FlateDecode/Length 197 0 R>>stream
+x���kLSg�ϡ8��S��ϩn!0/�Ȉqa��� :�
(�B����P(-�Ҟj)����p)�C.*��S��L�,��6�˖�/����,aE����}|���?����
�pMH:�u0ak\Jfb�Ε��F����a�YSX`ş�[5��������\�qp<!�X�TV.*�q�����h~l�H.
+$���PT"P����R�X�(���-.�g��(�g�JEr�(�Y�8i��L!��S��"��0B"̗�
+J�0,
{��ұ�},KƂ��cA�$�     �*���c
+$�/��������oj�vG�W:address@hidden ƛ��)9lH��҈
5�$r�
+&D�f�j5`�l 
�2Yd:J�������MuΞG�0G|���9��Ґ�S��\(����Ps���fgc#c&;n�����VmP5��w�Yc]������nqY�P_��A#w�

���Ƿ��"address@hidden:=�}WC��޹Y���Ijha����5�����r���+��9��O�����h"�u&�AG�2B_MkiP��6h�l��
��tVS9 ���r���66|address@hidden/Nݓ      �q�|��
address@hidden>-�EwHmj�T`��u��f�mO��bop~d7�%��|���U����9m�>�
�V7;���AU4ۚ-��>��P���'���BP��#m*�hn�XBU�e;��^�k�Լ��2���π��2�26D�DU�s㳀H�=h1�J=�)c�?ϛ�~���H����I��3�b��h���p6>jr��g�_{{t���x�f�;����d�\�L�����Vڰ���/�/�12���l�����O�\et��:�T�B%h�d����
 g��dyqU�p�����/address@hidden
d��v�����̌�w8����f���R�f��q�>ُ�������Q 
>�F�)?9�C���C;���+h�U��_��A/�m��n�u�M��&��y[?x{�����yup�(��y�,�<�&g�p��)�ƩTH+�S�
+n�7FP��ýyVR�\�cD�{��gX�o~L��:�&I��?��+�#�l�_i#]F��Z����Y���3\] 
�<��C��O������q�S��dFZ�����d���!3vuvY�͔�
����xO������\���X��������ƪ�e�:Fz���
+�b2#Q�.� B˘'�0�ǎJ�^`���Ջ!�����5��u���0�w
+endstream
+endobj
+197 0 obj
+1347
+endobj
+39 0 obj
+<</Type/FontDescriptor/FontName/JHXTZF+CMMI10/FontBBox[-32 -250 1044 
750]/Flags 4
+/Ascent 750
+/CapHeight 750
+/Descent -250
+/ItalicAngle 0
+/StemV 156
+/MissingWidth 333
+/CharSet(/alpha/beta/gamma/delta/zeta/theta/tau/chi/psi/epsilon/period/comma/less/slash/greater/E/F/I/K/L/M/P/Q/R/S/T/X/Y/Z/lscript/a/b/c/e/g/h/i/j/k/m/n/p/q/r/s/t/u/v/w/x/z/vector)
+/FontFile3 38 0 R>>
+endobj
+38 0 obj
+<</Subtype/Type1C/Filter/FlateDecode/Length 198 0 R>>stream
+x��yy|Se�vB�u���9UG�Pp��D��,e+���tߛ4M�nٓ��9IN�tO��I��B�� 
��.��(8�ی��0���i^��y�����_�h���~�������
+wL��i�V$l���oc׬Y�`>�NL�Aax���C9�寝7��3)�'�����t$�!�.��ZbRJfNA��\i�8c
+咬�Li���91.|>fy^�$+%9?fM�43-/Y�ɍ�X���&�?�<77f�DQ̆��4�,-u<�؂��bi�$fMAj�$?#9?�\��[��\X��+M�\�_)�Y�i�R�lir�CnA~nQ�$�P*KK�H�3���$�)�Z��M�;I��W�27H�6goZ)�)I^]��k���K^�k攘�3�i�<�T5Y)d�����Wh��B���~DDŽ��BF
 �'X'xY�P�� Q�H�^��`�`�`��q�F�
+�S�Y�M����������
+~#�"xM� xI0W�U�V+�K0]0C����� 
4�Ehڄ��.t�B��Y\����6�.F�ܑ3q�ĿD&E~zgq?�������SN]:���>��q���kg��x�n�=��c�7�WuE�����7E͊*��E��`tN��^z���3KZ��r'y�ʏ�����5����}B�e>�nC�����"g��}���=J�g/�!�ʃ�,address@hidden(�0VڮV���Z2�ɝ\$��y��`�Ye���0�:Ǖ��W����ǣէ#��!�+tR�r���S�h��fƳ�m�A{���~[����n�V����
+�!gz��mܯʓ(�Ԥ%��;s��^��åZt��,y5{�6�����lv����A4F��I���������B;`�����Y�q`
 T.`\f��%k/4���]�-��U[�i�}Q�G]W�B����E�c�3D�P     
address@hidden/sr�ܣ��N,�3z��?zX�]�75:r�lN
+ 
^+<8�����7��ȱ=Ǡ��|�8MKJ?�U>y�I��(�v�`��y����.3�л�hH&%��"BǗ��QVU���d����Jtz�I�����<��2�J
    
���N��^���MY4�Tf#�6�2�5�5��H���������*�&\SMiY�AiR���P���v�md��[��{0�T��V������k+�|�������t��7�5�Z�f'@=aWU^6
�d:�Y2p�UP���v�4��P��*��OƩG_O�_�
+���̸���       
n�Q\T�L�(�)�y6ji��d1DsE�*�T�?��3�<T���Ay���d�T)e9�hB_e��Y���m�N�z�N 
l^|address@hidden|�Au~�|�Y�y���B}Et�D{KO�o��|u����QK�z2/QV^E����-m*k���O������X���w���F��6i*��
+I�ǖ�o}�dJM{uE��R��q�dSw0Ёo�R������ہ���7`3�4j�NKS�U�K����̞孰�0�AM�\~���\��|�`g�۶h7_�:¡�j��4�ِi�+p��e��ۍ�2�ؠ��
+�����|��D7�υ��q]�;
+n�����j       ��t�c3mQ
t
+��^^��D/6��10c����"�6�ȱ�K�)�d��؝ݶ��3���Q[���p��Q�����c���1�Mi��ڝ@(pA56�#���
        ]t�-���r+>�3����P�����@ ݍG��o8�lkbFj6�:�Ԙ>�6j�<�j�?W�Z�&MJ+
e�i����Uw����@4g��esw�Ө��%f����
+�c񌁨Q���Џci��j;#�:T.j��̡��A��#���~���~�.��7���_(�R��;<�P�I�������[����z�{v���jN�����7Ro����
X©�����"�RS��[eԛ�`�u��d���C���A�qn���y�o�d��Tۡ�
���3[���V���f`qO1ȴ�Nnfb,�ܲH|��YI�]&address@hidden"�p?�E���WAy".��a'�Qh�h�����HX;address@hidden:�3#����s"�B$zQFw���2w?Ž��I�O��?���F�����F�矨���,���݌e��2\�Jjɳ�����i0t��q�&|address@hidden
��.��T)bl8�/�
+�t��\��N_�-�<���m��M�' �hA�ͣp}i�a�U�tXl�VrUMd�6->LA��er铼E:g�ٺ��ÑhZ0a
��0>��ޢu�q��-�� 
���Ldɸۨ�m��z9V���?W�G*\لac���{|v����܋���k�h,k�i�st֝gVo��f���޺�d��
y��"��RL�����`ª��
+JI�PF�������G��K�{>��~�/<q1"��Kd��;Q�p��
+�Rޛٚ�����b�_�>w�����.�l�=���h�:k��P
+��g��n�M�FY_X�#O��[�Gt���G��R�E�K%ť2y�<��G0`'S��{�8�[��u&/�>������4�no������jDx+BO��f�Wm&г#7���
+���[��x������'
address@hidden@|{i)�����[2��w�.�D���[JX%��7����3�708X_���dR(�2O[|��L�}��}]B̳�E_G��(Ͽ
L�B�XX�l�1�g�m�%�1:U*lS
�l�T��#O#�?���7e� ]H���_�gտO����hǭ�
+�,N�����)�l)>�ɷ�V���Xk5��K�XLJ��ٗ�����9#�ÓE��b(&*�~sm�P��e\T�c;�^�hבGTG���K���V��R�O��6���#��^�0��)z��5�Sڢ���m����

G������W[iS�I��g��s�>(D!ޠ���D�W���1�I�Ii9��W}�ѪH��{��%Ø^DK�Κ��Fֿ;nߣ��;�::ͬ�:��ׄ��P�qgelN��Ek)�T�}�/������7�����BS��V����%��H��F+c���~t$tOX�a׵���O
       
�U�6[\������"`vV�+���X��3��H�V%�Ώ�����O���'�����3���l7.�v�����|�M���E���
+M�NJi���ƜM�'����PfR�Z#)Y�T&"[�������Q����B������D�!� �}*�
+�Zt=��5ֹ��ӑ=�[�ɼ���L5��==q�R�����\��
�qs_���G��k��6�J=��h|address@hidden&�*k�����R_YsS�)H.�9U�iǺp4�|����n���=�WK��F��p�j!G��T�F�:G�'��U�
 
#�we�x�������6�X_�Iރ�-P�n�o�{ϣ��7�o�Y�v5�t*d���--��p/7����k��������U�����Y�E�ьf[��%�V��B�֌5W�46r���:lBlf��Cٳ���X&f��(�8��UᣤM֧���

��)tf��0�ч�|u�dwG�A:�j��l���H]"~?8��Y���Ƚ�[���������{���:6G4Y������Z�=�ݔ��ՃG�jW�������U�â���4d�K;�XE�ɐ����P���Z�Q���b�M��b�|��ۇ��ƔS���UP��ek`1���虞!-�YXsV�{�볰e���%�?~����H�'�+��7������E��7lT���c��0ֲ$����
�B~��1�Ú<�ܽ��
��r�����侓ǀ�����0�܊$��\�0�,�g����z,N�O:�wC���T��2�
+�j�h3�j���pmq��'E���1��-]ǽe2��j���.���%��'[��l �#�����
+Ma�����2�3t�?x��1�to7��9���v1�]<�5 address@hidden/d
��iȿ���W�����hTS܃7{p*�]���ci��w� address@hidden  �q
Vp��xv��?�du�v����G�3Ä訸F.)W�tn%�X�C����s���G�.�����E����4��Y�݌���U;
     ����}h�����φG��?x�{����k��=�[�����9�ְ-]������M��
+#���H9���ɖ��c�D���� ��V�{j�M��ZVp�[��?��ut45޷� 
��R��cĆWǘ��iu*(��`k��?(�|�`�fq,�����V���_5���[���O�8��]�K������M�\S�%i�vn�V��3�A�
�Ѭ������.�v������;��0[��{�������lj*Qh�p�'address@hidden;����ٺ��.���S��]�w��q���L"�%fuN
�V��!��������ۀ�^i���>�b3�6���jRx�Hޛx7�I؞���wl��
��F)Grw��%Ze��q��(�[��ý�r2.g_�ik}���
��Xk*�(.������`�(address@hidden"2R�
���0��xb�y�T���7�!����.AtΜFWKC�/[��(��oj��~K5�;��Asպ�-nN�:O!�x"/ɤV*ǭ���H?���WRjj���Y��p��5��(�{�4��2}����֦/σ
address@hidden"��1�;������g�K���f�ۣ8�dl%da�����ܡ����s�V�s1T�����Xѥ 
������Y�yqΎC%{���g-�'�'u�F�����h����W��0�Z�х� ô�NY������D[�ɣ      
����t�N�m(Qg�:%Ķt8H�ql%���0����~sC2YO��
��o�Ħqd�o���3>�4y鮂fIc�M`��2�~$9��?��̪�_�k�2v����ɆQ���4�� 
address@hidden&d:�ί��?�xǮ��<����-�}��!~i��[}ke��bG������z��9�!��mnD/�(���v�Eg$���%���q��ku�Hcƾ�0�M��3�egS��P��l��C���s�G!��6
�ڋ����������ۛ���ia��4�uc���?"���vF�̄[�Tj���&�o�s��k0E+�j��b�e���Fg�6���F7��E�n�أ��U��ÜO���A
+�ޭ�7��Z<��v:�n�M�R7��<��'�R��氁<��v�0�EU��
�P��J�M��Ra?g��_�Z��cZ�{��6q�'\Nc��E!��%b7���ѝHhv�~��b��՗iK����8ĄҦux�>7��{׈5�x�����i4g�����W�*0�:��䖹)�R7�L��~]t2��+X���77W�_��YI�ư���O�%���j�A)address@hidden"�L
+w�*ˠ���@(���N[[����b`��Fp�?#�-x��r�!.�����˾?u��令7�3w��б�΢�Ҵ����20N�\x����C]G���ΘJ�4���_�=�X����^P��.o���V$�8L��t�w�o��i:�g�
 �|�%7��cĩh^9cE�q��ݘ�o!Y��x��(7�ܢ��Y�L��3�x�k=�b�{-�\��_
��I�*IU&���b(������N��RO+Ka���dl`e07���{�s�{�����ؽ�q�;�l�{�ㅾ�w��[ff<��j��b<�(��ѳ~�w�ϏlXM�"ڸ�"�cuX��m��b!m�6��=����G��apE���#r�f6S��/�I�������&�"ݟM��"��n��j�o�N�)
H�e,��5�
+\9��h3��^h���K��)%��7I����T™������Bw�M��4��ρV�,Rp�U��Ш�DŽ�*'0ۏ���pz/���N�ď�-�!Ԓ¤(A%���
C�g�!z�V;�2��QA>�=Ž\<p�w�(�d�]ը�]        ۉ���tq��NFjY���^oЪ��
����H_i��A�՗�q
�嶢��>address@hidden(���D�[Tm�/t��T���*�N�a7����q�||�����g��c{#�5��A�Ց�;address@hidden:�dv��Dr��xԓڼ1ڛ�ߊ�z"address@hidden"����p�w��ӱ�Ѥ+h"�H9�5Df
�aOH����
U��d��������_n�pP[ܕP�Ҍ�u��7��R�bQˎ�f�%V�q��شk��S�(=����e�
��/u�KX�3��0-:#G�c�=�us�y�\��a4
 )ɍr�jO7|8p!p��8�����
�4      E�)u�H�C�\Zl��iے�Ȗ�_dO����ԅ�s���z�3�  
ͭ--��Qge;66D�15gZ�d�ƲtJ�)��q�O=�遂ҭa�v �>address@hidden ��59͵�2�
+�єŠ�R_��P#�dz~��o��戚oDF�����Y
k�X��H�����p-i_~        
��������.�B;մɤQ��_K��N���#���>��b,�44|�z-��%j�d��Y�-���DN��Mn
address@hidden)�{���o4�]�/E�U��U�\*��fgm����m��nu�-Х�im���:M��i�VQ����952��Cd�JJꠖ�V쿱���no$���34��r��7L���N�*�GE�
+endstream
+endobj
+198 0 obj
+7177
+endobj
+52 0 obj
+<</Type/FontDescriptor/FontName/UGUYIV+CMMI7/FontBBox[-1 -204 979 704]/Flags 4
+/Ascent 704
+/CapHeight 704
+/Descent -204
+/ItalicAngle 0
+/StemV 146
+/MissingWidth 333
+/CharSet(/tau/epsilon/period/comma/D/H/I/K/L/P/Q/R/S/T/X/lscript/a/b/d/e/g/h/i/j/k/m/n/p/q/r/t/u/v/x)
+/FontFile3 51 0 R>>
+endobj
+51 0 obj
+<</Subtype/Type1C/Filter/FlateDecode/Length 199 0 R>>stream
+x��X   tT���a`����c� �����Z�(d      ��������LfKf_�wg�'�Y��d%a      
A��XE�Ri�ԅ*��}�������{���39g&����}������ɓ8\.w���6n^Y��e�W�|<��}�p�s&���k�3�sU7�wN֊�h���vZ~�����mٺ�fY�P.���)Ι���9�|���%u墪�����%���u%b��6'����\,�YΒ�ڜ��+�r֗7����w\��e
uB��\���aG��^\")6U�6��6����bG��U��;���׊*��\/��^R�aesMI���t�Ss~X����O9k8OrVp�qr9s9�99���9����<���y���ǜN�Q΃�M�U����͜9�838��4�

�~��TN�[:��{������?�b�?�sj����?޶���ӏ�����̜���U7��;�Y<[r׃w?s��,�/�{�󻯸�7���o֡aJ�n�����!��S
 �|�`��R,��M���4��iƿ��R �- i
@������[mVЂL�6�Z*KWe�?�B�-h������D}�s�<���oQ[MJ#Y�`;�c��`��ki�ˀ��f~5��Cm*M��i���]�yR`VE`!$�ڶ����I:��~g�����r%\
      g���ӳ/����9 ƙBٚb��,�4
f(����W�m���
+,��Qc&ŋ�Kˀh6���`�*з�K8N\y6R�D~aYixgm��A\�K*Z׃�P��b�I7~-�� 
���LWaR���$!pk{.gZ;�MI�|���޳�cgv�    Ĉ��n��i�:address@hidden
�0My�.+H��E���
address@hidden(�f��O)m�N��G��'?_&/�&�e�3��%ͭ���0۵��A�����N'� 
�m�#�e����`0�x��So�z�`�YN-c�r�N��Ve*ь�-ޅ���C�tB;��ֶ��!(י�]f��wǯ�����������p��j�z���ӭ4����!0�
V�UG�ge�U�/A6{7{{������C}{�R�5��n��D{_bO�8��y��R��lm    ��D2j�ڃԒ��� 
�Jd:}YM1��g���I{��/�Nq:�K��j�-�[^u�������;����z"U+4k�fg���� 
address@hidden(iR���:�M�J��J��7n<z��4Vm�Ω������3X�\�dn�:J�e�K�@,���9lnƑ�qr�Zm
+U���.���<$F2A
+޳���:�ı
����c?g9��#hz��?�\:��h����3?g���5e{�A,p�����\��6�K�d��b�m������Z��� 
�cNx��:s�S�*�P*F�h�<4�}����K3�C�͑!��M�B|�x��n��|4������]�˧vl{4���9d�?r������*�/W�!�`\�$\f�N[RU#%����3t�N�&(�R��6+Z7��j�P�������0��;b��������P
+d�`U)wl-��5��՚�Fڜ���n\C(ُ�q���CD'h%=��G����g�{)����5lֵ�,��p��4��z�:����.��1�&Q
 \a�}j��2��)�
��\�0�����uw��/�7,�U?�yUY�^�
��>���um��i��<�F����c�����N�'ۏkv�1U�N�rBi�����m�n�ּy;)�E_T�H�l�h]��l�F��-ش��;�&�Ǽ1is�G]]�h'�4�-N��p)���G/��=�)G��Gr�R,��̤"Yջ
     
?˝�����������^���E)W���y����j{E1�����]w'��NYP�P/._�!}-|���Y����*�;K^j,��i��hM��FN�
f��Xk�E���.
[���#^*��2WЌT��+�t����Kh�8Z�p�z�Eg�ɦ+�UP��E�{#a�Z�N�Ļ�ճJV�J�G�t���� 
#�%}�M�K�}ތ��OД�����G��t);��-l
���<�8���
Er��(��)��+��ʝ�g�������Y{��3���v�v�����$��w��I�Aj�n       
(��3�'address@hidden>TK����8#�Em9Ҕ~H�ѡ�i��{����Z��W��͞�o�/����R٪�J��f�2cD�GV�MO}y>">�{��K���e��{np\��h�&o��1*
+=L;Ġ��c        ���'t5��Ҝ�D    
&��m�I�ʺ����p��H��2�)�V�4��oj��t���3�Ie5h-d���Ҍ���G�\c�$�H�2>address@hidden,.
J<��!F�'8c-�q����4%��
^�b��?��3N����!��E�h 
�����Rb������/{Z���i�HW        *b����w�3�Q�V��lXU��O�58�s�m> 
��g�LHp���3}gy���)�6u�AX�X�6'{��$�_sb�gR�G-�[~��3����wԛ�|I�����������vo���������Nv8:4
D�W/�3�>��H�����E�Ϣ�3��[��
+���H�*�e}��U�/b_qf
+>;��^�[A
�
�N)c���_��O=���?|_��l      G;�8�
"�l��r3Y��f�L�F���b�`������#�.�3�������F�{%�Ρ+�mvV{tv���N�}t��g��*�t$�3�8#C;b�8��+ǥ���a��]
 H8,>U�R3�S
+�      
+F�4�d��۱�3��e5Y�����;h����H��U��-��}3��B�,��l`�J�w����WF:O��������&���J�j�6�"~��Z�L�7�'�u���>X��6�^����yit/��G�$�7k��F��zb��u���i�~������D���
Bw,:��;l��p��\7��ϐ��r'}��        
L��.�(v"address@hidden>G�s�t^��*.�6�I*���C�;��1�"�`�ZP�ڦqt<���W��š�=��_Gӆ��>�c�_v����cE{ְ�<�j�<address@hidden|a���F&Q�l3��5�/°04�bWd�fL�&�lӆ�6g�E��G|h#�^����P��t�*,�Bv�$�&���C�JA/address@hidden
�l��4h�h5X����h!�N��s8.Q��        L�      
�����6�M�1W��0W�����o�������W�E���Aب���F2�k�2b�J��ӟ����ۏ_&=q\8rkt�߻�ftb��C%1�B�o�ӧ��%��I�����F�g�����_�(x2K�H�c?Z��1��&0�ɪ�e
�|��Е^���`n��D���˷��黒���)�>bo��{ڇ"�W>xO/�Y�ؠ�����1ٛh.X�����,)��-Ud�Y�7��[��p��H���=
 ޼��a��pu��̸G�X�`$�X�wɉ��?
��;address@hidden FxNcs�$��w'�8q��V
Dy�D���({0�=t�;address@hidden:-����5-x|�������沃nS���"Ϥ�L�O�J)���qC�nw(�����WdH�|Z�M����2���p��})�VUo,�Ash_�>."����*6��򾞑.����M}ݙ��/��j�]�)�������OR�G����b����!��"e�˪�%�|��^|;Ǻ�VG�Iu]8��
 �����ͺ��$�<address@hidden<���DUk~���g���T��F��y(�m8E[f�����6�
VU��)�\ļ7�~��D�h��d����:2zm�`K��׆��)4�rE�M�=�����i���Q����9lA-AS�N�Pe�6h���3�-����
+}pM�U����M��5��:�ڀ!'.|!~����`�.!�  
�*{%Ɂ�do�Jg������E�c�F/��#�7Ո=4{�_5�M/�7V��P��gl^���7������ߘ���-�2yv��B�L�*�EKS��y��B�<�]M��-��D�k0�,w��t%��D!A�2�����p�t�]&��p$V�y����ЂQ=�����tw#CS���a���z�C�~��6��Fn
+)�Q����"���I肎�+�v���s�B�t��b������L��S�:address@hiddenA��
+--dq���m@<h�6[�b|address@hidden
��ze+�G��;address@hidden/egQ��6ll3������]>_��������t��ɏ�n�����v���$\
+endstream
+endobj
+199 0 obj
+4707
+endobj
+49 0 obj
+<</Type/FontDescriptor/FontName/AUBXGT+CMR7/FontBBox[39 -249 806 750]/Flags 4
+/Ascent 750
+/CapHeight 750
+/Descent -249
+/ItalicAngle 0
+/StemV 120
+/MissingWidth 384
+/CharSet(/parenleft/parenright/plus/zero/one/two/three/four/equal/circumflex)
+/FontFile3 48 0 R>>
+endobj
+48 0 obj
+<</Subtype/Type1C/Filter/FlateDecode/Length 200 0 R>>stream
+x�U�mLSgǟ�+��"r�1�{ˇMй���D�fֱ)��;^Vhi�LG[y�Q����"jZZ�
��ō�[`!�s���f&N=�<V#��������Ð2�0�2=�����X��hS�dQZ�H�ɤ�Yu�<
+UDt�܉A�Rܰ_�&,�l�أ6���s���u�jMjj�*�Po����4:k��Pg
�j�1'_o=��*�`Pi�LXTZ�Eo>�?��Rm,address@hidden"�D�JZ������    
address@hidden<�˛��o��M��8 o��address@hidden
'�,�V����R���B\��;�u����(����i�B��F�h�6��˰
�sK�et��;.�N��aF�{�����~7�Z���g���!�!ݞY���$��m�Z����/����h����Q؞�T��\���/���)
+��B�����%�n���i���z�
+h�(>�&uz���,v�2x�H�Z�q�߸,��-��.�zqK/!+:���>h�[�.>^)��,����WX&>N��Y�l�C�|��wNx��wYɅ|�����u{y���`{ʔ?��
+
����|S.���4:%��ݟU�����Wu�%t|7��ܽk�Ғ5[���QZQ^N0�II���t�D������t�G�#��w~��,�V��3g]C�N�q5\/�i�����W���8=yol�����.�_s�I��������-�}����K���uy���Ͽ-I�����ѹ���tBu-��t���sa���n���h=
���
address@hidden
+/ԕ8>address@hidden|p�  
�\�נ+�0�����&E4~$N(6I/��2zN�?V�5��f�r���]s�J���i�hP}]KI��õ�P�U�����p��p��v$����:4�lTq�K=�-�ڌE�r�kP��
+QR<���)�r��r!�Q#%
+endstream
+endobj
+200 0 obj
+1075
+endobj
+46 0 obj
+<</Type/FontDescriptor/FontName/VSEBLF+CMTI7/FontBBox[129 -10 624 695]/Flags 4
+/Ascent 695
+/CapHeight 695
+/Descent -10
+/ItalicAngle 0
+/StemV 93
+/MissingWidth 426
+/CharSet(/c/d/e)
+/FontFile3 45 0 R>>
+endobj
+45 0 obj
+<</Subtype/Type1C/Filter/FlateDecode/Length 201 0 R>>stream
+x�cd`ab`dd�
vu�q�v�
�4     (��f�!��C���w�
˗�M��~��n-�݄���3#��w�s~AeQfzF�����������cnjQfrb��obIFjnb      
�������ZR�������Q��Z�ZT����9?���$�H�7?%�(����99%�������
�Jv�\Fy������,��ϤP��q����7.g�����!�����y͍��U�Ӫ��Y3m�ׅ!�~����)����M���1�vvS[GGs����IEd7Gd��;�~�yT~��݋�u����6'address@hidden'�f��������hO�����Y�]
]��$��꺺�8jgt���������^+���d]���n��|��+�VS8t���]��ψ�U��{U��Y�/�4�xwnj���ʮ΢V��𪀴n����s�LX��'��R�9����4)=����#�d���K�3-?(����u��9��0i��j�l���K��������}�n�W�n���]�`�Z��,��
�(�������Rp�C��+�ЩUWMZ)?y������9z�wsl]U���ۤ;E��|�O����L�^���;a*�z���r\,��y8�O��a`%�
        
+endstream
+endobj
+201 0 obj
+597
+endobj
+55 0 obj
+<</Type/FontDescriptor/FontName/WMRWUG+CMSY7/FontBBox[0 -951 962 725]/Flags 4
+/Ascent 725
+/CapHeight 725
+/Descent -951
+/ItalicAngle 0
+/StemV 144
+/CharSet(/minus/periodcentered/asteriskmath/prime/A/E/H/U/radical)
+/FontFile3 54 0 R>>
+endobj
+54 0 obj
+<</Subtype/Type1C/Filter/FlateDecode/Length 202 0 R>>stream
+x��{LSW���<�NQg�����?�hD7�9E���n"q2:��m
address@hidden"��6�X���=�34��mh�d9��]�����������8
�����(�dEV~�����%��8�(�Z�R��]��t4!�(!�]$]�J����X"�g�)�d��rI��J7-k7}Æ
n��'�*/r��d�<A����pD�U<�|7����o�B��Ǔ�$�xo�       �u2���/��I�eRf\%�3���
��J��0̝ͬ�
+q�%^���z����b�R�l��`��܆�f��8�������Xl�`�����oX�6W�sD�(Y���g��[J_x�����Bԫ�YMJ�8�6c���j��j#��O[��,n��,��b���դH�DE���ܜ�ה��xi1�����!���2�$=�?r���?��V���<��5�u���џ��5�,2�=��Y.z~���o�*��c�T
�ɞI�;�BA��Mo�XLρb͋���](
�
31�-���B~q�Z ��F�\G)h��s�~�k��=I/p���
�=9����Xs�ʤ�k9V��&B�G���ؕ���t:�������!=ɘ���������N�=ɚ.����o����~����D��ʶ�ybQ
      ��_�
���mv�_ �����;�z�9��a�A�6��p���VB籺'[��d�/p�%��    
$�h�"�髠��`���9���Gg7ɋdB
iћ�" 
+��(��I��%����c�۬�kŵ�FS�N~d�쭛c���ٛ���P�n�m�������5�
+�Z�H6*�V�u�8s�DϢ7����Qrd�������3p��"������{j��֠��I����<@Dܚ�������]��D~ώ��S��Q<yi仱;�-��N�8�"!ʼn��#o{Ь��ZR��x�z�~˙�����
� ��
+Q(��ꑃ}ZV�D��>���Ѿ�3�xX����0��5�F�؁n����y�Ri78�����D���8�gQ|t����� 
H���
:�E�%iru;Zn$�j:��5
+�IgЋ���F�     R�r��ol3pPZ���4h� 
OU��C^���#���MtF�ʯ����F��䉆!���^��$B�����mpp���"E�կ:�:7�� 
address@hidden,j���t�b�[\:H5�Ū3�����leZM�.�����Q:,Hma��/D�^nN��
6�S��*
Z��1���6B�2���BÔ���9=�F������j���S_�Mj�����^���s�ɲ��֞Dz�/it��;��s�`��i���
+endstream
+endobj
+202 0 obj
+1320
+endobj
+73 0 obj
+<</Type/FontDescriptor/FontName/TPWVBL+MSBM10/FontBBox[14 -19 748 704]/Flags 4
+/Ascent 704
+/CapHeight 704
+/Descent -19
+/ItalicAngle 0
+/StemV 112
+/MissingWidth 300
+/CharSet(/F/G/Z)
+/FontFile3 72 0 R>>
+endobj
+72 0 obj
+<</Subtype/Type1C/Filter/FlateDecode/Length 203 0 R>>stream
+x�5�mL[e��m˽[�涫���
        a˖�E͆
,�/݆{˶XCa�����RJ;YoO�eP�ư�ѹh�2f��13q�Ɨ�Q�8����s�,?�����s���˘
˲%-�?Vߴ��h}����:�����
Z��E?PV\�������[��O�=�I��Ȳ�M�^��:;;l.i��]Ҿ���R������[jnu٬Z]��.���iuy�Juv�tdM�+��Z�����������d�x����0U�������
d���!5
�F1{kl�~])ƒ�a�U�+�g����C�;JU_Q��P|l4���#��>{��—÷}��f}5�B�zӐ���
����Yr�t<*��;$�յ�i 
Z�I�\������C�ONߤӢJN��s���oͩn�?ԁq�]��z�{����O�&����H&Ȓ�><V���Ҁ20���<�����2��oR���!������G��獣��`DYW�3�4?�F����}��s��?<e�U�th��"��n����)�fd��|%�h!w���i�?%g]��E������Xnl*=�A4ON
+03�,Z��.����<(�{Ճ*�Df`�<1�ŃIk��V�˘���?�ퟕJ���T��_�������=���0�uэtVxK��L2�9��fg��F#�5�r'���k�Xp2l��2�
+���A����g h�j4$��r}��A��Wd���Ĵ�6/�<����ת�Y�DUy���R���LW�l�p
m��ct��Dͤ�B.i�}ӞkJr4��C2��!ݠ� 
�ҏO�b(@!M,�v�y�����Cm��?8�J�S+u9��M��7��(n0��2���\�M�/q��
+endstream
+endobj
+203 0 obj
+872
+endobj
+66 0 obj
+<</Type/FontDescriptor/FontName/KAGGYL+CMSS8/FontBBox[30 -10 500 694]/Flags 4
+/Ascent 694
+/CapHeight 694
+/Descent -10
+/ItalicAngle 0
+/StemV 74
+/MissingWidth 354
+/CharSet(/one/two/c/d/e/n/o/r/s/u)
+/FontFile3 65 0 R>>
+endobj
+65 0 obj
+<</Subtype/Type1C/Filter/FlateDecode/Length 204 0 R>>stream
+x�=R{L[U?�w�W^{���8�+��"�S�����X��l*�
+uP�K��e�q��l�
��f�i�������P�
+(h�Ԓ�dK�C%���C��s��w����F�dc����d�J��Ύ
,4�SX�*�f�����+為fn�Fxi=Dm@
Ʃ���UՍVsY��6�9>:.N�'U��fc���,���*�mң�Ϯ2�M��(>���7���Tk�֛Ji&WUV��LV>���d� 
��-��X[�!=ڇ�P
+JE�(��MH�B$�H��      4���F|U�YvPvL��.��_�m���8EƋ��#�`���ݣ�
9���Գ����Tx]w}�$Ţ���"|
�b���?-�Q�+8�ۘI�r��|}K��>j:2�i�^��}/Qѝ/�0���ߨaddress@hidden;��������i
�'u� hnx���|�P�>address@hidden/(b`g-1U6%yXظ�?��>j��y���      
�{����2ۘ���$����}~���w�--�w)�������<l��rcDCg��uo�=L<�N}g+��9�"5-��3���4�x��Sh�,1���V����/���<K�q�<��3"9���|a�t��C�j�������_6������)]��2���G�����>#�֞{\=�M:N��|���֢���ۈ��%�F=��a�������A��b�-y���J�qǀ~����ݽ�3�.�����p�i��dRl�p`�,10������q'���
address@hidden>�5���>�qvb?c�z���ׅ�7:.�t^���A���t�3;����.�������c�
����W�,5��-V6U��S��;WҜ��KP����
+o��^�u�>1�*���?��ǻ
+endstream
+endobj
+204 0 obj
+958
+endobj
+63 0 obj
+<</Type/FontDescriptor/FontName/SWNLGN+CMSS10/FontBBox[0 -205 774 716]/Flags 4
+/Ascent 716
+/CapHeight 716
+/Descent -205
+/ItalicAngle 0
+/StemV 116
+/MissingWidth 333
+/CharSet(/C/D/E/G/I/K/M/N/Q/R/S/a/c/d/e/h/i/m/n/o/p/r/t/u/x/y/z)
+/FontFile3 62 0 R>>
+endobj
+62 0 obj
+<</Subtype/Type1C/Filter/FlateDecode/Length 205 0 R>>stream
+x�eU   address@hidden
(jq��\*"W��ၥ�h�5D������2��h6ʪ�տg�y�$��TuUWw����;��є�EӴ�.:,$0l�_�N�:G��&Ђ���%�w��oA�3�\�(
address@hidden/;eur���o�����C��n�NI��P���$��s�G�J���b�ɛ��MKSE�_�"
_���>�ꗙn��1d�B3��EM��Hݐ��g4���Ó#sRt�A����)j��RS��XJK�S.�*�
+��R��t�Dͥ�)=���QQ�tj15�ZJ�Q�/%%�eT�N��V��B�*��2f7�����ǭ�K"${$�ٙl"��}*'�IO|�C�Z��=G#��)address@hidden|��]�n.Vt�
E�a��^�㞗��T�`��I��Z���U)c�ق;�=��/qX����
vx�i}����k����D}A���u
�^��zz���J{�Tm�XEZ��K=�<g9v(ZN�l�.l�؈]7Y�S �
k���-K=�飁�<$���9��ã}u{�����w�9RZ"��
f�!�^,Bw���F�
#L��g��ZPJ�Qyi9��,�ƒ���v��’BĹ���v���GJ�HK#�������ӱ���:�(�}��)�/��n���4����&�m���O����
    
2E����,�_b�.��B���d��/�:���Z�]���6K�Aɣ���Ԍ�uٛ���8���|��9�5b��z��lf�H�b�$���}B�{Y��
 ��{�)aן��+> *��gE�m�{"�#<�x�!��AD�H<���9VC���M����~1+7 9��3ax
�$P�^�66� 
�Q��n��E3�V2̼?�'3.d�Fܫg���!`=cI�ڤ�f��1f�Pk]{���&��������O���~�rS%ډ~Ǎ����a
���MFp�L�.�N��p'��j20�:�p'{9        l��Y{쬲�nHtж$_��;�r{���zZ��DWэ�
+}��>tC��A�~ab?���6��CRXD�   
��'�\�����1��������/���X%�֓&Pn���>���&�6�B�V    
����:�v�Z��,���snD�n\a
�^wu
��ڥn%���Vp������~�I�~!��N����k{���T�5�‹�$쁓p28c�8�Pz�Iя�$?�x=����u�Sĸa�h�l�a{�)Ĵ��r�O7���Ѵݰ◩�����6b�����Ė�l�
+�`�}����x��=�~��S<Y���5��n,hq�d�
+�y��)R��i��`-�i�<Y��1&x'�U�� /�*�W��
�Y݆�����(��^��cۭ�1w���uKkg�j�����`2�����ӕ'Io:��H�����*�I~�8&��al;/� 
       
�b�����M]E�"�5kmja*��*8�B�������i��KD��,����-؉��v�4��5'����]��e�e6y*��b1%�Ms�;.^ٸ�BakA���ۏeWm�Y�⸠Ƞ9
        
��;=��E���[$ً7`u7�rn�r��5�\���ߝ~tKY�qt�k�v�œ�k�#�s]p��o����7�>��`���M
+x⍟I���>n�<�Ԭ��F��Fe��`�nÚѭ}���U��.$H� �������.����劲��
W*���ҹD_e�O߁�ƣ�\\��Ӄ���xK������G�Qv���<CI�bWi���M;E���ZF��c�0��j���f��!�D��k�`����$�(���u�Q��q

�O��*�d�x���)�/Z,G�<�#���c��1)fƋ�\|���XV�����-��ԯRd����"?�<���������{4����)�ϭ�hjp�a��aqB��dc�Lac�Qe;ʴ���|�֎��
��ec
+endstream
+endobj
+205 0 obj
+2049
+endobj
+137 0 obj
+<</Type/FontDescriptor/FontName/HTSCTG+CMMI5/FontBBox[60 -194 1138 705]/Flags 4
+/Ascent 705
+/CapHeight 705
+/Descent -194
+/ItalicAngle 0
+/StemV 170
+/MissingWidth 333
+/CharSet(/comma/D/lscript/a/d/i/m/n/x)
+/FontFile3 136 0 R>>
+endobj
+136 0 obj
+<</Subtype/Type1C/Filter/FlateDecode/Length 206 0 R>>stream
+x���kLSg�ϡ�G�n�.�9ը��t�elN�:/ ��K�RZzZ)��h��J-ڂL���
N�M��M�b`nƸ}pnF}�w�e���d���}��}����yp,4�q<r{Jr\�g+�v���X���CX}tmt��`u�����9(m6���6������]�qB�\��˗r��-笉�Y��,���9�BNW��p�̡��,�����U�����
+       '�'ቋy����
+D2)O�I��$9b�H�a����[��RA�!
KĶbK��ا�~l7���l6�����xY��g������OH���%�z�����Q̏h��?bkĕY�%d-��N���N-�#u�{�|0��M��!���[���],M���rP�_�]~>���p(@�0�J5dibF�A
 ��f��lk�P��3(ƈ[i��ħd����XW.������`q���̔���� 
=�G��U<M�UekeD�ː��9S-�}qx��w�L?+�^p1��X�U����y
+�ޠ���5�!��0���I���5��J���ӫ%+K��z⁠�z�h�����W.56R-Ɗ�0�^���)��'&��
�cZR���p>�
address@hidden �aHԜ�hM���p��0�?e!�[%0�6!>B�QX�*�
+%!1���=�7Q/V���1ύ�a���MA�k*��z��L�[hm�
�&���{�a+�K�77�ߴ�f�/e�}�%T��
��I+���^Y��N��`(�]�Z$<":"���}'��ȑR�?L)�I��bj�[[)k����07����km�kq6c 
~Q2��h���ⴐ��g���h�W�tP�)���L���V����Uj��   
:���ӋL�H&�ႾW��r�6�ö�m}`!\�-��B�"�3<�����Z-}Mx����W��"����*`g(!
��Q����}��o�N.���<��.{���-���I7�F���z4����_�&�o���PeI�C��B�4�����     
Y�L�[rp����1���vr 񊪛=�&��;�D����
+�ld!ȶ_l�zk��щX֖�㾁Q���#��C�V�ц�><�b`����W������U;��r��?�Y�a9$�����_w��k���V27ۇjmO���5�{�?7����
+�hk�!YU����z����Ns��(
+�c!��
+�SD�*�^���4T44���}]���IG���N��fg���ឲ'�����BէY7��5Zm
S��)�4:Ⱦ�z��Žvt����tz-�F3����U���h�d�0��^ 
>�|<�1���G�=FX�e�)�$�T������LF��:��mv����?��,���}��r*/address@hidden:���x0���1���
 "��pf7�
+endstream
+endobj
+206 0 obj
+1420
+endobj
+82 0 obj
+<</Type/FontDescriptor/FontName/PANABI+CMEX10/FontBBox[44 -1159 999 40]/Flags 4
+/Ascent 40
+/CapHeight 40
+/Descent -1159
+/ItalicAngle 0
+/StemV 149
+/MissingWidth 333
+/CharSet(/parenleftbig/parenrightbig/summationtext)
+/FontFile3 81 0 R>>
+endobj
+81 0 obj
+<</Subtype/Type1C/Filter/FlateDecode/Length 207 0 R>>stream
+x�cd`ab`dd�p�st��v�u�04�(��f�!��C��X�K�뺟3X���,�=]�{��h6FF7����F���ʢ���
gMCKKs��Ԣ���<�Ē���� 
'G!8?93��RO�1'G!��X!(�8��,5b�s~nAiIj��o~JjQ^AbQj^NjZIRf:�
��).���W�ZQ��������������;C�F�����|�O����\ 
��6����C��͢�����}�{��$~7/y����E��٧��|��.6eJwow/������P��:9�߼^�=�w�VZ�;���o۩�g��vs�O��*�f����ߏ�9"��]��{�o�ﶍӽ�Wvs��t6��v�w��?c����"�)*�z�jM������#����;�;9�'uN�u����r�����������?�|���C�d73���3CtҔ޾�������)�o���������{U����K�L�ױ���V�Օ#���O������:��%�tϕ�y����^�"�"?���6�����l�����}4�}�.n9.��|�͓xx����*��R
+endstream
+endobj
+207 0 obj
+559
+endobj
+146 0 obj
+<</Type/FontDescriptor/FontName/DXUKUW+CMMI8/FontBBox[9 -250 601 750]/Flags 4
+/Ascent 750
+/CapHeight 750
+/Descent -250
+/ItalicAngle 0
+/StemV 90
+/MissingWidth 333
+/CharSet(/sigma/slash/lscript/u)
+/FontFile3 145 0 R>>
+endobj
+145 0 obj
+<</Subtype/Type1C/Filter/FlateDecode/Length 208 0 R>>stream
+x��mHSQ��qj'S�bP��^���O"�d�
E��Ht��-4m��3u�՜��֝�SgS���4�"��Q�IяaE��?�]2
�?����(
+��]\�Sxr�V�;��:0J2P�F))*3q����LDNl���8#���hNiE����b2�x6M�a�<x��j�L�j�V��
\��_)�lAc���-;٬�z6�0����3�p5�_��
M�<gbu�5����Xנ�7W��M<EuE7N������$���Y1��Pw�%��2��%.G�md����E��uw�)�1K�f��O��򄑂./
+������*�j�yC}�䢯�?5���+����40�T[%���wg���⒛95g�A!t���?63�����X���g�tg�%�
+A�6*_������p��>�;%�!ω֎f��"����E\�
+�Rv�.R��Q?r�!A�<��
+����ԋz�tJ�Ј{Pr���XA�Ko
+���*����A�>�{y�lBm4qƒ�$��% 
�p�O����y�:�5ʐv��.��z{/�����(�e[6ѐ8&q܁�U�����;l�P�t\����J�������G�3z 
C��r�H6�E�ׅz�lt{G�������Dh��~4����\y���6�=z#����"�}BwO��tUmW�`�~�A��1f��Zzzo��4xs��פ��V��A♢C�G�v��2�'�%�/�TJk&�>�����ů�������L�
+endstream
+endobj
+208 0 obj
+743
+endobj
+143 0 obj
+<</Type/FontDescriptor/FontName/DGXATW+CMSY5/FontBBox[0 0 923 559]/Flags 4
+/Ascent 559
+/CapHeight 559
+/Descent 0
+/ItalicAngle 0
+/StemV 138
+/CharSet(/minus/prime)
+/FontFile3 142 0 R>>
+endobj
+142 0 obj
+<</Subtype/Type1C/Filter/FlateDecode/Length 209 0 R>>stream
+x�cd`ab`dd�uq�p       �v�
�4     (��f�!��C�y�?�?W����V軓�w[���,��n�Q����E��%
+Κ
+����
+���E�ɉy
address@hidden
+�V��܂Ғ�"���Ԣ�����T�&ƅ
��1v10322i���g�)�^t���g?�/��E�3�u/_^�]'�מ���;?Y�
y���;~l\��d>c�������H�0�r�l�5�K���3��~��qk����[S7ejO���r|ŋ�/d�->��0���3xx�\q�
+endstream
+endobj
+209 0 obj
+308
+endobj
+140 0 obj
+<</Type/FontDescriptor/FontName/RDQYVC+CMR5/FontBBox[91 -167 930 667]/Flags 4
+/Ascent 667
+/CapHeight 667
+/Descent -167
+/ItalicAngle 0
+/StemV 139
+/MissingWidth 472
+/CharSet(/plus/two)
+/FontFile3 139 0 R>>
+endobj
+139 0 obj
+<</Subtype/Type1C/Filter/FlateDecode/Length 210 0 R>>stream
+x��g�
RDQYVC+CMR5!��������Y���7�2�.FJYCopyright (C) 1997 
American Mathematical Society. All Rights ReservedCMR5Computer Modern+2
V���8����;����������r�������p�~�������oo�p}����~p�oo�������}�p��������������
+ַ��   ������Ua�x�M{���7�|��Xͼ��dz���ŋ���
��#�(=)W��������q�l���ũ΋��Q)7QK>J���c������m�eu��?�����n��b��
+�
+7�   ����
g,��
+endstream
+endobj
+210 0 obj
+419
+endobj
+152 0 obj
+<</Type/FontDescriptor/FontName/ABEFCA+CMR6/FontBBox[72 0 538 665]/Flags 4
+/Ascent 665
+/CapHeight 665
+/Descent 0
+/ItalicAngle 0
+/StemV 80
+/MissingWidth 416
+/CharSet(/one/two)
+/FontFile3 151 0 R>>
+endobj
+151 0 obj
+<</Subtype/Type1C/Filter/FlateDecode/Length 211 0 R>>stream
+x�cd`ab`dd�qtrusv�v�
2�~H3��a�!�\��O�e��&�u?؅��    
~7���+��������_PY���Q��ᬩ`hii����Z�������X����X��(�'g��T�)8��(�t+�������t��-(-I-R��OI-�c```24b`b��|�?��U��3%�to�1�����u2���_te{w����jwz7G
+�����Ǘs��e���S�KHa;���0��>�α)�]�{�y�YO�?���dc�w��S?0�X��_4����ѳ���ժ�����?ۊE��X�vٓӫV�\�e_�%�Y����-jh���uڒs�/�[/�h߉��9���r�qr�����;�����;G��;_ق��~/��=*���i웸�q�q�����\=����^�C�&
+endstream
+endobj
+211 0 obj
+414
+endobj
+149 0 obj
+<</Type/FontDescriptor/FontName/BZBABP+CMR8/FontBBox[96 0 447 665]/Flags 4
+/Ascent 665
+/CapHeight 665
+/Descent 0
+/ItalicAngle 0
+/StemV 67
+/MissingWidth 354
+/CharSet(/one)
+/FontFile3 148 0 R>>
+endobj
+148 0 obj
+<</Subtype/Type1C/Filter/FlateDecode/Length 212 0 R>>stream
+x�cd`ab`dd�q�rrt
+�v�
���H3��a�!˜���ס�M���w 
}7����]G������+�9���(3=�DA�YS����\�17�(391O�7�$#57���Q�O�L-��Sp��Q�(VJ-N-*KMY霟[PZ�Z�����Z�����h��
 �������1Ik�&a��5?V��>����-���~
+�.��)�KJ+����b_�}���2�?S��:�u�2�ض�=������tp��`�阾A��l�O������?��w�4�5\׹��X���p.���s}6/01f
+endstream
+endobj
+212 0 obj
+289
+endobj
+187 0 obj
+<</Type/FontDescriptor/FontName/WSVMYV+CMR9/FontBBox[57 -92 741 593]/Flags 4
+/Ascent 593
+/CapHeight 593
+/Descent -92
+/ItalicAngle 0
+/StemV 111
+/MissingWidth 342
+/CharSet(/plus/equal)
+/FontFile3 186 0 R>>
+endobj
+186 0 obj
+<</Subtype/Type1C/Filter/FlateDecode/Length 213 0 R>>stream
+x�%�;O�P���X"V|address@hidden@�Q���8�������88���Y���[(K����.!����h2�Dc��kZ.k����c}t7�A��4�B����2`
 
<9MF�RU�]]+h+��D1��,�2�"���k\H+�Q\���R�E�|�f�2��2�5��]F�BIU���R�E�+p�ٓ��=����o�)���O�~�
 
��%Ҫ��ٖNt�Bj�ݧ�C��F�o쁧�D�K:u������[�����4hB2:fF����:"�ԅ�[W���ȳ`�픿mC���0�eoo�AڂO5FG���B�M־|��{����q���7�p��[{��
+endstream
+endobj
+213 0 obj
+355
+endobj
+184 0 obj
+<</Type/FontDescriptor/FontName/WLASMM+CMMI6/FontBBox[54 -194 842 676]/Flags 4
+/Ascent 676
+/CapHeight 676
+/Descent -194
+/ItalicAngle 0
+/StemV 126
+/MissingWidth 333
+/CharSet(/comma/T/t)
+/FontFile3 183 0 R>>
+endobj
+183 0 obj
+<</Subtype/Type1C/Filter/FlateDecode/Length 214 0 R>>stream
+x��mHq����esV00���EQ��F�A�5ȧB�+G7O�m>��ּ��o��s����p
,4z���Eo�����TЋ�7�O�0������ 
�q���v�����8wb�`��ז�u���-]Y���=�i79VE��B&�Ϟ���cn��~��o?�mll`m.����`=b?��7϶�NN;��x�m�"��6n�s{���P��􈜛u}�{!d;��D�Q�vKT�f�����΋�
���E�Z"g���gy��X      ��)x���X�>j�0�4܅��G��   
�P�V��'address@hidden,п��摓#���m'��ַ�{R���e����/,�%�y������{)��<address@hidden
+:�N��i�ɓ����0�j���-ղPi%�Ϥ"��Y��<address@hidden,H����=b$Z�|�|!
+yf�#y(@A-�����f�hlbJ*<x��DD��4�y�D�r�F��w�D�SV8t��� 
�0L���`<�u�T}zs����r�r:K$�7�~*g�'�I��N�/V|��T�6d�;cf3B���
+�
+endstream
+endobj
+214 0 obj
+614
+endobj
+181 0 obj
+<</Type/FontDescriptor/FontName/JQZWLZ+CMMI9/FontBBox[18 -216 869 712]/Flags 4
+/Ascent 712
+/CapHeight 712
+/Descent -216
+/ItalicAngle 0
+/StemV 130
+/MissingWidth 333
+/CharSet(/alpha/beta/gamma/delta/zeta/eta/theta/iota/kappa/lambda/mu/nu/pi/rho/sigma/upsilon/epsilon/F/R/X/Y/Z)
+/FontFile3 180 0 R>>
+endobj
+180 0 obj
+<</Subtype/Type1C/Filter/FlateDecode/Length 215 0 R>>stream
+x��WypW�VcP�c�����e!��d��ᾃ1���d[�-��}�OG�u[�%ے��-c��
+�+�pNfrT*TRL&�ݩ�'�1�}"�����RWu������}��)��a"��Ƽ�9w����9�ׯY�~��z�JM���Q����D?�w�W&address@hidden(W��~��"{K����-�u�������ȩ��)䅵�����VՖTוWJ�����B�T!�+���*��K˥2��BZ��_*���H��d���e��+��c��Ÿ^����ٕ�jˤ_�8f�ԉ��<?y���KR�
 �=Dه���w�r���)�  �?I�O���)�Y����Sp�r�DKDKE��f�^)��N9('��x�M  ���R>�O� 
M&:����{m؉���Ј�#.�q乷��G/�S#����(��9�ţ�1Ǵ���#�~���?fl��|�{B�Q)>5Q��z�+���>���G�|���v�.�Wk*����srh%4ڕ���PmR�R�����A
��u��e���<�`�>;������kt�6h`����2�A�}�#��
Ju���/���Q��Z����%����ZmM�V�a���E&
�堉6��>��܌��    a�@;address@hidden      address@hidden"�N$�޾@ 
Ҟ����3y�����~��6k8�^�x����Q��c�Oxtq�m�.�kP�MfTώ�q�6���8uCrﳣ�cN����1�F[�v1�P��ڜ��Ϲ٘�orS]�ٰ�g����)Dqdu�o0��i|�S��RMv�����B���\:9Qk��W�)d���֬To�,opt��i*�^�����p�Sz�(�ځ����-Jp4�
+'�/��|{����yp��;��[�        �3�����?��'�O�H��
~�g�F��Jq-p��a^�i��L`�
n�Gp��f�8{�4z]�􃿏�,VX��n�2���8����;H�       vW�����jm�F#œ���W�W� 
~����>tj�B�П$�
iʭ��T�Z4$�6�����v>�b.�
+���>�mtZ�Qea���y)���������~�%�1��Q��R�
��7zv!�`bh�.M�&n��}sE�f;�v��
+6�g==��/address@hidden:��isA�D��j%g������8:�7!U���?O�؜�z"qǝ���k��П�a0��y��}l]ӮB
 �#Y�MI~�1|N?�sg1��X�!�����fl�3     ���t�_ak=6��g'8��-�˜x� 
~Թ��F����G�i�|�x���a�䁖3k,�jgQIЅ��q��]`a��•�Û�i��/܄+bh]<5'J!z"�#�p�auPYn������,-���,address@hidden;N7��;�E�C7��U�i8s��Q�VQI�������G�I���y�:��t'��Ҡ>�(7ʪ�L�b]A��5Y�%w�b��ÝH�3�?������~F;3N�^�CF/����Nc�|���J���v�p�[+�^"��&�ih�w?Z��z���E�q�$G����
+�gІǡN�O%�[���}9l]������i�!�6��
��!��(#u 5B<� 4�X#Ƴ1���3�n����"��ܔ��,��HR�=���a�
+���)ś���{ֲey���y����oZ�k��4�)��o�W�a�ݼ��fs��2�����d~�m���Y��mk7ZZ�-lͫ�� 
����p��I|#\r��/address@hidden>�A+���؎��k��ӥ��] ������e�7z�*�|�g�?��ʛ�
��X��gѨ��lWo3֑�Xi���#��
��M�]�������p��&t�}     v��     )�G<�����
;g�r���ug��$w�\�����kLLw��j�5��<~&�1��8xMb<address@hidden"�Q���>�����B/I�~��Lf�)����h�
+vz�<1�,�"���U�U�c���wL
Ɔ����<���k߅:���2���Q�i��^�O|��#
+��'|�����_Rs��᜙S�/�zBG�rO�!��5���(address@hidden/uu�0��е���T��Q�S�V�U�DG\H��u�
 
����ʭuU��{Z;#'O${;[��h�H������].8��~cn�nf��چ}�ik��f�cO�F��0tLr��ý�h�'�:ł�w���aqi�栩
��ngʯ���~jP�<��c{́�֢企��p�3u:�;]х��.WZ*�_��3�ct�NFJ�44k����<3x��;��C��oELpW�Yb�����Z΢��ڪ�f%���u4��m�u'�{�_7m�Z�&3�+�/[��^�;Im�ҷ~�֢C�����8z��U�=tl�n�l7�������6A,��1��o�ĕ;\����U�
6c���h2^�O�Qo�JMu��R�g�kZo�)WY�&y:�B�bBb43��~�5�>���߃��SY��ل��ix4�ܗ�>���xG
-��T<G�8���Ю3�x��]Pp����h�q�8����oHa�FYh
+bnԜ���wO%o�U���+�pI��,c��X�46Wіb����h�b��*_5��h�6(�MZ��d;�*(address@hidden:address@hidden&,address@hidden"7Yأ�KŹ�!
졫����Wwz�ħ��d25g�/�8s��iY��6������[�h���h���ߧ{�)2��<�N<����#�;�uo����A�{2P�T.$7��y
      ���žB��ЈuD:�i
+�w�tBN�}J���_Z���:(��<��x�g
��𹙳����"އg��ӌ��]=Y������b$W�k����?�����?��� 
�RoI��g�р3i������AӾy�R�Sr��O�$��>�մĘ�ဲ�`mo��P;�|l�_      
address@hidden/������W�m�yt+�V#f(
��ɤ��;ѝ8e����S�2H������e<�ks:�Կ�D�$�3�6ΔD?��?z��ȡ�N��u-,�ش�y�/�4�k\^��&�`�n���\�+�A�M25P�3����tL:GAO�'MG
address@hidden/���;4��È��6�H�525���+�ک꫉d���     
v�Us�9�W�H��l�qŠ"y*=V��dY����b,�?�7���̨ዢ�G�ݣG�D��g��
+endstream
+endobj
+215 0 obj
+3603
+endobj
+34 0 obj
+<</Subtype/Type1/BaseFont/URWYVG+CMR10/Type/Font/Name/R34/FontDescriptor 33 0 
R/FirstChar 40/LastChar 126/Widths[ 385 385 333 782 333 333 333 333
+505 505 505 505 505 505 505 333 505 333 277 277 333 782 333 333
+333 333 333 333 333 333 333 333 333 333 333 333 333 333 333 333
+333 333 333 333 333 333 333 333 333 333 333 333 333 333 505 333
+333 505 333 333 333 333 333 505 333 277 333 333 277 831 554 505
+333 333 333 333 333 333 333 333 529 333 333 333 333 333 505]
+>>
+endobj
+67 0 obj
+<</Subtype/Type1/BaseFont/KAGGYL+CMSS8/Type/Font/Name/R67/FontDescriptor 66 0 
R/FirstChar 49/LastChar 117/Widths[ 533 533 354 354 354 354 354 354 354 354 354 
354 354 354 354
+354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354
+354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354
+354 354 354 464 550 464 354 354 354 354 354 354 354 354 550 533
+354 354 361 412 354 550]
+>>
+endobj
+182 0 obj
+<</Subtype/Type1/BaseFont/JQZWLZ+CMMI9/Type/Font/Name/R182/FontDescriptor 181 
0 R/FirstChar 11/LastChar 192/Widths[ 655 575 535 455 333
+455 508 481 361 588 602 615 508 333 588 535 588 333 562 333 333
+333 333 481 333 333 333 333 333 333 333 333 333 333 333 333 333
+333 333 333 333 333 333 333 333 333 333 333 333 333 333 333 333
+333 333 333 333 333 333 655 333 333 333 333 333 333 333 333 333
+333 333 776 333 333 333 333 333 843 602 695 333 333 333 333 333
+333 333 333 333 333 333 333 333 333 333 333 333 333 333 333 333
+333 333 333 333 333 333 333 333 333 333 333 333 333 333 333 333
+333 333 333 333 333 333 333 333 333 333 333 333 333 333 333 333
+333 333 333 333 333 333 333 333 333 333 333 333 333 333 333 333
+333 333 333 333 333 333 333 333 333 333 333 333 333 333 655 575
+535 455 333 455 508 481 361 588 602 615 508 333 588 535 588 333
+562]
+>>
+endobj
+31 0 obj
+<</Subtype/Type1/BaseFont/Times-Roman/Type/Font/Name/R31/FirstChar 1/LastChar 
255/Widths[ 333 556 556 167 333 611 278 333 333 1000 333 564 1000 611 444
+333 278 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 333 180
+250 333 408 500 500 833 778 333 333 333 500 564 255 331 255 278
+500 500 496 500 500 500 500 500 500 496 278 278 564 564 564 444
+921 722 662 662 722 617 557 722 722 331 389 722 617 888 722 722
+557 722 662 557 617 722 722 948 722 722 611 331 278 331 469 500
+333 436 496 436 496 436 331 496 496 271 278 496 271 782 496 496
+496 496 331 391 271 496 496 722 496 496 436 480 200 480 541 1000
+500 1000 333 500 444 1000 500 500 333 1000 556 333 889 1000 1000 1000
+1000 1000 1000 444 444 350 500 1000 333 980 389 333 722 1000 1000 722
+1000 333 500 500 500 500 200 500 333 760 276 500 564 331 760 333
+400 564 300 300 333 500 453 250 333 300 310 500 750 750 750 444
+722 722 722 722 722 722 889 667 611 611 611 611 333 333 333 333
+722 722 722 722 722 722 722 564 722 722 722 722 722 722 556 500
+444 444 444 444 444 444 667 444 444 444 444 444 278 278 278 278
+500 500 500 500 500 500 500 564 500 500 500 500 500 500 500 500]
+>>
+endobj
+64 0 obj
+<</Subtype/Type1/BaseFont/SWNLGN+CMSS10/Type/Font/Name/R64/FontDescriptor 63 0 
R/FirstChar 67/LastChar 122/Widths[ 638 722 602 333 662 333 277 333 698 333 879 
710 333
+333 734 650 554 333 333 333 333 333 333 333 333 333 333 333 333
+333 481 333 445 517 445 333 333 517 240 333 333 333 794 517 505
+517 333 337 333 361 517 333 333 457 457 433]
+>>
+endobj
+118 0 obj
+<</Subtype/TrueType/BaseFont/EKSQRI+Helvetica-Oblique/Type/Font/Name/R118/FontDescriptor
 117 0 R/FirstChar 33/LastChar 39/Widths[ 666 666 556 556 722 277 277]
+>>
+endobj
+27 0 obj
+<</Subtype/Type1/BaseFont/KICTLL+CMSY10/Type/Font/Name/R27/FontDescriptor 26 0 
R/FirstChar 0/LastChar 195/Widths[
+782 277 782 0 0 0 782 0 0 0 0 0 0 0 0 505
+0 782 0 0 782 782 0 0 0 0 0 0 0 0 0 0
+999 999 0 0 0 0 0 782 0 0 0 0 0 0 0 0
+0 0 662 0 0 0 0 0 0 0 0 0 0 0 0 0
+0 794 662 529 0 529 0 0 843 0 0 0 0 0 819 794
+0 0 843 602 0 626 0 0 0 0 0 0 0 0 0 0
+0 0 0 0 0 0 505 505 385 385 0 0 0 0 0 0
+0 0 0 0 0 0 0 0 445 0 0 0 0 0 0 0
+999 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+0 782 277 782 0 0 0 782 0 0 0 0 0 0 0 0
+0 0 505 0 782 0 0 782 782 0 0 0 0 0 0 0
+0 0 0 999]
+>>
+endobj
+162 0 obj
+<</Type/FontDescriptor/FontName/Courier>>
+endobj
+163 0 obj
+<</Subtype/Type1/BaseFont/Courier/Type/Font/Name/R163/FirstChar 1/LastChar 
255/Widths[ 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600
+600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600
+600 600 600 600 600 600 600 600 600 600 600 600 600 602 602 602
+602 602 602 602 602 602 602 600 602 602 602 600 600 600 600 600
+600 600 600 600 600 600 600 602 600 600 600 600 600 600 602 600
+600 600 600 600 600 602 600 600 600 600 600 600 600 600 600 602
+600 602 600 602 602 602 602 602 602 602 602 600 602 602 602 602
+602 600 602 602 602 602 602 602 600 600 600 600 600 600 600 600
+600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600
+600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600
+600 600 600 600 600 600 600 600 600 600 600 600 600 602 600 600
+600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600
+600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600
+600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600
+600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600
+600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600]
+>>
+endobj
+121 0 obj
+<</Subtype/TrueType/BaseFont/GIYXZS+LucidaGrande/Type/Font/Name/R121/FontDescriptor
 120 0 R/FirstChar 33/LastChar 37/Widths[ 693 602 623 316 584]
+>>
+endobj
+153 0 obj
+<</Subtype/Type1/BaseFont/ABEFCA+CMR6/Type/Font/Name/R153/FontDescriptor 152 0 
R/FirstChar 49/LastChar 50/Widths[ 602 602]
+>>
+endobj
+150 0 obj
+<</Subtype/Type1/BaseFont/BZBABP+CMR8/Type/Font/Name/R150/FontDescriptor 149 0 
R/FirstChar 49/LastChar 49/Widths[ 526]
+>>
+endobj
+12 0 obj
+<</Type/FontDescriptor/FontName/Times-Bold>>
+endobj
+57 0 obj
+<</Subtype/Type1/BaseFont/Times-Bold/Type/Font/Name/R57/FirstChar 1/LastChar 
255/Widths[ 333 554 556 167 333 667 278 333 333 1000 333 570 1000 667 444
+333 278 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 333 278
+250 333 555 500 500 1000 833 333 337 337 500 570 252 337 252 278
+500 505 505 505 500 500 505 500 505 500 337 333 570 570 570 500
+930 722 662 722 722 662 611 782 782 385 500 778 667 939 722 778
+614 782 722 554 662 722 722 1000 722 722 667 337 278 337 581 500
+333 505 554 445 554 445 337 505 554 277 333 554 277 831 554 505
+554 556 445 385 337 554 500 722 505 505 445 394 220 394 520 1000
+500 1000 333 500 500 1000 500 500 333 1000 556 333 1000 1000 1000 1000
+1000 1000 1000 500 500 350 500 1000 333 1000 389 333 722 1000 1000 722
+1000 333 500 500 500 500 220 500 333 747 300 500 570 337 747 333
+400 570 300 300 333 556 540 250 333 300 330 500 750 750 750 500
+722 722 722 722 722 722 1000 722 667 667 667 667 389 389 389 389
+722 722 778 778 778 778 778 570 778 722 722 722 722 722 611 556
+500 500 500 500 500 500 722 444 444 444 444 444 278 278 278 278
+500 556 500 500 500 500 500 570 500 556 556 556 556 500 556 500]
+/Encoding 216 0 R>>
+endobj
+216 0 obj
+<</Type/Encoding/Differences[
+2/fi]>>
+endobj
+147 0 obj
+<</Subtype/Type1/BaseFont/DXUKUW+CMMI8/Type/Font/Name/R147/FontDescriptor 146 
0 R/FirstChar 27/LastChar 190/Widths[ 602 333 333 333 333
+333 333 333 333 333 333 333 333 333 333 333 333 333 333 333 333
+333 333 333 333 333 333 333 333 333 333 333 333 333 526 333 333
+333 333 333 333 333 333 333 333 333 333 333 333 333 333 333 333
+333 333 333 333 333 333 333 333 333 333 333 333 333 333 333 333
+436 333 333 333 333 333 333 333 333 333 333 333 333 333 333 333
+333 333 333 333 333 617 333 333 333 333 333 333 333 333 333 333
+333 333 333 333 333 333 333 333 333 333 333 333 333 333 333 333
+333 333 333 333 333 333 333 333 333 333 333 333 333 333 333 333
+333 333 333 333 333 333 333 333 333 333 333 333 333 333 333 333
+333 333 333 333 333 333 333 333 333 333 333 333 333 333 602]
+>>
+endobj
+14 0 obj
+<</Type/FontDescriptor/FontName/Times-Italic>>
+endobj
+8 0 obj
+<</Type/FontDescriptor/FontName/Times-Roman>>
+endobj
+144 0 obj
+<</Subtype/Type1/BaseFont/DGXATW+CMSY5/Type/Font/Name/R144/FontDescriptor 143 
0 R/FirstChar 0/LastChar 161/Widths[
+1084 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+433 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+0 1084]
+>>
+endobj
+56 0 obj
+<</Subtype/Type1/BaseFont/WMRWUG+CMSY7/Type/Font/Name/R56/FontDescriptor 55 0 
R/FirstChar 0/LastChar 164/Widths[
+894 344 0 585 0 0 0 0 0 0 0 0 0 0 0 0
+0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+326 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+0 911 0 0 0 619 0 0 980 0 0 0 0 0 0 0
+0 0 0 0 0 722 0 0 0 0 0 0 0 0 0 0
+0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+946 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
+0 894 344 0 585]
+>>
+endobj
+18 0 obj
+<</Subtype/Type1/BaseFont/Times-Italic/Type/Font/Name/R18/FirstChar 1/LastChar 
255/Widths[ 333 505 500 167 333 556 278 333 333 1000 333 675 1000 556 389
+333 278 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 333 214
+250 333 420 500 500 833 778 337 337 337 500 675 252 337 252 277
+505 505 505 505 505 505 505 505 505 505 337 333 675 675 675 500
+920 614 614 662 722 614 614 722 722 337 445 662 554 831 662 722
+614 722 614 505 554 722 614 833 614 554 556 385 278 385 422 500
+333 505 505 445 505 445 277 505 505 277 278 445 277 722 505 505
+505 505 385 385 277 505 445 662 445 445 385 400 275 400 541 1000
+500 1000 333 500 556 889 500 500 333 1000 500 333 944 1000 1000 1000
+1000 1000 1000 556 556 350 505 889 333 980 389 333 667 1000 1000 556
+1000 389 500 500 500 500 275 500 333 760 276 500 675 337 760 333
+400 675 300 300 333 500 523 250 333 300 310 500 750 750 750 500
+611 611 611 611 611 611 889 667 611 611 611 611 333 333 333 333
+722 667 722 722 722 722 722 675 722 722 722 722 722 556 611 500
+500 500 500 500 500 500 667 444 444 444 444 444 278 278 278 278
+500 500 500 500 500 500 500 675 500 500 500 500 500 444 500 444]
+/Encoding 217 0 R>>
+endobj
+217 0 obj
+<</Type/Encoding/Differences[
+2/fi
+150/endash]>>
+endobj
+17 0 obj
+<</Subtype/Type1/BaseFont/Times-Roman/Type/Font/Name/R17/FirstChar 1/LastChar 
255/Widths[ 333 554 554 167 333 611 278 333 333 1000 333 564 1000 611 444
+333 278 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 337 180
+250 333 408 500 500 833 778 337 337 337 500 566 252 337 252 277
+505 505 505 505 505 505 505 505 505 505 277 277 564 564 564 445
+921 722 662 662 722 614 554 722 722 337 385 722 614 891 722 722
+554 722 662 554 614 722 722 939 722 722 614 337 278 337 469 500
+333 445 505 445 505 445 337 505 505 277 277 505 277 782 505 505
+505 505 337 385 277 505 505 722 505 505 445 480 200 480 541 1000
+500 1000 333 500 444 1000 500 500 333 1000 556 333 889 1000 1000 1000
+1000 1000 1000 445 445 350 505 999 333 980 389 333 722 1000 1000 722
+1000 333 500 500 500 500 200 500 333 760 276 500 564 337 760 333
+400 564 300 300 333 500 453 250 333 300 310 500 750 750 750 444
+722 722 722 722 722 722 889 667 611 611 611 611 333 333 333 333
+722 722 722 722 722 722 722 564 722 722 722 722 722 722 556 500
+444 444 444 444 444 444 667 444 444 444 444 444 278 278 278 278
+500 500 500 500 500 500 500 564 500 500 500 500 500 500 500 500]
+/Encoding 218 0 R>>
+endobj
+218 0 obj
+<</Type/Encoding/Differences[
+3/fl
+30/grave
+147/quotedblleft/quotedblright
+150/endash/emdash]>>
+endobj
+53 0 obj
+<</Subtype/Type1/BaseFont/UGUYIV+CMMI7/Type/Font/Name/R53/FontDescriptor 52 0 
R/FirstChar 28/LastChar 191/Widths[ 533 333 333 333
+333 333 533 333 333 333 333 333 333 333 333 333 333 333 333 333
+333 333 333 333 333 333 333 333 333 333 344 344 333 333 333 333
+333 333 333 333 929 333 333 333 929 499 333 963 791 333 333 333
+722 894 860 705 671 333 333 333 929 333 333 333 333 333 333 333
+481 619 499 333 602 533 333 550 671 395 464 602 333 1015 705 333
+585 516 533 333 430 671 567 333 653 333 333 333 333 333 333 333
+333 333 333 333 333 333 333 333 333 333 333 333 333 333 333 333
+333 333 333 333 333 333 333 333 333 333 333 333 333 333 333 333
+333 333 333 333 333 333 333 333 333 333 333 333 333 333 333 333
+333 333 333 333 333 333 333 333 333 333 333 333 333 333 333 533]
+>>
+endobj
+141 0 obj
+<</Subtype/Type1/BaseFont/RDQYVC+CMR5/Type/Font/Name/R141/FontDescriptor 140 0 
R/FirstChar 43/LastChar 50/Widths[ 1035 472 472 472 472
+472 472 674]
+>>
+endobj
+50 0 obj
+<</Subtype/Type1/BaseFont/AUBXGT+CMR7/Type/Font/Name/R50/FontDescriptor 49 0 
R/FirstChar 40/LastChar 94/Widths[ 447 447 384 877 384 384 384 384
+567 567 567 567 567 384 384 384 384 384 384 384 384 877 384 384
+384 384 384 384 384 384 384 384 384 384 384 384 384 384 384 384
+384 384 384 384 384 384 384 384 384 384 384 384 384 384 567]
+>>
+endobj
+138 0 obj
+<</Subtype/Type1/BaseFont/HTSCTG+CMMI5/Type/Font/Name/R138/FontDescriptor 137 
0 R/FirstChar 59/LastChar 120/Widths[ 457 333 333 333 333
+333 333 333 333 1108 333 333 333 333 333 333 333 333 333 333 333
+333 333 333 333 333 333 333 333 333 333 333 333 333 333 333 333
+602 770 333 333 746 333 333 333 333 529 333 333 333 1228 891 333
+333 333 333 333 333 333 333 333 794]
+>>
+endobj
+16 0 obj
+<</Subtype/Type1/BaseFont/Times-Bold/Type/Font/Name/R16/FirstChar 1/LastChar 
255/Widths[ 333 556 556 167 333 667 278 333 333 1000 333 570 1000 667 444
+333 278 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 333 278
+250 333 555 500 500 1000 833 333 333 333 500 570 250 334 250 278
+500 501 501 501 501 501 501 501 500 500 334 333 570 570 570 500
+930 719 669 719 719 669 611 777 777 393 500 778 667 944 722 778
+610 778 719 552 667 722 722 1000 719 722 667 333 278 333 581 500
+333 501 556 443 552 443 334 501 552 276 333 552 276 836 552 501
+552 556 443 393 334 552 500 719 500 501 444 394 220 394 520 1000
+500 1000 333 500 500 1000 500 500 333 1000 556 333 1000 1000 1000 1000
+1000 1000 1000 500 500 350 500 1000 333 1000 389 333 722 1000 1000 722
+1000 333 500 500 500 500 220 500 333 747 300 500 570 334 747 333
+400 570 300 300 333 556 540 250 333 300 330 500 750 750 750 500
+722 722 722 722 722 722 1000 722 667 667 667 667 389 389 389 389
+722 722 778 778 778 778 778 570 778 722 722 722 722 722 611 556
+500 500 500 500 500 500 722 444 444 444 444 444 278 278 278 278
+500 556 500 500 500 500 500 570 500 556 556 556 556 500 556 500]
+>>
+endobj
+84 0 obj
+<</Subtype/Type1/BaseFont/Times-Roman/Type/Font/Name/R84/FirstChar 1/LastChar 
255/Widths[ 333 556 556 167 333 611 278 333 333 1000 333 564 1000 611 444
+333 278 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 333 180
+250 333 408 500 500 833 778 333 333 333 500 564 250 333 250 278
+500 501 501 501 501 500 500 500 500 500 278 278 564 564 564 444
+921 722 667 667 722 611 556 722 722 333 389 722 611 889 722 722
+556 722 667 556 611 722 722 944 722 722 611 333 278 333 469 500
+333 444 500 444 500 444 333 500 500 278 278 500 278 778 500 500
+500 500 333 389 278 500 500 722 500 500 444 480 200 480 541 1000
+500 1000 333 500 444 1000 500 500 333 1000 556 333 889 1000 1000 1000
+1000 1000 1000 444 444 350 500 1000 333 980 389 333 722 1000 1000 722
+1000 333 500 500 500 500 200 500 333 760 276 500 564 333 760 333
+400 564 300 300 333 500 453 250 333 300 310 500 750 750 750 444
+722 722 722 722 722 722 889 667 611 611 611 611 333 333 333 333
+722 722 722 722 722 722 722 564 722 722 722 722 722 722 556 500
+444 444 444 444 444 444 667 444 444 444 444 444 278 278 278 278
+500 500 500 500 500 500 500 564 500 500 500 500 500 500 500 500]
+>>
+endobj
+15 0 obj
+<</Subtype/Type1/BaseFont/Times-Italic/Type/Font/Name/R15/FirstChar 1/LastChar 
255/Widths[ 333 500 500 167 333 556 278 333 333 1000 333 675 1000 556 389
+333 278 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 333 214
+250 333 420 500 500 833 778 333 333 333 500 675 250 334 250 278
+500 495 500 500 500 500 500 500 500 500 334 333 675 675 675 500
+920 611 611 667 722 611 615 722 722 333 444 667 556 833 667 722
+611 722 611 500 556 722 611 833 611 556 556 389 278 389 422 500
+333 495 500 441 495 441 278 495 500 281 278 444 281 722 495 495
+500 500 388 388 281 495 444 667 444 444 389 400 275 400 541 1000
+500 1000 333 500 556 889 500 500 333 1000 500 333 944 1000 1000 1000
+1000 1000 1000 556 556 350 500 889 333 980 389 333 667 1000 1000 556
+1000 389 500 500 500 500 275 500 333 760 276 500 675 334 760 333
+400 675 300 300 333 500 523 250 333 300 310 500 750 750 750 500
+611 611 611 611 611 611 889 667 611 611 611 611 333 333 333 333
+722 667 722 722 722 722 722 675 722 722 722 722 722 556 611 500
+500 500 500 500 500 500 667 444 444 444 444 444 278 278 278 278
+500 500 500 500 500 500 500 675 500 500 500 500 500 444 500 444]
+>>
+endobj
+47 0 obj
+<</Subtype/Type1/BaseFont/VSEBLF+CMTI7/Type/Font/Name/R47/FontDescriptor 46 0 
R/FirstChar 99/LastChar 101/Widths[ 550 602 550]
+>>
+endobj
+83 0 obj
+<</Subtype/Type1/BaseFont/PANABI+CMEX10/Type/Font/Name/R83/FontDescriptor 82 0 
R/FirstChar 0/LastChar 80/Widths[
+457 457 333 333 333 333 333 333 333 333 333 333 333 333 333 333
+333 333 333 333 333 333 333 333 333 333 333 333 333 333 333 333
+333 333 333 333 333 333 333 333 333 333 333 333 333 333 333 333
+333 333 333 333 333 333 333 333 333 333 333 333 333 333 333 333
+333 333 333 333 333 333 333 333 333 333 333 333 333 333 333 333
+1059]
+>>
+endobj
+44 0 obj
+<</Subtype/Type1/BaseFont/FKYXSF+CMTI10/Type/Font/Name/R44/FontDescriptor 43 0 
R/FirstChar 99/LastChar 115/Widths[ 457 505 457 357 457 357 357 357 457 357 357 
566 357
+505 357 357 409]
+>>
+endobj
+13 0 obj
+<</Subtype/Type1/BaseFont/Times-Bold/Type/Font/Name/R13/FirstChar 1/LastChar 
255/Widths[ 333 556 556 167 333 667 278 333 333 1000 333 570 1000 667 444
+333 278 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 333 278
+250 333 555 500 500 1000 833 333 333 333 500 570 250 333 250 278
+500 500 500 500 500 500 500 500 500 500 334 333 570 570 570 500
+930 722 667 722 722 667 611 778 778 389 500 776 667 944 722 778
+611 778 722 556 667 722 722 1000 722 722 667 333 278 333 581 500
+333 495 562 441 562 441 333 500 556 278 333 556 278 833 556 495
+556 556 441 388 334 556 500 722 500 495 444 394 220 394 520 1000
+500 1000 333 500 500 1000 500 500 333 1000 556 333 1000 1000 1000 1000
+1000 1000 1000 500 500 350 500 1000 333 1000 389 333 722 1000 1000 722
+1000 333 500 500 500 500 220 500 333 747 300 500 570 333 747 333
+400 570 300 300 333 556 540 250 333 300 330 500 750 750 750 500
+722 722 722 722 722 722 1000 722 667 667 667 667 389 389 389 389
+722 722 778 778 778 778 778 570 778 722 722 722 722 722 611 556
+500 500 500 500 500 500 722 444 444 444 444 444 278 278 278 278
+500 556 500 500 500 500 500 570 500 556 556 556 556 500 556 500]
+>>
+endobj
+80 0 obj
+<</Subtype/Type1/BaseFont/Times-Roman/Type/Font/Name/R80/FirstChar 1/LastChar 
255/Widths[ 333 556 556 167 333 611 278 333 333 1000 333 564 1000 611 444
+333 278 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 333 180
+250 333 408 500 500 833 778 333 333 333 500 564 250 333 250 278
+500 499 499 499 499 500 500 500 500 500 278 278 564 564 564 444
+921 722 667 667 722 611 556 722 722 333 389 722 611 889 722 722
+556 722 667 556 611 722 722 944 722 722 611 333 278 333 469 500
+333 444 500 444 500 444 333 500 500 278 278 500 278 778 500 500
+500 500 333 389 278 500 500 722 500 500 444 480 200 480 541 1000
+500 1000 333 500 444 1000 500 500 333 1000 556 333 889 1000 1000 1000
+1000 1000 1000 444 444 350 500 1000 333 980 389 333 722 1000 1000 722
+1000 333 500 500 500 500 200 500 333 760 276 500 564 333 760 333
+400 564 300 300 333 500 453 250 333 300 310 500 750 750 750 444
+722 722 722 722 722 722 889 667 611 611 611 611 333 333 333 333
+722 722 722 722 722 722 722 564 722 722 722 722 722 722 556 500
+444 444 444 444 444 444 667 444 444 444 444 444 278 278 278 278
+500 500 500 500 500 500 500 564 500 500 500 500 500 500 500 500]
+>>
+endobj
+41 0 obj
+<</Subtype/Type1/BaseFont/Times-Bold/Type/Font/Name/R41/FirstChar 1/LastChar 
255/Widths[ 333 556 556 167 333 667 278 333 333 1000 333 570 1000 667 444
+333 278 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 333 278
+250 333 555 500 500 1000 833 333 331 331 500 570 250 331 250 278
+500 501 501 501 500 501 501 500 500 500 333 333 570 570 570 500
+930 722 667 722 722 662 611 778 782 391 500 778 667 944 722 778
+611 778 722 552 662 722 722 1000 722 722 667 333 278 333 581 500
+333 501 552 441 552 441 331 501 552 281 333 552 281 833 552 501
+552 552 441 391 331 552 501 722 501 501 444 394 220 394 520 1000
+500 1000 333 500 500 1000 500 500 333 1000 556 333 1000 1000 1000 1000
+1000 1000 1000 500 500 350 500 1000 333 1000 389 333 722 1000 1000 722
+1000 333 500 500 500 500 220 500 333 747 300 500 570 331 747 333
+400 570 300 300 333 556 540 250 333 300 330 500 750 750 750 500
+722 722 722 722 722 722 1000 722 667 667 667 667 389 389 389 389
+722 722 778 778 778 778 778 570 778 722 722 722 722 722 611 556
+500 500 500 500 500 500 722 444 444 444 444 444 278 278 278 278
+500 556 500 500 500 500 500 570 500 556 556 556 556 500 556 500]
+>>
+endobj
+11 0 obj
+<</Subtype/Type1/BaseFont/Times-Roman/Type/Font/Name/R11/FirstChar 1/LastChar 
255/Widths[ 333 562 556 167 333 611 278 333 333 1000 333 564 1000 611 444
+333 278 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 333 180
+250 333 408 500 500 833 778 333 333 333 500 564 254 334 254 278
+500 500 500 500 500 500 500 500 500 500 278 278 564 564 564 444
+923 722 667 669 722 615 562 722 722 333 388 722 611 883 722 722
+556 722 669 562 615 722 722 950 722 722 611 333 278 333 469 500
+333 441 495 441 495 441 334 495 495 281 281 495 281 776 495 495
+495 500 334 388 281 495 495 722 495 495 441 480 200 480 541 1000
+500 1000 333 500 444 1000 500 500 333 1000 556 333 889 1000 1000 1000
+1000 1000 1000 444 444 350 500 1000 333 980 389 333 722 1000 1000 722
+1000 333 500 500 500 500 200 500 333 760 276 500 564 334 760 333
+400 564 300 300 333 500 453 250 333 300 310 500 750 750 750 444
+722 722 722 722 722 722 889 667 611 611 611 611 333 333 333 333
+722 722 722 722 722 722 722 564 722 722 722 722 722 722 556 500
+444 444 444 444 444 444 667 444 444 444 444 444 278 278 278 278
+500 500 500 500 500 500 500 564 500 500 500 500 500 500 500 500]
+/Encoding 219 0 R>>
+endobj
+219 0 obj
+<</Type/Encoding/Differences[
+2/fi]>>
+endobj
+40 0 obj
+<</Subtype/Type1/BaseFont/JHXTZF+CMMI10/Type/Font/Name/R40/FontDescriptor 39 0 
R/FirstChar 11/LastChar 195/Widths[ 638 566 517 445 333
+433 333 469 333 333 333 333 333 333 333 333 333 433 333 333 626
+650 333 469 333 333 333 333 333 333 333 333 333 333 333 333 333
+333 333 333 333 333 333 333 333 333 333 277 277 782 505 782 333
+333 333 333 333 333 734 638 333 333 433 333 855 686 975 333 333
+638 794 758 614 590 333 333 333 831 578 686 333 333 333 333 333
+421 529 433 433 333 469 333 481 578 349 409 517 333 879 602 333
+505 445 445 469 361 578 481 710 566 333 469 333 333 333 505 333
+650 333 333 333 333 333 333 333 333 333 333 333 333 333 333 333
+333 333 333 333 333 333 333 333 333 333 333 333 333 333 333 333
+333 333 333 333 333 333 333 333 333 333 333 333 333 333 638 566
+517 445 333 433 333 469 333 333 333 333 333 333 333 333 333 433
+333 333 626 650]
+>>
+endobj
+188 0 obj
+<</Subtype/Type1/BaseFont/WSVMYV+CMR9/Type/Font/Name/R188/FontDescriptor 187 0 
R/FirstChar 43/LastChar 61/Widths[ 802 342 342 342 342
+342 342 342 342 342 342 342 342 342 342 342 342 342 802]
+>>
+endobj
+10 0 obj
+<</Subtype/Type1/BaseFont/Times-Roman/Type/Font/Name/R10/FirstChar 1/LastChar 
255/Widths[ 333 556 556 167 333 611 278 333 333 1000 333 564 1000 611 444
+333 278 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 333 180
+250 333 408 500 500 833 778 333 333 333 500 564 250 333 250 278
+500 500 500 500 500 500 500 500 500 500 278 278 564 564 564 444
+921 722 662 662 722 612 552 722 722 333 389 722 612 893 722 722
+556 722 662 552 611 722 722 944 722 722 611 333 278 333 469 500
+333 441 501 441 501 441 333 500 501 281 278 500 281 778 501 501
+500 500 331 391 281 501 500 722 500 500 444 480 200 480 541 1000
+500 1000 333 500 444 1000 500 500 333 1000 556 333 889 1000 1000 1000
+1000 1000 1000 444 444 350 500 1000 333 980 389 333 722 1000 1000 722
+1000 333 500 500 500 500 200 500 333 760 276 500 564 333 760 333
+400 564 300 300 333 500 453 250 333 300 310 500 750 750 750 444
+722 722 722 722 722 722 889 667 611 611 611 611 333 333 333 333
+722 722 722 722 722 722 722 564 722 722 722 722 722 722 556 500
+444 444 444 444 444 444 667 444 444 444 444 444 278 278 278 278
+500 500 500 500 500 500 500 564 500 500 500 500 500 500 500 500]
+>>
+endobj
+79 0 obj
+<</Subtype/Type1/BaseFont/Times-Roman/Type/Font/Name/R79/FirstChar 1/LastChar 
255/Widths[ 333 556 556 167 333 611 278 333 333 1000 333 564 1000 611 444
+333 278 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 333 180
+250 333 408 500 500 833 778 333 333 333 500 564 250 333 250 278
+500 500 500 500 500 500 500 500 500 500 278 278 564 564 564 444
+921 722 667 669 722 610 556 722 722 333 389 722 611 889 722 722
+556 722 669 552 611 722 722 944 722 722 611 333 278 333 469 500
+333 444 500 444 500 444 333 500 500 278 278 500 278 778 500 500
+500 500 333 389 278 500 500 722 500 500 444 480 200 480 541 1000
+500 1000 333 500 444 1000 500 500 333 1000 556 333 889 1000 1000 1000
+1000 1000 1000 444 444 350 500 1000 333 980 389 333 722 1000 1000 722
+1000 333 500 500 500 500 200 500 333 760 276 500 564 333 760 333
+400 564 300 300 333 500 453 250 333 300 310 500 750 750 750 444
+722 722 722 722 722 722 889 667 611 611 611 611 333 333 333 333
+722 722 722 722 722 722 722 564 722 722 722 722 722 722 556 500
+444 444 444 444 444 444 667 444 444 444 444 444 278 278 278 278
+500 500 500 500 500 500 500 564 500 500 500 500 500 500 500 500]
+>>
+endobj
+74 0 obj
+<</Subtype/Type1/BaseFont/TPWVBL+MSBM10/Type/Font/Name/R74/FontDescriptor 73 0 
R/FirstChar 70/LastChar 90/Widths[ 614 782 300 300 300 300 300 300 300 300
+300 300 300 300 300 300 300 300 300 300 662]
+>>
+endobj
+185 0 obj
+<</Subtype/Type1/BaseFont/WLASMM+CMMI6/Type/Font/Name/R185/FontDescriptor 184 
0 R/FirstChar 59/LastChar 116/Widths[ 381 333 333 333 333
+333 333 333 333 333 333 333 333 333 333 333 333 333 333 333 333
+333 333 333 333 722 333 333 333 333 333 333 333 333 333 333 333
+333 333 333 333 333 333 333 333 333 333 333 333 333 333 333 333
+333 333 333 333 481]
+>>
+endobj
+37 0 obj
+<</Subtype/Type1/BaseFont/UUBTXF+CMTT10/Type/Font/Name/R37/FontDescriptor 36 0 
R/FirstChar 97/LastChar 121/Widths[ 529 525 529 529 529 525 529 529 529 525 529 
529 529 529 529
+529 529 529 529 529 529 525 529 529 529]
+>>
+endobj
+115 0 obj
+<</Subtype/TrueType/BaseFont/PNHYKQ+Helvetica/Type/Font/Name/R115/FontDescriptor
 114 0 R/FirstChar 33/LastChar 68/Widths[ 666 500 833 556 277 333 222 500 277 
722 556 556 500 666 556
+556 500 556 222 556 666 722 722 333 722 833 333 500 277 333 556
+277 722 500 556 556]
+>>
+endobj
+9 0 obj
+<</Subtype/Type1/BaseFont/Times-Roman/Type/Font/Name/R9/FirstChar 1/LastChar 
255/Widths[ 333 556 556 167 333 611 278 333 333 1000 333 564 1000 611 444
+333 278 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 333 180
+250 333 408 500 500 833 778 333 333 333 500 564 250 334 250 278
+500 500 500 500 500 500 500 500 500 500 278 278 564 564 564 444
+921 722 667 669 722 613 556 722 722 333 389 724 611 889 722 722
+556 722 669 557 611 722 722 944 722 722 611 333 278 333 469 500
+333 446 501 446 501 446 333 501 501 278 278 500 278 778 501 501
+501 500 334 390 278 500 501 724 500 501 444 480 200 480 541 1000
+500 1000 333 500 444 1000 500 500 333 1000 556 333 889 1000 1000 1000
+1000 1000 1000 444 444 350 500 1000 333 980 389 333 722 1000 1000 722
+1000 333 500 500 500 500 200 500 333 760 276 500 564 334 760 333
+400 564 300 300 333 500 453 250 333 300 310 500 750 750 750 444
+722 722 722 722 722 722 889 667 611 611 611 611 333 333 333 333
+722 722 722 722 722 722 722 564 722 722 722 722 722 722 556 500
+444 444 444 444 444 444 667 444 444 444 444 444 278 278 278 278
+500 500 500 500 500 500 500 564 500 500 500 500 500 500 500 500]
+>>
+endobj
+2 0 obj
+<</Producer(GNU Ghostscript 7.05)>>endobj
+xref
+0 220
+0000000000 65535 f 
+0000110633 00000 n 
+0000220867 00000 n 
+0000110451 00000 n 
+0000110681 00000 n 
+0000107871 00000 n 
+0000000015 00000 n 
+0000005162 00000 n 
+0000200963 00000 n 
+0000219711 00000 n 
+0000216286 00000 n 
+0000213970 00000 n 
+0000198812 00000 n 
+0000210488 00000 n 
+0000200900 00000 n 
+0000208524 00000 n 
+0000206204 00000 n 
+0000203219 00000 n 
+0000201979 00000 n 
+0000110736 00000 n 
+0000110766 00000 n 
+0000108031 00000 n 
+0000005182 00000 n 
+0000011862 00000 n 
+0000110873 00000 n 
+0000148517 00000 n 
+0000148104 00000 n 
+0000196577 00000 n 
+0000108175 00000 n 
+0000011883 00000 n 
+0000018510 00000 n 
+0000194881 00000 n 
+0000154795 00000 n 
+0000154464 00000 n 
+0000193124 00000 n 
+0000152196 00000 n 
+0000151943 00000 n 
+0000219189 00000 n 
+0000159602 00000 n 
+0000159217 00000 n 
+0000215200 00000 n 
+0000212808 00000 n 
+0000157761 00000 n 
+0000157534 00000 n 
+0000210285 00000 n 
+0000173682 00000 n 
+0000173467 00000 n 
+0000209681 00000 n 
+0000172283 00000 n 
+0000172006 00000 n 
+0000205465 00000 n 
+0000167190 00000 n 
+0000166888 00000 n 
+0000204506 00000 n 
+0000174635 00000 n 
+0000174387 00000 n 
+0000201492 00000 n 
+0000198873 00000 n 
+0000110927 00000 n 
+0000108319 00000 n 
+0000018531 00000 n 
+0000024402 00000 n 
+0000178823 00000 n 
+0000178558 00000 n 
+0000196039 00000 n 
+0000177492 00000 n 
+0000177260 00000 n 
+0000193606 00000 n 
+0000111102 00000 n 
+0000108463 00000 n 
+0000024423 00000 n 
+0000030457 00000 n 
+0000176280 00000 n 
+0000176064 00000 n 
+0000218602 00000 n 
+0000111255 00000 n 
+0000108607 00000 n 
+0000030478 00000 n 
+0000038005 00000 n 
+0000217444 00000 n 
+0000211650 00000 n 
+0000183005 00000 n 
+0000182753 00000 n 
+0000209827 00000 n 
+0000207366 00000 n 
+0000111408 00000 n 
+0000108759 00000 n 
+0000038026 00000 n 
+0000044662 00000 n 
+0000111796 00000 n 
+0000111638 00000 n 
+0000118731 00000 n 
+0000118574 00000 n 
+0000120722 00000 n 
+0000120565 00000 n 
+0000125505 00000 n 
+0000125348 00000 n 
+0000127496 00000 n 
+0000127339 00000 n 
+0000129722 00000 n 
+0000129564 00000 n 
+0000131949 00000 n 
+0000131791 00000 n 
+0000134249 00000 n 
+0000134091 00000 n 
+0000136462 00000 n 
+0000136304 00000 n 
+0000138762 00000 n 
+0000138604 00000 n 
+0000140975 00000 n 
+0000140817 00000 n 
+0000143203 00000 n 
+0000143045 00000 n 
+0000017666 00000 n 
+0000145481 00000 n 
+0000219424 00000 n 
+0000019444 00000 n 
+0000145686 00000 n 
+0000196398 00000 n 
+0000020756 00000 n 
+0000145273 00000 n 
+0000198364 00000 n 
+0000145894 00000 n 
+0000146062 00000 n 
+0000146228 00000 n 
+0000108949 00000 n 
+0000044683 00000 n 
+0000051754 00000 n 
+0000146454 00000 n 
+0000109096 00000 n 
+0000051776 00000 n 
+0000059640 00000 n 
+0000146652 00000 n 
+0000109251 00000 n 
+0000059662 00000 n 
+0000068308 00000 n 
+0000181223 00000 n 
+0000180981 00000 n 
+0000205817 00000 n 
+0000185595 00000 n 
+0000185374 00000 n 
+0000205297 00000 n 
+0000184957 00000 n 
+0000184757 00000 n 
+0000201024 00000 n 
+0000183905 00000 n 
+0000183672 00000 n 
+0000200107 00000 n 
+0000187068 00000 n 
+0000186859 00000 n 
+0000198673 00000 n 
+0000186336 00000 n 
+0000186123 00000 n 
+0000198530 00000 n 
+0000146828 00000 n 
+0000109406 00000 n 
+0000068330 00000 n 
+0000075796 00000 n 
+0000147104 00000 n 
+0000109561 00000 n 
+0000075818 00000 n 
+0000080543 00000 n 
+0000197177 00000 n 
+0000197236 00000 n 
+0000147317 00000 n 
+0000109708 00000 n 
+0000080565 00000 n 
+0000085169 00000 n 
+0000147385 00000 n 
+0000109855 00000 n 
+0000085191 00000 n 
+0000090956 00000 n 
+0000147442 00000 n 
+0000110002 00000 n 
+0000090978 00000 n 
+0000097826 00000 n 
+0000147589 00000 n 
+0000110149 00000 n 
+0000097848 00000 n 
+0000105594 00000 n 
+0000189411 00000 n 
+0000189097 00000 n 
+0000194016 00000 n 
+0000188374 00000 n 
+0000188151 00000 n 
+0000218820 00000 n 
+0000187687 00000 n 
+0000187466 00000 n 
+0000216075 00000 n 
+0000147734 00000 n 
+0000110304 00000 n 
+0000105616 00000 n 
+0000107849 00000 n 
+0000147968 00000 n 
+0000151921 00000 n 
+0000154442 00000 n 
+0000157512 00000 n 
+0000159195 00000 n 
+0000166866 00000 n 
+0000171984 00000 n 
+0000173445 00000 n 
+0000174366 00000 n 
+0000176042 00000 n 
+0000177239 00000 n 
+0000178537 00000 n 
+0000180959 00000 n 
+0000182731 00000 n 
+0000183651 00000 n 
+0000184736 00000 n 
+0000185353 00000 n 
+0000186102 00000 n 
+0000186838 00000 n 
+0000187445 00000 n 
+0000188130 00000 n 
+0000189076 00000 n 
+0000193102 00000 n 
+0000200052 00000 n 
+0000203153 00000 n 
+0000204393 00000 n 
+0000215145 00000 n 
+trailer
+<< /Size 220 /Root 1 0 R /Info 2 0 R
+>>
+startxref
+220917
+%%EOF

Modified: freeway/ABOUT-NLS
===================================================================
--- freeway/ABOUT-NLS   2006-07-04 21:59:06 UTC (rev 3095)
+++ freeway/ABOUT-NLS   2006-07-04 22:00:47 UTC (rev 3096)
@@ -186,7 +186,7 @@
 
      Ready PO files       af am ar az be bg bs ca cs cy da de el en en_GB
                         +-------------------------------------------------+
-     Freeway            |                                                 |
+     GNUnet             |                                                 |
      a2ps               |             []                [] [] []     []   |
      aegis              |                                  ()             |
      ant-phone          |                                  ()             |
@@ -341,7 +341,7 @@
 
                           eo es et eu fa fi fr  ga gl he hi hr hu id is
                         +-----------------------------------------------+
-     Freeway            |                                               |
+     GNUnet             |                                               |
      a2ps               |       []       [] []                          |
      aegis              |                                               |
      ant-phone          |                   []                          |
@@ -496,7 +496,7 @@
 
                           it ja ko ku lg lt lv mk mn ms mt nb nl nn no nso
                         +--------------------------------------------------+
-     Freeway            |                                                  |
+     GNUnet             |                                                  |
      a2ps               | ()    ()                   []       []    ()     |
      aegis              |                                     ()           |
      ant-phone          |                                     []           |
@@ -651,7 +651,7 @@
 
                           or pa pl pt pt_BR rm ro ru rw sk sl sq sr sv
                         +----------------------------------------------+
-     Freeway            |                                              |
+     GNUnet             |                                              |
      a2ps               |       ()     []      [] []       []    [] [] |
      aegis              |                      () ()                   |
      ant-phone          |                      []                      |
@@ -806,7 +806,7 @@
 
                           ta tg th tk tr uk ven vi wa xh zh_CN zh_TW zu
                         +-----------------------------------------------+
-     Freeway            |                                               |  0
+     GNUnet             |                                               |  0
      a2ps               |             [] []     []                      | 19
      aegis              |                                               |  0
      ant-phone          |             []        []                      |  5

Added: i18nHTML/COPYING
===================================================================
--- i18nHTML/COPYING    2006-07-04 21:59:06 UTC (rev 3095)
+++ i18nHTML/COPYING    2006-07-04 22:00:47 UTC (rev 3096)
@@ -0,0 +1,340 @@
+                   GNU GENERAL PUBLIC LICENSE
+                      Version 2, June 1991
+
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.
+    51 Franklin St, Fifth Floor, Boston, MA  02110-1301  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
+
+           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) <year>  <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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  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) year  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.

Modified: i18nHTML/src/i18nhtml.inc.php
===================================================================
--- i18nHTML/src/i18nhtml.inc.php       2006-07-04 21:59:06 UTC (rev 3095)
+++ i18nHTML/src/i18nhtml.inc.php       2006-07-04 22:00:47 UTC (rev 3096)
@@ -576,6 +576,7 @@
   global $lang;
   global $i18nHTMLrecordMode;
   global $i18nHTMLhasTranslation, $i18nHTMLsqlPrefix;
+  global $i18nHTMLsrcLang;
 
   $i18nHTMLhasTranslation = 1; // assume translation until failure
 
@@ -776,6 +777,7 @@
 // at least 1 translated string.
 function generateLanguageBar() {
   global $connection, $i18nHTMLsqlPrefix;
+  global $i18nHTMLsrcLang;
 
   if ($connection) {
     echo "<center>[";
@@ -810,6 +812,7 @@
   global $xlang;
   global $editor;
   global $HTTP_SERVER_VARS;
+  global $i18nHTMLsrcLang;
 
   P();
   echo "Translation engine based on <a 
href=\"http://gnunet.org/i18nHTML/\";>i18nHTML</a> (C) 2003, 2004, 2005, 2006 <a 
href=\"http://grothoff.org/christian/\";>Christian Grothoff</a>.<br />\n";





reply via email to

[Prev in Thread] Current Thread [Next in Thread]